summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/cycle_analytics/components/banner.vue
blob: 732697c134e5d2321444e057cf000c03311f288a (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
<script>
  import iconCycleAnalyticsSplash from 'icons/_icon_cycle_analytics_splash.svg';

  export default {
    props: {
      documentationLink: {
        type: String,
        required: true,
      },
    },
    computed: {
      iconCycleAnalyticsSplash() {
        return iconCycleAnalyticsSplash;
      },
    },
    methods: {
      dismissOverviewDialog() {
        this.$emit('dismiss-overview-dialog');
      },
    },
  };
</script>
<template>
  <div class="landing content-block">
    <button
      class="js-ca-dismiss-button dismiss-button"
      type="button"
      :aria-label="__('Dismiss Cycle Analytics introduction box')"
      @click="dismissOverviewDialog">
      <i
        class="fa fa-times"
        aria-hidden="true">
      </i>
    </button>
    <div class="svg-container" v-html="iconCycleAnalyticsSplash">
    </div>
    <div class="inner-content">
      <h4>
        {{__('Introducing Cycle Analytics')}}
      </h4>
      <p>
        {{ __('Cycle Analytics gives an overview of how much time it takes to go from idea to production in your project.') }}
      </p>
      <p>
        <a
          :href="documentationLink"
          target="_blank"
          rel="nofollow"
          class="btn">
          {{__('Read more')}}
        </a>
      </p>
    </div>
  </div>
</template>