mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
51 lines
1.7 KiB
JavaScript
51 lines
1.7 KiB
JavaScript
import Ember from 'ember';
|
|
import mobileQuery from 'ghost/utils/mobile';
|
|
|
|
var ApplicationView = Ember.View.extend({
|
|
elementId: 'container',
|
|
|
|
didInsertElement: function () {
|
|
// #### Navigating within the sidebar closes it.
|
|
var self = this;
|
|
|
|
$('body').on('click tap', '.js-nav-item', function () {
|
|
Ember.run(function () {
|
|
if (mobileQuery.matches) {
|
|
self.set('controller.showGlobalMobileNav', false);
|
|
}
|
|
});
|
|
});
|
|
|
|
// #### Close the nav if mobile and clicking outside of the nav or not the burger toggle
|
|
$('.js-nav-cover').on('click tap', function () {
|
|
Ember.run(function () {
|
|
var isOpen = self.get('controller.showGlobalMobileNav');
|
|
|
|
if (isOpen) {
|
|
self.set('controller.showGlobalMobileNav', false);
|
|
}
|
|
});
|
|
});
|
|
|
|
mobileQuery.addListener(this.get('closeGlobalMobileNavOnDesktop'));
|
|
},
|
|
|
|
showGlobalMobileNavObserver: function () {
|
|
if (this.get('controller.showGlobalMobileNav')) {
|
|
$('body').addClass('global-nav-expanded');
|
|
} else {
|
|
$('body').removeClass('global-nav-expanded');
|
|
}
|
|
}.observes('controller.showGlobalMobileNav'),
|
|
|
|
willDestroyElement: function () {
|
|
mobileQuery.removeListener(this.get('closeGlobalMobileNavOnDesktop'));
|
|
mobileQuery.removeListener(this.get('swapUserMenuDropdownTriangleClasses'));
|
|
},
|
|
|
|
toggleSettingsMenuBodyClass: function () {
|
|
$('body').toggleClass('settings-menu-expanded', this.get('controller.showSettingsMenu'));
|
|
}.observes('controller.showSettingsMenu')
|
|
});
|
|
|
|
export default ApplicationView;
|