2023-10-02 10:46:09 +00:00
|
|
|
import BaseStyle from 'primevue/base/style';
|
|
|
|
|
2024-05-01 08:26:48 +00:00
|
|
|
const theme = ({ dt }) => `
|
|
|
|
.p-toast {
|
|
|
|
width: 25rem;
|
|
|
|
white-space: pre-line;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message {
|
|
|
|
backdrop-filter: blur(${dt('toast.blur')});
|
|
|
|
margin: 0 0 1rem 0;
|
|
|
|
border-radius: ${dt('rounded.base')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-icon {
|
|
|
|
flex-shrink: 0;
|
|
|
|
font-size: 1.125rem;
|
|
|
|
width: 1.125rem;
|
|
|
|
height: 1.125rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 0.75rem;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-text {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-summary {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
.p-toast-detail {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
font-size: 0.875rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-close-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 50%;
|
|
|
|
cursor: pointer;
|
|
|
|
background: transparent;
|
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
|
|
|
outline-color: transparent;
|
|
|
|
color: inherit;
|
|
|
|
width: 1.75rem;
|
|
|
|
height: 1.75rem;
|
|
|
|
margin: -25% 0 0 0;
|
|
|
|
right: -25%;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-close-button:focus-visible {
|
|
|
|
outline-width: ${dt('focus.ring.width')};
|
|
|
|
outline-style: ${dt('focus.ring.style')};
|
|
|
|
outline-offset: ${dt('focus.ring.offset')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-info {
|
|
|
|
background: ${dt('toast.info.background')};
|
|
|
|
border: 1px solid ${dt('toast.info.border.color')};
|
|
|
|
color: ${dt('toast.info.color')};
|
|
|
|
box-shadow: ${dt('toast.info.box.shadow')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-info .p-toast-detail {
|
|
|
|
color: ${dt('toast.info.detail.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-info .p-toast-close-button:focus-visible {
|
|
|
|
color: ${dt('toast.info.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-info .p-toast-close-button:hover {
|
2024-05-04 12:23:26 +00:00
|
|
|
background: ${dt('toast.info.close.button.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-success {
|
|
|
|
background: ${dt('toast.success.background')};
|
|
|
|
border: 1px solid ${dt('toast.success.border.color')};
|
|
|
|
color: ${dt('toast.success.color')};
|
|
|
|
box-shadow: ${dt('toast.success.box.shadow')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-success .p-toast-detail {
|
|
|
|
color: ${dt('toast.success.detail.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-success .p-toast-close-button:focus-visible {
|
|
|
|
color: ${dt('toast.success.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-success .p-toast-close-button:hover {
|
2024-05-04 12:23:26 +00:00
|
|
|
background: ${dt('toast.success.close.button.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-warn {
|
|
|
|
background: ${dt('toast.warn.background')};
|
|
|
|
border: 1px solid ${dt('toast.warn.border.color')};
|
|
|
|
color: ${dt('toast.warn.color')};
|
|
|
|
box-shadow: ${dt('toast.warn.box.shadow')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-warn .p-toast-detail {
|
|
|
|
color: ${dt('toast.warn.detail.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-warn .p-toast-close-button:focus-visible {
|
|
|
|
color: ${dt('toast.warn.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-warn .p-toast-close-button:hover {
|
2024-05-04 12:23:26 +00:00
|
|
|
background: ${dt('toast.warn.close.button.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-error {
|
|
|
|
background: ${dt('toast.error.background')};
|
|
|
|
border: 1px solid ${dt('toast.error.border.color')};
|
|
|
|
color: ${dt('toast.error.color')};
|
|
|
|
box-shadow: ${dt('toast.error.box.shadow')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-error .p-toast-detail {
|
|
|
|
color: ${dt('toast.error.detail.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-error .p-toast-close-button:focus-visible {
|
|
|
|
color: ${dt('toast.error.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-error .p-toast-close-button:hover {
|
2024-05-04 12:23:26 +00:00
|
|
|
background: ${dt('toast.error.close.button.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-secondary {
|
|
|
|
background: ${dt('toast.secondary.background')};
|
|
|
|
border: 1px solid ${dt('toast.secondary.border.color')};
|
|
|
|
color: ${dt('toast.secondary.color')};
|
|
|
|
box-shadow: ${dt('toast.secondary.box.shadow')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-secondary .p-toast-detail {
|
|
|
|
color: ${dt('toast.secondary.detail.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-secondary .p-toast-close-button:focus-visible {
|
|
|
|
color: ${dt('toast.secondary.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-secondary .p-toast-close-button:hover {
|
2024-05-04 12:23:26 +00:00
|
|
|
background: ${dt('toast.secondary.close.button.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-contrast {
|
|
|
|
background: ${dt('toast.contrast.background')};
|
|
|
|
border: 1px solid ${dt('toast.contrast.border.color')};
|
|
|
|
color: ${dt('toast.contrast.color')};
|
|
|
|
box-shadow: ${dt('toast.contrast.box.shadow')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-contrast .p-toast-detail {
|
|
|
|
color: ${dt('toast.contrast.detail.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-contrast .p-toast-close-button:focus-visible {
|
|
|
|
color: ${dt('toast.contrast.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-contrast .p-toast-close-button:hover {
|
2024-05-04 12:23:26 +00:00
|
|
|
background: ${dt('toast.contrast.close.button.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-top-center {
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-bottom-center {
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-center {
|
|
|
|
min-width: 20vw;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-enter-from {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-leave-from {
|
|
|
|
max-height: 1000px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast .p-toast-message.p-toast-message-leave-to {
|
|
|
|
max-height: 0;
|
|
|
|
opacity: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-enter-active {
|
|
|
|
transition: transform 0.3s, opacity 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-toast-message-leave-active {
|
|
|
|
transition: max-height 0.45s cubic-bezier(0, 1, 0, 1), opacity 0.3s, margin-bottom 0.3s;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2023-10-02 10:46:09 +00:00
|
|
|
// Position
|
|
|
|
const inlineStyles = {
|
|
|
|
root: ({ position }) => ({
|
|
|
|
position: 'fixed',
|
|
|
|
top: position === 'top-right' || position === 'top-left' || position === 'top-center' ? '20px' : position === 'center' ? '50%' : null,
|
|
|
|
right: (position === 'top-right' || position === 'bottom-right') && '20px',
|
|
|
|
bottom: (position === 'bottom-left' || position === 'bottom-right' || position === 'bottom-center') && '20px',
|
|
|
|
left: position === 'top-left' || position === 'bottom-left' ? '20px' : position === 'center' || position === 'top-center' || position === 'bottom-center' ? '50%' : null
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
|
|
|
const classes = {
|
|
|
|
root: ({ props, instance }) => [
|
|
|
|
'p-toast p-component p-toast-' + props.position,
|
|
|
|
{
|
|
|
|
'p-ripple-disabled': instance.$primevue.config.ripple === false
|
|
|
|
}
|
|
|
|
],
|
2024-04-30 08:15:34 +00:00
|
|
|
message: ({ props }) => [
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-toast-message',
|
|
|
|
{
|
|
|
|
'p-toast-message-info': props.message.severity === 'info' || props.message.severity === undefined,
|
|
|
|
'p-toast-message-warn': props.message.severity === 'warn',
|
|
|
|
'p-toast-message-error': props.message.severity === 'error',
|
2024-02-03 11:36:08 +00:00
|
|
|
'p-toast-message-success': props.message.severity === 'success',
|
|
|
|
'p-toast-message-secondary': props.message.severity === 'secondary',
|
|
|
|
'p-toast-message-contrast': props.message.severity === 'contrast'
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
],
|
2024-04-30 08:15:34 +00:00
|
|
|
messageContent: 'p-toast-message-content',
|
|
|
|
messageIcon: ({ props }) => [
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-toast-message-icon',
|
|
|
|
{
|
|
|
|
[props.infoIcon]: props.message.severity === 'info',
|
|
|
|
[props.warnIcon]: props.message.severity === 'warn',
|
|
|
|
[props.errorIcon]: props.message.severity === 'error',
|
|
|
|
[props.successIcon]: props.message.severity === 'success'
|
|
|
|
}
|
|
|
|
],
|
2024-04-30 08:15:34 +00:00
|
|
|
messageText: 'p-toast-message-text',
|
2023-10-02 10:46:09 +00:00
|
|
|
summary: 'p-toast-summary',
|
|
|
|
detail: 'p-toast-detail',
|
2024-04-09 09:05:34 +00:00
|
|
|
closeButton: 'p-toast-close-button',
|
|
|
|
closeIcon: 'p-toast-close-icon'
|
2023-10-02 10:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default BaseStyle.extend({
|
|
|
|
name: 'toast',
|
2024-05-01 08:26:48 +00:00
|
|
|
theme,
|
2023-10-02 10:46:09 +00:00
|
|
|
classes,
|
|
|
|
inlineStyles
|
|
|
|
});
|