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

github_status_table.vue « components « import_projects « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb3476c48db29d70c93c9c743bb7ef5e13b4fd31 (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
<script>
import { GlButton, GlSearchBoxByClick, GlTabs, GlTab } from '@gitlab/ui';
// eslint-disable-next-line no-restricted-imports
import { mapActions, mapGetters, mapState } from 'vuex';
import { s__ } from '~/locale';
import ImportProjectsTable from './import_projects_table.vue';
import GithubOrganizationsBox from './github_organizations_box.vue';

export default {
  components: {
    ImportProjectsTable,
    GithubOrganizationsBox,
    GlButton,
    GlSearchBoxByClick,
    GlTab,
    GlTabs,
  },
  inheritAttrs: false,
  data() {
    return {
      selectedRelationTypeTabIdx: 0,
    };
  },
  computed: {
    ...mapState({
      selectedOrganization: (state) => state.filter.organization_login ?? '',
      nameFilter: (state) => state.filter.filter ?? '',
    }),
    ...mapGetters(['isImportingAnyRepo', 'hasImportableRepos']),
    isNameFilterDisabled() {
      return (
        this.$options.relationTypes[this.selectedRelationTypeTabIdx].showOrganizationFilter &&
        !this.selectedOrganization
      );
    },
  },
  watch: {
    selectedRelationTypeTabIdx: {
      immediate: true,
      handler(newIdx) {
        const { backendFilter } = this.$options.relationTypes[newIdx];
        this.setFilter({ ...backendFilter, organization_login: '', filter: '' });
      },
    },
  },
  methods: {
    ...mapActions(['setFilter']),
    selectOrganization(org) {
      this.selectedOrganization = org;
      this.setFilter();
    },
  },

  relationTypes: [
    { title: s__('ImportProjects|Owned'), backendFilter: { relation_type: 'owned' } },
    { title: s__('ImportProjects|Collaborated'), backendFilter: { relation_type: 'collaborated' } },
    {
      title: s__('ImportProjects|Organization'),
      backendFilter: { relation_type: 'organization' },
      showOrganizationFilter: true,
    },
  ],
};
</script>
<template>
  <import-projects-table v-bind="$attrs">
    <template #filter="{ importAllButtonText, showImportAllModal }">
      <gl-tabs v-model="selectedRelationTypeTabIdx" content-class="gl-py-0! gl-mb-3">
        <gl-tab v-for="tab in $options.relationTypes" :key="tab.title" :title="tab.title">
          <div
            class="gl-display-flex gl-justify-content-space-between gl-flex-wrap gl-gap-3 gl-p-5 gl-bg-gray-10 gl-border-solid gl-border-0 gl-border-b-gray-100 gl-border-b-1"
          >
            <form class="gl-display-flex gl-flex-grow-1 gl-mr-3" novalidate @submit.prevent>
              <github-organizations-box
                v-if="tab.showOrganizationFilter"
                class="gl-mr-3"
                :value="selectedOrganization"
                @input="setFilter({ organization_login: $event })"
              />
              <gl-search-box-by-click
                data-qa-selector="githubish_import_filter_field"
                name="filter"
                :disabled="isNameFilterDisabled"
                :value="nameFilter"
                :placeholder="__('Filter by name')"
                autofocus
                @submit="setFilter({ filter: $event })"
                @clear="setFilter({ filter: '' })"
              />
            </form>
            <gl-button
              variant="confirm"
              :loading="isImportingAnyRepo"
              :disabled="!hasImportableRepos"
              type="button"
              @click="showImportAllModal"
            >
              {{ importAllButtonText }}
            </gl-button>
          </div>
        </gl-tab>
      </gl-tabs>
    </template>
  </import-projects-table>
</template>