123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var vue = require('vue');
- var index = require('../../checkbox/index.js');
- var index$1 = require('../../radio/index.js');
- var index$2 = require('../../icon/index.js');
- var iconsVue = require('@element-plus/icons-vue');
- var nodeContent = require('./node-content.js');
- var types = require('./types.js');
- var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
- var index$3 = require('../../../hooks/use-namespace/index.js');
- const _sfc_main = vue.defineComponent({
- name: "ElCascaderNode",
- components: {
- ElCheckbox: index.ElCheckbox,
- ElRadio: index$1.ElRadio,
- NodeContent: nodeContent["default"],
- ElIcon: index$2.ElIcon,
- Check: iconsVue.Check,
- Loading: iconsVue.Loading,
- ArrowRight: iconsVue.ArrowRight
- },
- props: {
- node: {
- type: Object,
- required: true
- },
- menuId: String
- },
- emits: ["expand"],
- setup(props, { emit }) {
- const panel = vue.inject(types.CASCADER_PANEL_INJECTION_KEY);
- const ns = index$3.useNamespace("cascader-node");
- const isHoverMenu = vue.computed(() => panel.isHoverMenu);
- const multiple = vue.computed(() => panel.config.multiple);
- const checkStrictly = vue.computed(() => panel.config.checkStrictly);
- const checkedNodeId = vue.computed(() => {
- var _a;
- return (_a = panel.checkedNodes[0]) == null ? void 0 : _a.uid;
- });
- const isDisabled = vue.computed(() => props.node.isDisabled);
- const isLeaf = vue.computed(() => props.node.isLeaf);
- const expandable = vue.computed(() => checkStrictly.value && !isLeaf.value || !isDisabled.value);
- const inExpandingPath = vue.computed(() => isInPath(panel.expandingNode));
- const inCheckedPath = vue.computed(() => checkStrictly.value && panel.checkedNodes.some(isInPath));
- const isInPath = (node) => {
- var _a;
- const { level, uid } = props.node;
- return ((_a = node == null ? void 0 : node.pathNodes[level - 1]) == null ? void 0 : _a.uid) === uid;
- };
- const doExpand = () => {
- if (inExpandingPath.value)
- return;
- panel.expandNode(props.node);
- };
- const doCheck = (checked) => {
- const { node } = props;
- if (checked === node.checked)
- return;
- panel.handleCheckChange(node, checked);
- };
- const doLoad = () => {
- panel.lazyLoad(props.node, () => {
- if (!isLeaf.value)
- doExpand();
- });
- };
- const handleHoverExpand = (e) => {
- if (!isHoverMenu.value)
- return;
- handleExpand();
- !isLeaf.value && emit("expand", e);
- };
- const handleExpand = () => {
- const { node } = props;
- if (!expandable.value || node.loading)
- return;
- node.loaded ? doExpand() : doLoad();
- };
- const handleClick = () => {
- if (isHoverMenu.value && !isLeaf.value)
- return;
- if (isLeaf.value && !isDisabled.value && !checkStrictly.value && !multiple.value) {
- handleCheck(true);
- } else {
- handleExpand();
- }
- };
- const handleSelectCheck = (checked) => {
- if (checkStrictly.value) {
- doCheck(checked);
- if (props.node.loaded) {
- doExpand();
- }
- } else {
- handleCheck(checked);
- }
- };
- const handleCheck = (checked) => {
- if (!props.node.loaded) {
- doLoad();
- } else {
- doCheck(checked);
- !checkStrictly.value && doExpand();
- }
- };
- return {
- panel,
- isHoverMenu,
- multiple,
- checkStrictly,
- checkedNodeId,
- isDisabled,
- isLeaf,
- expandable,
- inExpandingPath,
- inCheckedPath,
- ns,
- handleHoverExpand,
- handleExpand,
- handleClick,
- handleCheck,
- handleSelectCheck
- };
- }
- });
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- const _component_el_checkbox = vue.resolveComponent("el-checkbox");
- const _component_el_radio = vue.resolveComponent("el-radio");
- const _component_check = vue.resolveComponent("check");
- const _component_el_icon = vue.resolveComponent("el-icon");
- const _component_node_content = vue.resolveComponent("node-content");
- const _component_loading = vue.resolveComponent("loading");
- const _component_arrow_right = vue.resolveComponent("arrow-right");
- return vue.openBlock(), vue.createElementBlock("li", {
- id: `${_ctx.menuId}-${_ctx.node.uid}`,
- role: "menuitem",
- "aria-haspopup": !_ctx.isLeaf,
- "aria-owns": _ctx.isLeaf ? void 0 : _ctx.menuId,
- "aria-expanded": _ctx.inExpandingPath,
- tabindex: _ctx.expandable ? -1 : void 0,
- class: vue.normalizeClass([
- _ctx.ns.b(),
- _ctx.ns.is("selectable", _ctx.checkStrictly),
- _ctx.ns.is("active", _ctx.node.checked),
- _ctx.ns.is("disabled", !_ctx.expandable),
- _ctx.inExpandingPath && "in-active-path",
- _ctx.inCheckedPath && "in-checked-path"
- ]),
- onMouseenter: _ctx.handleHoverExpand,
- onFocus: _ctx.handleHoverExpand,
- onClick: _ctx.handleClick
- }, [
- vue.createCommentVNode(" prefix "),
- _ctx.multiple ? (vue.openBlock(), vue.createBlock(_component_el_checkbox, {
- key: 0,
- "model-value": _ctx.node.checked,
- indeterminate: _ctx.node.indeterminate,
- disabled: _ctx.isDisabled,
- onClick: vue.withModifiers(() => {
- }, ["stop"]),
- "onUpdate:modelValue": _ctx.handleSelectCheck
- }, null, 8, ["model-value", "indeterminate", "disabled", "onClick", "onUpdate:modelValue"])) : _ctx.checkStrictly ? (vue.openBlock(), vue.createBlock(_component_el_radio, {
- key: 1,
- "model-value": _ctx.checkedNodeId,
- label: _ctx.node.uid,
- disabled: _ctx.isDisabled,
- "onUpdate:modelValue": _ctx.handleSelectCheck,
- onClick: vue.withModifiers(() => {
- }, ["stop"])
- }, {
- default: vue.withCtx(() => [
- vue.createCommentVNode("\n Add an empty element to avoid render label,\n do not use empty fragment here for https://github.com/vuejs/vue-next/pull/2485\n "),
- vue.createElementVNode("span")
- ]),
- _: 1
- }, 8, ["model-value", "label", "disabled", "onUpdate:modelValue", "onClick"])) : _ctx.isLeaf && _ctx.node.checked ? (vue.openBlock(), vue.createBlock(_component_el_icon, {
- key: 2,
- class: vue.normalizeClass(_ctx.ns.e("prefix"))
- }, {
- default: vue.withCtx(() => [
- vue.createVNode(_component_check)
- ]),
- _: 1
- }, 8, ["class"])) : vue.createCommentVNode("v-if", true),
- vue.createCommentVNode(" content "),
- vue.createVNode(_component_node_content),
- vue.createCommentVNode(" postfix "),
- !_ctx.isLeaf ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 3 }, [
- _ctx.node.loading ? (vue.openBlock(), vue.createBlock(_component_el_icon, {
- key: 0,
- class: vue.normalizeClass([_ctx.ns.is("loading"), _ctx.ns.e("postfix")])
- }, {
- default: vue.withCtx(() => [
- vue.createVNode(_component_loading)
- ]),
- _: 1
- }, 8, ["class"])) : (vue.openBlock(), vue.createBlock(_component_el_icon, {
- key: 1,
- class: vue.normalizeClass(["arrow-right", _ctx.ns.e("postfix")])
- }, {
- default: vue.withCtx(() => [
- vue.createVNode(_component_arrow_right)
- ]),
- _: 1
- }, 8, ["class"]))
- ], 64)) : vue.createCommentVNode("v-if", true)
- ], 42, ["id", "aria-haspopup", "aria-owns", "aria-expanded", "tabindex", "onMouseenter", "onFocus", "onClick"]);
- }
- var ElCascaderNode = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["render", _sfc_render], ["__file", "node.vue"]]);
- exports["default"] = ElCascaderNode;
- //# sourceMappingURL=node2.js.map
|