summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/dismissable_callout.js
blob: 5185b019376cb1c28df45aad2b4bafd9acdbf08f (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
import $ from 'jquery';
import axios from '~/lib/utils/axios_utils';
import { __ } from '~/locale';
import Flash from '~/flash';

export default function initDismissableCallout(alertSelector) {
  const alertEl = document.querySelector(alertSelector);
  if (!alertEl) {
    return;
  }

  const closeButtonEl = alertEl.getElementsByClassName('close')[0];
  const { dismissEndpoint, featureId } = closeButtonEl.dataset;

  closeButtonEl.addEventListener('click', () => {
    axios
      .post(dismissEndpoint, {
        feature_name: featureId,
      })
      .then(() => {
        $(alertEl).alert('close');
      })
      .catch(() => {
        Flash(__('An error occurred while dismissing the alert. Refresh the page and try again.'));
      });
  });
}