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

graph_width_mixin.js « mixins « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2dbaa5a5c9a41f3010db72adf0489a6842f14afe (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
import { debounceByAnimationFrame } from '~/lib/utils/common_utils';
import { LAYOUT_CHANGE_DELAY } from '~/pipelines/constants';

export default {
  debouncedResize: null,
  sidebarMutationObserver: null,
  data() {
    return {
      graphLeftPadding: 0,
      graphRightPadding: 0,
    };
  },
  beforeDestroy() {
    window.removeEventListener('resize', this.$options.debouncedResize);

    if (this.$options.sidebarMutationObserver) {
      this.$options.sidebarMutationObserver.disconnect();
    }
  },
  created() {
    this.$options.debouncedResize = debounceByAnimationFrame(this.setGraphPadding);
    window.addEventListener('resize', this.$options.debouncedResize);
  },
  mounted() {
    this.setGraphPadding();

    this.$options.sidebarMutationObserver = new MutationObserver(this.handleLayoutChange);
    this.$options.sidebarMutationObserver.observe(document.querySelector('.layout-page'), {
      attributes: true,
      childList: false,
      subtree: false,
    });
  },
  methods: {
    setGraphPadding() {
      // only add padding to main graph (not inline upstream/downstream graphs)
      if (this.type && this.type !== 'main') return;

      const container = document.querySelector('.js-pipeline-container');
      if (!container) return;

      this.graphLeftPadding = container.offsetLeft;
      this.graphRightPadding = window.innerWidth - container.offsetLeft - container.offsetWidth;
    },
    handleLayoutChange() {
      // wait until animations finish, then recalculate padding
      window.setTimeout(this.setGraphPadding, LAYOUT_CHANGE_DELAY);
    },
  },
};