@gitlab/ui
Version:
GitLab UI Components
202 lines (190 loc) • 6.88 kB
JavaScript
import { uniqueId } from 'lodash-es';
import { GlTooltipDirective } from '../../../directives/tooltip/tooltip';
import GlButton from '../button/button';
import GlButtonGroup from '../button_group/button_group';
import GlCollapsibleListbox from '../new_dropdowns/listbox/listbox';
import { isOption } from '../new_dropdowns/listbox/utils';
import { translate } from '../../../utils/i18n';
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
var script = {
name: 'GlSorting',
components: {
GlButton,
GlButtonGroup,
GlCollapsibleListbox
},
directives: {
GlTooltip: GlTooltipDirective
},
props: {
/**
* Text to place in the toggle button.
*/
text: {
type: String,
required: false,
default: ''
},
/**
* Sort options to display in the dropdown.
*
* Each option is `{ value, text }`. Set `directionToggleDisabled: true` on
* an option that has no ascending/descending meaning (e.g. "Most relevant")
* to disable the sort direction toggle whenever that option is selected.
*/
sortOptions: {
type: Array,
required: false,
default: () => [],
// eslint-disable-next-line unicorn/no-array-callback-reference
validator: sortOptions => sortOptions.every(isOption)
},
/**
* The value of the item currently selected in the dropdown.
* Only to be used with the `sortOptions` prop.
*/
sortBy: {
type: [String, Number],
required: false,
default: null
},
/**
* Determines the current sort order icon displayed.
*/
isAscending: {
type: Boolean,
required: false,
default: false
},
/**
* The text for the tooltip and aria-label of the sort direction toggle
* button instead of the defaults for ascending/descending.
*/
sortDirectionToolTip: {
type: String,
required: false,
default: null
},
/**
* Additional class(es) to apply to the root element of the GlCollapsibleListbox.
*/
dropdownClass: {
type: String,
required: false,
default: ''
},
/**
* Additional class(es) to apply to the dropdown toggle.
*/
dropdownToggleClass: {
type: String,
required: false,
default: ''
},
/**
* Additional class(es) to apply to the sort direction toggle button.
*/
sortDirectionToggleClass: {
type: String,
required: false,
default: ''
},
/**
* Render the dropdown toggle button as a block element
*/
block: {
type: Boolean,
required: false,
default: false
}
},
data() {
return {
sortingListboxId: uniqueId('sorting-listbox-')
};
},
computed: {
sortingListboxLabel() {
return translate('GlSorting.sortByLabel', 'Sort by:');
},
localSortDirection() {
return this.isAscending ? 'sort-lowest' : 'sort-highest';
},
selectedSortOption() {
return this.sortOptions.find(option => option.value === this.sortBy);
},
selectedSortText() {
var _this$selectedSortOpt, _this$selectedSortOpt2;
return (_this$selectedSortOpt = (_this$selectedSortOpt2 = this.selectedSortOption) === null || _this$selectedSortOpt2 === void 0 ? void 0 : _this$selectedSortOpt2.text) !== null && _this$selectedSortOpt !== void 0 ? _this$selectedSortOpt : '';
},
isDirectionToggleDisabled() {
var _this$selectedSortOpt3;
return Boolean((_this$selectedSortOpt3 = this.selectedSortOption) === null || _this$selectedSortOpt3 === void 0 ? void 0 : _this$selectedSortOpt3.directionToggleDisabled);
},
sortDirectionText() {
if (this.sortDirectionToolTip) return this.sortDirectionToolTip;
if (this.isDirectionToggleDisabled) {
return this.selectedSortText ? translate('GlSorting.sortDirectionUnavailableFor', 'Sort direction unavailable for %{sortField}', {
sortField: this.selectedSortText
}) : translate('GlSorting.sortDirectionUnavailable', 'Sort direction unavailable');
}
return this.isAscending ? translate('GlSorting.sortAscending', 'Sort direction: ascending') : translate('GlSorting.sortDescending', 'Sort direction: descending');
}
},
methods: {
toggleSortDirection() {
if (this.isDirectionToggleDisabled) return;
const newDirection = !this.isAscending;
/**
* Emitted when the sort direction button is clicked.
*
* The event's payload will be true if the direction has been changed to
* ascending, or false if descending.
*
* @property {boolean} isAscending
*/
this.$emit('sortDirectionChange', newDirection);
},
onSortByChanged(event) {
/**
* Emitted when the sort field is changed.
*
* The event's payload is the value of the selected sort field.
*
* Only emitted when using the `sortOptions` prop.
*
* @property {string|number} value
*/
this.$emit('sortByChange', event);
}
}
};
/* script */
const __vue_script__ = script;
/* template */
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('gl-button-group',{staticClass:"gl-sorting"},[_c('gl-collapsible-listbox',{class:_vm.dropdownClass,attrs:{"toggle-text":_vm.text,"items":_vm.sortOptions,"selected":_vm.sortBy,"toggle-class":_vm.dropdownToggleClass,"placement":"bottom-end","block":_vm.block,"toggle-aria-labelled-by":_vm.sortingListboxId},on:{"select":_vm.onSortByChanged}}),_vm._v(" "),_c('span',{staticClass:"gl-sr-only",attrs:{"id":_vm.sortingListboxId}},[_vm._v(_vm._s(_vm.sortingListboxLabel))]),_vm._v(" "),_c('gl-button',{directives:[{name:"gl-tooltip",rawName:"v-gl-tooltip"}],class:['sorting-direction-button', _vm.sortDirectionToggleClass],attrs:{"title":_vm.sortDirectionText,"icon":_vm.localSortDirection,"aria-label":_vm.sortDirectionText,"disabled":_vm.isDirectionToggleDisabled,"accessible-disabled":_vm.isDirectionToggleDisabled},on:{"click":_vm.toggleSortDirection}})],1)};
var __vue_staticRenderFns__ = [];
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = undefined;
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */
const __vue_is_functional_template__ = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
const __vue_component__ = /*#__PURE__*/__vue_normalize__(
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
__vue_inject_styles__,
__vue_script__,
__vue_scope_id__,
__vue_is_functional_template__,
__vue_module_identifier__,
false,
undefined,
undefined,
undefined
);
export { __vue_component__ as default };