1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
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 (
<Pressable
style={state => [
// @ts-ignore Pressable state differs for RNW -prf
state.hovered && hoverBg,
]}>
<Link style={[styles.navItem, isCurrent && hoverBg]} href={href}>
<View
style={[
styles.navItemIconWrapper,
isProfile && styles.navItemProfile,
]}>
{isCurrent ? iconFilled : icon}
{typeof count === 'number' && count > 0 && (
<Text type="button" style={styles.navItemCount}>
{count}
</Text>
)}
</View>
<Text
type={isCurrent || isProfile ? 'xl' : 'xl-thin'}
numberOfLines={1}>
{label}
</Text>
</Link>
</Pressable>
)
},
)
export const DesktopLeftColumn = observer(() => {
const store = useStores()
const containerBg = useColorSchemeStyle(
styles.containerBgLight,
styles.containerBgDark,
)
const pal = usePalette('default')
const avi = (
<UserAvatar
handle={store.me.handle}
displayName={store.me.displayName}
avatar={store.me.avatar}
size={30}
/>
)
return (
<View style={[styles.container, containerBg, pal.border]}>
<View style={styles.main}>
<Link style={styles.logo} href="/">
<Text type="title-xl">Bluesky</Text>
</Link>
<NavItem
href="/"
label="Home"
icon={<HomeIcon size={21} />}
iconFilled={<HomeIconSolid size={21} />}
/>
<NavItem
href="/search"
label="Explore"
icon={<MagnifyingGlassIcon size={21} />}
iconFilled={<MagnifyingGlassIcon strokeWidth={3} size={21} />}
/>
<NavItem
href="/notifications"
label="Notifications"
count={store.me.notifications.unreadCount}
icon={<BellIcon size={21} />}
iconFilled={<BellIconSolid size={21} />}
/>
<NavItem
href="/settings"
label="Settings"
icon={<CogIcon strokeWidth={2} size={21} />}
iconFilled={<CogIcon strokeWidth={2.5} size={21} />}
/>
</View>
<View style={[styles.footer, pal.borderDark]}>
<NavItem
isProfile
href={`/profile/${store.me.handle}`}
label={store.me.displayName || store.me.handle}
icon={avi}
iconFilled={avi}
/>
</View>
</View>
)
})
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: 8,
paddingBottom: 14,
},
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,
},
})
|