-
Hi folks 👋
We came up with this POC demo that shows two options (one with Toast and one with Alert) that use a Disclosure to disclose the error details. We would like to use the Toast to consistently establish a pattern of user action leading to a toast, versus system/configuration error leading to an Alert, but since the width is set to be quite small, it makes the content very cramped. Is this a potential case that might justify a few default toast widths? I'm thinking that within a set of Toasts on a single page, they would all need to be the same width. Curious to hear your thoughts 😸 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi, My initial thought and reservation is that both alerts and toasts aren't really suitable for long form information consumption. They're really designed to give you a quick piece of feedback on what just happened, or in the case of an alert what the status is of a service or application might be. One potential idea that I think you could explore is using a combination of a toast, and a modal which would be a better vehicle for more longer information. The toast could say "Success you associated 8000 numbers. View details". Upon clicking the button in the toast, you launch a dedicated modal with as much detailed information and room to digest it as is appropriate. If you don't care, you dismiss the toast. Not sure what the rest of the team thinks about that. Will wait for further suggestions. |
Beta Was this translation helpful? Give feedback.
-
Awesome, thank you both for the quick responses! 💯 |
Beta Was this translation helpful? Give feedback.
Hi,
My initial thought and reservation is that both alerts and toasts aren't really suitable for long form information consumption. They're really designed to give you a quick piece of feedback on what just happened, or in the case of an alert what the status is of a service or application might be.
One potential idea that I think you could explore is using a combination of a toast, and a modal which would be a better vehicle for more longer information. The toast could say "Success you associated 8000 numbers. View details". Upon clicking the button in the toast, you launch a dedicated modal with as much detailed information and room to digest it as is appropriate. If you don't care, you…