mirror of
https://github.com/discourse/discourse.git
synced 2025-01-23 15:09:46 +08:00
552cf56afe
- more subtle animation when showing a toast - resumes auto close when removing the mouse from the toast - correctly follows reduced motion - uses output with role status as element: https://web.dev/articles/building/a-toast-component - shows toasts inside a section element - prevents toast to all have the same width - fixes a bug on mobile where we would limit the width and the close button wouldn't show correctly aligned I would prefer to have tests for this, but the conjunction of css/animations and our helper changing `discourseLater` to 0 in tests is making it quite challenging for a rather low value. We have system specs using toasts ensuring they show when they should.
77 lines
1.5 KiB
JavaScript
77 lines
1.5 KiB
JavaScript
export const FLOAT_UI_PLACEMENTS = [
|
|
"top",
|
|
"top-start",
|
|
"top-end",
|
|
"right",
|
|
"right-start",
|
|
"right-end",
|
|
"bottom",
|
|
"bottom-start",
|
|
"bottom-end",
|
|
"left",
|
|
"left-start",
|
|
"left-end",
|
|
];
|
|
|
|
export const TOOLTIP = {
|
|
options: {
|
|
animated: true,
|
|
arrow: true,
|
|
beforeTrigger: null,
|
|
closeOnClickOutside: true,
|
|
closeOnEscape: true,
|
|
closeOnScroll: true,
|
|
component: null,
|
|
content: null,
|
|
identifier: null,
|
|
interactive: false,
|
|
listeners: false,
|
|
maxWidth: 350,
|
|
data: null,
|
|
offset: 10,
|
|
triggers: ["hover", "click"],
|
|
untriggers: ["hover", "click"],
|
|
placement: "top",
|
|
fallbackPlacements: FLOAT_UI_PLACEMENTS,
|
|
autoUpdate: true,
|
|
trapTab: true,
|
|
},
|
|
portalOutletId: "d-tooltip-portal-outlet",
|
|
};
|
|
|
|
export const MENU = {
|
|
options: {
|
|
animated: true,
|
|
arrow: false,
|
|
beforeTrigger: null,
|
|
closeOnEscape: true,
|
|
closeOnClickOutside: true,
|
|
closeOnScroll: false,
|
|
component: null,
|
|
content: null,
|
|
identifier: null,
|
|
interactive: true,
|
|
listeners: false,
|
|
maxWidth: 400,
|
|
data: null,
|
|
offset: 10,
|
|
triggers: ["click"],
|
|
untriggers: ["click"],
|
|
placement: "bottom",
|
|
fallbackPlacements: FLOAT_UI_PLACEMENTS,
|
|
autoUpdate: true,
|
|
trapTab: true,
|
|
},
|
|
portalOutletId: "d-menu-portal-outlet",
|
|
};
|
|
|
|
import DDefaultToast from "float-kit/components/d-default-toast";
|
|
|
|
export const TOAST = {
|
|
options: {
|
|
autoClose: true,
|
|
duration: 3000,
|
|
component: DDefaultToast,
|
|
},
|
|
};
|