97 lines
3.9 KiB
JavaScript
97 lines
3.9 KiB
JavaScript
import { defineComponent, useSlots, computed, inject, openBlock, createElementBlock, normalizeClass, unref, withDirectives, createElementVNode, mergeProps, isRef, withModifiers, vModelCheckbox, normalizeStyle, renderSlot, createTextVNode, toDisplayString, createCommentVNode } from 'vue';
|
|
import { checkboxGroupContextKey } from './constants.mjs';
|
|
import { checkboxProps, checkboxEmits } from './checkbox2.mjs';
|
|
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
|
import { useCheckbox } from './composables/use-checkbox.mjs';
|
|
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
|
|
|
|
const __default__ = defineComponent({
|
|
name: "ElCheckboxButton"
|
|
});
|
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
...__default__,
|
|
props: checkboxProps,
|
|
emits: checkboxEmits,
|
|
setup(__props) {
|
|
const props = __props;
|
|
const slots = useSlots();
|
|
const {
|
|
isFocused,
|
|
isChecked,
|
|
isDisabled,
|
|
checkboxButtonSize,
|
|
model,
|
|
actualValue,
|
|
handleChange
|
|
} = useCheckbox(props, slots);
|
|
const inputBindings = computed(() => {
|
|
var _a, _b, _c, _d;
|
|
if (props.trueValue || props.falseValue || props.trueLabel || props.falseLabel) {
|
|
return {
|
|
"true-value": (_b = (_a = props.trueValue) != null ? _a : props.trueLabel) != null ? _b : true,
|
|
"false-value": (_d = (_c = props.falseValue) != null ? _c : props.falseLabel) != null ? _d : false
|
|
};
|
|
}
|
|
return {
|
|
value: actualValue.value
|
|
};
|
|
});
|
|
const checkboxGroup = inject(checkboxGroupContextKey, void 0);
|
|
const ns = useNamespace("checkbox");
|
|
const activeStyle = computed(() => {
|
|
var _a, _b, _c, _d;
|
|
const fillValue = (_b = (_a = checkboxGroup == null ? void 0 : checkboxGroup.fill) == null ? void 0 : _a.value) != null ? _b : "";
|
|
return {
|
|
backgroundColor: fillValue,
|
|
borderColor: fillValue,
|
|
color: (_d = (_c = checkboxGroup == null ? void 0 : checkboxGroup.textColor) == null ? void 0 : _c.value) != null ? _d : "",
|
|
boxShadow: fillValue ? `-1px 0 0 0 ${fillValue}` : void 0
|
|
};
|
|
});
|
|
const labelKls = computed(() => {
|
|
return [
|
|
ns.b("button"),
|
|
ns.bm("button", checkboxButtonSize.value),
|
|
ns.is("disabled", isDisabled.value),
|
|
ns.is("checked", isChecked.value),
|
|
ns.is("focus", isFocused.value)
|
|
];
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return openBlock(), createElementBlock("label", {
|
|
class: normalizeClass(unref(labelKls))
|
|
}, [
|
|
withDirectives(createElementVNode("input", mergeProps({
|
|
"onUpdate:modelValue": ($event) => isRef(model) ? model.value = $event : null,
|
|
class: unref(ns).be("button", "original"),
|
|
type: "checkbox",
|
|
name: _ctx.name,
|
|
tabindex: _ctx.tabindex,
|
|
disabled: unref(isDisabled)
|
|
}, unref(inputBindings), {
|
|
onChange: unref(handleChange),
|
|
onFocus: ($event) => isFocused.value = true,
|
|
onBlur: ($event) => isFocused.value = false,
|
|
onClick: withModifiers(() => {
|
|
}, ["stop"])
|
|
}), null, 16, ["onUpdate:modelValue", "name", "tabindex", "disabled", "onChange", "onFocus", "onBlur", "onClick"]), [
|
|
[vModelCheckbox, unref(model)]
|
|
]),
|
|
_ctx.$slots.default || _ctx.label ? (openBlock(), createElementBlock("span", {
|
|
key: 0,
|
|
class: normalizeClass(unref(ns).be("button", "inner")),
|
|
style: normalizeStyle(unref(isChecked) ? unref(activeStyle) : void 0)
|
|
}, [
|
|
renderSlot(_ctx.$slots, "default", {}, () => [
|
|
createTextVNode(toDisplayString(_ctx.label), 1)
|
|
])
|
|
], 6)) : createCommentVNode("v-if", true)
|
|
], 2);
|
|
};
|
|
}
|
|
});
|
|
var CheckboxButton = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "checkbox-button.vue"]]);
|
|
|
|
export { CheckboxButton as default };
|
|
//# sourceMappingURL=checkbox-button.mjs.map
|