* WIP - adding expo * WIP - adding expo 2 * Fix tsc * Finish adding expo * Disable the 'require cycle' warning * Tweak plist * Modify some dependency versions to make expo happy * Fix icon fill * Get Web compiling for expo * 1.7 * Switch to react-navigation in expo2 (#287) * WIP Switch to react-navigation * WIP Switch to react-navigation 2 * WIP Switch to react-navigation 3 * Convert all screens to react navigation * Update BottomBar for react navigation * Update mobile menu to be react-native drawer * Fixes to drawer and bottombar * Factor out some helpers * Replace the navigation model with react-navigation * Restructure the shell folder and fix the header positioning * Restore the error boundary * Fix tsc * Implement not-found page * Remove react-native-gesture-handler (no longer used) * Handle notifee card presses * Handle all navigations from the state layer * Fix drawer behaviors * Fix two linking issues * Switch to our react-native-progress fork to fix an svg rendering issue * Get Web working with react-navigation * Refactor routes and navigation for a bit more clarity * Remove dead code * Rework Web shell to left/right nav to make this easier * Fix ViewHeader for desktop web * Hide profileheader back btn on desktop web * Move the compose button to the left nav * Implement reply prompt in threads for desktop web * Composer refactors * Factor out all platform-specific text input behaviors from the composer * Small fix * Update the web build to use tiptap for the composer * Tune up the mention autocomplete dropdown * Simplify the default avatar and banner * Fixes to link cards in web composer * Fix dropdowns on web * Tweak load latest on desktop * Add web beta message and feedback link * Fix up links in desktop web
525 lines
14 KiB
TypeScript
525 lines
14 KiB
TypeScript
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 {displayNotification} from 'lib/notifee'
|
|
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 = () => {
|
|
displayNotification(
|
|
'Paul Frazee liked your post',
|
|
"Hello world! This is a test of the notifications card. The text is long to see how that's handled.",
|
|
)
|
|
}
|
|
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>
|
|
)
|
|
}
|