summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/terraform_notification/components/terraform_notification.vue
blob: 668cc10c4549fe725ca2bd82f70fcf0f5da23cb5 (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
<script>
import { GlBanner } from '@gitlab/ui';
import { helpPagePath } from '~/helpers/help_page_helper';
import { s__ } from '~/locale';
import Tracking from '~/tracking';
import UserCalloutDismisser from '~/vue_shared/components/user_callout_dismisser.vue';
import { EVENT_LABEL, DISMISS_EVENT, CLICK_EVENT } from '../constants';

const trackingMixin = Tracking.mixin({ label: EVENT_LABEL });

export default {
  name: 'TerraformNotification',
  i18n: {
    title: s__('TerraformBanner|Using Terraform? Try the GitLab Managed Terraform State'),
    description: s__(
      'TerraformBanner|The GitLab managed Terraform state backend can store your Terraform state easily and securely, and spares you from setting up additional remote resources. Its features include: versioning, encryption of the state file both in transit and at rest, locking, and remote Terraform plan/apply execution.',
    ),
    buttonText: s__("TerraformBanner|Learn more about GitLab's Backend State"),
  },
  components: {
    GlBanner,
    UserCalloutDismisser,
  },
  mixins: [trackingMixin],
  inject: ['terraformImagePath'],
  computed: {
    docsUrl() {
      return helpPagePath('user/infrastructure/iac/terraform_state.md');
    },
  },
  methods: {
    handleClose() {
      this.track(DISMISS_EVENT);
      this.$refs.calloutDismisser.dismiss();
    },
    buttonClick() {
      this.track(CLICK_EVENT);
    },
  },
};
</script>
<template>
  <user-callout-dismisser ref="calloutDismisser" feature-name="terraform_notification_dismissed">
    <template #default="{ shouldShowCallout }">
      <div v-if="shouldShowCallout" class="gl-py-5">
        <gl-banner
          :title="$options.i18n.title"
          :button-text="$options.i18n.buttonText"
          :button-link="docsUrl"
          :svg-path="terraformImagePath"
          variant="promotion"
          @primary="buttonClick"
          @close="handleClose"
        >
          <p>{{ $options.i18n.description }}</p>
        </gl-banner>
      </div>
    </template>
  </user-callout-dismisser>
</template>