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/jobs/components/table/index.js')
-rw-r--r--app/assets/javascripts/jobs/components/table/index.js50
1 files changed, 0 insertions, 50 deletions
diff --git a/app/assets/javascripts/jobs/components/table/index.js b/app/assets/javascripts/jobs/components/table/index.js
deleted file mode 100644
index 88da1169e01..00000000000
--- a/app/assets/javascripts/jobs/components/table/index.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import { GlToast } from '@gitlab/ui';
-import Vue from 'vue';
-import VueApollo from 'vue-apollo';
-import JobsTableApp from '~/jobs/components/table/jobs_table_app.vue';
-import createDefaultClient from '~/lib/graphql';
-import { parseBoolean } from '~/lib/utils/common_utils';
-import cacheConfig from './graphql/cache_config';
-
-Vue.use(VueApollo);
-Vue.use(GlToast);
-
-const apolloProvider = new VueApollo({
- defaultClient: createDefaultClient(
- {},
- {
- cacheConfig,
- },
- ),
-});
-
-export default (containerId = 'js-jobs-table') => {
- const containerEl = document.getElementById(containerId);
-
- if (!containerEl) {
- return false;
- }
-
- const {
- fullPath,
- jobStatuses,
- pipelineEditorPath,
- emptyStateSvgPath,
- admin,
- } = containerEl.dataset;
-
- return new Vue({
- el: containerEl,
- apolloProvider,
- provide: {
- emptyStateSvgPath,
- fullPath,
- pipelineEditorPath,
- jobStatuses: JSON.parse(jobStatuses),
- admin: parseBoolean(admin),
- },
- render(createElement) {
- return createElement(JobsTableApp);
- },
- });
-};