Merge branch 'hotfix/fix_toast_0330' into 'master'

feat: 简化toast为单个intance



See merge request !20
This commit is contained in:
pangxie 2017-03-30 20:16:36 +08:00
commit 7491de862a
4 changed files with 22 additions and 22 deletions

View File

@ -38,9 +38,9 @@ export default {
type: 'success', type: 'success',
message: leftSec.toString() message: leftSec.toString()
}); });
window.setInterval(() => { const id = window.setInterval(() => {
if (leftSec <= 1) { if (leftSec <= 1) {
window.clearInterval(); window.clearInterval(id);
toast.message = '跳转中...' toast.message = '跳转中...'
return; return;
} }
@ -106,9 +106,9 @@ export default {
type: 'success', type: 'success',
message: leftSec.toString() message: leftSec.toString()
}); });
window.setInterval(() => { const id = window.setInterval(() => {
if (leftSec <= 1) { if (leftSec <= 1) {
window.clearInterval(); window.clearInterval(id);
toast.message = '跳转中...' toast.message = '跳转中...'
return; return;
} }
@ -134,10 +134,10 @@ import { Toast } from 'src/index';
export default { export default {
methods: { methods: {
showToast() { showToast() {
this.toast = Toast('我是提示文案,建议不超过十五字~'); Toast('我是提示文案,建议不超过十五字~');
}, },
closeToast() { closeToast() {
this.toast.clear(); Toast.clear();
} }
} }
}; };
@ -212,5 +212,5 @@ export default {
| forbidClick | 不允许背景点击 | Boolean | false | true, false| | forbidClick | 不允许背景点击 | Boolean | false | true, false|
| duration | 时长(ms) | Number | 3000ms | -| | duration | 时长(ms) | Number | 3000ms | -|
### instanceOfToast.clear() ### Toast.clear()
关闭toast。 关闭toast。

View File

@ -2,24 +2,17 @@ import Vue from 'vue';
import merge from 'src/utils/merge'; import merge from 'src/utils/merge';
const ToastConstructor = Vue.extend(require('./toast.vue')); const ToastConstructor = Vue.extend(require('./toast.vue'));
let toastQueue = []; let instance;
const getInstance = () => { const getInstance = () => {
if (toastQueue.length > 0) { if (instance) instance.clear();
const instance = toastQueue[0];
toastQueue.splice(0, 1); instance = new ToastConstructor({
return instance;
}
return new ToastConstructor({
el: document.createElement('div') el: document.createElement('div')
}); });
return instance;
}; };
const returnInstance = instance => {
if (instance) {
toastQueue.push(instance);
}
};
const removeDom = event => { const removeDom = event => {
if (event.target.parentNode) { if (event.target.parentNode) {
@ -31,7 +24,6 @@ var Toast = (options = {}) => {
const duration = options.duration || 3000; const duration = options.duration || 3000;
let instance = getInstance(); let instance = getInstance();
returnInstance(instance);
instance.closed = false; instance.closed = false;
clearTimeout(instance.timer); clearTimeout(instance.timer);
instance.type = options.type ? options.type : 'text'; instance.type = options.type ? options.type : 'text';
@ -77,4 +69,8 @@ Toast.fail = (options) => {
}, options)); }, options));
}; };
Toast.clear = () => {
if (instance) instance.clear();
}
export default Toast; export default Toast;

View File

@ -1,5 +1,5 @@
<template> <template>
<transition name="zan-toast"> <transition name="zan-toast-fade">
<div class="zan-toast-wrapper" v-show="visible"> <div class="zan-toast-wrapper" v-show="visible">
<div class="zan-toast" :class="['zan-toast--' + displayStyle]"> <div class="zan-toast" :class="['zan-toast--' + displayStyle]">
<!-- 只显示文字 --> <!-- 只显示文字 -->

View File

@ -44,9 +44,13 @@
} }
.zan-toast__text { .zan-toast__text {
padding-bottom: 20px; padding: 15px 0 20px;
font-size: 14px; font-size: 14px;
} }
} }
} }
} }
.zan-toast-fade-enter, .zan-toast-fade-leave-active {
opacity: 0;
}