-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
/
Copy pathindex.js
108 lines (89 loc) · 2 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import Vue from 'vue';
import VanDialog from './Dialog';
import { isServer } from '../utils';
let instance;
function isInDocument(element) {
return document.body.contains(element);
}
function initInstance() {
if (instance) {
instance.$destroy();
}
instance = new (Vue.extend(VanDialog))({
el: document.createElement('div'),
// avoid missing animation when first rendered
propsData: {
lazyRender: false,
},
});
instance.$on('input', (value) => {
instance.value = value;
});
}
function Dialog(options) {
/* istanbul ignore if */
if (isServer) {
return Promise.resolve();
}
return new Promise((resolve, reject) => {
if (!instance || !isInDocument(instance.$el)) {
initInstance();
}
Object.assign(instance, Dialog.currentOptions, options, {
resolve,
reject,
});
});
}
Dialog.defaultOptions = {
value: true,
title: '',
width: '',
theme: null,
message: '',
overlay: true,
className: '',
allowHtml: true,
lockScroll: true,
transition: 'van-dialog-bounce',
beforeClose: null,
overlayClass: '',
overlayStyle: null,
messageAlign: '',
getContainer: 'body',
cancelButtonText: '',
cancelButtonColor: null,
confirmButtonText: '',
confirmButtonColor: null,
showConfirmButton: true,
showCancelButton: false,
closeOnPopstate: true,
closeOnClickOverlay: false,
callback: (action) => {
instance[action === 'confirm' ? 'resolve' : 'reject'](action);
},
};
Dialog.alert = Dialog;
Dialog.confirm = (options) =>
Dialog({
showCancelButton: true,
...options,
});
Dialog.close = () => {
if (instance) {
instance.value = false;
}
};
Dialog.setDefaultOptions = (options) => {
Object.assign(Dialog.currentOptions, options);
};
Dialog.resetDefaultOptions = () => {
Dialog.currentOptions = { ...Dialog.defaultOptions };
};
Dialog.resetDefaultOptions();
Dialog.install = () => {
Vue.use(VanDialog);
};
Dialog.Component = VanDialog;
Vue.prototype.$dialog = Dialog;
export default Dialog;