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

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

export const i18n = {
  title: __('Too many changes to show.'),
  plainDiff: __('Plain diff'),
  emailPatch: __('Email patch'),
};

export default {
  i18n,
  components: {
    GlAlert,
    GlSprintf,
  },
  props: {
    total: {
      type: String,
      required: true,
    },
    visible: {
      type: Number,
      required: true,
    },
    plainDiffPath: {
      type: String,
      required: true,
    },
    emailPatchPath: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <gl-alert
    variant="warning"
    :title="$options.i18n.title"
    :primary-button-text="$options.i18n.plainDiff"
    :primary-button-link="plainDiffPath"
    :secondary-button-text="$options.i18n.emailPatch"
    :secondary-button-link="emailPatchPath"
    :dismissible="false"
  >
    <gl-sprintf
      :message="
        sprintf(
          __(
            'To preserve performance only %{strongStart}%{visible} of %{total}%{strongEnd} files are displayed.',
          ),
          { visible, total } /* eslint-disable-line @gitlab/vue-no-new-non-primitive-in-template */,
        )
      "
    >
      <template #strong="{ content }">
        <strong>{{ content }}</strong>
      </template>
    </gl-sprintf>
  </gl-alert>
</template>