2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
|
|
|
<div :class="containerClass" role="alert" aria-live="assertive" aria-atomic="true">
|
|
|
|
<div class="p-toast-message-content" :class="message.contentStyleClass">
|
|
|
|
<template v-if="!template">
|
|
|
|
<span :class="iconClass"></span>
|
|
|
|
<div class="p-toast-message-text">
|
2022-09-14 11:26:01 +00:00
|
|
|
<span class="p-toast-summary">{{ message.summary }}</span>
|
|
|
|
<div class="p-toast-detail">{{ message.detail }}</div>
|
2022-09-06 12:03:37 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<component v-else :is="template" :message="message"></component>
|
2022-12-08 11:04:25 +00:00
|
|
|
<div v-if="message.closable !== false">
|
|
|
|
<button v-ripple class="p-toast-icon-close p-link" type="button" :aria-label="closeAriaLabel" @click="onCloseClick" autofocus v-bind="closeButtonProps">
|
|
|
|
<span :class="['p-toast-icon-close-icon', closeIcon]" />
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-09-06 12:03:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Ripple from 'primevue/ripple';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ToastMessage',
|
|
|
|
emits: ['close'],
|
|
|
|
props: {
|
2022-12-08 11:04:25 +00:00
|
|
|
message: {
|
|
|
|
type: null,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
template: {
|
|
|
|
type: null,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
closeIcon: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
infoIcon: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
warnIcon: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
errorIcon: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
successIcon: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
closeButtonProps: {
|
|
|
|
type: null,
|
|
|
|
default: null
|
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
closeTimeout: null,
|
|
|
|
mounted() {
|
|
|
|
if (this.message.life) {
|
|
|
|
this.closeTimeout = setTimeout(() => {
|
|
|
|
this.close();
|
2022-09-14 11:26:01 +00:00
|
|
|
}, this.message.life);
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
this.clearCloseTimeout();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
close() {
|
|
|
|
this.$emit('close', this.message);
|
|
|
|
},
|
|
|
|
onCloseClick() {
|
|
|
|
this.clearCloseTimeout();
|
|
|
|
this.close();
|
|
|
|
},
|
|
|
|
clearCloseTimeout() {
|
|
|
|
if (this.closeTimeout) {
|
|
|
|
clearTimeout(this.closeTimeout);
|
|
|
|
this.closeTimeout = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
containerClass() {
|
2022-09-14 11:26:01 +00:00
|
|
|
return [
|
|
|
|
'p-toast-message',
|
|
|
|
this.message.styleClass,
|
|
|
|
{
|
|
|
|
'p-toast-message-info': this.message.severity === 'info',
|
|
|
|
'p-toast-message-warn': this.message.severity === 'warn',
|
|
|
|
'p-toast-message-error': this.message.severity === 'error',
|
|
|
|
'p-toast-message-success': this.message.severity === 'success'
|
|
|
|
}
|
|
|
|
];
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
iconClass() {
|
2022-09-14 11:26:01 +00:00
|
|
|
return [
|
2022-12-08 11:04:25 +00:00
|
|
|
'p-toast-message-icon',
|
2022-09-14 11:26:01 +00:00
|
|
|
{
|
2022-12-08 11:04:25 +00:00
|
|
|
[this.infoIcon]: this.message.severity === 'info',
|
|
|
|
[this.warnIcon]: this.message.severity === 'warn',
|
|
|
|
[this.errorIcon]: this.message.severity === 'error',
|
|
|
|
[this.successIcon]: this.message.severity === 'success'
|
2022-09-14 11:26:01 +00:00
|
|
|
}
|
|
|
|
];
|
2022-12-08 11:04:25 +00:00
|
|
|
},
|
|
|
|
closeAriaLabel() {
|
|
|
|
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.close : undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
directives: {
|
2022-09-14 11:26:01 +00:00
|
|
|
ripple: Ripple
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
2022-09-06 12:03:37 +00:00
|
|
|
</script>
|