ant-design-vue/components/vc-dialog/DialogWrap.vue

77 lines
1.6 KiB
Vue
Raw Normal View History

2018-03-05 11:05:23 +00:00
<script>
import Dialog from './Dialog'
2018-03-05 14:50:25 +00:00
import ContainerRender from '../_util/ContainerRender'
2018-03-05 11:05:23 +00:00
import getDialogPropTypes from './IDialogPropTypes'
const IDialogPropTypes = getDialogPropTypes()
const DialogWrap = {
props: {
...IDialogPropTypes,
visible: IDialogPropTypes.visible.def(false),
},
data () {
this.renderComponent = () => {}
this.removeContainer = () => {}
return {}
},
beforeDestroy () {
if (this.visible) {
this.renderComponent({
afterClose: this.removeContainer,
onClose () {
},
visible: false,
})
} else {
this.removeContainer()
}
},
2018-03-05 14:50:25 +00:00
methods: {
getComponent (extra = {}) {
const dialogProps = {
props: {
...this.$props,
...extra,
},
ref: '_component',
key: 'dialog',
}
return (
<Dialog {...dialogProps}>{this.$slots.default}</Dialog>
)
},
2018-03-05 11:05:23 +00:00
2018-03-05 14:50:25 +00:00
getContainer2 () {
if (this.getContainer) {
return this.getContainer()
}
const container = document.createElement('div')
document.body.appendChild(container)
return container
},
2018-03-05 11:05:23 +00:00
},
render () {
const { visible } = this
return (
<ContainerRender
parent={this}
visible={visible}
autoDestroy={false}
getComponent={this.getComponent}
2018-03-05 14:50:25 +00:00
getContainer={this.getContainer2}
children={({ renderComponent, removeContainer }) => {
2018-03-05 11:05:23 +00:00
this.renderComponent = renderComponent
this.removeContainer = removeContainer
return null
}}
2018-03-05 14:50:25 +00:00
/>
2018-03-05 11:05:23 +00:00
)
},
}
export default DialogWrap
</script>