debian-mirror-gitlab/app/assets/javascripts/feature_highlight/feature_highlight_helper.js

20 lines
549 B
JavaScript
Raw Normal View History

2021-03-11 19:13:27 +05:30
import { deprecatedCreateFlash as Flash } from '~/flash';
2018-03-17 18:26:18 +05:30
import axios from '../lib/utils/axios_utils';
import { __ } from '../locale';
2021-03-08 18:12:59 +05:30
export const getSelector = (highlightId) => `.js-feature-highlight[data-highlight=${highlightId}]`;
2018-03-17 18:26:18 +05:30
2021-03-11 19:13:27 +05:30
export function dismiss(endpoint, highlightId) {
return axios
.post(endpoint, {
2018-12-13 13:39:08 +05:30
feature_name: highlightId,
})
.catch(() =>
Flash(
__(
'An error occurred while dismissing the feature highlight. Refresh the page and try dismissing again.',
),
),
);
2018-03-17 18:26:18 +05:30
}