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

import_actions_cell.vue « components « import_groups « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 104c84173fc07544c14df489c1f740c67feabf45 (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
<script>
import { GlButton, GlIcon, GlTooltipDirective as GlTooltip } from '@gitlab/ui';
import { joinPaths } from '~/lib/utils/url_utility';
import { isFinished, isInvalid, isAvailableForImport } from '../utils';

export default {
  components: {
    GlIcon,
    GlButton,
  },
  directives: {
    GlTooltip,
  },
  props: {
    group: {
      type: Object,
      required: true,
    },
    groupPathRegex: {
      type: RegExp,
      required: true,
    },
  },
  computed: {
    fullLastImportPath() {
      return this.group.last_import_target
        ? `${this.group.last_import_target.target_namespace}/${this.group.last_import_target.new_name}`
        : null;
    },
    absoluteLastImportPath() {
      return joinPaths(gon.relative_url_root || '/', this.fullLastImportPath);
    },
    isAvailableForImport() {
      return isAvailableForImport(this.group);
    },
    isFinished() {
      return isFinished(this.group);
    },
    isInvalid() {
      return isInvalid(this.group, this.groupPathRegex);
    },
  },
};
</script>

<template>
  <span class="gl-white-space-nowrap gl-inline-flex gl-align-items-center">
    <gl-button
      v-if="isAvailableForImport"
      :disabled="isInvalid"
      variant="confirm"
      category="secondary"
      data-qa-selector="import_group_button"
      @click="$emit('import-group')"
    >
      {{ isFinished ? __('Re-import') : __('Import') }}
    </gl-button>
    <gl-icon
      v-if="isFinished"
      v-gl-tooltip
      :size="16"
      name="information-o"
      :title="
        s__('BulkImports|Re-import creates a new group. It does not sync with the existing group.')
      "
      class="gl-ml-3"
    />
  </span>
</template>