debian-mirror-gitlab/app/assets/javascripts/profile/preferences/profile_preferences_bundle.js
2023-03-17 16:20:25 +05:30

30 lines
852 B
JavaScript

import Vue from 'vue';
import { initListboxInputs } from '~/vue_shared/components/listbox_input/init_listbox_inputs';
import ProfilePreferences from './components/profile_preferences.vue';
export default () => {
initListboxInputs();
const el = document.querySelector('#js-profile-preferences-app');
const formEl = document.querySelector('#profile-preferences-form');
const shouldParse = ['integrationViews', 'themes', 'userFields'];
const provide = Object.keys(el.dataset).reduce(
(memo, key) => {
let value = el.dataset[key];
if (shouldParse.includes(key)) {
value = JSON.parse(value);
}
return { ...memo, [key]: value };
},
{ formEl },
);
return new Vue({
el,
name: 'ProfilePreferencesApp',
provide,
render: (createElement) => createElement(ProfilePreferences),
});
};