primevue-mirror/components/lib/toast/ToastMessage.vue

141 lines
4.8 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2023-04-28 13:39:19 +00:00
<div :class="containerClass" role="alert" aria-live="assertive" aria-atomic="true" v-bind="ptm('container')">
<div class="p-toast-message-content" :class="message.contentStyleClass" v-bind="ptm('content')">
<template v-if="!templates.message">
2023-04-28 13:39:19 +00:00
<component :is="templates.icon ? templates.icon : iconComponent.name ? iconComponent : 'span'" :class="iconClass" class="p-toast-message-icon" v-bind="ptm('icon')" />
<div class="p-toast-message-text" v-bind="ptm('text')">
<span class="p-toast-summary" v-bind="ptm('summary')">{{ message.summary }}</span>
<div class="p-toast-detail" v-bind="ptm('detail')">{{ message.detail }}</div>
2022-09-06 12:03:37 +00:00
</div>
</template>
2023-04-24 17:08:51 +00:00
<component v-else :is="templates.message" :message="message"></component>
2023-04-28 13:39:19 +00:00
<div v-if="message.closable !== false" v-bind="ptm('buttonContainer')">
<button v-ripple class="p-toast-icon-close p-link" type="button" :aria-label="closeAriaLabel" @click="onCloseClick" autofocus v-bind="{ ...closeButtonProps, ...ptm('button') }">
<component :is="templates.closeicon || 'TimesIcon'" :class="['p-toast-icon-close-icon', closeIcon]" v-bind="ptm('buttonIcon')" />
2022-12-08 11:04:25 +00:00
</button>
</div>
2022-09-06 12:03:37 +00:00
</div>
</div>
</template>
<script>
2023-04-28 13:39:19 +00:00
import BaseComponent from 'primevue/basecomponent';
import CheckIcon from 'primevue/icons/check';
import ExclamationTriangleIcon from 'primevue/icons/exclamationtriangle';
import InfoCircleIcon from 'primevue/icons/infocircle';
import TimesIcon from 'primevue/icons/times';
import TimesCircleIcon from 'primevue/icons/timescircle';
2023-04-14 06:18:22 +00:00
import Ripple from 'primevue/ripple';
2022-09-06 12:03:37 +00:00
export default {
name: 'ToastMessage',
2023-04-28 13:39:19 +00:00
extends: BaseComponent,
2022-09-06 12:03:37 +00:00
emits: ['close'],
props: {
2022-12-08 11:04:25 +00:00
message: {
type: null,
default: null
},
templates: {
type: Object,
2022-12-08 11:04:25 +00:00
default: null
},
closeIcon: {
type: String,
default: null
},
infoIcon: {
type: String,
default: null
2022-12-08 11:04:25 +00:00
},
warnIcon: {
2022-12-08 11:04:25 +00:00
type: String,
default: null
},
errorIcon: {
type: String,
default: null
},
successIcon: {
type: String,
default: null
2022-12-08 11:04:25 +00:00
},
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({ message: this.message, type: 'life-end' });
2022-09-14 11:26:01 +00:00
}, this.message.life);
2022-09-06 12:03:37 +00:00
}
},
beforeUnmount() {
this.clearCloseTimeout();
},
methods: {
close(params) {
this.$emit('close', params);
2022-09-06 12:03:37 +00:00
},
onCloseClick() {
this.clearCloseTimeout();
this.close({ message: this.message, type: 'close' });
2022-09-06 12:03:37 +00:00
},
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
},
iconComponent() {
return {
info: !this.infoIcon && InfoCircleIcon,
success: !this.successIcon && CheckIcon,
warn: !this.warnIcon && ExclamationTriangleIcon,
error: !this.errorIcon && TimesCircleIcon
}[this.message.severity];
2022-12-08 11:04:25 +00:00
},
iconClass() {
return [
{
[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-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
}
},
components: {
TimesIcon: TimesIcon,
InfoCircleIcon: InfoCircleIcon,
CheckIcon: CheckIcon,
ExclamationTriangleIcon: ExclamationTriangleIcon,
TimesCircleIcon: TimesCircleIcon
},
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>