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

feedback_banner.vue « components « subscriptions « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d6117b836d9005a421c10952f8c3716556d854d (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
<script>
import { GlBanner } from '@gitlab/ui';
import ChatBubbleSvg from '@gitlab/svgs/dist/illustrations/chat-bubble-sm.svg?url';
import { s__, __ } from '~/locale';
import LocalStorageSync from '~/vue_shared/components/local_storage_sync.vue';

export default {
  components: {
    GlBanner,
    LocalStorageSync,
  },

  data() {
    return {
      feedbackBannerDismissed: false,
    };
  },

  methods: {
    handleBannerClose() {
      this.feedbackBannerDismissed = true;
    },
  },

  i18n: {
    title: s__('JiraConnect|Tell us what you think!'),
    body: s__(
      'JiraConnect|We would love to learn more about your experience with the GitLab for Jira Cloud App.',
    ),
    dismissLabel: __('Dismiss'),
    buttonText: __('Give feedback'),
  },
  feedbackBannerKey: 'jira_connect_feedback_banner',
  feedbackIssueUrl: 'https://gitlab.com/gitlab-org/gitlab/-/issues/413652',
  buttonAttributes: {
    target: '_blank',
  },
  ChatBubbleSvg,
};
</script>

<template>
  <local-storage-sync v-model="feedbackBannerDismissed" :storage-key="$options.feedbackBannerKey">
    <gl-banner
      v-if="!feedbackBannerDismissed"
      :title="$options.i18n.title"
      :button-attributes="$options.buttonAttributes"
      :button-text="$options.i18n.buttonText"
      :button-link="$options.feedbackIssueUrl"
      :dismiss-label="$options.i18n.dismissLabel"
      :svg-path="$options.ChatBubbleSvg"
      @close="handleBannerClose"
    >
      <p>{{ $options.i18n.body }}</p>
    </gl-banner>
  </local-storage-sync>
</template>