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.
28 lines
821 B
28 lines
821 B
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 {
|
|
props: ['options', 'title', 'stack', 'active', 'input'],
|
|
setup(props, context) {
|
|
handleActive(props, [ArrowVerticalKeyHandler]);
|
|
const children = computed(() => {
|
|
return props.options.map((o) => {
|
|
return {
|
|
component: "d-plainElem",
|
|
props: {"text": o},
|
|
onClick: () => {
|
|
context.emit('resolve', o);
|
|
}
|
|
}
|
|
})
|
|
});
|
|
return { children }
|
|
},
|
|
template: html`
|
|
<div class="playerselect">
|
|
<d-list :title="title" :withshortkey="true" :elements="children"/>
|
|
</div>
|
|
`
|
|
}
|
|
|