summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/admin/cohorts/components/usage_ping_disabled.vue
blob: 2ea55d44420edfe9d5060ab072f18590643f41fc (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
<script>
import { GlEmptyState, GlSprintf, GlLink } from '@gitlab/ui';

export default {
  components: {
    GlEmptyState,
    GlSprintf,
    GlLink,
  },
  inject: {
    svgPath: {
      type: String,
    },
    docsLink: {
      type: String,
    },
    primaryButtonPath: {
      type: String,
    },
  },
};
</script>
<template>
  <gl-empty-state
    class="js-empty-state"
    :title="__('Activate user activity analysis')"
    :svg-path="svgPath"
    :primary-button-text="__('Turn on usage ping')"
    :primary-button-link="primaryButtonPath"
  >
    <template #description>
      <gl-sprintf
        :message="
          __(
            'Turn on %{strongStart}usage ping%{strongEnd} to activate analysis of user activity, known as %{docLinkStart}Cohorts%{docLinkEnd}.',
          )
        "
      >
        <template #docLink="{content}">
          <gl-link :href="docsLink" target="_blank">{{ content }}</gl-link>
        </template>
        <template #strong="{ content }"
          ><strong>{{ content }}</strong></template
        >
      </gl-sprintf>
    </template>
  </gl-empty-state>
</template>