debian-mirror-gitlab/app/assets/javascripts/listbox/index.js
2023-04-23 21:23:45 +05:30

53 lines
1.2 KiB
JavaScript

import { GlCollapsibleListbox } from '@gitlab/ui';
import Vue from 'vue';
export function parseAttributes(el) {
const { items: itemsString, selected, placement } = el.dataset;
const items = JSON.parse(itemsString);
const { className } = el;
return { items, selected, placement, className };
}
export function initListbox(el, { onChange } = {}) {
if (!el) return null;
const { items, selected, placement, className } = parseAttributes(el);
return new Vue({
el,
data() {
return {
selected,
};
},
computed: {
text() {
return items.find(({ value }) => value === this.selected)?.text;
},
},
render(h) {
return h(GlCollapsibleListbox, {
props: {
items,
placement,
selected: this.selected,
toggleText: this.text,
},
class: className,
on: {
select: (selectedValue) => {
this.selected = selectedValue;
const selectedItem = items.find(({ value }) => value === selectedValue);
if (typeof onChange === 'function') {
onChange(selectedItem);
}
},
},
});
},
});
}