gitlab-ce/app/assets/javascripts/projects/settings/mount_shared_runners_toggle.js

40 lines
1009 B
JavaScript

import Vue from 'vue';
import { parseBoolean } from '~/lib/utils/common_utils';
import SharedRunnersToggle from '~/projects/settings/components/shared_runners_toggle.vue';
export default (containerId = 'toggle-shared-runners-form') => {
const containerEl = document.getElementById(containerId);
if (!containerEl) {
return null;
}
const {
// required
isDisabledAndUnoverridable,
isEnabled,
updatePath,
isCreditCardValidationRequired,
// optional
groupName,
groupSettingsPath,
} = containerEl.dataset;
return new Vue({
el: containerEl,
render(createElement) {
return createElement(SharedRunnersToggle, {
props: {
isDisabledAndUnoverridable: parseBoolean(isDisabledAndUnoverridable),
isEnabled: parseBoolean(isEnabled),
isCreditCardValidationRequired: parseBoolean(isCreditCardValidationRequired),
updatePath,
groupName,
groupSettingsPath,
},
});
},
});
};