mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
109 lines
2.3 KiB
TypeScript
109 lines
2.3 KiB
TypeScript
let queue = [];
|
|
|
|
type DialogAction = 'confirm' | 'cancel';
|
|
type DialogOptions = {
|
|
show?: boolean;
|
|
title?: string;
|
|
zIndex?: number;
|
|
context?: any;
|
|
message?: string;
|
|
overlay?: boolean;
|
|
selector?: string;
|
|
asyncClose?: boolean;
|
|
confirmButtonText?: string;
|
|
cancelButtonText?: string;
|
|
showConfirmButton?: boolean;
|
|
showCancelButton?: boolean;
|
|
closeOnClickOverlay?: boolean;
|
|
confirmButtonOpenType?: string;
|
|
}
|
|
|
|
interface Dialog {
|
|
(options: DialogOptions): Promise<DialogAction>;
|
|
alert?: (options: DialogOptions) => Promise<DialogAction>;
|
|
confirm?: (options: DialogOptions) => Promise<DialogAction>;
|
|
close?: () => void;
|
|
stopLoading?: () => void;
|
|
install?: () => void;
|
|
setDefaultOptions?: (options: DialogOptions) => void;
|
|
resetDefaultOptions?: () => void;
|
|
defaultOptions?: DialogOptions;
|
|
currentOptions?: DialogOptions;
|
|
}
|
|
|
|
function getContext() {
|
|
const pages = getCurrentPages();
|
|
return pages[pages.length - 1];
|
|
}
|
|
|
|
const Dialog: Dialog = options => {
|
|
return new Promise((resolve, reject) => {
|
|
const context = options.context || getContext();
|
|
const dialog = context.selectComponent(options.selector);
|
|
delete options.selector;
|
|
|
|
if (dialog) {
|
|
dialog.setData({
|
|
onCancel: reject,
|
|
onConfirm: resolve,
|
|
...options
|
|
});
|
|
queue.push(dialog);
|
|
}
|
|
});
|
|
};
|
|
|
|
Dialog.defaultOptions = {
|
|
show: true,
|
|
title: '',
|
|
message: '',
|
|
zIndex: 100,
|
|
overlay: true,
|
|
asyncClose: false,
|
|
selector: '#van-dialog',
|
|
confirmButtonText: '确认',
|
|
cancelButtonText: '取消',
|
|
showConfirmButton: true,
|
|
showCancelButton: false,
|
|
closeOnClickOverlay: false,
|
|
confirmButtonOpenType: ''
|
|
};
|
|
|
|
Dialog.alert = options =>
|
|
Dialog({
|
|
...Dialog.currentOptions,
|
|
...options
|
|
});
|
|
|
|
Dialog.confirm = options =>
|
|
Dialog({
|
|
...Dialog.currentOptions,
|
|
showCancelButton: true,
|
|
...options
|
|
});
|
|
|
|
Dialog.close = () => {
|
|
queue.forEach(dialog => {
|
|
dialog.close();
|
|
});
|
|
queue = [];
|
|
};
|
|
|
|
Dialog.stopLoading = () => {
|
|
queue.forEach(dialog => {
|
|
dialog.stopLoading();
|
|
});
|
|
};
|
|
|
|
Dialog.setDefaultOptions = options => {
|
|
Object.assign(Dialog.currentOptions, options);
|
|
};
|
|
|
|
Dialog.resetDefaultOptions = () => {
|
|
Dialog.currentOptions = { ...Dialog.defaultOptions };
|
|
};
|
|
|
|
Dialog.resetDefaultOptions();
|
|
|
|
export default Dialog;
|