summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/new/components/create_group_description_details.vue
blob: be8542628c4ab19da7f2376d174e5d51e2cbaaa5 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<script>
import { GlSprintf, GlLink } from '@gitlab/ui';
import { helpPagePath } from '~/helpers/help_page_helper';
import { s__ } from '~/locale';

const DESCRIPTION_DETAILS = {
  group: [
    s__(
      'GroupsNew|%{linkStart}Groups%{linkEnd} allow you to manage and collaborate across multiple projects. Members of a group have access to all of its projects.',
    ),
    s__('GroupsNew|Groups can also be nested by creating %{linkStart}subgroups%{linkEnd}.'),
  ],
  subgroup: [
    s__(
      'GroupsNew|%{groupsLinkStart}Groups%{groupsLinkEnd} and %{subgroupsLinkStart}subgroups%{subgroupsLinkEnd} allow you to manage and collaborate across multiple projects. Members of a group have access to all of its projects.',
    ),
    s__('GroupsNew|You can also %{linkStart}import an existing group%{linkEnd}.'),
  ],
};

export default {
  components: {
    GlLink,
    GlSprintf,
  },
  paths: {
    groupsHelpPath: helpPagePath('user/group/index'),
    subgroupsHelpPath: helpPagePath('user/group/subgroups/index'),
  },
  props: {
    parentGroupName: {
      type: String,
      required: false,
      default: '',
    },
    importExistingGroupPath: {
      type: String,
      required: false,
      default: '',
    },
  },
  descriptionDetails: DESCRIPTION_DETAILS,
};
</script>

<template>
  <div>
    <p>
      <gl-sprintf v-if="parentGroupName" :message="$options.descriptionDetails.subgroup[0]">
        <template #groupsLink="{ content }">
          <gl-link :href="$options.paths.groupsHelpPath" target="_blank">{{ content }}</gl-link>
        </template>
        <template #subgroupsLink="{ content }">
          <gl-link :href="$options.paths.subgroupsHelpPath" target="_blank">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
      <gl-sprintf v-else :message="$options.descriptionDetails.group[0]">
        <template #link="{ content }">
          <gl-link :href="$options.paths.groupsHelpPath" target="_blank">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
    </p>
    <p>
      <gl-sprintf v-if="parentGroupName" :message="$options.descriptionDetails.subgroup[1]">
        <template #link="{ content }">
          <gl-link :href="importExistingGroupPath">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
      <gl-sprintf v-else :message="$options.descriptionDetails.group[1]">
        <template #link="{ content }">
          <gl-link :href="$options.paths.subgroupsHelpPath" target="_blank">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
    </p>
  </div>
</template>