summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/show/components/incidents/timeline_events_tags_popover.vue
blob: 772a16e9ba21ba64b00fbeb2efba2ce3f2ed6ae0 (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
<script>
import { GlIcon, GlPopover, GlLink } from '@gitlab/ui';
import { helpPagePath } from '~/helpers/help_page_helper';
import { timelineEventTagsPopover } from './constants';

export default {
  name: 'TimelineEventsTagsPopover',
  components: {
    GlIcon,
    GlPopover,
    GlLink,
  },
  i18n: timelineEventTagsPopover,
  learnMoreLink: helpPagePath('ee/operations/incident_management/incident_timeline_events', {
    anchor: 'incident-tags',
  }),
};
</script>

<template>
  <span>
    <gl-icon id="timeline-events-tag-question" name="question-o" class="gl-text-blue-600" />

    <gl-popover
      target="timeline-events-tag-question"
      triggers="hover focus"
      placement="top"
      container="viewport"
      :title="$options.i18n.title"
    >
      <div>
        <p class="gl-mb-0">
          {{ $options.i18n.message }}
        </p>
        <gl-link target="_blank" class="gl-font-sm" :href="$options.learnMoreLink">{{
          $options.i18n.link
        }}</gl-link
        >.
      </div>
    </gl-popover>
  </span>
</template>