Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/blob/filepath_form/index.js')
-rw-r--r--app/assets/javascripts/blob/filepath_form/index.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/assets/javascripts/blob/filepath_form/index.js b/app/assets/javascripts/blob/filepath_form/index.js
new file mode 100644
index 00000000000..bcb285ddf34
--- /dev/null
+++ b/app/assets/javascripts/blob/filepath_form/index.js
@@ -0,0 +1,41 @@
+import Vue from 'vue';
+import FilepathForm from './components/filepath_form.vue';
+
+const getPopoverData = (el) => ({
+ trackLabel: el.dataset.trackLabel,
+ dismissKey: el.dataset.dismissKey,
+ mergeRequestPath: el.dataset.mergeRequestPath,
+ humanAccess: el.dataset.humanAccess,
+});
+
+const getInputOptions = (el) => {
+ const { testid, qa_selector: qaSelector, ...options } = JSON.parse(el.dataset.inputOptions);
+ return {
+ ...options,
+ 'data-testid': testid,
+ };
+};
+
+export default ({ onTemplateSelected }) => {
+ const el = document.getElementById('js-template-selectors-menu');
+
+ const suggestCiYmlEl = document.querySelector('.js-suggest-gitlab-ci-yml');
+ const suggestCiYmlData = suggestCiYmlEl ? getPopoverData(suggestCiYmlEl) : undefined;
+
+ return new Vue({
+ el,
+ render(h) {
+ return h(FilepathForm, {
+ props: {
+ suggestCiYmlData,
+ inputOptions: getInputOptions(el),
+ templates: JSON.parse(el.dataset.templates),
+ initialTemplate: el.dataset.selected,
+ },
+ on: {
+ 'template-selected': onTemplateSelected,
+ },
+ });
+ },
+ });
+};