Dismiss toast when clicking action button

This commit is contained in:
Eric Bailey
2025-08-26 10:37:16 -05:00
parent 77c786581e
commit 4caa98daac
6 changed files with 96 additions and 28 deletions
+41 -10
View File
@@ -1,5 +1,5 @@
import {createContext, useContext, useMemo} from 'react' import {createContext, useContext, useMemo} from 'react'
import {View} from 'react-native' import {type GestureResponderEvent, View} from 'react-native'
import {atoms as a, select, useAlf, useTheme} from '#/alf' import {atoms as a, select, useAlf, useTheme} from '#/alf'
import { import {
@@ -12,10 +12,15 @@ import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/ico
import {CircleInfo_Stroke2_Corner0_Rounded as ErrorIcon} from '#/components/icons/CircleInfo' import {CircleInfo_Stroke2_Corner0_Rounded as ErrorIcon} from '#/components/icons/CircleInfo'
import {type Props as SVGIconProps} from '#/components/icons/common' import {type Props as SVGIconProps} from '#/components/icons/common'
import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning' import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
import {dismiss} from '#/components/Toast/sonner'
import {type ToastType} from '#/components/Toast/types' import {type ToastType} from '#/components/Toast/types'
import {Text as BaseText} from '#/components/Typography' import {Text as BaseText} from '#/components/Typography'
type ContextType = { type ToastConfigContextType = {
id: string
}
type ToastThemeContextType = {
type: ToastType type: ToastType
} }
@@ -32,10 +37,29 @@ export const ICONS = {
info: CircleInfo, info: CircleInfo,
} }
const Context = createContext<ContextType>({ const ToastConfigContext = createContext<ToastConfigContextType>({
id: '',
})
ToastConfigContext.displayName = 'ToastConfigContext'
export function ToastConfigProvider({
children,
id,
}: {
children: React.ReactNode
id: string
}) {
return (
<ToastConfigContext.Provider value={useMemo(() => ({id}), [id])}>
{children}
</ToastConfigContext.Provider>
)
}
const ToastThemeContext = createContext<ToastThemeContextType>({
type: 'default', type: 'default',
}) })
Context.displayName = 'ToastContext' ToastThemeContext.displayName = 'ToastThemeContext'
export function Default({type = 'default', content}: ToastComponentProps) { export function Default({type = 'default', content}: ToastComponentProps) {
return ( return (
@@ -57,7 +81,7 @@ export function Outer({
const styles = useToastStyles({type}) const styles = useToastStyles({type})
return ( return (
<Context.Provider value={useMemo(() => ({type}), [type])}> <ToastThemeContext.Provider value={useMemo(() => ({type}), [type])}>
<View <View
style={[ style={[
a.flex_1, a.flex_1,
@@ -75,19 +99,19 @@ export function Outer({
]}> ]}>
{children} {children}
</View> </View>
</Context.Provider> </ToastThemeContext.Provider>
) )
} }
export function Icon({icon}: {icon?: React.ComponentType<SVGIconProps>}) { export function Icon({icon}: {icon?: React.ComponentType<SVGIconProps>}) {
const {type} = useContext(Context) const {type} = useContext(ToastThemeContext)
const styles = useToastStyles({type}) const styles = useToastStyles({type})
const IconComponent = icon || ICONS[type] const IconComponent = icon || ICONS[type]
return <IconComponent size="md" fill={styles.iconColor} /> return <IconComponent size="md" fill={styles.iconColor} />
} }
export function Text({children}: {children: React.ReactNode}) { export function Text({children}: {children: React.ReactNode}) {
const {type} = useContext(Context) const {type} = useContext(ToastThemeContext)
const {textColor} = useToastStyles({type}) const {textColor} = useToastStyles({type})
const {fontScaleCompensation} = useToastFontScaleCompensation() const {fontScaleCompensation} = useToastFontScaleCompensation()
return ( return (
@@ -123,7 +147,8 @@ export function Action(
) { ) {
const t = useTheme() const t = useTheme()
const {fontScaleCompensation} = useToastFontScaleCompensation() const {fontScaleCompensation} = useToastFontScaleCompensation()
const {type} = useContext(Context) const {type} = useContext(ToastThemeContext)
const {id} = useContext(ToastConfigContext)
const styles = useMemo(() => { const styles = useMemo(() => {
const base = { const base = {
base: { base: {
@@ -178,9 +203,15 @@ export function Action(
}[type] }[type]
}, [t, type]) }, [t, type])
const onPress = (e: GestureResponderEvent) => {
console.log('Toast Action pressed, dismissing toast', id)
dismiss(id)
props.onPress?.(e)
}
return ( return (
<View style={{top: fontScaleCompensation}}> <View style={{top: fontScaleCompensation}}>
<Button {...props}> <Button {...props} onPress={onPress}>
{s => { {s => {
const interacted = s.pressed || s.hovered || s.focused const interacted = s.pressed || s.hovered || s.focused
return ( return (
+18 -4
View File
@@ -1,5 +1,6 @@
import React from 'react' import React from 'react'
import {View} from 'react-native' import {View} from 'react-native'
import {nanoid} from 'nanoid/non-secure'
import {toast as sonner, Toaster} from 'sonner-native' import {toast as sonner, Toaster} from 'sonner-native'
import {atoms as a} from '#/alf' import {atoms as a} from '#/alf'
@@ -8,6 +9,7 @@ import {
Default as DefaultToast, Default as DefaultToast,
Outer as BaseOuter, Outer as BaseOuter,
type ToastComponentProps, type ToastComponentProps,
ToastConfigProvider,
} from '#/components/Toast/Toast' } from '#/components/Toast/Toast'
import {type BaseToastOptions} from '#/components/Toast/types' import {type BaseToastOptions} from '#/components/Toast/types'
@@ -60,16 +62,28 @@ export function show(
content: React.ReactNode, content: React.ReactNode,
{type, ...options}: BaseToastOptions = {}, {type, ...options}: BaseToastOptions = {},
) { ) {
const id = nanoid()
if (typeof content === 'string') { if (typeof content === 'string') {
sonner.custom(<Default content={content} type={type} />, { sonner.custom(
<ToastConfigProvider id={id}>
<DefaultToast content={content} type={type} />
</ToastConfigProvider>,
{
...options, ...options,
id,
duration: options?.duration ?? DURATION, duration: options?.duration ?? DURATION,
}) },
)
} else if (React.isValidElement(content)) { } else if (React.isValidElement(content)) {
sonner.custom(content, { sonner.custom(
<ToastConfigProvider id={id}>{content}</ToastConfigProvider>,
{
...options, ...options,
id,
duration: options?.duration ?? DURATION, duration: options?.duration ?? DURATION,
}) },
)
} else { } else {
throw new Error( throw new Error(
`Toast can be a string or a React element, got ${typeof content}`, `Toast can be a string or a React element, got ${typeof content}`,
+19 -6
View File
@@ -1,9 +1,13 @@
import React from 'react' import React from 'react'
import {nanoid} from 'nanoid/non-secure'
import {toast as sonner, Toaster} from 'sonner' import {toast as sonner, Toaster} from 'sonner'
import {atoms as a} from '#/alf' import {atoms as a} from '#/alf'
import {DURATION} from '#/components/Toast/const' import {DURATION} from '#/components/Toast/const'
import {Default as DefaultToast} from '#/components/Toast/Toast' import {
Default as DefaultToast,
ToastConfigProvider,
} from '#/components/Toast/Toast'
import {type BaseToastOptions} from '#/components/Toast/types' import {type BaseToastOptions} from '#/components/Toast/types'
export {DURATION} from '#/components/Toast/const' export {DURATION} from '#/components/Toast/const'
@@ -37,16 +41,25 @@ export function show(
content: React.ReactNode, content: React.ReactNode,
{type, ...options}: BaseToastOptions = {}, {type, ...options}: BaseToastOptions = {},
) { ) {
const id = nanoid()
if (typeof content === 'string') { if (typeof content === 'string') {
sonner(<DefaultToast content={content} type={type} />, { sonner(
unstyled: true, // required on web <ToastConfigProvider id={id}>
<DefaultToast content={content} type={type} />
</ToastConfigProvider>,
{
...options, ...options,
unstyled: true, // required on web
id,
duration: options?.duration ?? DURATION, duration: options?.duration ?? DURATION,
}) },
)
} else if (React.isValidElement(content)) { } else if (React.isValidElement(content)) {
sonner(content, { sonner(<ToastConfigProvider id={id}>{content}</ToastConfigProvider>, {
unstyled: true, // required on web
...options, ...options,
unstyled: true, // required on web
id,
duration: options?.duration ?? DURATION, duration: options?.duration ?? DURATION,
}) })
} else { } else {
+3
View File
@@ -0,0 +1,3 @@
import {toast} from 'sonner-native'
export const dismiss = toast.dismiss
+3
View File
@@ -0,0 +1,3 @@
import {toast} from 'sonner'
export const dismiss = toast.dismiss
+6 -2
View File
@@ -12,7 +12,9 @@ function ToastWithAction({type = 'default'}: {type?: Toast.ToastType}) {
<Toast.Outer type={type}> <Toast.Outer type={type}>
<Toast.Icon icon={GlobeIcon} /> <Toast.Icon icon={GlobeIcon} />
<Toast.Text>This toast has an action button</Toast.Text> <Toast.Text>This toast has an action button</Toast.Text>
<Toast.Action label="Action" onPress={() => alert('Action clicked!')}> <Toast.Action
label="Action"
onPress={() => console.log('Action clicked!')}>
Action Action
</Toast.Action> </Toast.Action>
</Toast.Outer> </Toast.Outer>
@@ -27,7 +29,9 @@ function LongToastWithAction({type = 'default'}: {type?: Toast.ToastType}) {
This is a longer message to test how the toast handles multiple lines of This is a longer message to test how the toast handles multiple lines of
text content. text content.
</Toast.Text> </Toast.Text>
<Toast.Action label="Action" onPress={() => alert('Action clicked!')}> <Toast.Action
label="Action"
onPress={() => console.log('Action clicked!')}>
Action Action
</Toast.Action> </Toast.Action>
</Toast.Outer> </Toast.Outer>