2020-07-28 23:09:34 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import { parseBoolean } from '~/lib/utils/common_utils';
|
|
|
|
import SettingsTabs from './components/incidents_settings_tabs.vue';
|
|
|
|
import IncidentsSettingsService from './incidents_settings_service';
|
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const el = document.querySelector('.js-incidents-settings');
|
|
|
|
|
|
|
|
if (!el) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const {
|
|
|
|
dataset: {
|
|
|
|
operationsSettingsEndpoint,
|
|
|
|
pagerdutyActive,
|
|
|
|
pagerdutyWebhookUrl,
|
|
|
|
pagerdutyResetKeyPath,
|
2021-01-03 14:25:43 +05:30
|
|
|
slaActive,
|
|
|
|
slaMinutes,
|
|
|
|
slaFeatureAvailable,
|
2020-07-28 23:09:34 +05:30
|
|
|
},
|
|
|
|
} = el;
|
|
|
|
|
|
|
|
const service = new IncidentsSettingsService(operationsSettingsEndpoint, pagerdutyResetKeyPath);
|
|
|
|
return new Vue({
|
|
|
|
el,
|
|
|
|
provide: {
|
|
|
|
service,
|
|
|
|
pagerDutySettings: {
|
|
|
|
active: parseBoolean(pagerdutyActive),
|
|
|
|
webhookUrl: pagerdutyWebhookUrl,
|
|
|
|
},
|
2021-01-03 14:25:43 +05:30
|
|
|
serviceLevelAgreementSettings: {
|
|
|
|
active: parseBoolean(slaActive),
|
|
|
|
minutes: slaMinutes,
|
|
|
|
available: parseBoolean(slaFeatureAvailable),
|
|
|
|
},
|
2020-07-28 23:09:34 +05:30
|
|
|
},
|
|
|
|
render(createElement) {
|
|
|
|
return createElement(SettingsTabs);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|