Pass toast object rather than index,

styled correctly
This commit is contained in:
kyle.watson 2020-06-27 16:06:42 +01:00
parent 4cbb445301
commit 38644a76e3
3 changed files with 20 additions and 17 deletions

View File

@ -9,8 +9,10 @@
.toast {
display: flex;
padding: 10px;
margin: 5px;
overflow-y: auto;
background-color: var(--primary-input-color);
background-color: rgba(0, 0, 0, 0.7);
color: white;
opacity: 0;
border-radius: 20px;
cursor: pointer;

View File

@ -19,31 +19,32 @@ export default Vue.extend({
FtToastEvents.$on('toast.open', this.open)
},
methods: {
performAction: function (index) {
this.toasts[index].action()
this.close(index)
performAction: function (toast) {
toast.action()
this.close(toast)
},
close: function (index) {
clearTimeout(this.toasts[index].timeout);
this.toasts[index].isOpen = false
close: function (toast) {
clearTimeout(toast.timeout);
toast.isOpen = false
if(this.queue.length !== 0) {
const toast = this.queue.shift()
this.open(toast.message, toast.action)
const nexToast = this.queue.shift()
this.open(nexToast.message, nexToast.action)
}
},
open: function (message, action) {
for(let i = this.toasts.length - 1; i >= 0 ; i--){
if (!this.toasts[i].isOpen) {
return this.showToast(message, action, i)
const toast = this.toasts[i]
if (!toast.isOpen) {
return this.showToast(message, action, toast)
}
}
this.queue.push({ message: message, action: action })
},
showToast: function(message, action, index) {
this.toasts[index].message = message
this.toasts[index].action = action || (() => {})
this.toasts[index].isOpen = true
this.toasts[index].timeout = setTimeout(this.close, 2000, index)
showToast: function(message, action, toast) {
toast.message = message
toast.action = action || (() => {})
toast.isOpen = true
toast.timeout = setTimeout(this.close, 2000, toast)
}
},
beforeDestroy: function () {

View File

@ -5,7 +5,7 @@
:key="'toast-' + index"
class="toast"
:class="{ closed: !toast.isOpen, open: toast.isOpen }"
@click="performAction(index)"
@click="performAction(toast)"
>
<p class="message">{{ toast.message }}</p>
</div>