You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/modal/confirm.js

57 lines
1.4 KiB

7 years ago
import Vue from 'vue'
import ConfirmDialog from './ConfirmDialog'
7 years ago
export default function confirm (config) {
const div = document.createElement('div')
const el = document.createElement('div')
div.appendChild(el)
7 years ago
document.body.appendChild(div)
let currentConfig = { ...config, close, visible: true }
7 years ago
let confirmDialogInstance = null
const confirmDialogProps = { props: {}}
7 years ago
function close (...args) {
destroy(...args)
}
function update (newConfig) {
currentConfig = {
...currentConfig,
...newConfig,
}
confirmDialogProps.props = currentConfig
}
7 years ago
function destroy (...args) {
if (confirmDialogInstance && div.parentNode) {
confirmDialogInstance.$destroy()
confirmDialogInstance = null
div.parentNode.removeChild(div)
}
const triggerCancel = args && args.length &&
args.some(param => param && param.triggerCancel)
if (config.onCancel && triggerCancel) {
config.onCancel(...args)
}
}
function render (props) {
confirmDialogProps.props = props
7 years ago
return new Vue({
el: el,
data () { return { confirmDialogProps } },
7 years ago
render () {
// 先解构,避免报错,原因不详
const cdProps = { ...this.confirmDialogProps }
return <ConfirmDialog {...cdProps} />
7 years ago
},
})
}
confirmDialogInstance = render(currentConfig)
7 years ago
return {
destroy: close,
update,
7 years ago
}
}