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

invite_member_modal.vue « components « invite_member « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec77e49ae5333e5c4296f213a4097517eab761d3 (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
<script>
import { GlModal, GlLink } from '@gitlab/ui';
import { BV_SHOW_MODAL } from '~/lib/utils/constants';
import { s__, __ } from '~/locale';
import { OPEN_MODAL, MODAL_ID } from '../constants';
import eventHub from '../event_hub';

export default {
  cancelProps: {
    text: __('Got it'),
    attributes: [
      {
        variant: 'info',
      },
    ],
  },
  modalId: MODAL_ID,
  components: {
    GlLink,
    GlModal,
  },
  props: {
    membersPath: {
      type: String,
      required: false,
      default: '',
    },
  },
  i18n: {
    modalTitle: s__("InviteMember|Oops, this feature isn't ready yet"),
    bodyTopMessage: s__(
      "InviteMember|We're working to allow everyone to invite new members, making it easier for teams to get started with GitLab",
    ),
    bodyMiddleMessage: s__(
      'InviteMember|Until then, ask an owner to invite new project members for you',
    ),
    linkText: s__('InviteMember|See who can invite members for you'),
  },
  mounted() {
    eventHub.$on(OPEN_MODAL, this.openModal);
  },
  methods: {
    openModal() {
      this.$root.$emit(BV_SHOW_MODAL, MODAL_ID);
    },
  },
};
</script>
<template>
  <gl-modal :modal-id="$options.modalId" size="sm" :action-cancel="$options.cancelProps">
    <template #modal-title>
      {{ $options.i18n.modalTitle }}
      <gl-emoji
        class="gl-vertical-align-baseline font-size-inherit gl-mr-1"
        data-name="sweat_smile"
      />
    </template>
    <p>{{ $options.i18n.bodyTopMessage }}</p>
    <p>{{ $options.i18n.bodyMiddleMessage }}</p>
    <gl-link
      :href="membersPath"
      data-track-event="click_who_can_invite_link"
      data-track-label="invite_members_message"
      >{{ $options.i18n.linkText }}</gl-link
    >
  </gl-modal>
</template>