summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar_height_manager.js
blob: 022415f22b2cffb08f8707772b230f5180ae5717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
export default {
  init() {
    if (!this.initialized) {
      this.$window = $(window);
      this.$rightSidebar = $('.js-right-sidebar');
      this.$navHeight = $('.navbar-gitlab').outerHeight() +
        $('.layout-nav').outerHeight() +
        $('.sub-nav-scroll').outerHeight();

      const throttledSetSidebarHeight = _.throttle(() => this.setSidebarHeight(), 20);
      const debouncedSetSidebarHeight = _.debounce(() => this.setSidebarHeight(), 200);

      this.$window.on('scroll', throttledSetSidebarHeight);
      this.$window.on('resize', debouncedSetSidebarHeight);
      this.initialized = true;
    }
  },

  setSidebarHeight() {
    const currentScrollDepth = window.pageYOffset || 0;
    const diff = this.$navHeight - currentScrollDepth;

    if (diff > 0) {
      const newSidebarHeight = window.innerHeight - diff;
      this.$rightSidebar.outerHeight(newSidebarHeight);
      this.sidebarHeightIsCustom = true;
    } else if (this.sidebarHeightIsCustom) {
      this.$rightSidebar.outerHeight('100%');
      this.sidebarHeightIsCustom = false;
    }
  },
};