reka-ui
Version:
Vue port for Radix UI Primitives.
48 lines (45 loc) • 1.95 kB
JavaScript
import { defineComponent, computed, onMounted, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
import { u as useForwardExpose } from '../shared/useForwardExpose.js';
import { P as Primitive } from '../Primitive/Primitive.js';
import { i as injectComboboxRootContext } from './ComboboxRoot.js';
const _sfc_main = /* @__PURE__ */ defineComponent({
__name: "ComboboxTrigger",
props: {
disabled: { type: Boolean },
asChild: { type: Boolean },
as: { default: "button" }
},
setup(__props) {
const props = __props;
const { forwardRef, currentElement } = useForwardExpose();
const rootContext = injectComboboxRootContext();
const disabled = computed(() => props.disabled || rootContext.disabled.value || false);
onMounted(() => {
if (currentElement.value)
rootContext.onTriggerElementChange(currentElement.value);
});
return (_ctx, _cache) => {
return openBlock(), createBlock(unref(Primitive), mergeProps(props, {
ref: unref(forwardRef),
type: _ctx.as === "button" ? "button" : void 0,
tabindex: "-1",
"aria-label": "Show popup",
"aria-haspopup": "listbox",
"aria-expanded": unref(rootContext).open.value,
"aria-controls": unref(rootContext).contentId,
"data-state": unref(rootContext).open.value ? "open" : "closed",
disabled: disabled.value,
"data-disabled": disabled.value ? "" : void 0,
"aria-disabled": disabled.value ?? void 0,
onClick: _cache[0] || (_cache[0] = ($event) => unref(rootContext).onOpenChange(!unref(rootContext).open.value))
}), {
default: withCtx(() => [
renderSlot(_ctx.$slots, "default")
]),
_: 3
}, 16, ["type", "aria-expanded", "aria-controls", "data-state", "disabled", "data-disabled", "aria-disabled"]);
};
}
});
export { _sfc_main as _ };
//# sourceMappingURL=ComboboxTrigger.js.map