mirror of
https://github.com/tooot-app/app
synced 2025-04-06 14:41:17 +02:00
Fix back button
Using customized component, need to get `navigation` from props instead of hooks
This commit is contained in:
parent
991741488d
commit
177afe1dd1
@ -13,7 +13,7 @@ export default (): ExpoConfig => ({
|
|||||||
developmentClient: { silentLaunch: true },
|
developmentClient: { silentLaunch: true },
|
||||||
scheme: 'mastodonct',
|
scheme: 'mastodonct',
|
||||||
ios: {
|
ios: {
|
||||||
bundleIdentifier: 'com.xmflsct.mastodon-app',
|
bundleIdentifier: 'com.xmflsct.mastodon',
|
||||||
infoPlist: {
|
infoPlist: {
|
||||||
CFBundleAllowMixedLocalizations: true
|
CFBundleAllowMixedLocalizations: true
|
||||||
},
|
},
|
||||||
@ -23,13 +23,13 @@ export default (): ExpoConfig => ({
|
|||||||
backgroundColor: '#ffffff'
|
backgroundColor: '#ffffff'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
locales: {
|
// locales: {
|
||||||
zh: {
|
// zh: {
|
||||||
CFBundleDisplayName: '我的嘟嘟'
|
// CFBundleDisplayName: '我的嘟嘟'
|
||||||
},
|
// },
|
||||||
en: {
|
// en: {
|
||||||
CFBundleDisplayName: 'My Toots'
|
// CFBundleDisplayName: 'My Toots'
|
||||||
}
|
// }
|
||||||
},
|
// },
|
||||||
assetBundlePatterns: ['assets/*']
|
assetBundlePatterns: ['assets/*']
|
||||||
})
|
})
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
import { store, RootState } from 'src/store'
|
import { store, RootState } from '@root/store'
|
||||||
|
|
||||||
const client = async ({
|
const client = async ({
|
||||||
method,
|
method,
|
||||||
|
@ -67,7 +67,7 @@ const BottomSheet: React.FC<Props> = ({ children, visible, handleDismiss }) => {
|
|||||||
return (
|
return (
|
||||||
<Modal animated animationType='fade' visible={visible} transparent>
|
<Modal animated animationType='fade' visible={visible} transparent>
|
||||||
<View
|
<View
|
||||||
style={[styles.overlay, { backgroundColor: theme.border }]}
|
style={[styles.overlay, { backgroundColor: theme.backgroundOverlay }]}
|
||||||
{...panResponder.panHandlers}
|
{...panResponder.panHandlers}
|
||||||
>
|
>
|
||||||
<Animated.View
|
<Animated.View
|
||||||
@ -84,10 +84,12 @@ const BottomSheet: React.FC<Props> = ({ children, visible, handleDismiss }) => {
|
|||||||
style={[styles.handle, { backgroundColor: theme.background }]}
|
style={[styles.handle, { backgroundColor: theme.background }]}
|
||||||
/>
|
/>
|
||||||
{children}
|
{children}
|
||||||
<ButtonRow
|
<View style={styles.button}>
|
||||||
onPress={() => closeModal.start(() => handleDismiss())}
|
<ButtonRow
|
||||||
text='取消'
|
onPress={() => closeModal.start(() => handleDismiss())}
|
||||||
/>
|
text='取消'
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
</View>
|
</View>
|
||||||
</Modal>
|
</Modal>
|
||||||
@ -108,6 +110,10 @@ const styles = StyleSheet.create({
|
|||||||
height: StyleConstants.Spacing.S / 2,
|
height: StyleConstants.Spacing.S / 2,
|
||||||
borderRadius: 100,
|
borderRadius: 100,
|
||||||
top: -StyleConstants.Spacing.M * 2
|
top: -StyleConstants.Spacing.M * 2
|
||||||
|
},
|
||||||
|
button: {
|
||||||
|
paddingLeft: StyleConstants.Spacing.Global.PagePadding * 2,
|
||||||
|
paddingRight: StyleConstants.Spacing.Global.PagePadding * 2
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -5,13 +5,25 @@ import { Pressable, StyleSheet, Text } from 'react-native'
|
|||||||
import { useTheme } from '@utils/styles/ThemeManager'
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||||||
import { StyleConstants } from '@utils/styles/constants'
|
import { StyleConstants } from '@utils/styles/constants'
|
||||||
|
|
||||||
export interface Props {
|
type PropsBase = {
|
||||||
onPress: () => void
|
onPress: () => void
|
||||||
text?: string
|
}
|
||||||
|
|
||||||
|
export interface PropsText extends PropsBase {
|
||||||
|
text: string
|
||||||
icon?: any
|
icon?: any
|
||||||
}
|
}
|
||||||
|
|
||||||
const HeaderLeft: React.FC<Props> = ({ onPress, text, icon }) => {
|
export interface PropsIcon extends PropsBase {
|
||||||
|
text?: string
|
||||||
|
icon: any
|
||||||
|
}
|
||||||
|
|
||||||
|
const HeaderLeft: React.FC<PropsText | PropsIcon> = ({
|
||||||
|
onPress,
|
||||||
|
text,
|
||||||
|
icon
|
||||||
|
}) => {
|
||||||
const { theme } = useTheme()
|
const { theme } = useTheme()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -21,7 +33,7 @@ const HeaderLeft: React.FC<Props> = ({ onPress, text, icon }) => {
|
|||||||
styles.base,
|
styles.base,
|
||||||
{
|
{
|
||||||
backgroundColor: theme.backgroundGradientStart,
|
backgroundColor: theme.backgroundGradientStart,
|
||||||
...(icon && { height: 44, width: 44 })
|
...(icon && { height: 44, width: 44, marginLeft: -9 })
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -35,7 +35,7 @@ const HeaderRight: React.FC<PropsText | PropsIcon> = ({
|
|||||||
styles.base,
|
styles.base,
|
||||||
{
|
{
|
||||||
backgroundColor: theme.backgroundGradientStart,
|
backgroundColor: theme.backgroundGradientStart,
|
||||||
...(icon && { height: 44, width: 44 })
|
...(icon && { height: 44, width: 44, marginRight: -9 })
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -12,7 +12,7 @@ const MenuHeader: React.FC<Props> = ({ heading }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={[styles.base, { borderBottomColor: theme.separator }]}>
|
<View style={[styles.base, { borderBottomColor: theme.separator }]}>
|
||||||
<Text>{heading}</Text>
|
<Text style={[styles.text, { color: theme.primary }]}>{heading}</Text>
|
||||||
</View>
|
</View>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -23,6 +23,9 @@ const styles = StyleSheet.create({
|
|||||||
paddingLeft: StyleConstants.Spacing.Global.PagePadding,
|
paddingLeft: StyleConstants.Spacing.Global.PagePadding,
|
||||||
paddingRight: StyleConstants.Spacing.Global.PagePadding,
|
paddingRight: StyleConstants.Spacing.Global.PagePadding,
|
||||||
paddingBottom: StyleConstants.Spacing.S
|
paddingBottom: StyleConstants.Spacing.S
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
fontSize: StyleConstants.Font.Size.S
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ export interface Props {
|
|||||||
|
|
||||||
const Timelines: React.FC<Props> = ({ name, content }) => {
|
const Timelines: React.FC<Props> = ({ name, content }) => {
|
||||||
const navigation = useNavigation()
|
const navigation = useNavigation()
|
||||||
const { mode, theme } = useTheme()
|
const { mode } = useTheme()
|
||||||
const localRegistered = useSelector(getLocalUrl)
|
const localRegistered = useSelector(getLocalUrl)
|
||||||
const publicDomain = useSelector(getRemoteUrl)
|
const publicDomain = useSelector(getRemoteUrl)
|
||||||
const [segment, setSegment] = useState(0)
|
const [segment, setSegment] = useState(0)
|
||||||
|
@ -61,14 +61,7 @@ const Timeline: React.FC<Props> = ({
|
|||||||
fetchMore,
|
fetchMore,
|
||||||
refetch
|
refetch
|
||||||
} = useInfiniteQuery(queryKey, timelineFetch, {
|
} = useInfiniteQuery(queryKey, timelineFetch, {
|
||||||
getFetchMore: (last, all) => {
|
getFetchMore: last => last?.toots.length > 0
|
||||||
const allLastGroup = all[all.length - 1]!
|
|
||||||
return (
|
|
||||||
last?.toots.length > 0 &&
|
|
||||||
allLastGroup.toots[allLastGroup.toots.length - 1].id !==
|
|
||||||
last?.toots[last?.toots.length - 1].id
|
|
||||||
)
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
const flattenData = data ? data.flatMap(d => [...d?.toots]) : []
|
const flattenData = data ? data.flatMap(d => [...d?.toots]) : []
|
||||||
const flattenPointer = data ? data.flatMap(d => [d?.pointer]) : []
|
const flattenPointer = data ? data.flatMap(d => [d?.pointer]) : []
|
||||||
|
@ -53,7 +53,7 @@ const TimelineConversation: React.FC<Props> = ({
|
|||||||
return (
|
return (
|
||||||
<View style={styles.conversationView}>
|
<View style={styles.conversationView}>
|
||||||
<View style={styles.header}>
|
<View style={styles.header}>
|
||||||
<TimelineAvatar account={item.accounts[0]} />
|
<TimelineAvatar queryKey={queryKey} account={item.accounts[0]} />
|
||||||
<TimelineHeaderConversation
|
<TimelineHeaderConversation
|
||||||
queryKey={queryKey}
|
queryKey={queryKey}
|
||||||
id={item.id}
|
id={item.id}
|
||||||
|
@ -25,6 +25,7 @@ const TimelineDefault: React.FC<Props> = ({
|
|||||||
queryKey,
|
queryKey,
|
||||||
highlighted = false
|
highlighted = false
|
||||||
}) => {
|
}) => {
|
||||||
|
const isRemotePublic = queryKey[0] === 'RemotePublic'
|
||||||
const navigation = useNavigation()
|
const navigation = useNavigation()
|
||||||
|
|
||||||
let actualStatus = item.reblog ? item.reblog : item
|
let actualStatus = item.reblog ? item.reblog : item
|
||||||
@ -38,6 +39,7 @@ const TimelineDefault: React.FC<Props> = ({
|
|||||||
|
|
||||||
const tootOnPress = useCallback(
|
const tootOnPress = useCallback(
|
||||||
() =>
|
() =>
|
||||||
|
!isRemotePublic &&
|
||||||
navigation.navigate('Screen-Shared-Toot', {
|
navigation.navigate('Screen-Shared-Toot', {
|
||||||
toot: actualStatus
|
toot: actualStatus
|
||||||
}),
|
}),
|
||||||
@ -75,20 +77,29 @@ const TimelineDefault: React.FC<Props> = ({
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
<View style={styles.header}>
|
<View style={styles.header}>
|
||||||
<TimelineAvatar account={actualStatus.account} />
|
<TimelineAvatar
|
||||||
<TimelineHeaderDefault queryKey={queryKey} status={actualStatus} />
|
{...(!isRemotePublic && { queryKey })}
|
||||||
|
account={actualStatus.account}
|
||||||
|
/>
|
||||||
|
<TimelineHeaderDefault
|
||||||
|
{...(!isRemotePublic && { queryKey })}
|
||||||
|
status={actualStatus}
|
||||||
|
/>
|
||||||
</View>
|
</View>
|
||||||
|
|
||||||
<Pressable onPress={tootOnPress} children={tootChildren} />
|
<Pressable onPress={tootOnPress} children={tootChildren} />
|
||||||
<View
|
|
||||||
style={{
|
{!isRemotePublic && (
|
||||||
paddingLeft: highlighted
|
<View
|
||||||
? 0
|
style={{
|
||||||
: StyleConstants.Avatar.S + StyleConstants.Spacing.S
|
paddingLeft: highlighted
|
||||||
}}
|
? 0
|
||||||
>
|
: StyleConstants.Avatar.S + StyleConstants.Spacing.S
|
||||||
<TimelineActions queryKey={queryKey} status={actualStatus} />
|
}}
|
||||||
</View>
|
>
|
||||||
|
<TimelineActions queryKey={queryKey} status={actualStatus} />
|
||||||
|
</View>
|
||||||
|
)}
|
||||||
</View>
|
</View>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -86,7 +86,7 @@ const TimelineNotifications: React.FC<Props> = ({
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<View style={styles.header}>
|
<View style={styles.header}>
|
||||||
<TimelineAvatar account={actualAccount} />
|
<TimelineAvatar queryKey={queryKey} account={actualAccount} />
|
||||||
<TimelineHeaderNotification notification={notification} />
|
<TimelineHeaderNotification notification={notification} />
|
||||||
</View>
|
</View>
|
||||||
|
|
||||||
|
@ -4,16 +4,18 @@ import { useNavigation } from '@react-navigation/native'
|
|||||||
import { StyleConstants } from '@utils/styles/constants'
|
import { StyleConstants } from '@utils/styles/constants'
|
||||||
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
|
queryKey?: App.QueryKey
|
||||||
account: Mastodon.Account
|
account: Mastodon.Account
|
||||||
}
|
}
|
||||||
|
|
||||||
const TimelineAvatar: React.FC<Props> = ({ account }) => {
|
const TimelineAvatar: React.FC<Props> = ({ queryKey, account }) => {
|
||||||
const navigation = useNavigation()
|
const navigation = useNavigation()
|
||||||
// Need to fix go back root
|
// Need to fix go back root
|
||||||
const onPress = useCallback(() => {
|
const onPress = useCallback(() => {
|
||||||
navigation.navigate('Screen-Shared-Account', {
|
queryKey &&
|
||||||
id: account.id
|
navigation.navigate('Screen-Shared-Account', {
|
||||||
})
|
id: account.id
|
||||||
|
})
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -61,7 +61,7 @@ const TimelineHeaderDefault: React.FC<Props> = ({ queryKey, status }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={styles.base}>
|
<View style={styles.base}>
|
||||||
<View style={styles.nameAndMeta}>
|
<View style={queryKey ? { flexBasis: '80%' } : { flexBasis: '100%' }}>
|
||||||
<View style={styles.name}>
|
<View style={styles.name}>
|
||||||
{emojis?.length ? (
|
{emojis?.length ? (
|
||||||
<Emojis
|
<Emojis
|
||||||
|
@ -12,12 +12,10 @@ import ScreenMeListsList from '@screens/Me/Root/Lists/List'
|
|||||||
import ScreenMeSettings from '@screens/Me/Settings'
|
import ScreenMeSettings from '@screens/Me/Settings'
|
||||||
|
|
||||||
import { HeaderLeft } from '@root/components/Header'
|
import { HeaderLeft } from '@root/components/Header'
|
||||||
import { useNavigation } from '@react-navigation/native'
|
|
||||||
|
|
||||||
const Stack = createNativeStackNavigator()
|
const Stack = createNativeStackNavigator()
|
||||||
|
|
||||||
const ScreenMe: React.FC = () => {
|
const ScreenMe: React.FC = () => {
|
||||||
const navigation = useNavigation()
|
|
||||||
const { t } = useTranslation()
|
const { t } = useTranslation()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -34,7 +32,7 @@ const ScreenMe: React.FC = () => {
|
|||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Screen-Me-Conversations'
|
name='Screen-Me-Conversations'
|
||||||
component={ScreenMeConversations}
|
component={ScreenMeConversations}
|
||||||
options={{
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meConversations:heading'),
|
headerTitle: t('meConversations:heading'),
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft
|
<HeaderLeft
|
||||||
@ -42,12 +40,12 @@ const ScreenMe: React.FC = () => {
|
|||||||
onPress={() => navigation.goBack()}
|
onPress={() => navigation.goBack()}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}}
|
})}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Screen-Me-Bookmarks'
|
name='Screen-Me-Bookmarks'
|
||||||
component={ScreenMeBookmarks}
|
component={ScreenMeBookmarks}
|
||||||
options={{
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meBookmarks:heading'),
|
headerTitle: t('meBookmarks:heading'),
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft
|
<HeaderLeft
|
||||||
@ -55,12 +53,12 @@ const ScreenMe: React.FC = () => {
|
|||||||
onPress={() => navigation.goBack()}
|
onPress={() => navigation.goBack()}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}}
|
})}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Screen-Me-Favourites'
|
name='Screen-Me-Favourites'
|
||||||
component={ScreenMeFavourites}
|
component={ScreenMeFavourites}
|
||||||
options={{
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meFavourites:heading'),
|
headerTitle: t('meFavourites:heading'),
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft
|
<HeaderLeft
|
||||||
@ -68,12 +66,12 @@ const ScreenMe: React.FC = () => {
|
|||||||
onPress={() => navigation.goBack()}
|
onPress={() => navigation.goBack()}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}}
|
})}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Screen-Me-Lists'
|
name='Screen-Me-Lists'
|
||||||
component={ScreenMeLists}
|
component={ScreenMeLists}
|
||||||
options={{
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meLists:heading'),
|
headerTitle: t('meLists:heading'),
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft
|
<HeaderLeft
|
||||||
@ -81,12 +79,12 @@ const ScreenMe: React.FC = () => {
|
|||||||
onPress={() => navigation.goBack()}
|
onPress={() => navigation.goBack()}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}}
|
})}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Screen-Me-Lists-List'
|
name='Screen-Me-Lists-List'
|
||||||
component={ScreenMeListsList}
|
component={ScreenMeListsList}
|
||||||
options={({ route }: any) => ({
|
options={({ route, navigation }: any) => ({
|
||||||
headerTitle: t('meListsList:heading', { list: route.params.title }),
|
headerTitle: t('meListsList:heading', { list: route.params.title }),
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft
|
<HeaderLeft
|
||||||
@ -99,7 +97,7 @@ const ScreenMe: React.FC = () => {
|
|||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Screen-Me-Settings'
|
name='Screen-Me-Settings'
|
||||||
component={ScreenMeSettings}
|
component={ScreenMeSettings}
|
||||||
options={{
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meSettings:heading'),
|
headerTitle: t('meSettings:heading'),
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft
|
<HeaderLeft
|
||||||
@ -107,7 +105,7 @@ const ScreenMe: React.FC = () => {
|
|||||||
onPress={() => navigation.goBack()}
|
onPress={() => navigation.goBack()}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}}
|
})}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{sharedScreens(Stack)}
|
{sharedScreens(Stack)}
|
||||||
|
@ -185,7 +185,6 @@ const Login: React.FC = () => {
|
|||||||
onChangeText={onChangeText}
|
onChangeText={onChangeText}
|
||||||
autoCapitalize='none'
|
autoCapitalize='none'
|
||||||
autoCorrect={false}
|
autoCorrect={false}
|
||||||
autoFocus
|
|
||||||
clearButtonMode='never'
|
clearButtonMode='never'
|
||||||
keyboardType='url'
|
keyboardType='url'
|
||||||
textContentType='URL'
|
textContentType='URL'
|
||||||
|
@ -19,7 +19,6 @@ import {
|
|||||||
} from 'react-native'
|
} from 'react-native'
|
||||||
import { SafeAreaView } from 'react-native-safe-area-context'
|
import { SafeAreaView } from 'react-native-safe-area-context'
|
||||||
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
||||||
import { useNavigation } from '@react-navigation/native'
|
|
||||||
import sha256 from 'crypto-js/sha256'
|
import sha256 from 'crypto-js/sha256'
|
||||||
|
|
||||||
import { store } from '@root/store'
|
import { store } from '@root/store'
|
||||||
@ -308,10 +307,10 @@ export interface Props {
|
|||||||
}
|
}
|
||||||
| undefined
|
| undefined
|
||||||
}
|
}
|
||||||
|
navigation: any
|
||||||
}
|
}
|
||||||
|
|
||||||
const Compose: React.FC<Props> = ({ route: { params } }) => {
|
const Compose: React.FC<Props> = ({ route: { params }, navigation }) => {
|
||||||
const navigation = useNavigation()
|
|
||||||
const { theme } = useTheme()
|
const { theme } = useTheme()
|
||||||
|
|
||||||
const [hasKeyboard, setHasKeyboard] = useState(false)
|
const [hasKeyboard, setHasKeyboard] = useState(false)
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { useNavigation } from '@react-navigation/native'
|
|
||||||
import React, {
|
import React, {
|
||||||
Dispatch,
|
Dispatch,
|
||||||
useCallback,
|
useCallback,
|
||||||
@ -39,15 +38,15 @@ export interface Props {
|
|||||||
composeDispatch: Dispatch<PostAction>
|
composeDispatch: Dispatch<PostAction>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
navigation: any
|
||||||
}
|
}
|
||||||
|
|
||||||
const ComposeEditAttachment: React.FC<Props> = ({
|
const ComposeEditAttachment: React.FC<Props> = ({
|
||||||
route: {
|
route: {
|
||||||
params: { attachment, composeDispatch }
|
params: { attachment, composeDispatch }
|
||||||
}
|
},
|
||||||
|
navigation
|
||||||
}) => {
|
}) => {
|
||||||
const navigation = useNavigation()
|
|
||||||
|
|
||||||
const { theme } = useTheme()
|
const { theme } = useTheme()
|
||||||
|
|
||||||
const [altText, setAltText] = useState<string | undefined>(
|
const [altText, setAltText] = useState<string | undefined>(
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { useNavigation } from '@react-navigation/native'
|
|
||||||
import React, { useRef, useState } from 'react'
|
import React, { useRef, useState } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { ActionSheetIOS } from 'react-native'
|
import { ActionSheetIOS } from 'react-native'
|
||||||
@ -24,7 +23,6 @@ const ScreenSharedWebview: React.FC<Props> = ({
|
|||||||
params: { uri }
|
params: { uri }
|
||||||
}
|
}
|
||||||
}) => {
|
}) => {
|
||||||
const navigation = useNavigation()
|
|
||||||
const { t } = useTranslation('sharedWebview')
|
const { t } = useTranslation('sharedWebview')
|
||||||
const [title, setTitle] = useState<string>(t('heading.loading'))
|
const [title, setTitle] = useState<string>(t('heading.loading'))
|
||||||
const [bottomSheet, showBottomSheet] = useState(false)
|
const [bottomSheet, showBottomSheet] = useState(false)
|
||||||
@ -34,7 +32,7 @@ const ScreenSharedWebview: React.FC<Props> = ({
|
|||||||
<Stack.Navigator>
|
<Stack.Navigator>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Screen-Shared-Webview-Root'
|
name='Screen-Shared-Webview-Root'
|
||||||
options={{
|
options={({ navigation }) => ({
|
||||||
title,
|
title,
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft
|
<HeaderLeft
|
||||||
@ -48,7 +46,7 @@ const ScreenSharedWebview: React.FC<Props> = ({
|
|||||||
onPress={() => showBottomSheet(true)}
|
onPress={() => showBottomSheet(true)}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}}
|
})}
|
||||||
>
|
>
|
||||||
{() => (
|
{() => (
|
||||||
<>
|
<>
|
||||||
|
@ -8,11 +8,9 @@ import Compose from '@screens/Shared/Compose'
|
|||||||
import ComposeEditAttachment from '@screens/Shared/Compose/EditAttachment'
|
import ComposeEditAttachment from '@screens/Shared/Compose/EditAttachment'
|
||||||
import ScreenSharedSearch from '@screens/Shared/Search'
|
import ScreenSharedSearch from '@screens/Shared/Search'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { useNavigation } from '@react-navigation/native'
|
|
||||||
import { HeaderLeft } from '@root/components/Header'
|
import { HeaderLeft } from '@root/components/Header'
|
||||||
|
|
||||||
const sharedScreens = (Stack: any) => {
|
const sharedScreens = (Stack: any) => {
|
||||||
const navigation = useNavigation()
|
|
||||||
const { t } = useTranslation()
|
const { t } = useTranslation()
|
||||||
|
|
||||||
return [
|
return [
|
||||||
@ -20,20 +18,20 @@ const sharedScreens = (Stack: any) => {
|
|||||||
key='Screen-Shared-Account'
|
key='Screen-Shared-Account'
|
||||||
name='Screen-Shared-Account'
|
name='Screen-Shared-Account'
|
||||||
component={ScreenSharedAccount}
|
component={ScreenSharedAccount}
|
||||||
options={{
|
options={({ navigation }: any) => ({
|
||||||
headerTranslucent: true,
|
headerTranslucent: true,
|
||||||
headerStyle: { backgroundColor: 'rgba(255, 255, 255, 0)' },
|
headerStyle: { backgroundColor: 'rgba(255, 255, 255, 0)' },
|
||||||
headerCenter: () => null,
|
headerCenter: () => null,
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
|
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
|
||||||
)
|
)
|
||||||
}}
|
})}
|
||||||
/>,
|
/>,
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
key='Screen-Shared-Hashtag'
|
key='Screen-Shared-Hashtag'
|
||||||
name='Screen-Shared-Hashtag'
|
name='Screen-Shared-Hashtag'
|
||||||
component={ScreenSharedHashtag}
|
component={ScreenSharedHashtag}
|
||||||
options={({ route }: any) => ({
|
options={({ route, navigation }: any) => ({
|
||||||
title: `#${decodeURIComponent(route.params.hashtag)}`,
|
title: `#${decodeURIComponent(route.params.hashtag)}`,
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
|
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
|
||||||
@ -44,7 +42,7 @@ const sharedScreens = (Stack: any) => {
|
|||||||
key='Screen-Shared-Toot'
|
key='Screen-Shared-Toot'
|
||||||
name='Screen-Shared-Toot'
|
name='Screen-Shared-Toot'
|
||||||
component={ScreenSharedToot}
|
component={ScreenSharedToot}
|
||||||
options={() => ({
|
options={({ navigation }: any) => ({
|
||||||
title: t('sharedToot:heading'),
|
title: t('sharedToot:heading'),
|
||||||
headerLeft: () => (
|
headerLeft: () => (
|
||||||
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
|
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user