mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 12:16:09 +03:00
00abfa64fe
References #3810 With GUI2, there's now a number of places to open the mobile navigation menu. This handles those clicks.
62 lines
2.3 KiB
JavaScript
62 lines
2.3 KiB
JavaScript
import {mobileQuery} from 'ghost/utils/mobile';
|
|
|
|
var ApplicationView = Ember.View.extend({
|
|
blogRoot: Ember.computed.alias('controller.ghostPaths.blogRoot'),
|
|
|
|
setupGlobalMobileNav: function () {
|
|
// #### Navigating within the sidebar closes it.
|
|
var self = this;
|
|
$('body').on('click', '.js-nav-item', 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', function () {
|
|
var isOpen = self.get('controller.showGlobalMobileNav');
|
|
if (isOpen) {
|
|
self.set('controller.showGlobalMobileNav', false);
|
|
}
|
|
});
|
|
|
|
// #### Listen to the viewport and change user-menu dropdown triangle classes accordingly
|
|
mobileQuery.addListener(this.swapUserMenuPopoverTriangleClasses);
|
|
this.swapUserMenuPopoverTriangleClasses(mobileQuery);
|
|
|
|
}.on('didInsertElement'),
|
|
|
|
swapUserMenuPopoverTriangleClasses: function (mq) {
|
|
if (mq.matches) {
|
|
$('.js-user-menu-dropdown-menu').removeClass('dropdown-triangle-top-right ').addClass('dropdown-triangle-bottom');
|
|
} else {
|
|
$('.js-user-menu-dropdown-menu').removeClass('dropdown-triangle-bottom').addClass('dropdown-triangle-top-right');
|
|
}
|
|
},
|
|
|
|
showGlobalMobileNavObserver: function () {
|
|
if (this.get('controller.showGlobalMobileNav')) {
|
|
$('body').addClass('global-nav-expanded');
|
|
} else {
|
|
$('body').removeClass('global-nav-expanded');
|
|
}
|
|
}.observes('controller.showGlobalMobileNav'),
|
|
|
|
setupCloseNavOnDesktop: function () {
|
|
this.set('closeGlobalMobileNavOnDesktop', _.bind(function closeGlobalMobileNavOnDesktop(mq) {
|
|
if (!mq.matches) {
|
|
// Is desktop sized
|
|
this.set('controller.showGlobalMobileNav', false);
|
|
}
|
|
}, this));
|
|
mobileQuery.addListener(this.closeGlobalMobileNavOnDesktop);
|
|
}.on('didInsertElement'),
|
|
|
|
removeCloseNavOnDesktop: function () {
|
|
mobileQuery.removeListener(this.closeGlobalMobileNavOnDesktop);
|
|
}.on('willDestroyElement'),
|
|
|
|
});
|
|
|
|
export default ApplicationView;
|