You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ygdc/assets/js/components/select.js

29 lines
821 B

2 months ago
import { nextTick, reactive, ref, computed, onMounted, onUnmounted } from "vue";
import { handleActive, ArrowVerticalKeyHandler, ArrowHorizontalKeyHandler, NumberKeyHandler } from "../handlers.js";
const html = (v) => { return v[0] };
export default {
2 months ago
props: ['options', 'title', 'stack', 'active', 'input'],
2 months ago
setup(props, context) {
handleActive(props, [ArrowVerticalKeyHandler]);
const children = computed(() => {
2 months ago
return props.options.map((o) => {
2 months ago
return {
2 months ago
component: "d-plainElem",
props: {"text": o},
2 months ago
onClick: () => {
2 months ago
context.emit('resolve', o);
2 months ago
}
}
})
});
return { children }
},
template: html`
<div class="playerselect">
2 months ago
<d-list :title="title" :withshortkey="true" :elements="children"/>
2 months ago
</div>
`
}