summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/branches/components/sort_dropdown.vue
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-04-20 23:50:22 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-20 23:50:22 +0000
commit9dc93a4519d9d5d7be48ff274127136236a3adb3 (patch)
tree70467ae3692a0e35e5ea56bcb803eb512a10bedb /app/assets/javascripts/branches/components/sort_dropdown.vue
parent4b0f34b6d759d6299322b3a54453e930c6121ff0 (diff)
downloadgitlab-ce-9dc93a4519d9d5d7be48ff274127136236a3adb3.tar.gz
Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43
Diffstat (limited to 'app/assets/javascripts/branches/components/sort_dropdown.vue')
-rw-r--r--app/assets/javascripts/branches/components/sort_dropdown.vue88
1 files changed, 88 insertions, 0 deletions
diff --git a/app/assets/javascripts/branches/components/sort_dropdown.vue b/app/assets/javascripts/branches/components/sort_dropdown.vue
new file mode 100644
index 00000000000..ddb4c5c0015
--- /dev/null
+++ b/app/assets/javascripts/branches/components/sort_dropdown.vue
@@ -0,0 +1,88 @@
+<script>
+import { GlDropdown, GlDropdownItem, GlSearchBoxByClick } from '@gitlab/ui';
+import { mergeUrlParams, visitUrl, getParameterValues } from '~/lib/utils/url_utility';
+import { s__ } from '~/locale';
+
+const OVERVIEW_MODE = 'overview';
+
+export default {
+ i18n: {
+ searchPlaceholder: s__('Branches|Filter by branch name'),
+ },
+ components: {
+ GlDropdown,
+ GlDropdownItem,
+ GlSearchBoxByClick,
+ },
+ inject: ['projectBranchesFilteredPath', 'sortOptions', 'mode'],
+ data() {
+ return {
+ selectedKey: 'updated_desc',
+ searchTerm: '',
+ };
+ },
+ computed: {
+ shouldShowDropdown() {
+ return this.mode !== OVERVIEW_MODE;
+ },
+ selectedSortMethodName() {
+ return this.sortOptions[this.selectedKey];
+ },
+ },
+ created() {
+ const sortValue = getParameterValues('sort');
+ const searchValue = getParameterValues('search');
+
+ if (sortValue.length > 0) {
+ [this.selectedKey] = sortValue;
+ }
+
+ if (searchValue.length > 0) {
+ [this.searchTerm] = searchValue;
+ }
+ },
+ methods: {
+ isSortMethodSelected(sortKey) {
+ return sortKey === this.selectedKey;
+ },
+ visitUrlFromOption(sortKey) {
+ this.selectedKey = sortKey;
+ const urlParams = {};
+
+ if (this.mode !== OVERVIEW_MODE) {
+ urlParams.sort = sortKey;
+ }
+
+ urlParams.search = this.searchTerm.length > 0 ? this.searchTerm : null;
+
+ const newUrl = mergeUrlParams(urlParams, this.projectBranchesFilteredPath);
+ visitUrl(newUrl);
+ },
+ },
+};
+</script>
+<template>
+ <div class="gl-display-flex gl-pr-4">
+ <gl-search-box-by-click
+ v-model="searchTerm"
+ :placeholder="$options.i18n.searchPlaceholder"
+ class="gl-pr-4"
+ data-testid="branch-search"
+ @submit="visitUrlFromOption(selectedKey)"
+ />
+ <gl-dropdown
+ v-if="shouldShowDropdown"
+ :text="selectedSortMethodName"
+ data-testid="branches-dropdown"
+ >
+ <gl-dropdown-item
+ v-for="(value, key) in sortOptions"
+ :key="key"
+ :is-checked="isSortMethodSelected(key)"
+ is-check-item
+ @click="visitUrlFromOption(key)"
+ >{{ value }}</gl-dropdown-item
+ >
+ </gl-dropdown>
+ </div>
+</template>