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.
 
 
 

34 lines
1.1 KiB

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