parent
38cd13a5e7
commit
0ddfeb4fb0
|
@ -4,6 +4,19 @@ const InlineMessageProps = [
|
|||
type: 'string',
|
||||
default: 'error',
|
||||
description: 'Severity level of the message. Valid severities are "success", "info", "warn" and "error".'
|
||||
},
|
||||
{
|
||||
name: 'icon',
|
||||
type: 'string',
|
||||
default: 'undefined',
|
||||
description: 'Display a custom icon for the message.'
|
||||
}
|
||||
];
|
||||
|
||||
const MessageSlots = [
|
||||
{
|
||||
name: 'messageicon',
|
||||
description: 'Custom message icon template.'
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -12,6 +25,7 @@ module.exports = {
|
|||
name: 'InlineMessage',
|
||||
description: 'InlineMessage component is useful in cases where a single message needs to be displayed related to an element such as forms',
|
||||
'doc-url': 'message',
|
||||
props: InlineMessageProps
|
||||
props: InlineMessageProps,
|
||||
slots: MessageSlots
|
||||
}
|
||||
};
|
||||
|
|
|
@ -26,7 +26,7 @@ const MessageProps = [
|
|||
{
|
||||
name: 'icon',
|
||||
type: 'string',
|
||||
default: 'null',
|
||||
default: 'undefined',
|
||||
description: 'Display a custom icon for the message.'
|
||||
}
|
||||
];
|
||||
|
|
|
@ -19,6 +19,10 @@ export interface InlineMessageProps {
|
|||
* @defaultValue info
|
||||
*/
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | string | undefined;
|
||||
/**
|
||||
* Display a custom icon for the message.
|
||||
*/
|
||||
icon?: string | undefined;
|
||||
}
|
||||
/**
|
||||
* Defines valid slots in InlineMessage slots.
|
||||
|
@ -28,6 +32,10 @@ export interface InlineMessageSlots {
|
|||
* Default custom slot.
|
||||
*/
|
||||
default(): VNode[];
|
||||
/**
|
||||
* Custom message icon template.
|
||||
*/
|
||||
messageicon(): VNode[];
|
||||
}
|
||||
|
||||
export interface InlineMessageEmits {}
|
||||
|
|
|
@ -1,17 +1,27 @@
|
|||
<template>
|
||||
<div aria-live="polite" :class="containerClass">
|
||||
<span :class="iconClass"></span>
|
||||
<slot name="messageicon">
|
||||
<component :is="icon ? 'i' : iconComponent" :class="['p-inline-message-icon', icon]"></component>
|
||||
</slot>
|
||||
<span class="p-inline-message-text"><slot> </slot></span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import InfoCircleIcon from 'primevue/icon/infocircle';
|
||||
import CheckIcon from 'primevue/icon/check';
|
||||
import ExclamationTriangleIcon from 'primevue/icon/exclamationtriangle';
|
||||
import TimesCircleIcon from 'primevue/icon/timescircle';
|
||||
export default {
|
||||
name: 'InlineMessage',
|
||||
props: {
|
||||
severity: {
|
||||
type: String,
|
||||
default: 'error'
|
||||
},
|
||||
icon: {
|
||||
type: String,
|
||||
default: undefined
|
||||
}
|
||||
},
|
||||
timeout: null,
|
||||
|
@ -31,16 +41,13 @@ export default {
|
|||
containerClass() {
|
||||
return ['p-inline-message p-component p-inline-message-' + this.severity, { 'p-inline-message-icon-only': !this.$slots.default }];
|
||||
},
|
||||
iconClass() {
|
||||
return [
|
||||
'p-inline-message-icon pi',
|
||||
{
|
||||
'pi-info-circle': this.severity === 'info',
|
||||
'pi-check': this.severity === 'success',
|
||||
'pi-exclamation-triangle': this.severity === 'warn',
|
||||
'pi-times-circle': this.severity === 'error'
|
||||
}
|
||||
];
|
||||
iconComponent() {
|
||||
return {
|
||||
info: InfoCircleIcon,
|
||||
success: CheckIcon,
|
||||
warn: ExclamationTriangleIcon,
|
||||
error: TimesCircleIcon
|
||||
}[this.severity];
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue