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

feature_highlight_helper.js « feature_highlight « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd9433b625cf3a366eebcb43aee3eba5d96eaaba (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
import $ from 'jquery';
import axios from '../lib/utils/axios_utils';
import { __ } from '../locale';
import Flash from '../flash';
import LazyLoader from '../lazy_loader';
import { togglePopover } from '../shared/popover';

export const getSelector = highlightId => `.js-feature-highlight[data-highlight=${highlightId}]`;

export function dismiss(highlightId) {
  axios
    .post(this.attr('data-dismiss-endpoint'), {
      feature_name: highlightId,
    })
    .catch(() =>
      Flash(
        __(
          'An error occurred while dismissing the feature highlight. Refresh the page and try dismissing again.',
        ),
      ),
    );

  togglePopover.call(this, false);
  this.hide();
}

export function inserted() {
  const popoverId = this.getAttribute('aria-describedby');
  const highlightId = this.dataset.highlight;
  const $popover = $(this);
  const dismissWrapper = dismiss.bind($popover, highlightId);

  $(`#${popoverId} .dismiss-feature-highlight`).on('click', dismissWrapper);

  const lazyImg = $(`#${popoverId} .feature-highlight-illustration`)[0];
  if (lazyImg) {
    LazyLoader.loadImage(lazyImg);
  }
}