Refactoring of navigation.
This commit is contained in:
parent
7345fa29f9
commit
626f90ae11
2 changed files with 72 additions and 64 deletions
|
@ -1,8 +1,21 @@
|
||||||
class App.Navigation extends App.ControllerWidgetPermanent
|
class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
className: 'navigation vertical'
|
className: 'navigation vertical'
|
||||||
|
|
||||||
|
elements:
|
||||||
|
'#global-search': 'searchInput'
|
||||||
|
'#global-search-result': 'searchResult'
|
||||||
|
'.search': 'searchContainer'
|
||||||
|
|
||||||
events:
|
events:
|
||||||
'click .js-toggleNotifications': 'toggleNotifications'
|
'click .js-toggleNotifications': 'toggleNotifications'
|
||||||
|
'click .js-emptySearch': 'emptyAndClose'
|
||||||
|
'dblclick .search-holder .icon-magnifier': 'openExtendedSearch'
|
||||||
|
'submit form.search-holder': 'ignore'
|
||||||
|
'focus #global-search': 'searchFocus'
|
||||||
|
'blur #global-search': 'searchBlur'
|
||||||
|
'keydown #global-search': 'listNavigate'
|
||||||
|
'click #global-search-result': 'andClose'
|
||||||
|
'change .js-menu .js-switch input': 'switch'
|
||||||
|
|
||||||
constructor: ->
|
constructor: ->
|
||||||
super
|
super
|
||||||
|
@ -96,15 +109,14 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
activeTab: activeTab
|
activeTab: activeTab
|
||||||
)
|
)
|
||||||
|
|
||||||
# bind on switch changes and execute it on controller
|
# on switch changes and execute it on controller
|
||||||
@$('.js-menu .js-switch input').bind('change', (e) ->
|
switch: (e) ->
|
||||||
val = $(e.target).prop('checked')
|
val = $(e.target).prop('checked')
|
||||||
key = $(e.target).closest('.menu-item').data('key')
|
key = $(e.target).closest('.menu-item').data('key')
|
||||||
return if !key
|
return if !key
|
||||||
worker = App.TaskManager.worker(key)
|
worker = App.TaskManager.worker(key)
|
||||||
return if !worker
|
return if !worker
|
||||||
worker.switch(val)
|
worker.switch(val)
|
||||||
)
|
|
||||||
|
|
||||||
renderPersonal: =>
|
renderPersonal: =>
|
||||||
@recentViewNavbarItemsRebuild()
|
@recentViewNavbarItemsRebuild()
|
||||||
|
@ -131,22 +143,21 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
)
|
)
|
||||||
|
|
||||||
renderResult: (result = []) =>
|
renderResult: (result = []) =>
|
||||||
el = @$('#global-search-result')
|
|
||||||
|
|
||||||
# remove result if not result exists
|
# remove result if not result exists
|
||||||
if _.isEmpty(result)
|
if _.isEmpty(result)
|
||||||
@$('.search').removeClass('open')
|
@searchContainer.removeClass('open')
|
||||||
el.html('')
|
@searchResult.html('')
|
||||||
return
|
return
|
||||||
|
|
||||||
# build markup
|
# build markup
|
||||||
html = App.view('navigation/result')(
|
html = App.view('navigation/result')(
|
||||||
result: result
|
result: result
|
||||||
)
|
)
|
||||||
el.html(html)
|
@searchResult.html(html)
|
||||||
|
|
||||||
# show result list
|
# show result list
|
||||||
@$('.search').addClass('open')
|
@searchContainer.addClass('open')
|
||||||
|
|
||||||
# start ticket popups
|
# start ticket popups
|
||||||
@ticketPopups()
|
@ticketPopups()
|
||||||
|
@ -175,34 +186,32 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
# renderPersonal
|
# renderPersonal
|
||||||
@renderPersonal()
|
@renderPersonal()
|
||||||
|
|
||||||
# observer search box
|
|
||||||
@$('#global-search').bind('focusout', (e) =>
|
|
||||||
# delay to be able to click x
|
|
||||||
update = =>
|
|
||||||
@$('.search').removeClass('focused')
|
|
||||||
@delay(update, 100, 'removeFocused')
|
|
||||||
)
|
|
||||||
@$('#global-search').bind('focusin', (e) =>
|
|
||||||
@query = '' # reset query cache
|
|
||||||
@$('.search').addClass('focused')
|
|
||||||
@anyPopoversDestroy()
|
|
||||||
@searchFunction(0)
|
|
||||||
)
|
|
||||||
@$('form.search').on('submit', (e) ->
|
|
||||||
e.preventDefault()
|
|
||||||
)
|
|
||||||
@$('#global-search').on('keydown', @listNavigate)
|
|
||||||
|
|
||||||
# bind to empty search
|
|
||||||
@$('.empty-search').on('click', =>
|
|
||||||
@emptyAndClose()
|
|
||||||
)
|
|
||||||
|
|
||||||
if @notificationWidget
|
if @notificationWidget
|
||||||
@notificationWidget.remove()
|
@notificationWidget.remove()
|
||||||
@notificationWidget = new App.OnlineNotificationWidget()
|
@notificationWidget = new App.OnlineNotificationWidget()
|
||||||
$('#app').append @notificationWidget.el
|
$('#app').append @notificationWidget.el
|
||||||
|
|
||||||
|
ignore: (e) ->
|
||||||
|
e.preventDefault()
|
||||||
|
|
||||||
|
searchFocus: (e) =>
|
||||||
|
@query = '' # reset query cache
|
||||||
|
@searchContainer.addClass('focused')
|
||||||
|
@anyPopoversDestroy()
|
||||||
|
@searchFunction(0)
|
||||||
|
|
||||||
|
searchBlur: (e) =>
|
||||||
|
|
||||||
|
# delay to be able to click x
|
||||||
|
update = =>
|
||||||
|
query = @searchInput.val().trim()
|
||||||
|
if !query
|
||||||
|
@emptyAndClose()
|
||||||
|
return
|
||||||
|
@searchContainer.removeClass('focused')
|
||||||
|
|
||||||
|
@delay(update, 100, 'removeFocused')
|
||||||
|
|
||||||
listNavigate: (e) =>
|
listNavigate: (e) =>
|
||||||
if e.keyCode is 27 # close on esc
|
if e.keyCode is 27 # close on esc
|
||||||
@emptyAndClose()
|
@emptyAndClose()
|
||||||
|
@ -218,6 +227,7 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
return if !href
|
return if !href
|
||||||
@locationExecute(href)
|
@locationExecute(href)
|
||||||
@emptyAndClose()
|
@emptyAndClose()
|
||||||
|
@searchInput.blur()
|
||||||
return
|
return
|
||||||
|
|
||||||
# on other keys, show result
|
# on other keys, show result
|
||||||
|
@ -226,10 +236,9 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
nudge: (e, position) =>
|
nudge: (e, position) =>
|
||||||
|
|
||||||
# get current
|
# get current
|
||||||
navigationResult = @$('#global-search-result')
|
current = @searchResult.find('.nav-tab.is-hover')
|
||||||
current = navigationResult.find('.nav-tab.is-hover')
|
|
||||||
if !current.get(0)
|
if !current.get(0)
|
||||||
navigationResult.find('.nav-tab').first().addClass('is-hover')
|
@searchResult.find('.nav-tab').first().addClass('is-hover')
|
||||||
return
|
return
|
||||||
|
|
||||||
if position is 1
|
if position is 1
|
||||||
|
@ -249,25 +258,25 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
@scrollToIfNeeded(prev, false)
|
@scrollToIfNeeded(prev, false)
|
||||||
|
|
||||||
emptyAndClose: =>
|
emptyAndClose: =>
|
||||||
@$('#global-search').val('').blur()
|
@searchInput.val('')
|
||||||
@$('.search').removeClass('filled').removeClass('open')
|
@searchContainer.removeClass('filled').removeClass('open').removeClass('focused')
|
||||||
|
|
||||||
# remove not needed popovers
|
# remove not needed popovers
|
||||||
@delay(@anyPopoversDestroy, 100, 'removePopovers')
|
@delay(@anyPopoversDestroy, 100, 'removePopovers')
|
||||||
|
|
||||||
andClose: =>
|
andClose: =>
|
||||||
@$('#global-search').blur()
|
@searchInput.blur()
|
||||||
@$('.search').removeClass('open')
|
@searchContainer.removeClass('open')
|
||||||
@delay(@anyPopoversDestroy, 100, 'removePopovers')
|
@delay(@anyPopoversDestroy, 100, 'removePopovers')
|
||||||
|
|
||||||
searchFunction: (delay) =>
|
searchFunction: (delay) =>
|
||||||
|
|
||||||
search = =>
|
search = =>
|
||||||
query = @$('#global-search').val().trim()
|
query = @searchInput.val().trim()
|
||||||
return if !query
|
return if !query
|
||||||
return if query is @query
|
return if query is @query
|
||||||
@query = query
|
@query = query
|
||||||
@$('.search').toggleClass('filled', !!@query)
|
@searchContainer.toggleClass('filled', !!@query)
|
||||||
|
|
||||||
# use cache for search result
|
# use cache for search result
|
||||||
if @searchResultCache[@query]
|
if @searchResultCache[@query]
|
||||||
|
@ -278,7 +287,7 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
App.Ajax.request(
|
App.Ajax.request(
|
||||||
id: 'search'
|
id: 'search'
|
||||||
type: 'GET'
|
type: 'GET'
|
||||||
url: @apiPath + '/search'
|
url: "#{@apiPath}/search"
|
||||||
data:
|
data:
|
||||||
query: @query
|
query: @query
|
||||||
processData: true,
|
processData: true,
|
||||||
|
@ -312,10 +321,6 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
return if diff isnt false && _.isEmpty(diff)
|
return if diff isnt false && _.isEmpty(diff)
|
||||||
|
|
||||||
@renderResult(result)
|
@renderResult(result)
|
||||||
|
|
||||||
@$('#global-search-result').on('click', 'a', =>
|
|
||||||
@andClose()
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
@delay(search, 200, 'search')
|
@delay(search, 200, 'search')
|
||||||
|
|
||||||
|
@ -473,8 +478,16 @@ class App.Navigation extends App.ControllerWidgetPermanent
|
||||||
@renderPersonal()
|
@renderPersonal()
|
||||||
App.RecentView.fetchFull(load)
|
App.RecentView.fetchFull(load)
|
||||||
|
|
||||||
toggleNotifications: (event) ->
|
toggleNotifications: (e) ->
|
||||||
event.stopPropagation()
|
e.stopPropagation()
|
||||||
@notificationWidget.toggle()
|
@notificationWidget.toggle()
|
||||||
|
|
||||||
|
openExtendedSearch: =>
|
||||||
|
query = @searchInput.val()
|
||||||
|
@searchInput.val('').blur()
|
||||||
|
if query
|
||||||
|
@navigate("#search/#{encodeURIComponent(query)}")
|
||||||
|
return
|
||||||
|
@navigate('#search')
|
||||||
|
|
||||||
App.Config.set('navigation', App.Navigation, 'Navigations')
|
App.Config.set('navigation', App.Navigation, 'Navigations')
|
||||||
|
|
|
@ -1,24 +1,19 @@
|
||||||
<form class="search">
|
<div class="search">
|
||||||
<div class="search-holder">
|
<form class="search-holder">
|
||||||
<input id="global-search" type="search" autocomplete="off">
|
<input id="global-search" type="search" autocomplete="off">
|
||||||
<%- @Icon('magnifier') %>
|
<%- @Icon('magnifier') %>
|
||||||
<div class="empty-search">
|
<div class="empty-search js-emptySearch">
|
||||||
<%- @Icon('diagonal-cross') %>
|
<%- @Icon('diagonal-cross') %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</form>
|
||||||
<div class="logo js-toggleNotifications">
|
<div class="logo js-toggleNotifications">
|
||||||
<%- @Icon('logo') %>
|
<%- @Icon('logo') %>
|
||||||
<div class="activity-counter js-notificationsCounter"></div>
|
<div class="activity-counter js-notificationsCounter"></div>
|
||||||
</div>
|
</div>
|
||||||
<ul id="global-search-result" class="custom-dropdown-menu" role="menu"></ul>
|
<ul id="global-search-result" class="custom-dropdown-menu" role="menu"></ul>
|
||||||
</form>
|
</div>
|
||||||
|
|
||||||
<div class="menu js-menu"></div>
|
<div class="menu js-menu"></div>
|
||||||
|
|
||||||
<div class="tasks tasks-navigation"></div>
|
<div class="tasks tasks-navigation"></div>
|
||||||
|
|
||||||
<% if !_.isEmpty(@user): %>
|
<% if !_.isEmpty(@user): %>
|
||||||
<!--<a href="#bell" class="glyphicon glyphicon-bell"></a>-->
|
|
||||||
|
|
||||||
<ul class="user-menu navbar-items-personal"></ul>
|
<ul class="user-menu navbar-items-personal"></ul>
|
||||||
<% end %>
|
<% end %>
|
Loading…
Reference in a new issue