import { createNamespace, isDef } from '../utils'; import { PopupMixin } from '../mixins/popup'; import Icon from '../icon'; import Loading from '../loading'; const [createComponent, bem] = createNamespace('toast'); export default createComponent({ mixins: [PopupMixin], props: { icon: String, className: null, iconPrefix: String, loadingType: String, forbidClick: Boolean, closeOnClick: Boolean, message: [Number, String], type: { type: String, default: 'text' }, position: { type: String, default: 'middle' }, lockScroll: { type: Boolean, default: false } }, data() { return { clickable: false }; }, mounted() { this.toggleClickable(); }, destroyed() { this.toggleClickable(); }, watch: { value: 'toggleClickable', forbidClick: 'toggleClickable' }, methods: { onClick() { if (this.closeOnClick) { this.close(); } }, toggleClickable() { const clickable = this.value && this.forbidClick; if (this.clickable !== clickable) { this.clickable = clickable; const action = clickable ? 'add' : 'remove'; document.body.classList[action]('van-toast--unclickable'); } }, /* istanbul ignore next */ onAfterEnter() { this.$emit('opened'); if (this.onOpened) { this.onOpened(); } }, onAfterLeave() { this.$emit('closed'); } }, render() { const { type, icon, message, iconPrefix, loadingType } = this; const hasIcon = icon || (type === 'success' || type === 'fail'); function ToastIcon() { if (hasIcon) { return ; } if (type === 'loading') { return ; } } function Message() { if (!isDef(message) || message === '') { return; } if (type === 'html') { return
; } return
{message}
; } return (
{ToastIcon()} {Message()}
); } });