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

welcome.vue « components « experiment_new_project_creation « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 022328cd8a2a63186155ee0544a2ed46b0caa91c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<script>
/* eslint-disable vue/no-v-html */
import { GlPopover } from '@gitlab/ui';
import Tracking from '~/tracking';
import LegacyContainer from './legacy_container.vue';

const trackingMixin = Tracking.mixin(gon.tracking_data);

export default {
  components: {
    GlPopover,
    LegacyContainer,
  },
  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" 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
          id="cli-tip"
          href="#"
          click.prevent
          class="push-new-project-tip"
          data-title="Push to create a project"
          rel="noopener noreferrer"
        >
          {{ __('Show command') }}
        </a>

        <gl-popover target="cli-tip" triggers="click blur" placement="top">
          <legacy-container selector=".push-new-project-tip-template" />
        </gl-popover>
      </p>
    </div>
  </div>
</template>