From 60c72087ff0bc13453d2a1602b92b41baf1c2a6a Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 15 Nov 2022 13:11:01 -0600 Subject: Add current user profile to header and enlarge the header --- src/view/com/util/ViewHeader.tsx | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) (limited to 'src/view/com/util/ViewHeader.tsx') diff --git a/src/view/com/util/ViewHeader.tsx b/src/view/com/util/ViewHeader.tsx index 46be1144f..fa9bc8f4c 100644 --- a/src/view/com/util/ViewHeader.tsx +++ b/src/view/com/util/ViewHeader.tsx @@ -1,7 +1,8 @@ import React from 'react' import {StyleSheet, Text, TouchableOpacity, View} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {s, colors} from '../../lib/styles' +import {UserAvatar} from './UserAvatar' +import {colors} from '../../lib/styles' import {useStores} from '../../../state' export function ViewHeader({ @@ -15,15 +16,16 @@ export function ViewHeader({ const onPressBack = () => { store.nav.tab.goBack() } + const onPressAvatar = () => { + if (store.me.handle) { + store.nav.navigate(`/profile/${store.me.handle}`) + } + } return ( {store.nav.tab.canGoBack ? ( - - + + ) : ( @@ -36,7 +38,17 @@ export function ViewHeader({ ) : undefined} - + {store.me.did ? ( + + + + ) : ( + + )} ) } @@ -47,7 +59,8 @@ const styles = StyleSheet.create({ alignItems: 'center', backgroundColor: colors.white, paddingHorizontal: 12, - paddingBottom: 6, + paddingTop: 2, + paddingBottom: 8, borderBottomColor: colors.gray1, borderBottomWidth: 1, }, @@ -70,8 +83,8 @@ const styles = StyleSheet.create({ }, cornerPlaceholder: { - width: 14, - height: 14, + width: 24, + height: 24, }, - backIcon: {width: 14, height: 14}, + backIcon: {width: 24, height: 24}, }) -- cgit 1.4.1