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

blob_fork_suggestion.js « blob « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3baf81905fe5d1f5c2da03f46a007bfb1c0de78d (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
const defaults = {
  // Buttons that will show the `suggestionSections`
  // has `data-fork-path`, and `data-action`
  openButtons: [],
  // Update the href(from `openButton` -> `data-fork-path`)
  // whenever a `openButton` is clicked
  forkButtons: [],
  // Buttons to hide the `suggestionSections`
  cancelButtons: [],
  // Section to show/hide
  suggestionSections: [],
  // Pieces of text that need updating depending on the action, `edit`, `replace`, `delete`
  actionTextPieces: [],
};

class BlobForkSuggestion {
  constructor(options) {
    this.elementMap = Object.assign({}, defaults, options);
    this.onClickWrapper = this.onClick.bind(this);

    document.addEventListener('click', this.onClickWrapper);
  }

  showSuggestionSection(forkPath, action = 'edit') {
    [].forEach.call(this.elementMap.suggestionSections, (suggestionSection) => {
      suggestionSection.classList.remove('hidden');
    });

    [].forEach.call(this.elementMap.forkButtons, (forkButton) => {
      forkButton.setAttribute('href', forkPath);
    });

    [].forEach.call(this.elementMap.actionTextPieces, (actionTextPiece) => {
      // eslint-disable-next-line no-param-reassign
      actionTextPiece.textContent = action;
    });
  }

  hideSuggestionSection() {
    [].forEach.call(this.elementMap.suggestionSections, (suggestionSection) => {
      suggestionSection.classList.add('hidden');
    });
  }

  onClick(e) {
    const el = e.target;

    if ([].includes.call(this.elementMap.openButtons, el)) {
      const { forkPath, action } = el.dataset;
      this.showSuggestionSection(forkPath, action);
    }

    if ([].includes.call(this.elementMap.cancelButtons, el)) {
      this.hideSuggestionSection();
    }
  }

  destroy() {
    document.removeEventListener('click', this.onClickWrapper);
  }
}

export default BlobForkSuggestion;