bd17f04810
* Add storybook shortcut in dev * Migrate to alg pkg * Migrate font_bold to new font_semi_bold * Migrate font_heavy to font_bold * Fix old theme refs * Remove leading util * Bump * Revert "Add storybook shortcut in dev" This reverts commit 7a86195c77fb5d449c7782e64ebabb6addfab919. * Remove alf script * Adjust font scale * Bump * Bump pkg * Migrate values from conflicts * Create default themes outside react * Use built-in alf utils * Migrate old font styles * Remove unused tokens * Move theme creation to more appropriate file * Update button colors * Adjust TextField colors, line heights
237 lines
5.4 KiB
TypeScript
237 lines
5.4 KiB
TypeScript
import React from 'react'
|
|
import {type GestureResponderEvent, View} from 'react-native'
|
|
import {msg} from '@lingui/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
|
|
import {
|
|
atoms as a,
|
|
useBreakpoints,
|
|
useTheme,
|
|
type ViewStyleProp,
|
|
web,
|
|
} from '#/alf'
|
|
import {Button, type ButtonColor, ButtonText} from '#/components/Button'
|
|
import * as Dialog from '#/components/Dialog'
|
|
import {Text} from '#/components/Typography'
|
|
import {type BottomSheetViewProps} from '../../modules/bottom-sheet'
|
|
|
|
export {
|
|
type DialogControlProps as PromptControlProps,
|
|
useDialogControl as usePromptControl,
|
|
} from '#/components/Dialog'
|
|
|
|
const Context = React.createContext<{
|
|
titleId: string
|
|
descriptionId: string
|
|
}>({
|
|
titleId: '',
|
|
descriptionId: '',
|
|
})
|
|
Context.displayName = 'PromptContext'
|
|
|
|
export function Outer({
|
|
children,
|
|
control,
|
|
testID,
|
|
nativeOptions,
|
|
}: React.PropsWithChildren<{
|
|
control: Dialog.DialogControlProps
|
|
testID?: string
|
|
nativeOptions?: Omit<BottomSheetViewProps, 'children'>
|
|
}>) {
|
|
const titleId = React.useId()
|
|
const descriptionId = React.useId()
|
|
|
|
const context = React.useMemo(
|
|
() => ({titleId, descriptionId}),
|
|
[titleId, descriptionId],
|
|
)
|
|
|
|
return (
|
|
<Dialog.Outer
|
|
control={control}
|
|
testID={testID}
|
|
webOptions={{alignCenter: true}}
|
|
nativeOptions={{preventExpansion: true, ...nativeOptions}}>
|
|
<Dialog.Handle />
|
|
<Context.Provider value={context}>
|
|
<Dialog.ScrollableInner
|
|
accessibilityLabelledBy={titleId}
|
|
accessibilityDescribedBy={descriptionId}
|
|
style={web({maxWidth: 400})}>
|
|
{children}
|
|
</Dialog.ScrollableInner>
|
|
</Context.Provider>
|
|
</Dialog.Outer>
|
|
)
|
|
}
|
|
|
|
export function TitleText({
|
|
children,
|
|
style,
|
|
}: React.PropsWithChildren<ViewStyleProp>) {
|
|
const {titleId} = React.useContext(Context)
|
|
return (
|
|
<Text
|
|
nativeID={titleId}
|
|
style={[
|
|
a.flex_1,
|
|
a.text_2xl,
|
|
a.font_semi_bold,
|
|
a.pb_sm,
|
|
a.leading_snug,
|
|
style,
|
|
]}>
|
|
{children}
|
|
</Text>
|
|
)
|
|
}
|
|
|
|
export function DescriptionText({
|
|
children,
|
|
selectable,
|
|
}: React.PropsWithChildren<{selectable?: boolean}>) {
|
|
const t = useTheme()
|
|
const {descriptionId} = React.useContext(Context)
|
|
return (
|
|
<Text
|
|
nativeID={descriptionId}
|
|
selectable={selectable}
|
|
style={[a.text_md, a.leading_snug, t.atoms.text_contrast_high, a.pb_lg]}>
|
|
{children}
|
|
</Text>
|
|
)
|
|
}
|
|
|
|
export function Actions({children}: React.PropsWithChildren<{}>) {
|
|
const {gtMobile} = useBreakpoints()
|
|
|
|
return (
|
|
<View
|
|
style={[
|
|
a.w_full,
|
|
a.gap_md,
|
|
a.justify_end,
|
|
gtMobile
|
|
? [a.flex_row, a.flex_row_reverse, a.justify_start]
|
|
: [a.flex_col],
|
|
]}>
|
|
{children}
|
|
</View>
|
|
)
|
|
}
|
|
|
|
export function Cancel({
|
|
cta,
|
|
}: {
|
|
/**
|
|
* Optional i18n string. If undefined, it will default to "Cancel".
|
|
*/
|
|
cta?: string
|
|
}) {
|
|
const {_} = useLingui()
|
|
const {gtMobile} = useBreakpoints()
|
|
const {close} = Dialog.useDialogContext()
|
|
const onPress = React.useCallback(() => {
|
|
close()
|
|
}, [close])
|
|
|
|
return (
|
|
<Button
|
|
variant="solid"
|
|
color="secondary"
|
|
size={gtMobile ? 'small' : 'large'}
|
|
label={cta || _(msg`Cancel`)}
|
|
onPress={onPress}>
|
|
<ButtonText>{cta || _(msg`Cancel`)}</ButtonText>
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
export function Action({
|
|
onPress,
|
|
color = 'primary',
|
|
cta,
|
|
testID,
|
|
}: {
|
|
/**
|
|
* Callback to run when the action is pressed. The method is called _after_
|
|
* the dialog closes.
|
|
*
|
|
* Note: The dialog will close automatically when the action is pressed, you
|
|
* should NOT close the dialog as a side effect of this method.
|
|
*/
|
|
onPress: (e: GestureResponderEvent) => void
|
|
color?: ButtonColor
|
|
/**
|
|
* Optional i18n string. If undefined, it will default to "Confirm".
|
|
*/
|
|
cta?: string
|
|
testID?: string
|
|
}) {
|
|
const {_} = useLingui()
|
|
const {gtMobile} = useBreakpoints()
|
|
const {close} = Dialog.useDialogContext()
|
|
const handleOnPress = React.useCallback(
|
|
(e: GestureResponderEvent) => {
|
|
close(() => onPress?.(e))
|
|
},
|
|
[close, onPress],
|
|
)
|
|
|
|
return (
|
|
<Button
|
|
variant="solid"
|
|
color={color}
|
|
size={gtMobile ? 'small' : 'large'}
|
|
label={cta || _(msg`Confirm`)}
|
|
onPress={handleOnPress}
|
|
testID={testID}>
|
|
<ButtonText>{cta || _(msg`Confirm`)}</ButtonText>
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
export function Basic({
|
|
control,
|
|
title,
|
|
description,
|
|
cancelButtonCta,
|
|
confirmButtonCta,
|
|
onConfirm,
|
|
confirmButtonColor,
|
|
showCancel = true,
|
|
}: React.PropsWithChildren<{
|
|
control: Dialog.DialogOuterProps['control']
|
|
title: string
|
|
description?: string
|
|
cancelButtonCta?: string
|
|
confirmButtonCta?: string
|
|
/**
|
|
* Callback to run when the Confirm button is pressed. The method is called
|
|
* _after_ the dialog closes.
|
|
*
|
|
* Note: The dialog will close automatically when the action is pressed, you
|
|
* should NOT close the dialog as a side effect of this method.
|
|
*/
|
|
onConfirm: (e: GestureResponderEvent) => void
|
|
confirmButtonColor?: ButtonColor
|
|
showCancel?: boolean
|
|
}>) {
|
|
return (
|
|
<Outer control={control} testID="confirmModal">
|
|
<TitleText>{title}</TitleText>
|
|
{description && <DescriptionText>{description}</DescriptionText>}
|
|
<Actions>
|
|
<Action
|
|
cta={confirmButtonCta}
|
|
onPress={onConfirm}
|
|
color={confirmButtonColor}
|
|
testID="confirmBtn"
|
|
/>
|
|
{showCancel && <Cancel cta={cancelButtonCta} />}
|
|
</Actions>
|
|
</Outer>
|
|
)
|
|
}
|