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

locked_warning.vue « components « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4414e693ed04c22f61246620517e2e9f21ddea8d (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
<script>
import { GlSprintf, GlLink, GlAlert } from '@gitlab/ui';
import { __, sprintf } from '~/locale';
import { IssuableType } from '~/issues/constants';

export const i18n = Object.freeze({
  alertMessage: __(
    "Someone edited the %{issuableType} at the same time you did. Review %{linkStart}the %{issuableType}%{linkEnd} and make sure you don't unintentionally overwrite their changes.",
  ),
});

export default {
  components: {
    GlSprintf,
    GlLink,
    GlAlert,
  },
  props: {
    issuableType: {
      type: String,
      required: true,
      validator(value) {
        return Object.values(IssuableType).includes(value);
      },
    },
  },
  computed: {
    currentPath() {
      return window.location.pathname;
    },
    alertMessage() {
      return sprintf(this.$options.i18n.alertMessage, { issuableType: this.issuableType });
    },
  },
  i18n,
};
</script>

<template>
  <gl-alert variant="danger" class="gl-mb-5" :dismissible="false">
    <gl-sprintf :message="alertMessage">
      <template #link="{ content }">
        <gl-link :href="currentPath" target="_blank" rel="nofollow">
          {{ content }}
        </gl-link>
      </template>
    </gl-sprintf>
  </gl-alert>
</template>