-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
81 lines (69 loc) · 1.99 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
import ModalContainer from './src/views/ModalsContainer.vue'
import Modal from './src/views/Modal.vue'
const VModal = {
$___root: null,
install(Vue, options = null) {
Vue.mixin({
data(){
return {
v___modals: []
}
},
methods:{
async $openModalAsync(component,options){
return new Promise((resolve, reject) => {
this.$vmodal.show(component,options,($event) => {
resolve($event);
})
})
}
},
computed: {
$___root() {
return VModal.event;
}
}
})
this.event = new Vue();
this.$___root = null;
this.installed = true;
let default_options = {
width: 700,
padding: 20,
background: 'white',
type: 'modal',
blur: true,
closable: true
}
if (options) {
default_options = {
...default_options,
...options
}
}
// register necessary component
Vue.component('VModalsComponent', ModalContainer)
Vue.component('VModal', Modal)
// 4. add an instance method
Vue.prototype.$vmodal = {
async show(component, {
props = {},
options = {}
},onClosed = null) {
let index = JSON.stringify(VModal.event.$data);
options = {
...default_options,
...options
}
// console.log({index})
VModal.event.$emit('addNewModal', {
component,
props,
options,
onClosed
});
}
}
}
}
export default VModal