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/projects/experiment_new_project_creation/components/welcome.vue')
-rw-r--r--app/assets/javascripts/projects/experiment_new_project_creation/components/welcome.vue66
1 files changed, 0 insertions, 66 deletions
diff --git a/app/assets/javascripts/projects/experiment_new_project_creation/components/welcome.vue b/app/assets/javascripts/projects/experiment_new_project_creation/components/welcome.vue
deleted file mode 100644
index d342ce4c9c2..00000000000
--- a/app/assets/javascripts/projects/experiment_new_project_creation/components/welcome.vue
+++ /dev/null
@@ -1,66 +0,0 @@
-<script>
-/* eslint-disable vue/no-v-html */
-import Tracking from '~/tracking';
-import { NEW_REPO_EXPERIMENT } from '../constants';
-import NewProjectPushTipPopover from './new_project_push_tip_popover.vue';
-
-const trackingMixin = Tracking.mixin({ ...gon.tracking_data, experiment: NEW_REPO_EXPERIMENT });
-
-export default {
- components: {
- NewProjectPushTipPopover,
- },
- mixins: [trackingMixin],
- props: {
- panels: {
- type: Array,
- required: true,
- },
- },
-};
-</script>
-<template>
- <div class="container">
- <div class="blank-state-welcome">
- <h2 class="blank-state-welcome-title gl-mt-5! gl-mb-3!">
- {{ s__('ProjectsNew|Create new project') }}
- </h2>
- <p div class="blank-state-text">&nbsp;</p>
- </div>
- <div class="row blank-state-row">
- <a
- v-for="panel in panels"
- :key="panel.name"
- :href="`#${panel.name}`"
- :data-qa-selector="`${panel.name}_link`"
- class="blank-state blank-state-link experiment-new-project-page-blank-state"
- @click="track('click_tab', { label: panel.name })"
- >
- <div class="blank-state-icon gl-text-white" v-html="panel.illustration"></div>
- <div class="blank-state-body gl-pl-4!">
- <h3 class="blank-state-title experiment-new-project-page-blank-state-title">
- {{ panel.title }}
- </h3>
- <p class="blank-state-text">
- {{ panel.description }}
- </p>
- </div>
- </a>
- </div>
- <div class="blank-state-welcome">
- <p>
- {{ __('You can also create a project from the command line.') }}
- <a
- ref="clipTip"
- href="#"
- click.prevent
- class="push-new-project-tip"
- rel="noopener noreferrer"
- >
- {{ __('Show command') }}
- </a>
- <new-project-push-tip-popover :target="() => $refs.clipTip" />
- </p>
- </div>
- </div>
-</template>