summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_projects/components/provider_repo_table_row.vue
blob: 63524d611466ed169e0a1ff566e495c8d4d39a6e (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<script>
import { mapState, mapGetters, mapActions } from 'vuex';
import Select2Select from '~/vue_shared/components/select2_select.vue';
import { __ } from '~/locale';
import eventHub from '../event_hub';
import { STATUSES } from '../constants';
import ImportStatus from './import_status.vue';

export default {
  name: 'ProviderRepoTableRow',
  components: {
    Select2Select,
    ImportStatus,
  },
  props: {
    repo: {
      type: Object,
      required: true,
    },
  },

  data() {
    return {
      targetNamespace: this.$store.state.defaultTargetNamespace,
      newName: this.repo.sanitizedName,
    };
  },

  computed: {
    ...mapState(['namespaces', 'reposBeingImported', 'ciCdOnly']),

    ...mapGetters(['namespaceSelectOptions']),

    importButtonText() {
      return this.ciCdOnly ? __('Connect') : __('Import');
    },

    select2Options() {
      return {
        data: this.namespaceSelectOptions,
        containerCssClass:
          'import-namespace-select js-namespace-select qa-project-namespace-select w-auto',
      };
    },

    isLoadingImport() {
      return this.reposBeingImported.includes(this.repo.id);
    },

    status() {
      return this.isLoadingImport ? STATUSES.SCHEDULING : STATUSES.NONE;
    },
  },

  created() {
    eventHub.$on('importAll', this.importRepo);
  },

  beforeDestroy() {
    eventHub.$off('importAll', this.importRepo);
  },

  methods: {
    ...mapActions(['fetchImport']),

    importRepo() {
      return this.fetchImport({
        newName: this.newName,
        targetNamespace: this.targetNamespace,
        repo: this.repo,
      });
    },
  },
};
</script>

<template>
  <tr class="qa-project-import-row js-provider-repo import-row">
    <td>
      <a
        :href="repo.providerLink"
        rel="noreferrer noopener"
        target="_blank"
        class="js-provider-link"
      >
        {{ repo.fullName }}
      </a>
    </td>
    <td class="d-flex flex-wrap flex-lg-nowrap">
      <select2-select v-model="targetNamespace" :options="select2Options" />
      <span class="px-2 import-slash-divider d-flex justify-content-center align-items-center"
        >/</span
      >
      <input
        v-model="newName"
        type="text"
        class="form-control import-project-name-input js-new-name qa-project-path-field"
      />
    </td>
    <td><import-status :status="status" /></td>
    <td>
      <button
        v-if="!isLoadingImport"
        type="button"
        class="qa-import-button js-import-button btn btn-default"
        @click="importRepo"
      >
        {{ importButtonText }}
      </button>
    </td>
  </tr>
</template>