33 lines
789 B
JavaScript
33 lines
789 B
JavaScript
import Vue from 'vue';
|
|
import { parseBoolean } from '~/lib/utils/common_utils';
|
|
import createRouter from '~/repository/router';
|
|
import UploadButton from './details/upload_button.vue';
|
|
|
|
export const initUploadFileTrigger = () => {
|
|
const uploadFileTriggerEl = document.querySelector('.js-upload-file-trigger');
|
|
|
|
if (!uploadFileTriggerEl) return false;
|
|
|
|
const {
|
|
targetBranch,
|
|
originalBranch,
|
|
canPushCode,
|
|
path,
|
|
projectPath,
|
|
} = uploadFileTriggerEl.dataset;
|
|
|
|
return new Vue({
|
|
el: uploadFileTriggerEl,
|
|
router: createRouter(projectPath, originalBranch),
|
|
provide: {
|
|
targetBranch,
|
|
originalBranch,
|
|
canPushCode: parseBoolean(canPushCode),
|
|
path,
|
|
projectPath,
|
|
},
|
|
render(h) {
|
|
return h(UploadButton);
|
|
},
|
|
});
|
|
};
|