2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
2017-10-20 19:14:55 -04:00
|
|
|
import ContextualSidebar from './contextual_sidebar';
|
2017-07-19 05:36:08 -04:00
|
|
|
import initFlyOutNav from './fly_out_nav';
|
2017-01-11 22:49:57 -05:00
|
|
|
|
2017-12-19 03:32:51 -05:00
|
|
|
function hideEndFade($scrollingTabs) {
|
|
|
|
$scrollingTabs.each(function scrollTabsLoop() {
|
|
|
|
const $this = $(this);
|
2018-10-10 03:13:34 -04:00
|
|
|
$this
|
|
|
|
.siblings('.fade-right')
|
|
|
|
.toggleClass('scrolling', Math.round($this.width()) < $this.prop('scrollWidth'));
|
2017-12-19 03:32:51 -05:00
|
|
|
});
|
|
|
|
}
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
function initDeferred() {
|
|
|
|
$(document).trigger('init.scrolling-tabs');
|
2020-09-08 17:08:53 -04:00
|
|
|
|
|
|
|
const whatsNewTriggerEl = document.querySelector('.js-whats-new-trigger');
|
|
|
|
if (whatsNewTriggerEl) {
|
2020-09-28 14:09:40 -04:00
|
|
|
const storageKey = whatsNewTriggerEl.getAttribute('data-storage-key');
|
|
|
|
|
|
|
|
$('.header-help').on('show.bs.dropdown', () => {
|
|
|
|
const displayNotification = JSON.parse(localStorage.getItem(storageKey));
|
|
|
|
if (displayNotification === false) {
|
|
|
|
$('.js-whats-new-notification-count').remove();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-09-08 17:08:53 -04:00
|
|
|
whatsNewTriggerEl.addEventListener('click', () => {
|
|
|
|
import(/* webpackChunkName: 'whatsNewApp' */ '~/whats_new')
|
|
|
|
.then(({ default: initWhatsNew }) => {
|
|
|
|
initWhatsNew();
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
});
|
|
|
|
}
|
2019-01-15 07:35:16 -05:00
|
|
|
}
|
|
|
|
|
2017-12-19 03:32:51 -05:00
|
|
|
export default function initLayoutNav() {
|
|
|
|
const contextualSidebar = new ContextualSidebar();
|
|
|
|
contextualSidebar.bindEvents();
|
|
|
|
|
|
|
|
initFlyOutNav();
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
// We need to init it on DomContentLoaded as others could also call it
|
|
|
|
$(document).on('init.scrolling-tabs', () => {
|
|
|
|
const $scrollingTabs = $('.scrolling-tabs').not('.is-initialized');
|
|
|
|
$scrollingTabs.addClass('is-initialized');
|
2016-09-15 04:38:47 -04:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
$(window)
|
|
|
|
.on('resize.nav', () => {
|
|
|
|
hideEndFade($scrollingTabs);
|
|
|
|
})
|
|
|
|
.trigger('resize.nav');
|
2017-12-19 03:32:51 -05:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
$scrollingTabs.on('scroll', function tabsScrollEvent() {
|
|
|
|
const $this = $(this);
|
|
|
|
const currentPosition = $this.scrollLeft();
|
|
|
|
const maxPosition = $this.prop('scrollWidth') - $this.outerWidth();
|
2017-12-19 03:32:51 -05:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
$this.siblings('.fade-left').toggleClass('scrolling', currentPosition > 0);
|
|
|
|
$this.siblings('.fade-right').toggleClass('scrolling', currentPosition < maxPosition - 1);
|
|
|
|
});
|
2016-09-15 04:38:47 -04:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
$scrollingTabs.each(function scrollTabsEachLoop() {
|
|
|
|
const $this = $(this);
|
|
|
|
const scrollingTabWidth = $this.width();
|
|
|
|
const $active = $this.find('.active');
|
|
|
|
const activeWidth = $active.width();
|
2016-09-15 04:38:47 -04:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
if ($active.length) {
|
|
|
|
const offset = $active.offset().left + activeWidth;
|
2016-09-16 08:52:06 -04:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
if (offset > scrollingTabWidth - 30) {
|
|
|
|
const scrollLeft = offset - scrollingTabWidth / 2 - activeWidth / 2;
|
2017-12-19 03:32:51 -05:00
|
|
|
|
2019-01-15 07:35:16 -05:00
|
|
|
$this.scrollLeft(scrollLeft);
|
2016-09-16 08:52:06 -04:00
|
|
|
}
|
2019-01-15 07:35:16 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
requestIdleCallback(initDeferred);
|
2017-12-19 03:32:51 -05:00
|
|
|
}
|