mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
99 lines
2.0 KiB
JavaScript
99 lines
2.0 KiB
JavaScript
import Vue from 'vue';
|
|
import Dialog from './dialog.vue';
|
|
import merge from 'src/utils/merge';
|
|
|
|
const DialogConstructor = Vue.extend(Dialog);
|
|
|
|
let currentDialog;
|
|
let instance;
|
|
let dialogQueue = [];
|
|
|
|
const defaultCallback = action => {
|
|
if (currentDialog) {
|
|
let callback = currentDialog.callback;
|
|
|
|
if (typeof callback === 'function') {
|
|
callback(action);
|
|
}
|
|
|
|
if (currentDialog.resolve && action === 'confirm') {
|
|
currentDialog.resolve(action);
|
|
} else if (currentDialog.reject && action === 'cancel') {
|
|
currentDialog.reject(action);
|
|
}
|
|
}
|
|
};
|
|
|
|
const initInstance = () => {
|
|
instance = new DialogConstructor({
|
|
el: document.createElement('div')
|
|
});
|
|
|
|
instance.callback = defaultCallback;
|
|
};
|
|
|
|
const showNextDialog = () => {
|
|
if (!instance) {
|
|
initInstance();
|
|
}
|
|
|
|
if (!instance.value && dialogQueue.length > 0) {
|
|
currentDialog = dialogQueue.shift();
|
|
|
|
let options = currentDialog.options;
|
|
|
|
for (let prop in options) {
|
|
if (options.hasOwnProperty(prop)) {
|
|
instance[prop] = options[prop];
|
|
}
|
|
}
|
|
|
|
if (options.callback === undefined) {
|
|
instance.callback = defaultCallback;
|
|
}
|
|
|
|
document.body.appendChild(instance.$el);
|
|
|
|
Vue.nextTick(() => {
|
|
instance.value = true;
|
|
});
|
|
}
|
|
};
|
|
|
|
var DialogBox = options => {
|
|
return new Promise((resolve, reject) => { // eslint-disable-line
|
|
dialogQueue.push({
|
|
options: merge({}, options),
|
|
callback: options.callback,
|
|
resolve: resolve,
|
|
reject: reject
|
|
});
|
|
|
|
showNextDialog();
|
|
});
|
|
};
|
|
|
|
DialogBox.alert = function(options) {
|
|
return DialogBox(merge({
|
|
type: 'alert',
|
|
closeOnClickOverlay: false,
|
|
showCancelButton: false
|
|
}, options));
|
|
};
|
|
|
|
DialogBox.confirm = function(options) {
|
|
return DialogBox(merge({
|
|
type: 'confirm',
|
|
closeOnClickOverlay: true,
|
|
showCancelButton: true
|
|
}, options));
|
|
};
|
|
|
|
DialogBox.close = function() {
|
|
instance.value = false;
|
|
dialogQueue = [];
|
|
currentDialog = null;
|
|
};
|
|
|
|
export default DialogBox;
|