2018-03-17 18:26:18 +05:30
|
|
|
import Vue from 'vue';
|
2022-03-02 08:16:31 +05:30
|
|
|
import { parseBoolean } from '~/lib/utils/common_utils';
|
2018-03-17 18:26:18 +05:30
|
|
|
import settingsPanel from './components/settings_panel.vue';
|
|
|
|
|
|
|
|
export default function initProjectPermissionsSettings() {
|
|
|
|
const mountPoint = document.querySelector('.js-project-permissions-form');
|
|
|
|
const componentPropsEl = document.querySelector('.js-project-permissions-form-data');
|
|
|
|
const componentProps = JSON.parse(componentPropsEl.innerHTML);
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
const {
|
|
|
|
targetFormId,
|
|
|
|
additionalInformation,
|
|
|
|
confirmDangerMessage,
|
|
|
|
confirmButtonText,
|
|
|
|
showVisibilityConfirmModal,
|
|
|
|
htmlConfirmationMessage,
|
|
|
|
phrase: confirmationPhrase,
|
|
|
|
} = mountPoint.dataset;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
return new Vue({
|
|
|
|
el: mountPoint,
|
2022-03-02 08:16:31 +05:30
|
|
|
provide: {
|
|
|
|
additionalInformation,
|
|
|
|
confirmDangerMessage,
|
|
|
|
confirmButtonText,
|
|
|
|
htmlConfirmationMessage: parseBoolean(htmlConfirmationMessage),
|
|
|
|
},
|
|
|
|
render: (createElement) =>
|
|
|
|
createElement(settingsPanel, {
|
|
|
|
props: {
|
|
|
|
...componentProps,
|
|
|
|
confirmationPhrase,
|
|
|
|
showVisibilityConfirmModal: parseBoolean(showVisibilityConfirmModal),
|
|
|
|
},
|
|
|
|
on: {
|
|
|
|
confirm: () => {
|
|
|
|
if (targetFormId) document.getElementById(targetFormId)?.submit();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
}
|