summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/prometheus_alerts/index.js
blob: 7efe6ed186ba0ee195a95780e413398cb166331e (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
import Vue from 'vue';
import ResetKey from './components/reset_key.vue';

export default () => {
  const el = document.querySelector('#js-settings-prometheus-alerts');

  if (!el) {
    return;
  }

  const { authorizationKey, changeKeyUrl, notifyUrl, learnMoreUrl, disabled } = el.dataset;

  // eslint-disable-next-line no-new
  new Vue({
    el,
    render(createElement) {
      return createElement(ResetKey, {
        props: {
          initialAuthorizationKey: authorizationKey,
          changeKeyUrl,
          notifyUrl,
          learnMoreUrl,
          disabled,
        },
      });
    },
  });
};