UNPKG

tdesign-vue-next

Version:
46 lines (42 loc) 1.67 kB
/** * tdesign v1.11.5 * (c) 2025 tdesign * @license MIT */ import _typeof from '@babel/runtime/helpers/typeof'; import { getCurrentInstance, Comment, Fragment } from 'vue'; import { isArray } from 'lodash-es'; import { getChildren } from '../utils/render-tnode.js'; function useChildComponentSlots() { var instance = getCurrentInstance(); return function (childComponentName, slots) { var _slots, _slots$default; if (!slots) { slots = instance.slots; } var content = ((_slots = slots) === null || _slots === void 0 || (_slots$default = _slots["default"]) === null || _slots$default === void 0 ? void 0 : _slots$default.call(_slots)) || []; return getChildren(content).filter(function (item) { var _item$type$name; return (_item$type$name = item.type.name) === null || _item$type$name === void 0 ? void 0 : _item$type$name.endsWith(childComponentName); }); }; } function useChildSlots() { var instance = getCurrentInstance(); return function () { var _slots$default2; var slots = instance.slots; var content = (slots === null || slots === void 0 || (_slots$default2 = slots["default"]) === null || _slots$default2 === void 0 ? void 0 : _slots$default2.call(slots)) || []; return content.filter(function (item) { if (_typeof(item.type) === "symbol" && !item.children) { return false; } return item.type !== Comment; }).map(function (item) { if (item.children && isArray(item.children) && item.type === Fragment) return item.children; return item; }).flat(); }; } export { useChildComponentSlots, useChildSlots }; //# sourceMappingURL=slot.js.map