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: 7b4bed69fb8bf5978b8b190631b54bc3791c62a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { deprecatedCreateFlash as Flash } from '~/flash';
import axios from '../lib/utils/axios_utils';
import { __ } from '../locale';

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

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