2023-05-03 18:37:14 +08:00
|
|
|
<template>
|
2023-11-09 19:40:06 +08:00
|
|
|
<div v-click-outside="close" @click="toggle" ref="container" class="sn-select" :class="{ 'sn-select--open': isOpen, 'sn-select--blank': !valueLabel, 'disabled': disabled }">
|
2023-05-03 18:37:14 +08:00
|
|
|
<slot>
|
|
|
|
<button ref="focusElement" class="sn-select__value">
|
|
|
|
<span>{{ valueLabel || (placeholder || i18n.t('general.select')) }}</span>
|
|
|
|
</button>
|
2023-06-13 17:51:00 +08:00
|
|
|
<i class="sn-icon" :class="{ 'sn-icon-down': !isOpen, 'sn-icon-up': isOpen}"></i>
|
2023-05-03 18:37:14 +08:00
|
|
|
</slot>
|
2024-01-08 21:49:38 +08:00
|
|
|
<div :style="optionPositionStyle" class="py-2.5 bg-white z-10 shadow-sn-menu-sm rounded"
|
|
|
|
:class="{ 'hidden': !isOpen }"
|
|
|
|
>
|
2023-11-13 21:13:53 +08:00
|
|
|
<div v-if="withClearButton" class="px-2 pb-2.5">
|
2023-10-24 21:49:37 +08:00
|
|
|
<div @mousedown.prevent.stop="setValue(null)"
|
2023-12-12 17:19:06 +08:00
|
|
|
class="btn btn-light !text-xs pl-3 active:bg-sn-super-light-blue"
|
2023-10-24 21:49:37 +08:00
|
|
|
:class="{
|
2023-11-07 19:39:07 +08:00
|
|
|
'disabled cursor-default': !value,
|
|
|
|
'cursor-pointer': value,
|
2023-10-24 21:49:37 +08:00
|
|
|
}">
|
|
|
|
{{ i18n.t('general.clear') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-11-13 21:13:53 +08:00
|
|
|
<perfect-scrollbar ref="optionsContainer"
|
|
|
|
class="sn-select__options !relative !top-0 !left-[-1px] !shadow-none scroll-container px-2.5 pt-0 block"
|
|
|
|
:class="{ [optionsClassName]: true }"
|
2023-12-11 17:43:47 +08:00
|
|
|
@ps-scroll-y="onScroll"
|
2023-11-13 21:13:53 +08:00
|
|
|
>
|
|
|
|
<div v-if="options.length" class="flex flex-col gap-[1px]">
|
|
|
|
<div
|
|
|
|
v-for="option in options"
|
|
|
|
:key="option[0]"
|
|
|
|
@mousedown.prevent.stop="setValue(option[0])"
|
2024-01-08 21:49:38 +08:00
|
|
|
class="sn-select__option p-3 rounded shadow-none option-label"
|
2023-11-13 21:13:53 +08:00
|
|
|
:title="option[1]"
|
|
|
|
:class="{
|
|
|
|
'select__option-placeholder': option[2],
|
|
|
|
'!bg-sn-super-light-blue': option[0] == value,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
{{ option[1] }}
|
|
|
|
</div>
|
2023-05-24 16:47:27 +08:00
|
|
|
</div>
|
2023-11-13 21:13:53 +08:00
|
|
|
<template v-else>
|
|
|
|
<div
|
|
|
|
class="sn-select__no-options"
|
|
|
|
>
|
|
|
|
{{ this.noOptionsPlaceholder }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</perfect-scrollbar>
|
|
|
|
</div>
|
2023-05-03 18:37:14 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2024-01-04 23:34:36 +08:00
|
|
|
import { vOnClickOutside } from '@vueuse/components';
|
2023-06-13 17:51:00 +08:00
|
|
|
|
2024-01-04 23:34:36 +08:00
|
|
|
export default {
|
|
|
|
name: 'Select',
|
|
|
|
emits: ['close', 'reached-end', 'open', 'change'],
|
|
|
|
props: {
|
|
|
|
withClearButton: { type: Boolean, default: false },
|
|
|
|
withEditCursor: { type: Boolean, default: false },
|
|
|
|
value: { type: [String, Number] },
|
|
|
|
options: { type: Array, default: () => [] },
|
|
|
|
initialValue: { type: [String, Number] },
|
|
|
|
placeholder: { type: String },
|
|
|
|
noOptionsPlaceholder: { type: String },
|
|
|
|
className: { type: String, default: '' },
|
|
|
|
optionsClassName: { type: String, default: '' },
|
|
|
|
disabled: { type: Boolean, default: false }
|
|
|
|
},
|
|
|
|
directives: {
|
|
|
|
'click-outside': vOnClickOutside
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isOpen: false,
|
|
|
|
optionPositionStyle: '',
|
|
|
|
currentContentHeight: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
valueLabel() {
|
|
|
|
const option = this.options.find((o) => o[0] === this.value);
|
|
|
|
return option && option[1];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
document.addEventListener('scroll', this.updateOptionPosition);
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
document.removeEventListener('scroll', this.updateOptionPosition);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toggle() {
|
|
|
|
this.isOpen = !this.isOpen;
|
|
|
|
|
|
|
|
if (this.isOpen) {
|
|
|
|
this.$emit('open');
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$emit('focus');
|
|
|
|
this.$refs.focusElement?.focus();
|
|
|
|
});
|
|
|
|
this.$refs.optionsContainer.scrollTop = 0;
|
|
|
|
this.updateOptionPosition();
|
|
|
|
} else {
|
|
|
|
this.close();
|
2023-05-03 18:37:14 +08:00
|
|
|
}
|
|
|
|
},
|
2024-01-04 23:34:36 +08:00
|
|
|
onScroll() {
|
|
|
|
const scrollObj = this.$refs.optionsContainer.ps;
|
|
|
|
|
|
|
|
if (scrollObj) {
|
|
|
|
const reachedEnd = scrollObj.reach.y === 'end';
|
|
|
|
if (reachedEnd && this.contentHeight !== scrollObj.contentHeight) {
|
|
|
|
this.$emit('reached-end');
|
|
|
|
this.contentHeight = scrollObj.contentHeight;
|
|
|
|
}
|
2023-05-03 18:37:14 +08:00
|
|
|
}
|
|
|
|
},
|
2024-01-04 23:34:36 +08:00
|
|
|
close() {
|
|
|
|
this.isOpen = false;
|
|
|
|
this.optionPositionStyle = '';
|
|
|
|
this.$refs.optionsContainer.$el.scrollTop = 0;
|
|
|
|
this.$emit('close');
|
2023-07-06 16:31:26 +08:00
|
|
|
},
|
2024-01-04 23:34:36 +08:00
|
|
|
setValue(value) {
|
|
|
|
this.$emit('change', value);
|
2023-05-03 18:37:14 +08:00
|
|
|
},
|
2024-01-04 23:34:36 +08:00
|
|
|
updateOptionPosition() {
|
|
|
|
const container = $(this.$refs.container);
|
|
|
|
const rect = container.get(0).getBoundingClientRect();
|
|
|
|
const { width } = rect;
|
|
|
|
const { height } = rect;
|
|
|
|
let top = rect.top + rect.height;
|
|
|
|
let { left } = rect;
|
2023-05-03 18:37:14 +08:00
|
|
|
|
2024-01-04 23:34:36 +08:00
|
|
|
const modal = container.parents('.modal-content');
|
2023-05-03 18:37:14 +08:00
|
|
|
|
2024-01-04 23:34:36 +08:00
|
|
|
if (modal.length > 0) {
|
|
|
|
const modalRect = modal.get(0).getBoundingClientRect();
|
|
|
|
top -= modalRect.top;
|
|
|
|
left -= modalRect.left;
|
|
|
|
this.optionPositionStyle = `position: fixed; top: ${top}px; left: ${left}px; width: ${width}px`;
|
|
|
|
} else {
|
|
|
|
container.addClass('relative');
|
|
|
|
this.optionPositionStyle = `position: absolute; top: ${height}px; left: 0px; width: ${width}px`;
|
2023-05-03 18:37:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-04 23:34:36 +08:00
|
|
|
};
|
2023-05-03 18:37:14 +08:00
|
|
|
</script>
|