2015-02-12 21:22:32 -07:00
|
|
|
import Ember from 'ember';
|
2014-09-15 22:55:37 -06:00
|
|
|
import mobileQuery from 'ghost/utils/mobile';
|
2014-09-01 17:45:06 +01:00
|
|
|
|
2014-07-07 08:55:22 -06:00
|
|
|
var ApplicationView = Ember.View.extend({
|
2014-09-14 18:40:24 -06:00
|
|
|
elementId: 'container',
|
|
|
|
|
2015-02-18 17:11:02 +00:00
|
|
|
didInsertElement: function () {
|
2014-07-07 08:55:22 -06:00
|
|
|
// #### Navigating within the sidebar closes it.
|
2014-09-01 17:45:06 +01:00
|
|
|
var self = this;
|
2015-02-18 17:11:02 +00:00
|
|
|
|
2014-09-25 16:33:47 +00:00
|
|
|
$('body').on('click tap', '.js-nav-item', function () {
|
2015-02-18 17:11:02 +00:00
|
|
|
Ember.run(function () {
|
|
|
|
if (mobileQuery.matches) {
|
|
|
|
self.set('controller.showGlobalMobileNav', false);
|
|
|
|
}
|
|
|
|
});
|
2014-07-07 08:55:22 -06:00
|
|
|
});
|
2014-09-01 17:45:06 +01:00
|
|
|
|
|
|
|
// #### Close the nav if mobile and clicking outside of the nav or not the burger toggle
|
2014-09-25 16:33:47 +00:00
|
|
|
$('.js-nav-cover').on('click tap', function () {
|
2015-02-18 17:11:02 +00:00
|
|
|
Ember.run(function () {
|
|
|
|
var isOpen = self.get('controller.showGlobalMobileNav');
|
|
|
|
|
|
|
|
if (isOpen) {
|
|
|
|
self.set('controller.showGlobalMobileNav', false);
|
|
|
|
}
|
|
|
|
});
|
2014-09-01 17:45:06 +01:00
|
|
|
});
|
|
|
|
|
2015-02-18 17:11:02 +00:00
|
|
|
mobileQuery.addListener(this.get('closeGlobalMobileNavOnDesktop'));
|
2014-09-01 17:45:06 +01:00
|
|
|
},
|
2014-09-15 22:55:37 -06:00
|
|
|
|
2014-09-01 17:45:06 +01:00
|
|
|
showGlobalMobileNavObserver: function () {
|
|
|
|
if (this.get('controller.showGlobalMobileNav')) {
|
|
|
|
$('body').addClass('global-nav-expanded');
|
|
|
|
} else {
|
|
|
|
$('body').removeClass('global-nav-expanded');
|
2014-08-10 14:50:25 -06:00
|
|
|
}
|
2014-09-01 17:45:06 +01:00
|
|
|
}.observes('controller.showGlobalMobileNav'),
|
|
|
|
|
2015-02-18 17:11:02 +00:00
|
|
|
willDestroyElement: function () {
|
|
|
|
mobileQuery.removeListener(this.get('closeGlobalMobileNavOnDesktop'));
|
|
|
|
mobileQuery.removeListener(this.get('swapUserMenuDropdownTriangleClasses'));
|
|
|
|
},
|
2014-09-01 17:45:06 +01:00
|
|
|
|
2014-10-13 16:23:06 +01:00
|
|
|
toggleSettingsMenuBodyClass: function () {
|
|
|
|
$('body').toggleClass('settings-menu-expanded', this.get('controller.showSettingsMenu'));
|
|
|
|
}.observes('controller.showSettingsMenu')
|
2014-07-07 08:55:22 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
export default ApplicationView;
|