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/ci/inherited_ci_variables/index.js')
-rw-r--r--app/assets/javascripts/ci/inherited_ci_variables/index.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/app/assets/javascripts/ci/inherited_ci_variables/index.js b/app/assets/javascripts/ci/inherited_ci_variables/index.js
new file mode 100644
index 00000000000..324aae2a573
--- /dev/null
+++ b/app/assets/javascripts/ci/inherited_ci_variables/index.js
@@ -0,0 +1,36 @@
+import Vue from 'vue';
+import VueApollo from 'vue-apollo';
+import createDefaultClient from '~/lib/graphql';
+import { generateCacheConfig, resolvers } from '../ci_variable_list/graphql/settings';
+import InheritedCiVariables from './components/inherited_ci_variables_app.vue';
+
+export default (containerId = 'js-inherited-group-ci-variables') => {
+ const el = document.getElementById(containerId);
+
+ if (!el) {
+ return;
+ }
+
+ const { projectPath } = el.dataset;
+
+ Vue.use(VueApollo);
+ const apolloProvider = new VueApollo({
+ defaultClient: createDefaultClient(
+ resolvers,
+ generateCacheConfig(false), // set to true if we're using key-set pagination
+ ),
+ });
+
+ // eslint-disable-next-line consistent-return
+ return new Vue({
+ el,
+ apolloProvider,
+ provide: {
+ isInheritedGroupVars: true,
+ projectPath,
+ },
+ render(createElement) {
+ return createElement(InheritedCiVariables);
+ },
+ });
+};