Add left column of web shell
parent
20ccb03427
commit
c24d0254bc
|
@ -1,7 +1,6 @@
|
||||||
import React, {useEffect, useState} from 'react'
|
import React, {useEffect, useState} from 'react'
|
||||||
import {
|
import {
|
||||||
ActivityIndicator,
|
ActivityIndicator,
|
||||||
FlatList,
|
|
||||||
StyleSheet,
|
StyleSheet,
|
||||||
TouchableOpacity,
|
TouchableOpacity,
|
||||||
View,
|
View,
|
||||||
|
@ -13,6 +12,7 @@ import {
|
||||||
} from '@fortawesome/react-native-fontawesome'
|
} from '@fortawesome/react-native-fontawesome'
|
||||||
import {observer} from 'mobx-react-lite'
|
import {observer} from 'mobx-react-lite'
|
||||||
import _omit from 'lodash.omit'
|
import _omit from 'lodash.omit'
|
||||||
|
import {CenteredView, FlatList} from '../util/Views'
|
||||||
import {ErrorScreen} from '../util/error/ErrorScreen'
|
import {ErrorScreen} from '../util/error/ErrorScreen'
|
||||||
import {Link} from '../util/Link'
|
import {Link} from '../util/Link'
|
||||||
import {Text} from '../util/text/Text'
|
import {Text} from '../util/text/Text'
|
||||||
|
@ -120,12 +120,14 @@ export const SuggestedFollows = observer(
|
||||||
return (
|
return (
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
{view.hasError ? (
|
{view.hasError ? (
|
||||||
<ErrorScreen
|
<CenteredView>
|
||||||
title="Failed to load suggestions"
|
<ErrorScreen
|
||||||
message="There was an error while trying to load suggested follows."
|
title="Failed to load suggestions"
|
||||||
details={view.error}
|
message="There was an error while trying to load suggested follows."
|
||||||
onPressTryAgain={onRefresh}
|
details={view.error}
|
||||||
/>
|
onPressTryAgain={onRefresh}
|
||||||
|
/>
|
||||||
|
</CenteredView>
|
||||||
) : view.isEmpty ? (
|
) : view.isEmpty ? (
|
||||||
<View />
|
<View />
|
||||||
) : (
|
) : (
|
||||||
|
|
|
@ -24,10 +24,6 @@ export const BlurView = ({
|
||||||
}
|
}
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
blur: {
|
|
||||||
// @ts-ignore using an RNW-specific attribute here -prf
|
|
||||||
backdropFilter: 'blur(5px)',
|
|
||||||
},
|
|
||||||
dark: {
|
dark: {
|
||||||
backgroundColor: '#0008',
|
backgroundColor: '#0008',
|
||||||
},
|
},
|
||||||
|
|
|
@ -47,9 +47,11 @@ export function GridIconSolid({style}: {style?: StyleProp<ViewStyle>}) {
|
||||||
export function HomeIcon({
|
export function HomeIcon({
|
||||||
style,
|
style,
|
||||||
size,
|
size,
|
||||||
|
strokeWidth = 4,
|
||||||
}: {
|
}: {
|
||||||
style?: StyleProp<ViewStyle>
|
style?: StyleProp<ViewStyle>
|
||||||
size?: string | number
|
size?: string | number
|
||||||
|
strokeWidth?: number
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<Svg
|
<Svg
|
||||||
|
@ -57,9 +59,10 @@ export function HomeIcon({
|
||||||
width={size || 24}
|
width={size || 24}
|
||||||
height={size || 24}
|
height={size || 24}
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
|
fill="none"
|
||||||
style={style}>
|
style={style}>
|
||||||
<Path
|
<Path
|
||||||
strokeWidth={4}
|
strokeWidth={strokeWidth}
|
||||||
d="M 23.951 2 C 23.631 2.011 23.323 2.124 23.072 2.322 L 8.859 13.52 C 7.055 14.941 6 17.114 6 19.41 L 6 38.5 C 6 39.864 7.136 41 8.5 41 L 18.5 41 C 19.864 41 21 39.864 21 38.5 L 21 28.5 C 21 28.205 21.205 28 21.5 28 L 26.5 28 C 26.795 28 27 28.205 27 28.5 L 27 38.5 C 27 39.864 28.136 41 29.5 41 L 39.5 41 C 40.864 41 42 39.864 42 38.5 L 42 19.41 C 42 17.114 40.945 14.941 39.141 13.52 L 24.928 2.322 C 24.65 2.103 24.304 1.989 23.951 2 Z"
|
d="M 23.951 2 C 23.631 2.011 23.323 2.124 23.072 2.322 L 8.859 13.52 C 7.055 14.941 6 17.114 6 19.41 L 6 38.5 C 6 39.864 7.136 41 8.5 41 L 18.5 41 C 19.864 41 21 39.864 21 38.5 L 21 28.5 C 21 28.205 21.205 28 21.5 28 L 26.5 28 C 26.795 28 27 28.205 27 28.5 L 27 38.5 C 27 39.864 28.136 41 29.5 41 L 39.5 41 C 40.864 41 42 39.864 42 38.5 L 42 19.41 C 42 17.114 40.945 14.941 39.141 13.52 L 24.928 2.322 C 24.65 2.103 24.304 1.989 23.951 2 Z"
|
||||||
/>
|
/>
|
||||||
</Svg>
|
</Svg>
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
import React, {useEffect, useState, useMemo, useRef} from 'react'
|
import React, {useEffect, useState, useMemo, useRef} from 'react'
|
||||||
import {
|
import {
|
||||||
Keyboard,
|
Keyboard,
|
||||||
ScrollView,
|
|
||||||
StyleSheet,
|
StyleSheet,
|
||||||
TextInput,
|
TextInput,
|
||||||
TouchableOpacity,
|
TouchableOpacity,
|
||||||
View,
|
View,
|
||||||
} from 'react-native'
|
} from 'react-native'
|
||||||
import {ViewHeader} from '../com/util/ViewHeader'
|
import {ViewHeader} from '../com/util/ViewHeader'
|
||||||
|
import {CenteredView, ScrollView} from '../com/util/Views'
|
||||||
import {SuggestedFollows} from '../com/discover/SuggestedFollows'
|
import {SuggestedFollows} from '../com/discover/SuggestedFollows'
|
||||||
import {UserAvatar} from '../com/util/UserAvatar'
|
import {UserAvatar} from '../com/util/UserAvatar'
|
||||||
import {Text} from '../com/util/text/Text'
|
import {Text} from '../com/util/text/Text'
|
||||||
|
@ -54,7 +54,7 @@ export const Search = ({navIdx, visible, params}: ScreenParams) => {
|
||||||
return (
|
return (
|
||||||
<View style={[pal.view, styles.container]}>
|
<View style={[pal.view, styles.container]}>
|
||||||
<ViewHeader title="Search" />
|
<ViewHeader title="Search" />
|
||||||
<View style={[pal.view, pal.border, styles.inputContainer]}>
|
<CenteredView style={[pal.view, pal.border, styles.inputContainer]}>
|
||||||
<MagnifyingGlassIcon style={[pal.text, styles.inputIcon]} />
|
<MagnifyingGlassIcon style={[pal.text, styles.inputIcon]} />
|
||||||
<TextInput
|
<TextInput
|
||||||
testID="searchTextInput"
|
testID="searchTextInput"
|
||||||
|
@ -66,7 +66,7 @@ export const Search = ({navIdx, visible, params}: ScreenParams) => {
|
||||||
style={[pal.text, styles.input]}
|
style={[pal.text, styles.input]}
|
||||||
onChangeText={onChangeQuery}
|
onChangeText={onChangeQuery}
|
||||||
/>
|
/>
|
||||||
</View>
|
</CenteredView>
|
||||||
<View style={styles.outputContainer}>
|
<View style={styles.outputContainer}>
|
||||||
{query ? (
|
{query ? (
|
||||||
<ScrollView testID="searchScrollView" onScroll={Keyboard.dismiss}>
|
<ScrollView testID="searchScrollView" onScroll={Keyboard.dismiss}>
|
||||||
|
|
|
@ -3,7 +3,7 @@ import {observer} from 'mobx-react-lite'
|
||||||
import {View, StyleSheet, Text} from 'react-native'
|
import {View, StyleSheet, Text} from 'react-native'
|
||||||
import {useStores} from '../../../state'
|
import {useStores} from '../../../state'
|
||||||
import {match, MatchResult} from '../../routes'
|
import {match, MatchResult} from '../../routes'
|
||||||
// import {DesktopLeftColumn} from './left-column'
|
import {DesktopLeftColumn} from './left-column'
|
||||||
// import {DesktopRightColumn} from './right-column'
|
// import {DesktopRightColumn} from './right-column'
|
||||||
import {Login} from '../../screens/Login'
|
import {Login} from '../../screens/Login'
|
||||||
import {ErrorBoundary} from '../../com/util/ErrorBoundary'
|
import {ErrorBoundary} from '../../com/util/ErrorBoundary'
|
||||||
|
@ -34,6 +34,7 @@ export const WebShell: React.FC = observer(() => {
|
||||||
</ErrorBoundary>
|
</ErrorBoundary>
|
||||||
</View>
|
</View>
|
||||||
))}
|
))}
|
||||||
|
<DesktopLeftColumn />
|
||||||
</View>
|
</View>
|
||||||
)
|
)
|
||||||
// TODO
|
// TODO
|
||||||
|
|
|
@ -1,57 +1,115 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {View} from 'react-native'
|
import {Pressable, StyleSheet, View} from 'react-native'
|
||||||
|
import {observer} from 'mobx-react-lite'
|
||||||
|
import {Link} from '../../com/util/Link'
|
||||||
|
import {Text} from '../../com/util/text/Text'
|
||||||
|
import {colors} from '../../lib/styles'
|
||||||
|
import {useStores} from '../../../state'
|
||||||
|
import {usePalette} from '../../lib/hooks/usePalette'
|
||||||
|
import {
|
||||||
|
HomeIcon,
|
||||||
|
HomeIconSolid,
|
||||||
|
BellIcon,
|
||||||
|
BellIconSolid,
|
||||||
|
MagnifyingGlassIcon,
|
||||||
|
CogIcon,
|
||||||
|
} from '../../lib/icons'
|
||||||
|
|
||||||
// export const NavItem: React.FC<{label: string; screen: string}> = ({
|
interface NavItemProps {
|
||||||
// label,
|
label: string
|
||||||
// screen,
|
count?: number
|
||||||
// }) => {
|
href: string
|
||||||
// const Link = <></> // TODO
|
icon: JSX.Element
|
||||||
// return (
|
iconFilled: JSX.Element
|
||||||
// <View>
|
|
||||||
// <Pressable
|
|
||||||
// style={state => [
|
|
||||||
// // @ts-ignore it does exist! (react-native-web) -prf
|
|
||||||
// state.hovered && styles.navItemHovered,
|
|
||||||
// ]}>
|
|
||||||
// <Link
|
|
||||||
// style={[
|
|
||||||
// styles.navItemLink,
|
|
||||||
// false /* TODO route.name === screen*/ && styles.navItemLinkSelected,
|
|
||||||
// ]}
|
|
||||||
// to={{screen, params: {}}}>
|
|
||||||
// {label}
|
|
||||||
// </Link>
|
|
||||||
// </Pressable>
|
|
||||||
// </View>
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
|
|
||||||
export const DesktopLeftColumn: React.FC = () => {
|
|
||||||
// TODO
|
|
||||||
return <View />
|
|
||||||
// return (
|
|
||||||
// <View style={styles.container}>
|
|
||||||
// <NavItem screen="Home" label="Home" />
|
|
||||||
// <NavItem screen="Search" label="Search" />
|
|
||||||
// <NavItem screen="Notifications" label="Notifications" />
|
|
||||||
// </View>
|
|
||||||
// )
|
|
||||||
}
|
}
|
||||||
|
export const NavItem = observer(
|
||||||
|
({label, count, href, icon, iconFilled}: NavItemProps) => {
|
||||||
|
const store = useStores()
|
||||||
|
const pal = usePalette('default')
|
||||||
|
const isCurrent = store.nav.tab.current.url === href
|
||||||
|
return (
|
||||||
|
<Pressable
|
||||||
|
style={state => [
|
||||||
|
// @ts-ignore Pressable state differs for RNW -prf
|
||||||
|
state.hovered && {backgroundColor: pal.colors.backgroundLight},
|
||||||
|
]}>
|
||||||
|
<Link style={styles.navItem} href={href}>
|
||||||
|
<View style={styles.navItemIconWrapper}>
|
||||||
|
{isCurrent ? iconFilled : icon}
|
||||||
|
{typeof count === 'number' && count > 0 && (
|
||||||
|
<Text type="button" style={styles.navItemCount}>
|
||||||
|
{count}
|
||||||
|
</Text>
|
||||||
|
)}
|
||||||
|
</View>
|
||||||
|
<Text type={isCurrent ? 'xl-bold' : 'xl-medium'}>{label}</Text>
|
||||||
|
</Link>
|
||||||
|
</Pressable>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
// const styles = StyleSheet.create({
|
export const DesktopLeftColumn = observer(() => {
|
||||||
// container: {
|
const store = useStores()
|
||||||
// position: 'absolute',
|
const pal = usePalette('default')
|
||||||
// left: 'calc(50vw - 500px)',
|
return (
|
||||||
// width: '200px',
|
<View style={[styles.container, pal.border]}>
|
||||||
// height: '100%',
|
<NavItem
|
||||||
// },
|
href="/"
|
||||||
// navItemHovered: {
|
label="Home"
|
||||||
// backgroundColor: 'gray',
|
icon={<HomeIcon />}
|
||||||
// },
|
iconFilled={<HomeIconSolid />}
|
||||||
// navItemLink: {
|
/>
|
||||||
// padding: '1rem',
|
<NavItem
|
||||||
// },
|
href="/search"
|
||||||
// navItemLinkSelected: {
|
label="Search"
|
||||||
// color: 'blue',
|
icon={<MagnifyingGlassIcon />}
|
||||||
// },
|
iconFilled={<MagnifyingGlassIcon strokeWidth={4} />}
|
||||||
// })
|
/>
|
||||||
|
<NavItem
|
||||||
|
href="/notifications"
|
||||||
|
label="Notifications"
|
||||||
|
count={store.me.notificationCount}
|
||||||
|
icon={<BellIcon />}
|
||||||
|
iconFilled={<BellIconSolid />}
|
||||||
|
/>
|
||||||
|
<NavItem
|
||||||
|
href="/settings"
|
||||||
|
label="Settings"
|
||||||
|
icon={<CogIcon strokeWidth={1.5} />}
|
||||||
|
iconFilled={<CogIcon strokeWidth={2} />}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
container: {
|
||||||
|
position: 'absolute',
|
||||||
|
left: 'calc(50vw - 500px)',
|
||||||
|
width: '200px',
|
||||||
|
height: '100%',
|
||||||
|
borderRightWidth: 1,
|
||||||
|
},
|
||||||
|
navItem: {
|
||||||
|
padding: '1rem',
|
||||||
|
flexDirection: 'row',
|
||||||
|
alignItems: 'center',
|
||||||
|
},
|
||||||
|
navItemIconWrapper: {
|
||||||
|
flexDirection: 'row',
|
||||||
|
width: 30,
|
||||||
|
justifyContent: 'center',
|
||||||
|
marginRight: 5,
|
||||||
|
},
|
||||||
|
navItemCount: {
|
||||||
|
position: 'absolute',
|
||||||
|
top: -5,
|
||||||
|
left: 15,
|
||||||
|
backgroundColor: colors.red3,
|
||||||
|
color: colors.white,
|
||||||
|
fontSize: 12,
|
||||||
|
paddingHorizontal: 4,
|
||||||
|
borderRadius: 4,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue