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

import_target_dropdown.vue « components « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b18a106608a256a57901c8acac36a5325db5be3a (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
113
114
115
116
117
118
119
<script>
import { GlCollapsibleListbox } from '@gitlab/ui';
import { debounce } from 'lodash';

import { __, s__ } from '~/locale';
import { createAlert } from '~/alert';
import { truncate } from '~/lib/utils/text_utility';
import searchNamespacesWhereUserCanImportProjectsQuery from '~/import_entities/import_projects/graphql/queries/search_namespaces_where_user_can_import_projects.query.graphql';
import { DEBOUNCE_DELAY } from '~/vue_shared/components/filtered_search_bar/constants';
import { MINIMUM_SEARCH_LENGTH } from '~/graphql_shared/constants';
import { DEFAULT_DEBOUNCE_AND_THROTTLE_MS } from '~/lib/utils/constants';

// This is added outside the component as each dropdown on the page triggers a query,
// so if multiple queries fail, we only show 1 error.
const reportNamespaceLoadError = debounce(
  () =>
    createAlert({
      message: s__('ImportProjects|Requesting namespaces failed'),
    }),
  DEFAULT_DEBOUNCE_AND_THROTTLE_MS,
);

export default {
  components: {
    GlCollapsibleListbox,
  },

  props: {
    selected: {
      type: String,
      required: true,
    },
    userNamespace: {
      type: String,
      required: true,
    },
  },

  MAX_IMPORT_TARGET_LENGTH: 24,

  data() {
    return {
      searchTerm: '',
    };
  },

  apollo: {
    namespaces: {
      query: searchNamespacesWhereUserCanImportProjectsQuery,
      variables() {
        return {
          search: this.searchTerm,
        };
      },
      skip() {
        const hasNotEnoughSearchCharacters =
          this.searchTerm.length > 0 && this.searchTerm.length < MINIMUM_SEARCH_LENGTH;
        return hasNotEnoughSearchCharacters;
      },
      update(data) {
        return data.currentUser.groups.nodes;
      },
      error: reportNamespaceLoadError,
      debounce: DEBOUNCE_DELAY,
    },
  },

  computed: {
    filteredNamespaces() {
      return (this.namespaces ?? []).filter((ns) =>
        ns.fullPath.toLowerCase().includes(this.searchTerm.toLowerCase()),
      );
    },

    toggleText() {
      return truncate(this.selected, this.$options.MAX_IMPORT_TARGET_LENGTH);
    },

    items() {
      return [
        {
          text: __('Users'),
          options: [{ text: this.userNamespace, value: this.userNamespace }],
        },
        {
          text: __('Groups'),
          options: this.filteredNamespaces.map((namespace) => {
            return { text: namespace.fullPath, value: namespace.fullPath };
          }),
        },
      ];
    },
  },

  methods: {
    onSelect(value) {
      this.$emit('select', value);
    },

    onSearch(value) {
      this.searchTerm = value.trim();
    },
  },
};
</script>

<template>
  <gl-collapsible-listbox
    :items="items"
    :selected="selected"
    :toggle-text="toggleText"
    searchable
    fluid-width
    toggle-class="gl-rounded-top-right-none! gl-rounded-bottom-right-none!"
    data-qa-selector="target_namespace_selector_dropdown"
    @select="onSelect"
    @search="onSearch"
  />
</template>