cab5a3e53b
When creating a conversation from the contacts tab now we can go directly to the conversation by clicking the link in the success message Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
51 lines
991 B
Vue
51 lines
991 B
Vue
<template>
|
|
<transition-group name="toast-fade" tag="div" class="ui-snackbar-container">
|
|
<woot-snackbar
|
|
v-for="snackMessage in snackMessages"
|
|
:key="snackMessage.key"
|
|
:message="snackMessage.message"
|
|
:action="snackMessage.action"
|
|
/>
|
|
</transition-group>
|
|
</template>
|
|
|
|
<script>
|
|
import WootSnackbar from './Snackbar';
|
|
|
|
export default {
|
|
components: {
|
|
WootSnackbar,
|
|
},
|
|
props: {
|
|
duration: {
|
|
type: Number,
|
|
default: 2500,
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
snackMessages: [],
|
|
};
|
|
},
|
|
|
|
mounted() {
|
|
bus.$on('newToastMessage', this.onNewToastMessage);
|
|
},
|
|
beforeDestroy() {
|
|
bus.$off('newToastMessage', this.onNewToastMessage);
|
|
},
|
|
methods: {
|
|
onNewToastMessage(message, action) {
|
|
this.snackMessages.push({
|
|
key: new Date().getTime(),
|
|
message,
|
|
action,
|
|
});
|
|
window.setTimeout(() => {
|
|
this.snackMessages.splice(0, 1);
|
|
}, this.duration);
|
|
},
|
|
},
|
|
};
|
|
</script>
|