acdr-ui/dist/dev/mp-weixin/node-modules/wot-design-uni/components/wd-action-sheet/wd-action-sheet.js
2024-10-01 09:15:35 +08:00

189 lines
6.8 KiB
JavaScript

"use strict";
var __defProp = Object.defineProperty;
var __defProps = Object.defineProperties;
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __propIsEnum = Object.prototype.propertyIsEnumerable;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __spreadValues = (a, b) => {
for (var prop in b || (b = {}))
if (__hasOwnProp.call(b, prop))
__defNormalProp(a, prop, b[prop]);
if (__getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(b)) {
if (__propIsEnum.call(b, prop))
__defNormalProp(a, prop, b[prop]);
}
return a;
};
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
const common_vendor = require("../../../../common/vendor.js");
if (!Array) {
const _easycom_wd_icon2 = common_vendor.resolveComponent("wd-icon");
const _easycom_wd_loading2 = common_vendor.resolveComponent("wd-loading");
const _easycom_wd_popup2 = common_vendor.resolveComponent("wd-popup");
(_easycom_wd_icon2 + _easycom_wd_loading2 + _easycom_wd_popup2)();
}
const _easycom_wd_icon = () => "../wd-icon/wd-icon.js";
const _easycom_wd_loading = () => "../wd-loading/wd-loading.js";
const _easycom_wd_popup = () => "../wd-popup/wd-popup.js";
if (!Math) {
(_easycom_wd_icon + _easycom_wd_loading + _easycom_wd_popup)();
}
const __default__ = {
name: "wd-action-sheet",
options: {
addGlobalClass: true,
virtualHost: true,
styleIsolation: "shared"
}
};
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent(__spreadProps(__spreadValues({}, __default__), {
props: common_vendor.actionSheetProps,
emits: ["select", "click-modal", "cancel", "closed", "close", "open", "opened", "update:modelValue"],
setup(__props, { emit: __emit }) {
const props = __props;
const emit = __emit;
const formatPanels = common_vendor.ref([]);
const showPopup = common_vendor.ref(false);
common_vendor.watch(() => props.panels, computedValue, { deep: true, immediate: true });
common_vendor.watch(
() => props.modelValue,
(newValue) => {
showPopup.value = newValue;
},
{ deep: true, immediate: true }
);
function isPanelArray() {
return props.panels.length && !common_vendor.isArray(props.panels[0]);
}
function computedValue() {
formatPanels.value = isPanelArray() ? [props.panels] : props.panels;
}
function select(rowIndex, type, colIndex) {
if (type === "action") {
emit("select", {
item: props.actions[rowIndex],
index: rowIndex
});
} else if (isPanelArray()) {
emit("select", {
item: props.panels[Number(colIndex)],
index: colIndex
});
} else {
emit("select", {
item: props.panels[rowIndex][Number(colIndex)],
rowIndex,
colIndex
});
}
close();
}
function handleClickModal() {
emit("click-modal");
if (props.closeOnClickModal) {
close();
}
}
function handleCancel() {
emit("cancel");
close();
}
function close() {
emit("update:modelValue", false);
emit("close");
}
function handleOpen() {
emit("open");
}
function handleOpened() {
emit("opened");
}
function handleClosed() {
emit("closed");
}
return (_ctx, _cache) => {
return common_vendor.e({
a: _ctx.title
}, _ctx.title ? {
b: common_vendor.t(_ctx.title),
c: common_vendor.o(close),
d: common_vendor.p({
["custom-class"]: "wd-action-sheet__close",
name: "add"
}),
e: common_vendor.n(`wd-action-sheet__header ${_ctx.customHeaderClass}`)
} : {}, {
f: _ctx.actions && _ctx.actions.length
}, _ctx.actions && _ctx.actions.length ? {
g: common_vendor.f(_ctx.actions, (action, rowIndex, i0) => {
return common_vendor.e({
a: action.loading
}, action.loading ? {
b: "904a1f1d-2-" + i0 + ",904a1f1d-0",
c: common_vendor.p({
size: "20px"
})
} : {
d: common_vendor.t(action.name)
}, {
e: !action.loading && action.subname
}, !action.loading && action.subname ? {
f: common_vendor.t(action.subname)
} : {}, {
g: rowIndex,
h: common_vendor.n(`wd-action-sheet__action ${action.disabled ? "wd-action-sheet__action--disabled" : ""} ${action.loading ? "wd-action-sheet__action--loading" : ""}`),
i: common_vendor.s(`color: ${action.color}`),
j: common_vendor.o(($event) => select(rowIndex, "action"), rowIndex)
});
})
} : {}, {
h: formatPanels.value && formatPanels.value.length
}, formatPanels.value && formatPanels.value.length ? {
i: common_vendor.f(formatPanels.value, (panel, rowIndex, i0) => {
return {
a: common_vendor.f(panel, (col, colIndex, i1) => {
return {
a: col.iconUrl,
b: common_vendor.t(col.title),
c: colIndex,
d: common_vendor.o(($event) => select(rowIndex, "panels", colIndex), colIndex)
};
}),
b: rowIndex
};
})
} : {}, {
j: _ctx.cancelText
}, _ctx.cancelText ? {
k: common_vendor.t(_ctx.cancelText),
l: common_vendor.o(handleCancel)
} : {}, {
m: common_vendor.n(`wd-action-sheet ${_ctx.customClass}`),
n: common_vendor.s(`${_ctx.actions && _ctx.actions.length || _ctx.panels && _ctx.panels.length ? "margin: 0 10px calc(var(--window-bottom) + 10px) 10px; border-radius: 16px;" : "margin-bottom: var(--window-bottom);"} ${_ctx.customStyle}`),
o: common_vendor.o(handleOpen),
p: common_vendor.o(close),
q: common_vendor.o(handleOpened),
r: common_vendor.o(handleClosed),
s: common_vendor.o(handleClickModal),
t: common_vendor.o(($event) => showPopup.value = $event),
v: common_vendor.p({
["custom-class"]: "wd-action-sheet__popup",
["custom-style"]: `${_ctx.actions && _ctx.actions.length || _ctx.panels && _ctx.panels.length ? "background: transparent;" : ""}`,
duration: _ctx.duration,
position: "bottom",
["close-on-click-modal"]: _ctx.closeOnClickModal,
["safe-area-inset-bottom"]: _ctx.safeAreaInsetBottom,
["lazy-render"]: _ctx.lazyRender,
["z-index"]: _ctx.zIndex,
modelValue: showPopup.value
})
});
};
}
}));
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-904a1f1d"]]);
wx.createComponent(Component);