81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
import {isValidElement} from 'react'
|
|
import {View} from 'react-native'
|
|
import {nanoid} from 'nanoid/non-secure'
|
|
import {toast as sonner, Toaster} from 'sonner-native'
|
|
|
|
import {atoms as a} from '#/alf'
|
|
import {DURATION} from '#/components/Toast/const'
|
|
import {
|
|
Icon as ToastIcon,
|
|
Outer as BaseOuter,
|
|
Text as ToastText,
|
|
ToastConfigProvider,
|
|
} from '#/components/Toast/Toast'
|
|
import {type BaseToastOptions} from '#/components/Toast/types'
|
|
|
|
export {DURATION} from '#/components/Toast/const'
|
|
export {Action, Icon, Text, ToastConfigProvider} from '#/components/Toast/Toast'
|
|
export {type ToastType} from '#/components/Toast/types'
|
|
|
|
/**
|
|
* Toasts are rendered in a global outlet, which is placed at the top of the
|
|
* component tree.
|
|
*/
|
|
export function ToastOutlet() {
|
|
return <Toaster pauseWhenPageIsHidden gap={a.gap_sm.gap} />
|
|
}
|
|
|
|
export function Outer({children}: {children: React.ReactNode}) {
|
|
return (
|
|
<View style={[a.px_xl, a.w_full]}>
|
|
<BaseOuter>{children}</BaseOuter>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Access the full Sonner API
|
|
*/
|
|
export const api = sonner
|
|
|
|
/**
|
|
* Our base toast API, using the `Toast` export of this file.
|
|
*/
|
|
export function show(
|
|
content: React.ReactNode,
|
|
{type = 'default', ...options}: BaseToastOptions = {},
|
|
) {
|
|
const id = nanoid()
|
|
|
|
if (typeof content === 'string') {
|
|
sonner.custom(
|
|
<ToastConfigProvider id={id} type={type}>
|
|
<Outer>
|
|
<ToastIcon />
|
|
<ToastText>{content}</ToastText>
|
|
</Outer>
|
|
</ToastConfigProvider>,
|
|
{
|
|
...options,
|
|
id,
|
|
duration: options?.duration ?? DURATION,
|
|
},
|
|
)
|
|
} else if (isValidElement(content)) {
|
|
sonner.custom(
|
|
<ToastConfigProvider id={id} type={type}>
|
|
{content}
|
|
</ToastConfigProvider>,
|
|
{
|
|
...options,
|
|
id,
|
|
duration: options?.duration ?? DURATION,
|
|
},
|
|
)
|
|
} else {
|
|
throw new Error(
|
|
`Toast can be a string or a React element, got ${typeof content}`,
|
|
)
|
|
}
|
|
}
|