New storybook
This commit is contained in:
+60
-513
@@ -1,520 +1,67 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {ScrollView, View} from 'react-native'
|
import {CenteredView} from '#/view/com/util/Views'
|
||||||
import {NativeStackScreenProps, CommonNavigatorParams} from 'lib/routes/types'
|
|
||||||
import {ViewHeader} from '../com/util/ViewHeader'
|
|
||||||
import {ThemeProvider, PaletteColorName} from 'lib/ThemeContext'
|
|
||||||
import {usePalette} from 'lib/hooks/usePalette'
|
|
||||||
import {s} from 'lib/styles'
|
|
||||||
import * as Toast from 'view/com/util/Toast'
|
|
||||||
import {Text} from '../com/util/text/Text'
|
|
||||||
import {ViewSelector} from '../com/util/ViewSelector'
|
|
||||||
import {EmptyState} from '../com/util/EmptyState'
|
|
||||||
import * as LoadingPlaceholder from '../com/util/LoadingPlaceholder'
|
|
||||||
import {Button, ButtonType} from '../com/util/forms/Button'
|
|
||||||
import {DropdownButton, DropdownItem} from '../com/util/forms/DropdownButton'
|
|
||||||
import {ToggleButton} from '../com/util/forms/ToggleButton'
|
|
||||||
import {RadioGroup} from '../com/util/forms/RadioGroup'
|
|
||||||
import {ErrorScreen} from '../com/util/error/ErrorScreen'
|
|
||||||
import {ErrorMessage} from '../com/util/error/ErrorMessage'
|
|
||||||
|
|
||||||
const MAIN_VIEWS = ['Base', 'Controls', 'Error', 'Notifs']
|
import {useSetColorMode} from '#/state/shell'
|
||||||
|
import {Box, Text, Button, H1, H2, H3, H4, H5, H6} from '#/view/nova'
|
||||||
|
|
||||||
export const DebugScreen = ({}: NativeStackScreenProps<
|
export function DebugScreen() {
|
||||||
CommonNavigatorParams,
|
const setColorMode = useSetColorMode()
|
||||||
'Debug'
|
|
||||||
>) => {
|
|
||||||
const [colorScheme, setColorScheme] = React.useState<'light' | 'dark'>(
|
|
||||||
'light',
|
|
||||||
)
|
|
||||||
const onToggleColorScheme = () => {
|
|
||||||
setColorScheme(colorScheme === 'light' ? 'dark' : 'light')
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<ThemeProvider theme={colorScheme}>
|
|
||||||
<DebugInner
|
|
||||||
colorScheme={colorScheme}
|
|
||||||
onToggleColorScheme={onToggleColorScheme}
|
|
||||||
/>
|
|
||||||
</ThemeProvider>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function DebugInner({
|
|
||||||
colorScheme,
|
|
||||||
onToggleColorScheme,
|
|
||||||
}: {
|
|
||||||
colorScheme: 'light' | 'dark'
|
|
||||||
onToggleColorScheme: () => void
|
|
||||||
}) {
|
|
||||||
const [currentView, setCurrentView] = React.useState<number>(0)
|
|
||||||
const pal = usePalette('default')
|
|
||||||
|
|
||||||
const renderItem = (item: any) => {
|
|
||||||
return (
|
|
||||||
<View key={`view-${item.currentView}`}>
|
|
||||||
<View style={[s.pt10, s.pl10, s.pr10]}>
|
|
||||||
<ToggleButton
|
|
||||||
type="default-light"
|
|
||||||
onPress={onToggleColorScheme}
|
|
||||||
isSelected={colorScheme === 'dark'}
|
|
||||||
label="Dark mode"
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
{item.currentView === 3 ? (
|
|
||||||
<NotifsView />
|
|
||||||
) : item.currentView === 2 ? (
|
|
||||||
<ErrorView />
|
|
||||||
) : item.currentView === 1 ? (
|
|
||||||
<ControlsView />
|
|
||||||
) : (
|
|
||||||
<BaseView />
|
|
||||||
)}
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
const items = [{currentView}]
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={[s.hContentRegion, pal.view]}>
|
<CenteredView>
|
||||||
<ViewHeader title="Debug panel" />
|
<Box py="xl" gap="xxl">
|
||||||
<ViewSelector
|
<Box row gap="s">
|
||||||
swipeEnabled
|
<Button onPress={() => setColorMode('system')}>
|
||||||
sections={MAIN_VIEWS}
|
<Text>System</Text>
|
||||||
items={items}
|
</Button>
|
||||||
renderItem={renderItem}
|
<Button onPress={() => setColorMode('light')}>
|
||||||
onSelectView={setCurrentView}
|
<Text>Light</Text>
|
||||||
/>
|
</Button>
|
||||||
</View>
|
<Button onPress={() => setColorMode('dark')}>
|
||||||
)
|
<Text>Dark</Text>
|
||||||
}
|
</Button>
|
||||||
|
</Box>
|
||||||
function Heading({label}: {label: string}) {
|
|
||||||
const pal = usePalette('default')
|
<Box gap="m">
|
||||||
return (
|
<H1>Heading 1</H1>
|
||||||
<View style={[s.pt10, s.pb5]}>
|
<H2>Heading 2</H2>
|
||||||
<Text type="title-lg" style={pal.text}>
|
<H3>Heading 3</H3>
|
||||||
{label}
|
<H4>Heading 4</H4>
|
||||||
</Text>
|
<H5>Heading 5</H5>
|
||||||
</View>
|
<H6>Heading 6</H6>
|
||||||
)
|
</Box>
|
||||||
}
|
|
||||||
|
<Box gap="m">
|
||||||
function BaseView() {
|
<Text fontSize="xl" fontWeight="900">
|
||||||
return (
|
H1 Size Text
|
||||||
<View style={[s.pl10, s.pr10]}>
|
</Text>
|
||||||
<Heading label="Typography" />
|
<Text fontSize="l">H2 Size Text</Text>
|
||||||
<TypographyView />
|
<Text fontSize="m">H3 Size Text</Text>
|
||||||
<Heading label="Palettes" />
|
<Text fontSize="s">H4 Size Text</Text>
|
||||||
<PaletteView palette="default" />
|
<Text fontSize="xs">H5 Size Text</Text>
|
||||||
<PaletteView palette="primary" />
|
<Text fontSize="xxs">H6 Size Text</Text>
|
||||||
<PaletteView palette="secondary" />
|
</Box>
|
||||||
<PaletteView palette="inverted" />
|
|
||||||
<PaletteView palette="error" />
|
<Box pa="s" gap="m" bg="l3">
|
||||||
<Heading label="Empty state" />
|
<Box row gap="s">
|
||||||
<EmptyStateView />
|
<Box pa="s" bg="l6" />
|
||||||
<Heading label="Loading placeholders" />
|
<Box pa="s" bg="l6" />
|
||||||
<LoadingPlaceholderView />
|
<Box pa="s" bg="l6" />
|
||||||
<View style={s.footerSpacer} />
|
</Box>
|
||||||
</View>
|
|
||||||
)
|
<Box row gap="s">
|
||||||
}
|
<Box pa="s" bg="l6" flex={1} />
|
||||||
|
<Box pa="s" bg="l6" flex={1} />
|
||||||
function ControlsView() {
|
<Box pa="s" bg="l6" flex={1} />
|
||||||
return (
|
</Box>
|
||||||
<ScrollView style={[s.pl10, s.pr10]}>
|
|
||||||
<Heading label="Buttons" />
|
<Box row gap="s">
|
||||||
<ButtonsView />
|
<Box pa="s" bg="l6" flex={1} />
|
||||||
<Heading label="Dropdown Buttons" />
|
<Box pa="s" bg="l6" flex={2} />
|
||||||
<DropdownButtonsView />
|
<Box pa="s" bg="l6" flex={1} />
|
||||||
<Heading label="Toggle Buttons" />
|
</Box>
|
||||||
<ToggleButtonsView />
|
</Box>
|
||||||
<Heading label="Radio Buttons" />
|
</Box>
|
||||||
<RadioButtonsView />
|
</CenteredView>
|
||||||
<View style={s.footerSpacer} />
|
|
||||||
</ScrollView>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function ErrorView() {
|
|
||||||
return (
|
|
||||||
<View style={s.p10}>
|
|
||||||
<View style={s.mb5}>
|
|
||||||
<ErrorScreen
|
|
||||||
title="Error screen"
|
|
||||||
message="A major error occurred that led the entire screen to fail"
|
|
||||||
details="Here are some details"
|
|
||||||
onPressTryAgain={() => {}}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
<View style={s.mb5}>
|
|
||||||
<ErrorMessage message="This is an error that occurred while things were being done" />
|
|
||||||
</View>
|
|
||||||
<View style={s.mb5}>
|
|
||||||
<ErrorMessage
|
|
||||||
message="This is an error that occurred while things were being done"
|
|
||||||
numberOfLines={1}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
<View style={s.mb5}>
|
|
||||||
<ErrorMessage
|
|
||||||
message="This is an error that occurred while things were being done"
|
|
||||||
onPressTryAgain={() => {}}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
<View style={s.mb5}>
|
|
||||||
<ErrorMessage
|
|
||||||
message="This is an error that occurred while things were being done"
|
|
||||||
onPressTryAgain={() => {}}
|
|
||||||
numberOfLines={1}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function NotifsView() {
|
|
||||||
const triggerPush = () => {
|
|
||||||
// TODO: implement local notification for testing
|
|
||||||
}
|
|
||||||
const triggerToast = () => {
|
|
||||||
Toast.show('The task has been completed')
|
|
||||||
}
|
|
||||||
const triggerToast2 = () => {
|
|
||||||
Toast.show('The task has been completed successfully and with no problems')
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<View style={s.p10}>
|
|
||||||
<View style={s.flexRow}>
|
|
||||||
<Button onPress={triggerPush} label="Trigger Push" />
|
|
||||||
<Button onPress={triggerToast} label="Trigger Toast" />
|
|
||||||
<Button onPress={triggerToast2} label="Trigger Toast 2" />
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function PaletteView({palette}: {palette: PaletteColorName}) {
|
|
||||||
const defaultPal = usePalette('default')
|
|
||||||
const pal = usePalette(palette)
|
|
||||||
return (
|
|
||||||
<View style={[pal.view, pal.border, s.p10, s.mb5, s.border1]}>
|
|
||||||
<Text style={[pal.text]}>{palette} colors</Text>
|
|
||||||
<Text style={[pal.textLight]}>Light text</Text>
|
|
||||||
<Text style={[pal.link]}>Link text</Text>
|
|
||||||
{palette !== 'default' && (
|
|
||||||
<View style={[defaultPal.view]}>
|
|
||||||
<Text style={[pal.textInverted]}>Inverted text</Text>
|
|
||||||
</View>
|
|
||||||
)}
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function TypographyView() {
|
|
||||||
const pal = usePalette('default')
|
|
||||||
return (
|
|
||||||
<View style={[pal.view]}>
|
|
||||||
<Text type="2xl-thin" style={[pal.text]}>
|
|
||||||
'2xl-thin' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="2xl" style={[pal.text]}>
|
|
||||||
'2xl' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="2xl-medium" style={[pal.text]}>
|
|
||||||
'2xl-medium' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="2xl-bold" style={[pal.text]}>
|
|
||||||
'2xl-bold' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="2xl-heavy" style={[pal.text]}>
|
|
||||||
'2xl-heavy' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xl-thin" style={[pal.text]}>
|
|
||||||
'xl-thin' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xl" style={[pal.text]}>
|
|
||||||
'xl' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xl-medium" style={[pal.text]}>
|
|
||||||
'xl-medium' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xl-bold" style={[pal.text]}>
|
|
||||||
'xl-bold' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xl-heavy" style={[pal.text]}>
|
|
||||||
'xl-heavy' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="lg-thin" style={[pal.text]}>
|
|
||||||
'lg-thin' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="lg" style={[pal.text]}>
|
|
||||||
'lg' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="lg-medium" style={[pal.text]}>
|
|
||||||
'lg-medium' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="lg-bold" style={[pal.text]}>
|
|
||||||
'lg-bold' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="lg-heavy" style={[pal.text]}>
|
|
||||||
'lg-heavy' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="md-thin" style={[pal.text]}>
|
|
||||||
'md-thin' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="md" style={[pal.text]}>
|
|
||||||
'md' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="md-medium" style={[pal.text]}>
|
|
||||||
'md-medium' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="md-bold" style={[pal.text]}>
|
|
||||||
'md-bold' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="md-heavy" style={[pal.text]}>
|
|
||||||
'md-heavy' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="sm-thin" style={[pal.text]}>
|
|
||||||
'sm-thin' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="sm" style={[pal.text]}>
|
|
||||||
'sm' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="sm-medium" style={[pal.text]}>
|
|
||||||
'sm-medium' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="sm-bold" style={[pal.text]}>
|
|
||||||
'sm-bold' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="sm-heavy" style={[pal.text]}>
|
|
||||||
'sm-heavy' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xs-thin" style={[pal.text]}>
|
|
||||||
'xs-thin' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xs" style={[pal.text]}>
|
|
||||||
'xs' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xs-medium" style={[pal.text]}>
|
|
||||||
'xs-medium' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xs-bold" style={[pal.text]}>
|
|
||||||
'xs-bold' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="xs-heavy" style={[pal.text]}>
|
|
||||||
'xs-heavy' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
|
|
||||||
<Text type="title-2xl" style={[pal.text]}>
|
|
||||||
'title-2xl' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="title-xl" style={[pal.text]}>
|
|
||||||
'title-xl' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="title-lg" style={[pal.text]}>
|
|
||||||
'title-lg' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="title" style={[pal.text]}>
|
|
||||||
'title' lorem ipsum dolor
|
|
||||||
</Text>
|
|
||||||
<Text type="button" style={[pal.text]}>
|
|
||||||
Button
|
|
||||||
</Text>
|
|
||||||
<Text type="button-lg" style={[pal.text]}>
|
|
||||||
Button-lg
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function EmptyStateView() {
|
|
||||||
return <EmptyState icon="bars" message="This is an empty state" />
|
|
||||||
}
|
|
||||||
|
|
||||||
function LoadingPlaceholderView() {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<LoadingPlaceholder.PostLoadingPlaceholder />
|
|
||||||
<LoadingPlaceholder.NotificationLoadingPlaceholder />
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function ButtonsView() {
|
|
||||||
const defaultPal = usePalette('default')
|
|
||||||
const buttonStyles = {marginRight: 5}
|
|
||||||
return (
|
|
||||||
<View style={[defaultPal.view]}>
|
|
||||||
<View style={[s.flexRow, s.mb5]}>
|
|
||||||
<Button type="primary" label="Primary solid" style={buttonStyles} />
|
|
||||||
<Button type="secondary" label="Secondary solid" style={buttonStyles} />
|
|
||||||
</View>
|
|
||||||
<View style={[s.flexRow, s.mb5]}>
|
|
||||||
<Button type="default" label="Default solid" style={buttonStyles} />
|
|
||||||
<Button type="inverted" label="Inverted solid" style={buttonStyles} />
|
|
||||||
</View>
|
|
||||||
<View style={s.flexRow}>
|
|
||||||
<Button
|
|
||||||
type="primary-outline"
|
|
||||||
label="Primary outline"
|
|
||||||
style={buttonStyles}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
type="secondary-outline"
|
|
||||||
label="Secondary outline"
|
|
||||||
style={buttonStyles}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
<View style={s.flexRow}>
|
|
||||||
<Button
|
|
||||||
type="primary-light"
|
|
||||||
label="Primary light"
|
|
||||||
style={buttonStyles}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
type="secondary-light"
|
|
||||||
label="Secondary light"
|
|
||||||
style={buttonStyles}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
<View style={s.flexRow}>
|
|
||||||
<Button
|
|
||||||
type="default-light"
|
|
||||||
label="Default light"
|
|
||||||
style={buttonStyles}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
const DROPDOWN_ITEMS: DropdownItem[] = [
|
|
||||||
{
|
|
||||||
icon: ['far', 'paste'],
|
|
||||||
label: 'Copy post text',
|
|
||||||
onPress() {},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: 'share',
|
|
||||||
label: 'Share...',
|
|
||||||
onPress() {},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: 'circle-exclamation',
|
|
||||||
label: 'Report post',
|
|
||||||
onPress() {},
|
|
||||||
},
|
|
||||||
]
|
|
||||||
function DropdownButtonsView() {
|
|
||||||
const defaultPal = usePalette('default')
|
|
||||||
return (
|
|
||||||
<View style={[defaultPal.view]}>
|
|
||||||
<View style={s.mb5}>
|
|
||||||
<DropdownButton
|
|
||||||
type="primary"
|
|
||||||
items={DROPDOWN_ITEMS}
|
|
||||||
menuWidth={200}
|
|
||||||
label="Primary button"
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
<View style={s.mb5}>
|
|
||||||
<DropdownButton type="bare" items={DROPDOWN_ITEMS} menuWidth={200}>
|
|
||||||
<Text>Bare</Text>
|
|
||||||
</DropdownButton>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function ToggleButtonsView() {
|
|
||||||
const defaultPal = usePalette('default')
|
|
||||||
const buttonStyles = s.mb5
|
|
||||||
const [isSelected, setIsSelected] = React.useState(false)
|
|
||||||
const onToggle = () => setIsSelected(!isSelected)
|
|
||||||
return (
|
|
||||||
<View style={[defaultPal.view]}>
|
|
||||||
<ToggleButton
|
|
||||||
type="primary"
|
|
||||||
label="Primary solid"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
<ToggleButton
|
|
||||||
type="secondary"
|
|
||||||
label="Secondary solid"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
<ToggleButton
|
|
||||||
type="inverted"
|
|
||||||
label="Inverted solid"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
<ToggleButton
|
|
||||||
type="primary-outline"
|
|
||||||
label="Primary outline"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
<ToggleButton
|
|
||||||
type="secondary-outline"
|
|
||||||
label="Secondary outline"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
<ToggleButton
|
|
||||||
type="primary-light"
|
|
||||||
label="Primary light"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
<ToggleButton
|
|
||||||
type="secondary-light"
|
|
||||||
label="Secondary light"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
<ToggleButton
|
|
||||||
type="default-light"
|
|
||||||
label="Default light"
|
|
||||||
style={buttonStyles}
|
|
||||||
isSelected={isSelected}
|
|
||||||
onPress={onToggle}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
const RADIO_BUTTON_ITEMS = [
|
|
||||||
{key: 'default-light', label: 'Default Light'},
|
|
||||||
{key: 'primary', label: 'Primary'},
|
|
||||||
{key: 'secondary', label: 'Secondary'},
|
|
||||||
{key: 'inverted', label: 'Inverted'},
|
|
||||||
{key: 'primary-outline', label: 'Primary Outline'},
|
|
||||||
{key: 'secondary-outline', label: 'Secondary Outline'},
|
|
||||||
{key: 'primary-light', label: 'Primary Light'},
|
|
||||||
{key: 'secondary-light', label: 'Secondary Light'},
|
|
||||||
]
|
|
||||||
function RadioButtonsView() {
|
|
||||||
const defaultPal = usePalette('default')
|
|
||||||
const [rgType, setRgType] = React.useState<ButtonType>('default-light')
|
|
||||||
return (
|
|
||||||
<View style={[defaultPal.view]}>
|
|
||||||
<RadioGroup
|
|
||||||
type={rgType}
|
|
||||||
items={RADIO_BUTTON_ITEMS}
|
|
||||||
initialSelection="default-light"
|
|
||||||
onSelect={v => setRgType(v as ButtonType)}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,520 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import {ScrollView, View} from 'react-native'
|
||||||
|
import {NativeStackScreenProps, CommonNavigatorParams} from 'lib/routes/types'
|
||||||
|
import {ViewHeader} from '../com/util/ViewHeader'
|
||||||
|
import {ThemeProvider, PaletteColorName} from 'lib/ThemeContext'
|
||||||
|
import {usePalette} from 'lib/hooks/usePalette'
|
||||||
|
import {s} from 'lib/styles'
|
||||||
|
import * as Toast from 'view/com/util/Toast'
|
||||||
|
import {Text} from '../com/util/text/Text'
|
||||||
|
import {ViewSelector} from '../com/util/ViewSelector'
|
||||||
|
import {EmptyState} from '../com/util/EmptyState'
|
||||||
|
import * as LoadingPlaceholder from '../com/util/LoadingPlaceholder'
|
||||||
|
import {Button, ButtonType} from '../com/util/forms/Button'
|
||||||
|
import {DropdownButton, DropdownItem} from '../com/util/forms/DropdownButton'
|
||||||
|
import {ToggleButton} from '../com/util/forms/ToggleButton'
|
||||||
|
import {RadioGroup} from '../com/util/forms/RadioGroup'
|
||||||
|
import {ErrorScreen} from '../com/util/error/ErrorScreen'
|
||||||
|
import {ErrorMessage} from '../com/util/error/ErrorMessage'
|
||||||
|
|
||||||
|
const MAIN_VIEWS = ['Base', 'Controls', 'Error', 'Notifs']
|
||||||
|
|
||||||
|
export const DebugScreen = ({}: NativeStackScreenProps<
|
||||||
|
CommonNavigatorParams,
|
||||||
|
'Debug'
|
||||||
|
>) => {
|
||||||
|
const [colorScheme, setColorScheme] = React.useState<'light' | 'dark'>(
|
||||||
|
'light',
|
||||||
|
)
|
||||||
|
const onToggleColorScheme = () => {
|
||||||
|
setColorScheme(colorScheme === 'light' ? 'dark' : 'light')
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<ThemeProvider theme={colorScheme}>
|
||||||
|
<DebugInner
|
||||||
|
colorScheme={colorScheme}
|
||||||
|
onToggleColorScheme={onToggleColorScheme}
|
||||||
|
/>
|
||||||
|
</ThemeProvider>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function DebugInner({
|
||||||
|
colorScheme,
|
||||||
|
onToggleColorScheme,
|
||||||
|
}: {
|
||||||
|
colorScheme: 'light' | 'dark'
|
||||||
|
onToggleColorScheme: () => void
|
||||||
|
}) {
|
||||||
|
const [currentView, setCurrentView] = React.useState<number>(0)
|
||||||
|
const pal = usePalette('default')
|
||||||
|
|
||||||
|
const renderItem = (item: any) => {
|
||||||
|
return (
|
||||||
|
<View key={`view-${item.currentView}`}>
|
||||||
|
<View style={[s.pt10, s.pl10, s.pr10]}>
|
||||||
|
<ToggleButton
|
||||||
|
type="default-light"
|
||||||
|
onPress={onToggleColorScheme}
|
||||||
|
isSelected={colorScheme === 'dark'}
|
||||||
|
label="Dark mode"
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
{item.currentView === 3 ? (
|
||||||
|
<NotifsView />
|
||||||
|
) : item.currentView === 2 ? (
|
||||||
|
<ErrorView />
|
||||||
|
) : item.currentView === 1 ? (
|
||||||
|
<ControlsView />
|
||||||
|
) : (
|
||||||
|
<BaseView />
|
||||||
|
)}
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const items = [{currentView}]
|
||||||
|
|
||||||
|
return (
|
||||||
|
<View style={[s.hContentRegion, pal.view]}>
|
||||||
|
<ViewHeader title="Debug panel" />
|
||||||
|
<ViewSelector
|
||||||
|
swipeEnabled
|
||||||
|
sections={MAIN_VIEWS}
|
||||||
|
items={items}
|
||||||
|
renderItem={renderItem}
|
||||||
|
onSelectView={setCurrentView}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function Heading({label}: {label: string}) {
|
||||||
|
const pal = usePalette('default')
|
||||||
|
return (
|
||||||
|
<View style={[s.pt10, s.pb5]}>
|
||||||
|
<Text type="title-lg" style={pal.text}>
|
||||||
|
{label}
|
||||||
|
</Text>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function BaseView() {
|
||||||
|
return (
|
||||||
|
<View style={[s.pl10, s.pr10]}>
|
||||||
|
<Heading label="Typography" />
|
||||||
|
<TypographyView />
|
||||||
|
<Heading label="Palettes" />
|
||||||
|
<PaletteView palette="default" />
|
||||||
|
<PaletteView palette="primary" />
|
||||||
|
<PaletteView palette="secondary" />
|
||||||
|
<PaletteView palette="inverted" />
|
||||||
|
<PaletteView palette="error" />
|
||||||
|
<Heading label="Empty state" />
|
||||||
|
<EmptyStateView />
|
||||||
|
<Heading label="Loading placeholders" />
|
||||||
|
<LoadingPlaceholderView />
|
||||||
|
<View style={s.footerSpacer} />
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function ControlsView() {
|
||||||
|
return (
|
||||||
|
<ScrollView style={[s.pl10, s.pr10]}>
|
||||||
|
<Heading label="Buttons" />
|
||||||
|
<ButtonsView />
|
||||||
|
<Heading label="Dropdown Buttons" />
|
||||||
|
<DropdownButtonsView />
|
||||||
|
<Heading label="Toggle Buttons" />
|
||||||
|
<ToggleButtonsView />
|
||||||
|
<Heading label="Radio Buttons" />
|
||||||
|
<RadioButtonsView />
|
||||||
|
<View style={s.footerSpacer} />
|
||||||
|
</ScrollView>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function ErrorView() {
|
||||||
|
return (
|
||||||
|
<View style={s.p10}>
|
||||||
|
<View style={s.mb5}>
|
||||||
|
<ErrorScreen
|
||||||
|
title="Error screen"
|
||||||
|
message="A major error occurred that led the entire screen to fail"
|
||||||
|
details="Here are some details"
|
||||||
|
onPressTryAgain={() => {}}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
<View style={s.mb5}>
|
||||||
|
<ErrorMessage message="This is an error that occurred while things were being done" />
|
||||||
|
</View>
|
||||||
|
<View style={s.mb5}>
|
||||||
|
<ErrorMessage
|
||||||
|
message="This is an error that occurred while things were being done"
|
||||||
|
numberOfLines={1}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
<View style={s.mb5}>
|
||||||
|
<ErrorMessage
|
||||||
|
message="This is an error that occurred while things were being done"
|
||||||
|
onPressTryAgain={() => {}}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
<View style={s.mb5}>
|
||||||
|
<ErrorMessage
|
||||||
|
message="This is an error that occurred while things were being done"
|
||||||
|
onPressTryAgain={() => {}}
|
||||||
|
numberOfLines={1}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function NotifsView() {
|
||||||
|
const triggerPush = () => {
|
||||||
|
// TODO: implement local notification for testing
|
||||||
|
}
|
||||||
|
const triggerToast = () => {
|
||||||
|
Toast.show('The task has been completed')
|
||||||
|
}
|
||||||
|
const triggerToast2 = () => {
|
||||||
|
Toast.show('The task has been completed successfully and with no problems')
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<View style={s.p10}>
|
||||||
|
<View style={s.flexRow}>
|
||||||
|
<Button onPress={triggerPush} label="Trigger Push" />
|
||||||
|
<Button onPress={triggerToast} label="Trigger Toast" />
|
||||||
|
<Button onPress={triggerToast2} label="Trigger Toast 2" />
|
||||||
|
</View>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function PaletteView({palette}: {palette: PaletteColorName}) {
|
||||||
|
const defaultPal = usePalette('default')
|
||||||
|
const pal = usePalette(palette)
|
||||||
|
return (
|
||||||
|
<View style={[pal.view, pal.border, s.p10, s.mb5, s.border1]}>
|
||||||
|
<Text style={[pal.text]}>{palette} colors</Text>
|
||||||
|
<Text style={[pal.textLight]}>Light text</Text>
|
||||||
|
<Text style={[pal.link]}>Link text</Text>
|
||||||
|
{palette !== 'default' && (
|
||||||
|
<View style={[defaultPal.view]}>
|
||||||
|
<Text style={[pal.textInverted]}>Inverted text</Text>
|
||||||
|
</View>
|
||||||
|
)}
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function TypographyView() {
|
||||||
|
const pal = usePalette('default')
|
||||||
|
return (
|
||||||
|
<View style={[pal.view]}>
|
||||||
|
<Text type="2xl-thin" style={[pal.text]}>
|
||||||
|
'2xl-thin' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="2xl" style={[pal.text]}>
|
||||||
|
'2xl' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="2xl-medium" style={[pal.text]}>
|
||||||
|
'2xl-medium' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="2xl-bold" style={[pal.text]}>
|
||||||
|
'2xl-bold' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="2xl-heavy" style={[pal.text]}>
|
||||||
|
'2xl-heavy' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xl-thin" style={[pal.text]}>
|
||||||
|
'xl-thin' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xl" style={[pal.text]}>
|
||||||
|
'xl' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xl-medium" style={[pal.text]}>
|
||||||
|
'xl-medium' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xl-bold" style={[pal.text]}>
|
||||||
|
'xl-bold' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xl-heavy" style={[pal.text]}>
|
||||||
|
'xl-heavy' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="lg-thin" style={[pal.text]}>
|
||||||
|
'lg-thin' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="lg" style={[pal.text]}>
|
||||||
|
'lg' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="lg-medium" style={[pal.text]}>
|
||||||
|
'lg-medium' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="lg-bold" style={[pal.text]}>
|
||||||
|
'lg-bold' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="lg-heavy" style={[pal.text]}>
|
||||||
|
'lg-heavy' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="md-thin" style={[pal.text]}>
|
||||||
|
'md-thin' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="md" style={[pal.text]}>
|
||||||
|
'md' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="md-medium" style={[pal.text]}>
|
||||||
|
'md-medium' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="md-bold" style={[pal.text]}>
|
||||||
|
'md-bold' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="md-heavy" style={[pal.text]}>
|
||||||
|
'md-heavy' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="sm-thin" style={[pal.text]}>
|
||||||
|
'sm-thin' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="sm" style={[pal.text]}>
|
||||||
|
'sm' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="sm-medium" style={[pal.text]}>
|
||||||
|
'sm-medium' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="sm-bold" style={[pal.text]}>
|
||||||
|
'sm-bold' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="sm-heavy" style={[pal.text]}>
|
||||||
|
'sm-heavy' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xs-thin" style={[pal.text]}>
|
||||||
|
'xs-thin' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xs" style={[pal.text]}>
|
||||||
|
'xs' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xs-medium" style={[pal.text]}>
|
||||||
|
'xs-medium' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xs-bold" style={[pal.text]}>
|
||||||
|
'xs-bold' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="xs-heavy" style={[pal.text]}>
|
||||||
|
'xs-heavy' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
|
||||||
|
<Text type="title-2xl" style={[pal.text]}>
|
||||||
|
'title-2xl' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="title-xl" style={[pal.text]}>
|
||||||
|
'title-xl' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="title-lg" style={[pal.text]}>
|
||||||
|
'title-lg' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="title" style={[pal.text]}>
|
||||||
|
'title' lorem ipsum dolor
|
||||||
|
</Text>
|
||||||
|
<Text type="button" style={[pal.text]}>
|
||||||
|
Button
|
||||||
|
</Text>
|
||||||
|
<Text type="button-lg" style={[pal.text]}>
|
||||||
|
Button-lg
|
||||||
|
</Text>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function EmptyStateView() {
|
||||||
|
return <EmptyState icon="bars" message="This is an empty state" />
|
||||||
|
}
|
||||||
|
|
||||||
|
function LoadingPlaceholderView() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<LoadingPlaceholder.PostLoadingPlaceholder />
|
||||||
|
<LoadingPlaceholder.NotificationLoadingPlaceholder />
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function ButtonsView() {
|
||||||
|
const defaultPal = usePalette('default')
|
||||||
|
const buttonStyles = {marginRight: 5}
|
||||||
|
return (
|
||||||
|
<View style={[defaultPal.view]}>
|
||||||
|
<View style={[s.flexRow, s.mb5]}>
|
||||||
|
<Button type="primary" label="Primary solid" style={buttonStyles} />
|
||||||
|
<Button type="secondary" label="Secondary solid" style={buttonStyles} />
|
||||||
|
</View>
|
||||||
|
<View style={[s.flexRow, s.mb5]}>
|
||||||
|
<Button type="default" label="Default solid" style={buttonStyles} />
|
||||||
|
<Button type="inverted" label="Inverted solid" style={buttonStyles} />
|
||||||
|
</View>
|
||||||
|
<View style={s.flexRow}>
|
||||||
|
<Button
|
||||||
|
type="primary-outline"
|
||||||
|
label="Primary outline"
|
||||||
|
style={buttonStyles}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
type="secondary-outline"
|
||||||
|
label="Secondary outline"
|
||||||
|
style={buttonStyles}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
<View style={s.flexRow}>
|
||||||
|
<Button
|
||||||
|
type="primary-light"
|
||||||
|
label="Primary light"
|
||||||
|
style={buttonStyles}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
type="secondary-light"
|
||||||
|
label="Secondary light"
|
||||||
|
style={buttonStyles}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
<View style={s.flexRow}>
|
||||||
|
<Button
|
||||||
|
type="default-light"
|
||||||
|
label="Default light"
|
||||||
|
style={buttonStyles}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const DROPDOWN_ITEMS: DropdownItem[] = [
|
||||||
|
{
|
||||||
|
icon: ['far', 'paste'],
|
||||||
|
label: 'Copy post text',
|
||||||
|
onPress() {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: 'share',
|
||||||
|
label: 'Share...',
|
||||||
|
onPress() {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: 'circle-exclamation',
|
||||||
|
label: 'Report post',
|
||||||
|
onPress() {},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
function DropdownButtonsView() {
|
||||||
|
const defaultPal = usePalette('default')
|
||||||
|
return (
|
||||||
|
<View style={[defaultPal.view]}>
|
||||||
|
<View style={s.mb5}>
|
||||||
|
<DropdownButton
|
||||||
|
type="primary"
|
||||||
|
items={DROPDOWN_ITEMS}
|
||||||
|
menuWidth={200}
|
||||||
|
label="Primary button"
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
<View style={s.mb5}>
|
||||||
|
<DropdownButton type="bare" items={DROPDOWN_ITEMS} menuWidth={200}>
|
||||||
|
<Text>Bare</Text>
|
||||||
|
</DropdownButton>
|
||||||
|
</View>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function ToggleButtonsView() {
|
||||||
|
const defaultPal = usePalette('default')
|
||||||
|
const buttonStyles = s.mb5
|
||||||
|
const [isSelected, setIsSelected] = React.useState(false)
|
||||||
|
const onToggle = () => setIsSelected(!isSelected)
|
||||||
|
return (
|
||||||
|
<View style={[defaultPal.view]}>
|
||||||
|
<ToggleButton
|
||||||
|
type="primary"
|
||||||
|
label="Primary solid"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
<ToggleButton
|
||||||
|
type="secondary"
|
||||||
|
label="Secondary solid"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
<ToggleButton
|
||||||
|
type="inverted"
|
||||||
|
label="Inverted solid"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
<ToggleButton
|
||||||
|
type="primary-outline"
|
||||||
|
label="Primary outline"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
<ToggleButton
|
||||||
|
type="secondary-outline"
|
||||||
|
label="Secondary outline"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
<ToggleButton
|
||||||
|
type="primary-light"
|
||||||
|
label="Primary light"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
<ToggleButton
|
||||||
|
type="secondary-light"
|
||||||
|
label="Secondary light"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
<ToggleButton
|
||||||
|
type="default-light"
|
||||||
|
label="Default light"
|
||||||
|
style={buttonStyles}
|
||||||
|
isSelected={isSelected}
|
||||||
|
onPress={onToggle}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const RADIO_BUTTON_ITEMS = [
|
||||||
|
{key: 'default-light', label: 'Default Light'},
|
||||||
|
{key: 'primary', label: 'Primary'},
|
||||||
|
{key: 'secondary', label: 'Secondary'},
|
||||||
|
{key: 'inverted', label: 'Inverted'},
|
||||||
|
{key: 'primary-outline', label: 'Primary Outline'},
|
||||||
|
{key: 'secondary-outline', label: 'Secondary Outline'},
|
||||||
|
{key: 'primary-light', label: 'Primary Light'},
|
||||||
|
{key: 'secondary-light', label: 'Secondary Light'},
|
||||||
|
]
|
||||||
|
function RadioButtonsView() {
|
||||||
|
const defaultPal = usePalette('default')
|
||||||
|
const [rgType, setRgType] = React.useState<ButtonType>('default-light')
|
||||||
|
return (
|
||||||
|
<View style={[defaultPal.view]}>
|
||||||
|
<RadioGroup
|
||||||
|
type={rgType}
|
||||||
|
items={RADIO_BUTTON_ITEMS}
|
||||||
|
initialSelection="default-light"
|
||||||
|
onSelect={v => setRgType(v as ButtonType)}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user