debian-mirror-gitlab/app/assets/javascripts/alerts_service_settings/index.js

40 lines
820 B
JavaScript
Raw Normal View History

2020-03-13 15:44:24 +05:30
import Vue from 'vue';
import { parseBoolean } from '~/lib/utils/common_utils';
import AlertsServiceForm from './components/alerts_service_form.vue';
2021-03-08 18:12:59 +05:30
export default (el) => {
2020-03-13 15:44:24 +05:30
if (!el) {
return null;
}
2020-06-23 00:09:42 +05:30
const {
activated: activatedStr,
alertsSetupUrl,
alertsUsageUrl,
formPath,
authorizationKey,
url,
2020-07-28 23:09:34 +05:30
disabled,
2020-06-23 00:09:42 +05:30
} = el.dataset;
2020-07-28 23:09:34 +05:30
2020-03-13 15:44:24 +05:30
const activated = parseBoolean(activatedStr);
2020-07-28 23:09:34 +05:30
const isDisabled = parseBoolean(disabled);
2020-03-13 15:44:24 +05:30
return new Vue({
el,
render(createElement) {
return createElement(AlertsServiceForm, {
props: {
2020-06-23 00:09:42 +05:30
alertsSetupUrl,
alertsUsageUrl,
2020-03-13 15:44:24 +05:30
initialActivated: activated,
formPath,
initialAuthorizationKey: authorizationKey,
url,
2020-07-28 23:09:34 +05:30
isDisabled,
2020-03-13 15:44:24 +05:30
},
});
},
});
};