Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tree_list_height.vue « components « diffs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4da94cacd75d90d17ca317780f0d86478aca48f7 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<script>
import { debounce } from 'lodash';
// eslint-disable-next-line no-restricted-imports
import { mapState, mapGetters } from 'vuex';
import { contentTop } from '~/lib/utils/common_utils';

const MAX_ITEMS_ON_NARROW_SCREEN = 8;
// Should be enough for the very long titles (10+ lines) on the max smallest screen
const MAX_SCROLL_Y = 600;
const BOTTOM_OFFSET = 16;

export default {
  name: 'TreeListHeight',
  props: {
    itemsCount: {
      type: Number,
      required: true,
    },
  },
  data() {
    return {
      scrollerHeight: 0,
      rowHeight: 0,
      reviewBarHeight: 0,
      scrollY: 0,
      isNarrowScreen: false,
      mediaQueryMatch: null,
    };
  },
  computed: {
    ...mapState('batchComments', ['reviewBarRendered']),
    ...mapGetters('batchComments', ['draftsCount']),
    reviewBarEnabled() {
      return this.draftsCount > 0;
    },
    debouncedHeightCalc() {
      return debounce(this.calculateScrollerHeight, 100);
    },
    debouncedRecordScroll() {
      return debounce(this.recordScroll, 50);
    },
  },
  watch: {
    reviewBarRendered: {
      handler(rendered) {
        if (!rendered || this.reviewBarHeight) return;
        this.reviewBarHeight = document.querySelector('.js-review-bar').offsetHeight;
        this.debouncedHeightCalc();
      },
      immediate: true,
    },
    reviewBarEnabled: 'debouncedHeightCalc',
    scrollY: 'debouncedHeightCalc',
    isNarrowScreen: 'recordScroll',
  },
  mounted() {
    const computedStyles = getComputedStyle(this.$refs.scrollRoot);
    this.rowHeight = parseInt(computedStyles.getPropertyValue('--file-row-height'), 10);

    const largeBreakpointSize = parseInt(computedStyles.getPropertyValue('--breakpoint-lg'), 10);
    this.mediaQueryMatch = window.matchMedia(`(max-width: ${largeBreakpointSize - 1}px)`);
    this.isNarrowScreen = this.mediaQueryMatch.matches;
    this.mediaQueryMatch.addEventListener('change', this.handleMediaMatch);

    window.addEventListener('resize', this.debouncedHeightCalc, { passive: true });
    window.addEventListener('scroll', this.debouncedRecordScroll, { passive: true });

    this.calculateScrollerHeight();
  },
  beforeDestroy() {
    this.mediaQueryMatch.removeEventListener('change', this.handleMediaMatch);
    this.mediaQueryMatch = null;
    window.removeEventListener('resize', this.debouncedHeightCalc, { passive: true });
    window.removeEventListener('scroll', this.debouncedRecordScroll, { passive: true });
  },
  methods: {
    recordScroll() {
      const { scrollY } = window;
      if (scrollY > MAX_SCROLL_Y || this.isNarrowScreen) {
        this.scrollY = MAX_SCROLL_Y;
      } else {
        this.scrollY = window.scrollY;
      }
    },
    handleMediaMatch({ matches }) {
      this.isNarrowScreen = matches;
    },
    calculateScrollerHeight() {
      if (this.isNarrowScreen) {
        const maxItems = Math.min(MAX_ITEMS_ON_NARROW_SCREEN, this.itemsCount);
        const maxHeight = maxItems * this.rowHeight;
        this.scrollerHeight = Math.min(maxHeight, window.innerHeight - contentTop());
      } else {
        const { y } = this.$refs.scrollRoot.getBoundingClientRect();
        const reviewBarOffset = this.reviewBarEnabled ? this.reviewBarHeight : 0;
        // distance from element's top vertical position in the viewport to the bottom of the viewport minus offsets
        this.scrollerHeight = window.innerHeight - y - reviewBarOffset - BOTTOM_OFFSET;
      }
    },
  },
};
</script>

<template>
  <div ref="scrollRoot">
    <slot :scroller-height="scrollerHeight" :row-height="rowHeight"></slot>
  </div>
</template>