2021-02-22 17:27:13 +05:30
|
|
|
import Vue from 'vue';
|
2021-06-08 01:23:25 +05:30
|
|
|
import VueApollo from 'vue-apollo';
|
|
|
|
import createDefaultClient from '~/lib/graphql';
|
2021-02-22 17:27:13 +05:30
|
|
|
import { convertObjectPropsToCamelCase } from '~/lib/utils/common_utils';
|
2021-09-30 23:02:18 +05:30
|
|
|
import csrf from '~/lib/utils/csrf';
|
2021-02-22 17:27:13 +05:30
|
|
|
import AdminUsersApp from './components/app.vue';
|
2022-06-21 17:19:12 +05:30
|
|
|
import DeleteUserModal from './components/modals/delete_user_modal.vue';
|
2021-09-30 23:02:18 +05:30
|
|
|
import UserActions from './components/user_actions.vue';
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
Vue.use(VueApollo);
|
|
|
|
|
|
|
|
const apolloProvider = new VueApollo({
|
2021-12-11 22:18:48 +05:30
|
|
|
defaultClient: createDefaultClient(),
|
2021-06-08 01:23:25 +05:30
|
|
|
});
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
const initApp = (el, component, userPropKey, props = {}) => {
|
2021-02-22 17:27:13 +05:30
|
|
|
if (!el) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
const { [userPropKey]: user, paths } = el.dataset;
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
return new Vue({
|
|
|
|
el,
|
2021-06-08 01:23:25 +05:30
|
|
|
apolloProvider,
|
2021-03-08 18:12:59 +05:30
|
|
|
render: (createElement) =>
|
2021-09-30 23:02:18 +05:30
|
|
|
createElement(component, {
|
2021-02-22 17:27:13 +05:30
|
|
|
props: {
|
2021-09-30 23:02:18 +05:30
|
|
|
[userPropKey]: convertObjectPropsToCamelCase(JSON.parse(user), { deep: true }),
|
2021-02-22 17:27:13 +05:30
|
|
|
paths: convertObjectPropsToCamelCase(JSON.parse(paths)),
|
2021-09-30 23:02:18 +05:30
|
|
|
...props,
|
2021-02-22 17:27:13 +05:30
|
|
|
},
|
|
|
|
}),
|
|
|
|
});
|
2021-03-11 19:13:27 +05:30
|
|
|
};
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
export const initAdminUsersApp = (el = document.querySelector('#js-admin-users-app')) =>
|
|
|
|
initApp(el, AdminUsersApp, 'users');
|
|
|
|
|
|
|
|
export const initAdminUserActions = (el = document.querySelector('#js-admin-user-actions')) =>
|
|
|
|
initApp(el, UserActions, 'user', { showButtonLabels: true });
|
|
|
|
|
|
|
|
export const initDeleteUserModals = () => {
|
2022-06-21 17:19:12 +05:30
|
|
|
return new Vue({
|
2021-09-30 23:02:18 +05:30
|
|
|
functional: true,
|
2022-06-21 17:19:12 +05:30
|
|
|
render: (createElement) =>
|
|
|
|
createElement(DeleteUserModal, {
|
2021-09-30 23:02:18 +05:30
|
|
|
props: {
|
|
|
|
csrfToken: csrf.token,
|
|
|
|
},
|
2022-06-21 17:19:12 +05:30
|
|
|
}),
|
|
|
|
}).$mount();
|
2021-09-30 23:02:18 +05:30
|
|
|
};
|