gitlab-org--gitlab-foss/app/assets/javascripts/layout_nav.js

59 lines
2.0 KiB
JavaScript
Raw Normal View History

2017-01-12 03:49:57 +00:00
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-arrow-callback, no-unused-vars, one-var, one-var-declaration-per-line, vars-on-top, max-len */
2017-04-24 14:52:53 +00:00
import _ from 'underscore';
2017-01-12 03:49:57 +00:00
2016-07-24 20:45:11 +00:00
(function() {
var hideEndFade;
hideEndFade = function($scrollingTabs) {
return $scrollingTabs.each(function() {
var $this;
$this = $(this);
return $this.siblings('.fade-right').toggleClass('scrolling', $this.width() < $this.prop('scrollWidth'));
});
};
$(document).on('init.scrolling-tabs', () => {
const $scrollingTabs = $('.scrolling-tabs').not('.is-initialized');
$scrollingTabs.addClass('is-initialized');
hideEndFade($scrollingTabs);
2016-07-24 20:45:11 +00:00
$(window).off('resize.nav').on('resize.nav', function() {
return hideEndFade($scrollingTabs);
2016-07-24 20:45:11 +00:00
});
$scrollingTabs.off('scroll').on('scroll', function(event) {
2016-07-24 20:45:11 +00:00
var $this, currentPosition, maxPosition;
$this = $(this);
currentPosition = $this.scrollLeft();
maxPosition = $this.prop('scrollWidth') - $this.outerWidth();
$this.siblings('.fade-left').toggleClass('scrolling', currentPosition > 0);
return $this.siblings('.fade-right').toggleClass('scrolling', currentPosition < maxPosition - 1);
});
$scrollingTabs.each(function () {
2017-01-12 03:49:57 +00:00
var $this = $(this);
var scrollingTabWidth = $this.width();
var $active = $this.find('.active');
var activeWidth = $active.width();
if ($active.length) {
var offset = $active.offset().left + activeWidth;
if (offset > scrollingTabWidth - 30) {
var scrollLeft = scrollingTabWidth / 2;
scrollLeft = (offset - scrollLeft) - (activeWidth / 2);
$this.scrollLeft(scrollLeft);
}
}
});
2016-07-24 20:45:11 +00:00
});
2017-04-24 14:52:53 +00:00
function applyScrollNavClass() {
2017-05-12 14:42:09 +00:00
const scrollOpacityHeight = 40;
$('.navbar-border').css('opacity', Math.min($(window).scrollTop() / scrollOpacityHeight, 1));
2017-04-24 14:52:53 +00:00
}
2017-05-12 14:42:09 +00:00
$(() => {
$(window).on('scroll', _.throttle(applyScrollNavClass, 100));
});
}).call(window);