debian-mirror-gitlab/app/assets/javascripts/contextual_sidebar.js

112 lines
3.6 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2017-09-10 17:25:29 +05:30
import Cookies from 'js-cookie';
import _ from 'underscore';
import bp from './breakpoints';
2019-02-15 15:39:39 +05:30
import { parseBoolean } from '~/lib/utils/common_utils';
2017-09-10 17:25:29 +05:30
2019-07-07 11:18:12 +05:30
// NOTE: at 1200px nav sidebar should not overlap the content
// https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24555#note_134136110
const NAV_SIDEBAR_BREAKPOINT = 1200;
2018-03-17 18:26:18 +05:30
export default class ContextualSidebar {
2017-09-10 17:25:29 +05:30
constructor() {
this.initDomElements();
this.render();
}
initDomElements() {
2018-03-17 18:26:18 +05:30
this.$page = $('.layout-page');
2017-09-10 17:25:29 +05:30
this.$sidebar = $('.nav-sidebar');
2019-03-02 22:35:43 +05:30
if (!this.$sidebar.length) return;
2018-03-17 18:26:18 +05:30
this.$innerScroll = $('.nav-sidebar-inner-scroll', this.$sidebar);
2017-09-10 17:25:29 +05:30
this.$overlay = $('.mobile-overlay');
this.$openSidebar = $('.toggle-mobile-nav');
this.$closeSidebar = $('.close-nav-button');
this.$sidebarToggle = $('.js-toggle-sidebar');
}
bindEvents() {
2019-03-02 22:35:43 +05:30
if (!this.$sidebar.length) return;
2017-09-10 17:25:29 +05:30
this.$openSidebar.on('click', () => this.toggleSidebarNav(true));
this.$closeSidebar.on('click', () => this.toggleSidebarNav(false));
this.$overlay.on('click', () => this.toggleSidebarNav(false));
this.$sidebarToggle.on('click', () => {
2019-07-07 11:18:12 +05:30
if (!ContextualSidebar.isDesktopBreakpoint()) {
this.toggleSidebarNav(!this.$sidebar.hasClass('sidebar-expanded-mobile'));
} else {
const value = !this.$sidebar.hasClass('sidebar-collapsed-desktop');
this.toggleCollapsedSidebar(value, true);
}
});
this.$page.on('transitionstart transitionend', () => {
$(document).trigger('content.resize');
2017-09-10 17:25:29 +05:30
});
$(window).on('resize', () => _.debounce(this.render(), 100));
}
2019-07-07 11:18:12 +05:30
// TODO: use the breakpoints from breakpoints.js once they have been updated for bootstrap 4
// See documentation: https://design.gitlab.com/regions/navigation#contextual-navigation
static isDesktopBreakpoint = () => bp.windowWidth() >= NAV_SIDEBAR_BREAKPOINT;
2017-09-10 17:25:29 +05:30
static setCollapsedCookie(value) {
2019-07-07 11:18:12 +05:30
if (!ContextualSidebar.isDesktopBreakpoint()) {
2017-09-10 17:25:29 +05:30
return;
}
Cookies.set('sidebar_collapsed', value, { expires: 365 * 10 });
}
toggleSidebarNav(show) {
2019-07-07 11:18:12 +05:30
const breakpoint = bp.getBreakpointSize();
const dbp = ContextualSidebar.isDesktopBreakpoint();
this.$sidebar.toggleClass('sidebar-expanded-mobile', !dbp ? show : false);
this.$overlay.toggleClass(
'mobile-nav-open',
breakpoint === 'xs' || breakpoint === 'sm' ? show : false,
);
2018-03-17 18:26:18 +05:30
this.$sidebar.removeClass('sidebar-collapsed-desktop');
2017-09-10 17:25:29 +05:30
}
2019-03-02 22:35:43 +05:30
toggleCollapsedSidebar(collapsed, saveCookie) {
2017-09-10 17:25:29 +05:30
const breakpoint = bp.getBreakpointSize();
2019-07-07 11:18:12 +05:30
const dbp = ContextualSidebar.isDesktopBreakpoint();
2017-09-10 17:25:29 +05:30
if (this.$sidebar.length) {
2018-03-17 18:26:18 +05:30
this.$sidebar.toggleClass('sidebar-collapsed-desktop', collapsed);
2019-07-07 11:18:12 +05:30
this.$sidebar.toggleClass('sidebar-expanded-mobile', !dbp ? !collapsed : false);
this.$page.toggleClass(
'page-with-icon-sidebar',
breakpoint === 'xs' || breakpoint === 'sm' ? true : collapsed,
);
2017-09-10 17:25:29 +05:30
}
2018-03-17 18:26:18 +05:30
2019-03-02 22:35:43 +05:30
if (saveCookie) {
ContextualSidebar.setCollapsedCookie(collapsed);
}
requestIdleCallback(() => this.toggleSidebarOverflow());
2018-03-17 18:26:18 +05:30
}
toggleSidebarOverflow() {
if (this.$innerScroll.prop('scrollHeight') > this.$innerScroll.prop('offsetHeight')) {
this.$innerScroll.css('overflow-y', 'scroll');
} else {
this.$innerScroll.css('overflow-y', '');
}
2017-09-10 17:25:29 +05:30
}
render() {
2019-03-02 22:35:43 +05:30
if (!this.$sidebar.length) return;
2019-07-07 11:18:12 +05:30
if (!ContextualSidebar.isDesktopBreakpoint()) {
this.toggleSidebarNav(false);
} else {
2019-02-15 15:39:39 +05:30
const collapse = parseBoolean(Cookies.get('sidebar_collapsed'));
2019-07-07 11:18:12 +05:30
this.toggleCollapsedSidebar(collapse, true);
2017-09-10 17:25:29 +05:30
}
}
}