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

work_item_information.vue « components « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ff7ba169ea2e0d2f04a660b6d3a650b4ba79a7c (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 { GlAlert, GlSprintf, GlLink } from '@gitlab/ui';
import { s__ } from '~/locale';
import { helpPagePath } from '~/helpers/help_page_helper';

export default {
  i18n: {
    learnTasksButtonText: s__('WorkItem|Learn about tasks'),
    workItemsText: s__('WorkItem|work items'),
    tasksInformationTitle: s__('WorkItem|Introducing tasks'),
    tasksInformationBody: s__(
      'WorkItem|A task provides the ability to break down your work into smaller pieces tied to an issue. Tasks are the first items using our new %{workItemsLink} objects. Additional work item types will be coming soon.',
    ),
  },
  helpPageLinks: {
    tasksDocLinkPath: helpPagePath('user/tasks'),
    workItemsLinkPath: helpPagePath(`development/work_items`),
  },
  components: {
    GlAlert,
    GlSprintf,
    GlLink,
  },
  props: {
    showInfoBanner: {
      type: Boolean,
      required: false,
      default: true,
    },
  },
  emits: ['work-item-banner-dismissed'],
};
</script>

<template>
  <section class="gl-display-block gl-mb-2">
    <gl-alert
      v-if="showInfoBanner"
      variant="tip"
      :title="$options.i18n.tasksInformationTitle"
      :primary-button-link="$options.helpPageLinks.tasksDocLinkPath"
      :primary-button-text="$options.i18n.learnTasksButtonText"
      data-testid="work-item-information"
      class="gl-mt-3"
      @dismiss="$emit('work-item-banner-dismissed')"
    >
      <gl-sprintf :message="$options.i18n.tasksInformationBody">
        <template #workItemsLink>
          <gl-link :href="$options.helpPageLinks.workItemsLinkPath">{{
            $options.i18n.workItemsText
          }}</gl-link>
        </template>
        ></gl-sprintf
      >
    </gl-alert>
  </section>
</template>