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

bulk_import_details_app.vue « components « details « import « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a248dd3d2c46f778add0601958de8ee7e96c1d17 (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
<script>
import { sprintf, s__, __ } from '~/locale';
import { getParameterValues } from '~/lib/utils/url_utility';

import ImportDetailsTable from '~/import/details/components/import_details_table.vue';

export default {
  name: 'BulkImportDetailsApp',
  components: {
    ImportDetailsTable,
  },

  fields: [
    {
      key: 'relation',
      label: __('Type'),
      tdClass: 'gl-white-space-nowrap',
    },
    {
      key: 'source_title',
      label: __('Title'),
      tdClass: 'gl-md-w-30 gl-word-break-word',
    },
    {
      key: 'error',
      label: __('Error'),
    },
    {
      key: 'correlation_id_value',
      label: __('Correlation ID'),
    },
  ],

  LOCAL_STORAGE_KEY: 'gl-bulk-import-details-page-size',

  gitlabLogo: window.gon.gitlab_logo,

  computed: {
    title() {
      const id = getParameterValues('entity_id')[0];

      return sprintf(s__('BulkImport|Items that failed to be imported for %{id}'), { id });
    },
  },
};
</script>

<template>
  <div>
    <h1 class="gl-font-size-h1 gl-my-0 gl-py-4 gl-display-flex gl-align-items-center gl-gap-3">
      <img :src="$options.gitlabLogo" class="gl-w-6 gl-h-6" />
      <span>{{ title }}</span>
    </h1>

    <import-details-table
      bulk-import
      :fields="$options.fields"
      :local-storage-key="$options.LOCAL_STORAGE_KEY"
    />
  </div>
</template>