import React from 'react'
import {Pressable, StyleSheet, TouchableOpacity, View} from 'react-native'
import {observer} from 'mobx-react-lite'
import {Link} from '../../com/util/Link'
import {Text} from '../../com/util/text/Text'
import {UserAvatar} from '../../com/util/UserAvatar'
import {colors} from 'lib/styles'
import {useStores} from 'state/index'
import {usePalette} from 'lib/hooks/usePalette'
import {useColorSchemeStyle} from 'lib/hooks/useColorSchemeStyle'
import {
HomeIcon,
HomeIconSolid,
BellIcon,
BellIconSolid,
MagnifyingGlassIcon,
CogIcon,
ComposeIcon,
} from 'lib/icons'
interface NavItemProps {
label: string
count?: number
href: string
icon: JSX.Element
iconFilled: JSX.Element
isProfile?: boolean
}
export const NavItem = observer(
({label, count, href, icon, iconFilled, isProfile}: NavItemProps) => {
const store = useStores()
const hoverBg = useColorSchemeStyle(
styles.navItemHoverBgLight,
styles.navItemHoverBgDark,
)
const isCurrent = store.nav.tab.current.url === href
return (
[
// @ts-ignore Pressable state differs for RNW -prf
state.hovered && hoverBg,
]}>
{isCurrent ? iconFilled : icon}
{typeof count === 'number' && count > 0 && (
{count}
)}
{label}
)
},
)
export const DesktopLeftColumn = observer(() => {
const store = useStores()
const containerBg = useColorSchemeStyle(
styles.containerBgLight,
styles.containerBgDark,
)
const hoverBg = useColorSchemeStyle(
styles.navItemHoverBgLight,
styles.navItemHoverBgDark,
)
const pal = usePalette('default')
const onPressCompose = () => store.shell.openComposer({})
const avi = (
)
return (
Bluesky
Search
}
iconFilled={}
/>
}
iconFilled={}
/>
}
iconFilled={}
/>
}
iconFilled={}
/>
[
// @ts-ignore Pressable state differs for RNW -prf
state.hovered && hoverBg,
]}>
New Post
)
})
const styles = StyleSheet.create({
containerBgLight: {
backgroundColor: '#f9f9fd',
},
containerBgDark: {
backgroundColor: '#f9f9fd', // TODO
},
container: {
position: 'absolute',
left: 0,
width: '300px',
height: '100vh',
borderRightWidth: 1,
paddingTop: 5,
},
main: {
flex: 1,
paddingHorizontal: 16,
},
footer: {
borderTopWidth: 1,
paddingHorizontal: 16,
paddingVertical: 8,
},
separator: {
borderTopWidth: 1,
marginVertical: 12,
marginHorizontal: 8,
},
logo: {
paddingTop: 6,
paddingBottom: 12,
},
search: {
flexDirection: 'row',
alignItems: 'center',
borderRadius: 8,
paddingVertical: 8,
paddingHorizontal: 6,
marginBottom: 10,
borderWidth: 1,
},
searchIconWrapper: {
flexDirection: 'row',
width: 30,
justifyContent: 'center',
marginRight: 6,
},
navItem: {
paddingVertical: 8,
paddingHorizontal: 6,
marginBottom: 2,
flexDirection: 'row',
alignItems: 'center',
borderRadius: 6,
},
navItemHoverBgLight: {
backgroundColor: '#ebebf0',
borderRadius: 6,
},
navItemHoverBgDark: {
backgroundColor: colors.gray2, // TODO
borderRadius: 6,
},
navItemIconWrapper: {
flexDirection: 'row',
width: 30,
justifyContent: 'center',
marginRight: 8,
},
navItemProfile: {
width: 30,
marginRight: 10,
},
navItemCount: {
position: 'absolute',
top: -5,
left: 15,
backgroundColor: colors.red3,
color: colors.white,
fontSize: 12,
fontWeight: 'bold',
paddingHorizontal: 4,
borderRadius: 6,
},
composeBtn: {
marginTop: 20,
marginBottom: 10,
marginLeft: 10,
marginRight: 20,
borderRadius: 30,
paddingHorizontal: 20,
paddingVertical: 12,
},
})