mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 18:00:20 +00:00
Merge pull request #175 from NoelDeMartin/dynamic-modals
Dynamic modals
This commit is contained in:
44
README.md
44
README.md
@@ -133,6 +133,50 @@ this.$modal.show('dialog', {
|
|||||||
<img src="https://user-images.githubusercontent.com/1577802/29165216-ec62552c-7db9-11e7-807e-ef341edcc94d.png">
|
<img src="https://user-images.githubusercontent.com/1577802/29165216-ec62552c-7db9-11e7-807e-ef341edcc94d.png">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
### Dynamic Modals
|
||||||
|
|
||||||
|
In order to instantiate modals at runtime (for lazy-loading or decluttering templates), it is possible to create modals dynamically.
|
||||||
|
|
||||||
|
To start using this feature you must set `dynamic: true` in plugin configuration:
|
||||||
|
|
||||||
|
```js
|
||||||
|
Vue.use(VModal, { dynamic: true })
|
||||||
|
```
|
||||||
|
|
||||||
|
And include the `<modals-container/>` component it in your project:
|
||||||
|
|
||||||
|
```vue
|
||||||
|
<modals-container/>
|
||||||
|
```
|
||||||
|
|
||||||
|
Call it (the first argument is the component definition, the second are component properties, and the third modal parameters):
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
this.$modal.show({
|
||||||
|
template: `
|
||||||
|
<div>
|
||||||
|
<h1>This is created inline</h1>
|
||||||
|
<p>{{ text }}</p>
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
props: ['text']
|
||||||
|
}, {
|
||||||
|
text: 'This text is passed as a property'
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
It can also be used with `.vue` files:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
import MyComponent from './MyComponent.vue'
|
||||||
|
|
||||||
|
this.$modal.show(MyComponent, {
|
||||||
|
text: 'This text is passed as a property'
|
||||||
|
}, {
|
||||||
|
draggable: true
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
For more examples please take a look at [vue-js-modal.yev.io](http://vue-js-modal.yev.io).
|
For more examples please take a look at [vue-js-modal.yev.io](http://vue-js-modal.yev.io).
|
||||||
|
|
||||||
### SSR
|
### SSR
|
||||||
|
|||||||
@@ -7,6 +7,8 @@
|
|||||||
<demo-focus-modal/>
|
<demo-focus-modal/>
|
||||||
<demo-size-modal/>
|
<demo-size-modal/>
|
||||||
|
|
||||||
|
<modals-container />
|
||||||
|
|
||||||
<v-dialog
|
<v-dialog
|
||||||
@before-opened="dialogEvent('before-open')"
|
@before-opened="dialogEvent('before-open')"
|
||||||
@before-closed="dialogEvent('before-close')"
|
@before-closed="dialogEvent('before-close')"
|
||||||
@@ -106,6 +108,22 @@
|
|||||||
@click="showButtonsDialog">
|
@click="showButtonsDialog">
|
||||||
Dialog: buttons
|
Dialog: buttons
|
||||||
</button>
|
</button>
|
||||||
|
<br>
|
||||||
|
<button
|
||||||
|
class="btn"
|
||||||
|
@click="showDynamicRuntimeModal">
|
||||||
|
Dynamic: Runtime Modal
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="btn"
|
||||||
|
@click="showDynamicComponentModal">
|
||||||
|
Dynamic: Component Modal
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="btn"
|
||||||
|
@click="showDynamicComponentModalWithModalParams">
|
||||||
|
Dynamic: Component Modal with modal params
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -118,6 +136,7 @@ import DemoLoginModal from './components/DemoLoginModal.vue'
|
|||||||
import DemoDogProfileModal from './components/DogProfileModal.vue'
|
import DemoDogProfileModal from './components/DogProfileModal.vue'
|
||||||
import DemoConditionalModal from './components/ConditionalModal.vue'
|
import DemoConditionalModal from './components/ConditionalModal.vue'
|
||||||
import DemoSizeModal from './components/SizeModal.vue'
|
import DemoSizeModal from './components/SizeModal.vue'
|
||||||
|
import CustomComponentModal from './components/CustomComponentModal.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'app',
|
name: 'app',
|
||||||
@@ -203,6 +222,36 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
showDynamicRuntimeModal () {
|
||||||
|
this.$modal.show({
|
||||||
|
template: `
|
||||||
|
<div>
|
||||||
|
<h1>This is created inline</h1>
|
||||||
|
<p>{{ text }}</p>
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
props: ['text']
|
||||||
|
}, {
|
||||||
|
text: 'This text is passed as a property'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
showDynamicComponentModal () {
|
||||||
|
this.$modal.show(CustomComponentModal, {
|
||||||
|
text: 'This text is passed as a property'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
showDynamicComponentModalWithModalParams () {
|
||||||
|
this.$modal.show(CustomComponentModal, {
|
||||||
|
text: 'This text is passed as a property'
|
||||||
|
}, {
|
||||||
|
resizable: true,
|
||||||
|
adaptive: true,
|
||||||
|
draggable: true,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
dialogEvent (eventName) {
|
dialogEvent (eventName) {
|
||||||
console.log('Dialog event: ' + eventName)
|
console.log('Dialog event: ' + eventName)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h1>This is a custom component</h1>
|
||||||
|
<p>{{ text }}</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: ['text']
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -3,7 +3,8 @@ import App from './App.vue'
|
|||||||
import VueJsModal from 'plugin'
|
import VueJsModal from 'plugin'
|
||||||
|
|
||||||
Vue.use(VueJsModal, {
|
Vue.use(VueJsModal, {
|
||||||
dialog: true
|
dialog: true,
|
||||||
|
dynamic: true,
|
||||||
})
|
})
|
||||||
|
|
||||||
new Vue({
|
new Vue({
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
"build:ssr-no-css": "webpack --config ./build/webpack.ssr-no-css.config.js --progress --hide-modules",
|
"build:ssr-no-css": "webpack --config ./build/webpack.ssr-no-css.config.js --progress --hide-modules",
|
||||||
"lint": "eslint --ext .js,.vue src test/unit/specs",
|
"lint": "eslint --ext .js,.vue src test/unit/specs",
|
||||||
"unit": "./node_modules/karma/bin/karma start test/unit/karma.conf.js",
|
"unit": "./node_modules/karma/bin/karma start test/unit/karma.conf.js",
|
||||||
|
"watch": "webpack --config ./build/webpack.client.config.js --progress --hide-modules --watch",
|
||||||
"build": "npm run build:client && npm run build:ssr && npm run build:ssr-no-css",
|
"build": "npm run build:client && npm run build:ssr && npm run build:ssr-no-css",
|
||||||
"test:types": "tsc -p types/test"
|
"test:types": "tsc -p types/test"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -55,40 +55,40 @@ export default {
|
|||||||
default: 'fade'
|
default: 'fade'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data () {
|
||||||
return {
|
return {
|
||||||
params: {},
|
params: {},
|
||||||
defaultButtons: [{ title: 'CLOSE' }]
|
defaultButtons: [{ title: 'CLOSE' }]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
buttons() {
|
buttons () {
|
||||||
return this.params.buttons || this.defaultButtons
|
return this.params.buttons || this.defaultButtons
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* Returns FLEX style with correct width for arbitrary number of
|
* Returns FLEX style with correct width for arbitrary number of
|
||||||
* buttons.
|
* buttons.
|
||||||
*/
|
*/
|
||||||
buttonStyle() {
|
buttonStyle () {
|
||||||
return {
|
return {
|
||||||
flex: `1 1 ${100 / this.buttons.length}%`
|
flex: `1 1 ${100 / this.buttons.length}%`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
beforeOpened(event) {
|
beforeOpened (event) {
|
||||||
window.addEventListener('keyup', this.onKeyUp)
|
window.addEventListener('keyup', this.onKeyUp)
|
||||||
|
|
||||||
this.params = event.params || {}
|
this.params = event.params || {}
|
||||||
this.$emit('before-opened', event)
|
this.$emit('before-opened', event)
|
||||||
},
|
},
|
||||||
beforeClosed(event) {
|
beforeClosed (event) {
|
||||||
window.removeEventListener('keyup', this.onKeyUp)
|
window.removeEventListener('keyup', this.onKeyUp)
|
||||||
|
|
||||||
this.params = {}
|
this.params = {}
|
||||||
this.$emit('before-closed', event)
|
this.$emit('before-closed', event)
|
||||||
},
|
},
|
||||||
click(i, event, source = 'click') {
|
click (i, event, source = 'click') {
|
||||||
const button = this.buttons[i]
|
const button = this.buttons[i]
|
||||||
|
|
||||||
if (button && typeof button.handler === 'function') {
|
if (button && typeof button.handler === 'function') {
|
||||||
@@ -97,7 +97,7 @@ export default {
|
|||||||
this.$modal.hide('dialog')
|
this.$modal.hide('dialog')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onKeyUp(event) {
|
onKeyUp (event) {
|
||||||
if (event.which === 13 && this.buttons.length > 0) {
|
if (event.which === 13 && this.buttons.length > 0) {
|
||||||
const buttonIndex =
|
const buttonIndex =
|
||||||
this.buttons.length === 1
|
this.buttons.length === 1
|
||||||
|
|||||||
@@ -78,14 +78,14 @@ export default {
|
|||||||
minWidth: {
|
minWidth: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0,
|
default: 0,
|
||||||
validator(value) {
|
validator (value) {
|
||||||
return value >= 0
|
return value >= 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
minHeight: {
|
minHeight: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0,
|
default: 0,
|
||||||
validator(value) {
|
validator (value) {
|
||||||
return value >= 0
|
return value >= 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -100,7 +100,7 @@ export default {
|
|||||||
width: {
|
width: {
|
||||||
type: [Number, String],
|
type: [Number, String],
|
||||||
default: 600,
|
default: 600,
|
||||||
validator(value) {
|
validator (value) {
|
||||||
if (typeof value === 'string') {
|
if (typeof value === 'string') {
|
||||||
let width = parseNumber(value)
|
let width = parseNumber(value)
|
||||||
return (width.type === '%' || width.type === 'px') && width.value > 0
|
return (width.type === '%' || width.type === 'px') && width.value > 0
|
||||||
@@ -112,7 +112,7 @@ export default {
|
|||||||
height: {
|
height: {
|
||||||
type: [Number, String],
|
type: [Number, String],
|
||||||
default: 300,
|
default: 300,
|
||||||
validator(value) {
|
validator (value) {
|
||||||
if (typeof value === 'string') {
|
if (typeof value === 'string') {
|
||||||
if (value === 'auto') {
|
if (value === 'auto') {
|
||||||
return true
|
return true
|
||||||
@@ -130,14 +130,14 @@ export default {
|
|||||||
pivotX: {
|
pivotX: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0.5,
|
default: 0.5,
|
||||||
validator(value) {
|
validator (value) {
|
||||||
return value >= 0 && value <= 1
|
return value >= 0 && value <= 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
pivotY: {
|
pivotY: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0.5,
|
default: 0.5,
|
||||||
validator(value) {
|
validator (value) {
|
||||||
return value >= 0 && value <= 1
|
return value >= 0 && value <= 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -145,7 +145,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
Resizer
|
Resizer
|
||||||
},
|
},
|
||||||
data() {
|
data () {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
|
|
||||||
@@ -182,7 +182,7 @@ export default {
|
|||||||
* inside `setTimeout` and `$nextTick`, after the DOM changes.
|
* inside `setTimeout` and `$nextTick`, after the DOM changes.
|
||||||
* This fixes `$refs.modal` `undefined` bug (fixes #15)
|
* This fixes `$refs.modal` `undefined` bug (fixes #15)
|
||||||
*/
|
*/
|
||||||
visible(value) {
|
visible (value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
this.visibility.overlay = true
|
this.visibility.overlay = true
|
||||||
|
|
||||||
@@ -206,13 +206,13 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created () {
|
||||||
this.setInitialSize()
|
this.setInitialSize()
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* Sets global listeners
|
* Sets global listeners
|
||||||
*/
|
*/
|
||||||
beforeMount() {
|
beforeMount () {
|
||||||
Modal.event.$on('toggle', (name, state, params) => {
|
Modal.event.$on('toggle', (name, state, params) => {
|
||||||
if (name === this.name) {
|
if (name === this.name) {
|
||||||
if (typeof state === 'undefined') {
|
if (typeof state === 'undefined') {
|
||||||
@@ -247,7 +247,7 @@ export default {
|
|||||||
* simply stay at its initial height (won't crash).
|
* simply stay at its initial height (won't crash).
|
||||||
* (Provide polyfill to support IE < 11)
|
* (Provide polyfill to support IE < 11)
|
||||||
*/
|
*/
|
||||||
const MutationObserver = (function() {
|
const MutationObserver = (function () {
|
||||||
const prefixes = ['', 'WebKit', 'Moz', 'O', 'Ms']
|
const prefixes = ['', 'WebKit', 'Moz', 'O', 'Ms']
|
||||||
|
|
||||||
for (let i = 0; i < prefixes.length; i++) {
|
for (let i = 0; i < prefixes.length; i++) {
|
||||||
@@ -274,7 +274,7 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Removes "resize" window listener
|
* Removes "resize" window listener
|
||||||
*/
|
*/
|
||||||
beforeDestroy() {
|
beforeDestroy () {
|
||||||
window.removeEventListener('resize', this.onWindowResize)
|
window.removeEventListener('resize', this.onWindowResize)
|
||||||
|
|
||||||
if (this.clickToClose) {
|
if (this.clickToClose) {
|
||||||
@@ -285,14 +285,14 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Returns true if height is set to "auto"
|
* Returns true if height is set to "auto"
|
||||||
*/
|
*/
|
||||||
isAutoHeight() {
|
isAutoHeight () {
|
||||||
return this.modal.heightType === 'auto'
|
return this.modal.heightType === 'auto'
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* Calculates and returns modal position based on the
|
* Calculates and returns modal position based on the
|
||||||
* pivots, window size and modal size
|
* pivots, window size and modal size
|
||||||
*/
|
*/
|
||||||
position() {
|
position () {
|
||||||
const {
|
const {
|
||||||
window,
|
window,
|
||||||
shift,
|
shift,
|
||||||
@@ -317,7 +317,7 @@ export default {
|
|||||||
* Returns pixel width (if set with %) and makes sure that modal size
|
* Returns pixel width (if set with %) and makes sure that modal size
|
||||||
* fits the window
|
* fits the window
|
||||||
*/
|
*/
|
||||||
trueModalWidth() {
|
trueModalWidth () {
|
||||||
const { window, modal, adaptive, minWidth, maxWidth } = this
|
const { window, modal, adaptive, minWidth, maxWidth } = this
|
||||||
|
|
||||||
const value =
|
const value =
|
||||||
@@ -333,7 +333,7 @@ export default {
|
|||||||
*
|
*
|
||||||
* Returns modal.renderedHeight if height set as "auto"
|
* Returns modal.renderedHeight if height set as "auto"
|
||||||
*/
|
*/
|
||||||
trueModalHeight() {
|
trueModalHeight () {
|
||||||
const { window, modal, isAutoHeight, adaptive, maxHeight } = this
|
const { window, modal, isAutoHeight, adaptive, maxHeight } = this
|
||||||
|
|
||||||
const value =
|
const value =
|
||||||
@@ -353,7 +353,7 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Returns class list for screen overlay (modal background)
|
* Returns class list for screen overlay (modal background)
|
||||||
*/
|
*/
|
||||||
overlayClass() {
|
overlayClass () {
|
||||||
return {
|
return {
|
||||||
'v--modal-overlay': true,
|
'v--modal-overlay': true,
|
||||||
scrollable: this.scrollable && this.isAutoHeight
|
scrollable: this.scrollable && this.isAutoHeight
|
||||||
@@ -362,13 +362,13 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Returns class list for modal itself
|
* Returns class list for modal itself
|
||||||
*/
|
*/
|
||||||
modalClass() {
|
modalClass () {
|
||||||
return ['v--modal-box', this.classes]
|
return ['v--modal-box', this.classes]
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* CSS styles for position and size of the modal
|
* CSS styles for position and size of the modal
|
||||||
*/
|
*/
|
||||||
modalStyle() {
|
modalStyle () {
|
||||||
return {
|
return {
|
||||||
top: this.position.top + 'px',
|
top: this.position.top + 'px',
|
||||||
left: this.position.left + 'px',
|
left: this.position.left + 'px',
|
||||||
@@ -383,7 +383,7 @@ export default {
|
|||||||
* if "reset" flag is set to true - this function will be called
|
* if "reset" flag is set to true - this function will be called
|
||||||
* every time "beforeOpen" is triggered
|
* every time "beforeOpen" is triggered
|
||||||
*/
|
*/
|
||||||
setInitialSize() {
|
setInitialSize () {
|
||||||
const { modal } = this
|
const { modal } = this
|
||||||
const width = parseNumber(this.width)
|
const width = parseNumber(this.width)
|
||||||
const height = parseNumber(this.height)
|
const height = parseNumber(this.height)
|
||||||
@@ -394,13 +394,13 @@ export default {
|
|||||||
modal.heightType = height.type
|
modal.heightType = height.type
|
||||||
},
|
},
|
||||||
|
|
||||||
onEscapeKeyUp(event) {
|
onEscapeKeyUp (event) {
|
||||||
if (event.which === 27 && this.visible) {
|
if (event.which === 27 && this.visible) {
|
||||||
this.$modal.hide(this.name)
|
this.$modal.hide(this.name)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onWindowResize() {
|
onWindowResize () {
|
||||||
this.window.width = window.innerWidth
|
this.window.width = window.innerWidth
|
||||||
this.window.height = window.innerHeight
|
this.window.height = window.innerHeight
|
||||||
},
|
},
|
||||||
@@ -408,7 +408,7 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Generates event object
|
* Generates event object
|
||||||
*/
|
*/
|
||||||
genEventObject(params) {
|
genEventObject (params) {
|
||||||
const eventData = {
|
const eventData = {
|
||||||
name: this.name,
|
name: this.name,
|
||||||
timestamp: Date.now(),
|
timestamp: Date.now(),
|
||||||
@@ -421,7 +421,7 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Event handler which is triggered on modal resize
|
* Event handler which is triggered on modal resize
|
||||||
*/
|
*/
|
||||||
onModalResize(event) {
|
onModalResize (event) {
|
||||||
this.modal.widthType = 'px'
|
this.modal.widthType = 'px'
|
||||||
this.modal.width = event.size.width
|
this.modal.width = event.size.width
|
||||||
|
|
||||||
@@ -438,7 +438,7 @@ export default {
|
|||||||
* BeforeEvents: ('before-close' and 'before-open') are `$emit`ed here,
|
* BeforeEvents: ('before-close' and 'before-open') are `$emit`ed here,
|
||||||
* but AfterEvents ('opened' and 'closed') are moved to `watch.visible`.
|
* but AfterEvents ('opened' and 'closed') are moved to `watch.visible`.
|
||||||
*/
|
*/
|
||||||
toggle(state, params) {
|
toggle (state, params) {
|
||||||
const { reset, scrollable, visible } = this
|
const { reset, scrollable, visible } = this
|
||||||
if (visible === state) return
|
if (visible === state) return
|
||||||
const beforeEventName = visible ? 'before-close' : 'before-open'
|
const beforeEventName = visible ? 'before-close' : 'before-open'
|
||||||
@@ -484,7 +484,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
getDraggableElement() {
|
getDraggableElement () {
|
||||||
var selector =
|
var selector =
|
||||||
typeof this.draggable !== 'string' ? '.v--modal-box' : this.draggable
|
typeof this.draggable !== 'string' ? '.v--modal-box' : this.draggable
|
||||||
|
|
||||||
@@ -499,13 +499,13 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Event handler that is triggered when background overlay is clicked
|
* Event handler that is triggered when background overlay is clicked
|
||||||
*/
|
*/
|
||||||
onBackgroundClick() {
|
onBackgroundClick () {
|
||||||
if (this.clickToClose) {
|
if (this.clickToClose) {
|
||||||
this.toggle(false)
|
this.toggle(false)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
addDraggableListeners() {
|
addDraggableListeners () {
|
||||||
if (!this.draggable) {
|
if (!this.draggable) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -570,7 +570,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
removeDraggableListeners() {
|
removeDraggableListeners () {
|
||||||
// console.log('removing draggable handlers')
|
// console.log('removing draggable handlers')
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -581,7 +581,7 @@ export default {
|
|||||||
* wrapping afterEvents in `$nextTick` fixes `$refs.modal` undefined bug.
|
* wrapping afterEvents in `$nextTick` fixes `$refs.modal` undefined bug.
|
||||||
* (fixes #15)
|
* (fixes #15)
|
||||||
*/
|
*/
|
||||||
callAfterEvent(state) {
|
callAfterEvent (state) {
|
||||||
if (state) {
|
if (state) {
|
||||||
this.connectObserver()
|
this.connectObserver()
|
||||||
} else {
|
} else {
|
||||||
@@ -600,7 +600,7 @@ export default {
|
|||||||
* 1. modal opened
|
* 1. modal opened
|
||||||
* 2. MutationObserver's observe callback
|
* 2. MutationObserver's observe callback
|
||||||
*/
|
*/
|
||||||
updateRenderedHeight() {
|
updateRenderedHeight () {
|
||||||
if (this.$refs.modal) {
|
if (this.$refs.modal) {
|
||||||
this.modal.renderedHeight = this.$refs.modal.getBoundingClientRect().height
|
this.modal.renderedHeight = this.$refs.modal.getBoundingClientRect().height
|
||||||
}
|
}
|
||||||
@@ -610,7 +610,7 @@ export default {
|
|||||||
* Start observing modal's DOM, if childList or subtree changes,
|
* Start observing modal's DOM, if childList or subtree changes,
|
||||||
* the callback (registered in beforeMount) will be called.
|
* the callback (registered in beforeMount) will be called.
|
||||||
*/
|
*/
|
||||||
connectObserver() {
|
connectObserver () {
|
||||||
if (this.mutationObserver) {
|
if (this.mutationObserver) {
|
||||||
this.mutationObserver.observe(this.$refs.modal, {
|
this.mutationObserver.observe(this.$refs.modal, {
|
||||||
childList: true,
|
childList: true,
|
||||||
@@ -623,7 +623,7 @@ export default {
|
|||||||
/**
|
/**
|
||||||
* Disconnects MutationObserver
|
* Disconnects MutationObserver
|
||||||
*/
|
*/
|
||||||
disconnectObserver() {
|
disconnectObserver () {
|
||||||
if (this.mutationObserver) {
|
if (this.mutationObserver) {
|
||||||
this.mutationObserver.disconnect()
|
this.mutationObserver.disconnect()
|
||||||
}
|
}
|
||||||
|
|||||||
50
src/ModalsContainer.vue
Normal file
50
src/ModalsContainer.vue
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<template>
|
||||||
|
<div id="#modals-container">
|
||||||
|
<modal
|
||||||
|
v-for="modal in modals"
|
||||||
|
:key="modal.id"
|
||||||
|
:name="modal.name"
|
||||||
|
v-bind="modal.config"
|
||||||
|
@closed="remove(modal.id)"
|
||||||
|
>
|
||||||
|
<component :is="modal.component" v-bind="modal.params"></component>
|
||||||
|
</modal>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
uid: 0,
|
||||||
|
modals: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created () {
|
||||||
|
this.$modal._setDynamicContainer(this)
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
add (modal, params, config) {
|
||||||
|
let id = this.uid++
|
||||||
|
let name = '_dynamic-modal-' + id
|
||||||
|
this.modals.push({
|
||||||
|
id: id,
|
||||||
|
name: name,
|
||||||
|
component: modal,
|
||||||
|
params: params || {},
|
||||||
|
config: config || {}
|
||||||
|
})
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$modal.show(name)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
remove (id) {
|
||||||
|
for (let i in this.modals) {
|
||||||
|
if (this.modals[i].id === id) {
|
||||||
|
this.modals.splice(i, 1)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -16,22 +16,22 @@ export default {
|
|||||||
default: 0
|
default: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data () {
|
||||||
return {
|
return {
|
||||||
clicked: false,
|
clicked: false,
|
||||||
size: {}
|
size: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted () {
|
||||||
this.$el.addEventListener('mousedown', this.start, false)
|
this.$el.addEventListener('mousedown', this.start, false)
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
className() {
|
className () {
|
||||||
return { 'vue-modal-resizer': true, clicked: this.clicked }
|
return { 'vue-modal-resizer': true, clicked: this.clicked }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
start(event) {
|
start (event) {
|
||||||
this.clicked = true
|
this.clicked = true
|
||||||
|
|
||||||
window.addEventListener('mousemove', this.mousemove, false)
|
window.addEventListener('mousemove', this.mousemove, false)
|
||||||
@@ -40,7 +40,7 @@ export default {
|
|||||||
event.stopPropagation()
|
event.stopPropagation()
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
},
|
},
|
||||||
stop() {
|
stop () {
|
||||||
this.clicked = false
|
this.clicked = false
|
||||||
|
|
||||||
window.removeEventListener('mousemove', this.mousemove, false)
|
window.removeEventListener('mousemove', this.mousemove, false)
|
||||||
@@ -51,10 +51,10 @@ export default {
|
|||||||
size: this.size
|
size: this.size
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
mousemove(event) {
|
mousemove (event) {
|
||||||
this.resize(event)
|
this.resize(event)
|
||||||
},
|
},
|
||||||
resize(event) {
|
resize (event) {
|
||||||
var el = this.$el.parentElement
|
var el = this.$el.parentElement
|
||||||
|
|
||||||
if (el) {
|
if (el) {
|
||||||
|
|||||||
31
src/index.js
31
src/index.js
@@ -1,10 +1,11 @@
|
|||||||
import Modal from './Modal.vue'
|
import Modal from './Modal.vue'
|
||||||
import Dialog from './Dialog.vue'
|
import Dialog from './Dialog.vue'
|
||||||
|
import ModalsContainer from './ModalsContainer.vue'
|
||||||
|
|
||||||
const defaultComponentName = 'modal'
|
const defaultComponentName = 'modal'
|
||||||
|
|
||||||
const Plugin = {
|
const Plugin = {
|
||||||
install(Vue, options = {}) {
|
install (Vue, options = {}) {
|
||||||
/**
|
/**
|
||||||
* Makes sure that plugin can be insstalled only once
|
* Makes sure that plugin can be insstalled only once
|
||||||
*/
|
*/
|
||||||
@@ -14,19 +15,31 @@ const Plugin = {
|
|||||||
|
|
||||||
this.installed = true
|
this.installed = true
|
||||||
this.event = new Vue()
|
this.event = new Vue()
|
||||||
|
this.dynamicContainer = null
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Plugin API
|
* Plugin API
|
||||||
*/
|
*/
|
||||||
Vue.prototype.$modal = {
|
Vue.prototype.$modal = {
|
||||||
show(name, params) {
|
_setDynamicContainer (dynamicContainer) {
|
||||||
Plugin.event.$emit('toggle', name, true, params)
|
Plugin.dynamicContainer = dynamicContainer
|
||||||
},
|
},
|
||||||
|
show (modal, paramsOrProps, params) {
|
||||||
hide(name, params) {
|
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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
hide (name, params) {
|
||||||
Plugin.event.$emit('toggle', name, false, params)
|
Plugin.event.$emit('toggle', name, false, params)
|
||||||
},
|
},
|
||||||
|
|
||||||
toggle(name, params) {
|
toggle (name, params) {
|
||||||
Plugin.event.$emit('toggle', name, undefined, params)
|
Plugin.event.$emit('toggle', name, undefined, params)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -41,6 +54,12 @@ const Plugin = {
|
|||||||
if (options.dialog) {
|
if (options.dialog) {
|
||||||
Vue.component('v-dialog', Dialog)
|
Vue.component('v-dialog', Dialog)
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Registration of <ModalsContainer/> component
|
||||||
|
*/
|
||||||
|
if (options.dynamic) {
|
||||||
|
Vue.component('modals-container', ModalsContainer)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
4
types/index.d.ts
vendored
4
types/index.d.ts
vendored
@@ -1,4 +1,4 @@
|
|||||||
import Vue, { PluginObject } from "vue";
|
import Vue, { PluginObject, ComponentOptions } from "vue";
|
||||||
|
|
||||||
declare const VueJSModal: PluginObject<VueJSModalOptions>;
|
declare const VueJSModal: PluginObject<VueJSModalOptions>;
|
||||||
export default VueJSModal;
|
export default VueJSModal;
|
||||||
@@ -9,7 +9,7 @@ export declare interface VueJSModalOptions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
declare interface VModal {
|
declare interface VModal {
|
||||||
show(name: string, params?: object): void;
|
show(modal: string | typeof Vue | ComponentOptions<Vue>, paramsOrProps?: object, params?: object): void;
|
||||||
hide(name: string, params?: object): void;
|
hide(name: string, params?: object): void;
|
||||||
toggle(name: string, params?: object): void;
|
toggle(name: string, params?: object): void;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user