forked from euvl/vue-js-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
71 lines (66 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
import Modal from './Modal.vue'
import Dialog from './Dialog.vue'
import ModalsContainer from './ModalsContainer.vue'
const defaultComponentName = 'modal'
const Plugin = {
install (Vue, options = {}) {
/**
* Makes sure that plugin can be insstalled only once
*/
if (this.installed) {
return
}
this.installed = true
this.event = new Vue()
this.dynamicContainer = null
this.componentName = options.componentName || defaultComponentName
/**
* Plugin API
*/
Vue.prototype.$modal = {
_setDynamicContainer (dynamicContainer) {
Plugin.dynamicContainer = dynamicContainer
},
show (modal, paramsOrProps, params, events = {}) {
if (typeof modal === 'string') {
Plugin.event.$emit('toggle', modal, true, paramsOrProps)
} else {
if (Plugin.dynamicContainer === null) {
console.warn('[vue-js-modal] In order to render dynamic modals, a <modals-container> component must be present on the page')
} else {
Plugin.dynamicContainer.add(modal, paramsOrProps, params, events)
}
}
},
hide (name, params) {
Plugin.event.$emit('toggle', name, false, params)
},
toggle (name, params) {
Plugin.event.$emit('toggle', name, undefined, params)
}
}
/**
* Sets custom component name (if provided)
*/
Vue.component(this.componentName, Modal)
/**
* Registration of <Dialog/> component
*/
if (options.dialog) {
Vue.component('v-dialog', Dialog)
}
/**
* Registration of <ModalsContainer/> component
*/
if (options.dynamic) {
if (options.injectModalsContainer) {
const modalsContainer = document.createElement('div')
document.body.appendChild(modalsContainer)
new Vue({ render: h => h(ModalsContainer) }).$mount(modalsContainer)
} else {
Vue.component('modals-container', ModalsContainer)
}
}
}
}
export default Plugin