ant-design-vue/components/vc-notification/Notification.vue

150 lines
3.5 KiB
Vue
Raw Normal View History

2018-02-05 11:12:41 +00:00
<script>
import Vue from 'vue'
2018-02-06 07:32:32 +00:00
import PropTypes from '../_util/vue-types'
import { getStyle } from '../_util/vnode'
import BaseMixin from '../_util/BaseMixin'
import createChainedFunction from '../_util/createChainedFunction'
import getTransitionProps from '../_util/getTransitionProps'
2018-02-05 11:12:41 +00:00
import Notice from './Notice'
let seed = 0
const now = Date.now()
function getUuid () {
return `rcNotification_${now}_${seed++}`
}
const Notification = {
mixins: [BaseMixin],
props: {
prefixCls: PropTypes.string.def('rc-notification'),
transitionName: PropTypes.string,
animation: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).def('fade'),
},
data () {
return {
notices: [],
}
},
methods: {
getTransitionName () {
const props = this.$props
let transitionName = props.transitionName
if (!transitionName && props.animation) {
transitionName = `${props.prefixCls}-${props.animation}`
}
return transitionName
},
add (notice) {
const key = notice.key = notice.key || getUuid()
this.setState(previousState => {
const notices = previousState.notices
if (!notices.filter(v => v.key === key).length) {
return {
notices: notices.concat(notice),
}
}
})
},
remove (key) {
this.setState(previousState => {
return {
notices: previousState.notices.filter(notice => notice.key !== key),
}
})
},
},
2018-02-06 07:21:13 +00:00
render (h) {
2018-02-05 11:12:41 +00:00
const { prefixCls, notices, remove, getTransitionName } = this
2018-02-06 07:21:13 +00:00
const transitionProps = getTransitionProps(getTransitionName())
2018-02-05 11:12:41 +00:00
const noticeNodes = notices.map((notice) => {
2018-02-06 07:21:13 +00:00
const { content, duration, closable, onClose, key, style, class: className } = notice
const close = createChainedFunction(remove.bind(this, key), onClose)
2018-02-05 11:12:41 +00:00
const noticeProps = {
props: {
prefixCls,
2018-02-06 07:21:13 +00:00
duration,
closable,
2018-02-05 11:12:41 +00:00
},
on: {
2018-02-06 07:21:13 +00:00
close,
2018-02-05 11:12:41 +00:00
},
2018-02-06 07:21:13 +00:00
style,
class: className,
key,
2018-02-05 11:12:41 +00:00
}
2018-02-06 07:21:13 +00:00
return (
<Notice
{...noticeProps}
>
{content(h)}
</Notice>
)
2018-02-05 11:12:41 +00:00
})
const className = {
[prefixCls]: 1,
}
const style = getStyle(this)
return (
<div class={className} style={style || {
top: '65px',
left: '50%',
}}>
2018-02-06 07:21:13 +00:00
<transition-group {...transitionProps}>{noticeNodes}</transition-group>
2018-02-05 11:12:41 +00:00
</div>
)
},
}
Notification.newInstance = function newNotificationInstance (properties, callback) {
2018-02-06 07:21:13 +00:00
const { getContainer, style, class: className, ...props } = properties || {}
2018-02-05 11:12:41 +00:00
const div = document.createElement('div')
if (getContainer) {
const root = getContainer()
root.appendChild(div)
} else {
document.body.appendChild(div)
}
2018-02-06 07:21:13 +00:00
new Vue({
2018-02-05 11:12:41 +00:00
el: div,
mounted () {
const self = this
this.$nextTick(() => {
callback({
notice (noticeProps) {
self.$refs.notification.add(noticeProps)
},
removeNotice (key) {
self.$refs.notification.remove(key)
},
component: self,
destroy () {
2018-02-06 07:21:13 +00:00
self.$destroy()
self.$el.parentNode.removeChild(self.$el)
2018-02-05 11:12:41 +00:00
},
})
})
},
render () {
const p = {
props,
ref: 'notification',
style,
class: className,
}
return (
<Notification
{...p}
/>
)
},
})
}
export default Notification
</script>