mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
const defaultData = require('./data');
|
||
|
||
function getDialogCtx({ selector, pageCtx }) {
|
||
let ctx = pageCtx;
|
||
if (!ctx) {
|
||
const pages = getCurrentPages();
|
||
ctx = pages[pages.length - 1];
|
||
}
|
||
return ctx.selectComponent(selector);
|
||
}
|
||
|
||
function getParsedOptions(options = {}) {
|
||
return {
|
||
// 自定义 button 列表
|
||
// { type: 按钮类型,回调时以此作为区分依据,text: 按钮文案, color: 按钮文字颜色 }
|
||
buttons: [],
|
||
...defaultData,
|
||
...options
|
||
};
|
||
}
|
||
|
||
// options 使用参数
|
||
// pageCtx 页面 page 上下文
|
||
function Dialog(options, pageCtx) {
|
||
const parsedOptions = getParsedOptions(options);
|
||
|
||
const dialogCtx = getDialogCtx({
|
||
selector: parsedOptions.selector,
|
||
pageCtx
|
||
});
|
||
|
||
if (!dialogCtx) {
|
||
console.error('无法找到对应的dialog组件,请于页面中注册并在 wxml 中声明 dialog 自定义组件');
|
||
return Promise.reject({ type: 'component error' });
|
||
}
|
||
|
||
// 处理默认按钮的展示
|
||
// 纵向排布确认按钮在上方
|
||
const { buttons = [] } = parsedOptions;
|
||
let showCustomBtns = false;
|
||
if (buttons.length === 0) {
|
||
if (parsedOptions.showConfirmButton) {
|
||
buttons.push({
|
||
type: 'confirm',
|
||
text: parsedOptions.confirmButtonText,
|
||
color: parsedOptions.confirmButtonColor
|
||
});
|
||
}
|
||
|
||
if (parsedOptions.showCancelButton) {
|
||
const cancelButton = {
|
||
type: 'cancel',
|
||
text: parsedOptions.cancelButtonText,
|
||
color: parsedOptions.cancelButtonColor
|
||
};
|
||
if (parsedOptions.buttonsShowVertical) {
|
||
buttons.push(cancelButton);
|
||
} else {
|
||
buttons.unshift(cancelButton);
|
||
}
|
||
}
|
||
} else {
|
||
showCustomBtns = true;
|
||
}
|
||
|
||
return new Promise((resolve, reject) => {
|
||
dialogCtx.setData({
|
||
...parsedOptions,
|
||
buttons,
|
||
showCustomBtns,
|
||
key: `${(new Date()).getTime()}`,
|
||
show: true,
|
||
promiseFunc: { resolve, reject },
|
||
openTypePromiseFunc: null
|
||
});
|
||
});
|
||
}
|
||
|
||
Dialog.close = function (options, pageCtx) {
|
||
const parsedOptions = getParsedOptions(options);
|
||
|
||
const dialogCtx = getDialogCtx({
|
||
selector: parsedOptions.selector,
|
||
pageCtx
|
||
});
|
||
|
||
if (!dialogCtx) {
|
||
return;
|
||
}
|
||
|
||
dialogCtx.setData({
|
||
show: false,
|
||
promiseFunc: null,
|
||
openTypePromiseFunc: null
|
||
});
|
||
};
|
||
|
||
module.exports = Dialog;
|