claude-web/node_modules/primevue/message/Message.vue

78 lines
2.8 KiB
Vue

<template>
<transition name="p-message" appear v-bind="ptmi('transition')">
<div v-if="visible" :class="cx('root')" role="alert" aria-live="assertive" aria-atomic="true" :data-p="dataP" v-bind="ptm('root')">
<div :class="cx('contentWrapper')" v-bind="ptm('contentWrapper')">
<slot v-if="$slots.container" name="container" :closeCallback="close"></slot>
<div v-else :class="cx('content')" :data-p="dataP" v-bind="ptm('content')">
<slot name="icon" :class="cx('icon')">
<component :is="icon ? 'span' : null" :class="[cx('icon'), icon]" :data-p="dataP" v-bind="ptm('icon')"></component>
</slot>
<div v-if="$slots.default" :class="cx('text')" :data-p="dataP" v-bind="ptm('text')">
<slot></slot>
</div>
<button v-if="closable" v-ripple :class="cx('closeButton')" :aria-label="closeAriaLabel" type="button" @click="close($event)" :data-p="dataP"
v-bind="{ ...closeButtonProps, ...ptm('closeButton') }">
<slot name="closeicon">
<i v-if="closeIcon" :class="[cx('closeIcon'), closeIcon]" :data-p="dataP" v-bind="ptm('closeIcon')" />
<TimesIcon v-else :class="[cx('closeIcon'), closeIcon]" :data-p="dataP" v-bind="ptm('closeIcon')" />
</slot>
</button>
</div>
</div>
</div>
</transition>
</template>
<script>
import { cn } from '@primeuix/utils';
import TimesIcon from '@primevue/icons/times';
import Ripple from 'primevue/ripple';
import BaseMessage from './BaseMessage.vue';
export default {
name: 'Message',
extends: BaseMessage,
inheritAttrs: false,
emits: ['close', 'life-end'],
timeout: null,
data() {
return {
visible: true
};
},
mounted() {
if (this.life) {
setTimeout(() => {
this.visible = false;
this.$emit('life-end');
}, this.life);
}
},
methods: {
close(event) {
this.visible = false;
this.$emit('close', event);
}
},
computed: {
closeAriaLabel() {
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.close : undefined;
},
dataP() {
return cn({
outlined: this.variant === 'outlined',
simple: this.variant === 'simple',
[this.severity]: this.severity,
[this.size]: this.size
});
}
},
directives: {
ripple: Ripple
},
components: {
TimesIcon
}
};
</script>