tooot/src/screens/Shared/sharedScreens.tsx

95 lines
2.7 KiB
TypeScript
Raw Normal View History

2020-12-23 01:31:11 +01:00
import { HeaderLeft } from '@root/components/Header'
2020-12-13 14:04:25 +01:00
import ScreenSharedAccount from '@screens/Shared/Account'
2020-12-23 15:57:20 +01:00
import ScreenSharedAnnouncements from '@root/screens/Shared/Announcements'
2020-12-13 14:04:25 +01:00
import ScreenSharedHashtag from '@screens/Shared/Hashtag'
import ScreenSharedToot from '@screens/Shared/Toot'
import Compose from '@screens/Shared/Compose'
import ComposeEditAttachment from '@screens/Shared/Compose/EditAttachment'
import ScreenSharedSearch from '@screens/Shared/Search'
2020-12-23 01:31:11 +01:00
import React from 'react'
2020-11-30 00:24:53 +01:00
import { useTranslation } from 'react-i18next'
2020-11-21 13:19:05 +01:00
2020-11-24 00:18:47 +01:00
const sharedScreens = (Stack: any) => {
2020-11-30 00:24:53 +01:00
const { t } = useTranslation()
2020-11-21 13:19:05 +01:00
return [
<Stack.Screen
key='Screen-Shared-Account'
name='Screen-Shared-Account'
component={ScreenSharedAccount}
options={({ navigation }: any) => {
return {
headerTranslucent: true,
headerStyle: {
backgroundColor: `rgba(255, 255, 255, 0)`
},
headerCenter: () => null,
headerLeft: () => (
<HeaderLeft
icon='chevron-left'
onPress={() => navigation.goBack()}
/>
)
}
}}
2020-11-21 13:19:05 +01:00
/>,
<Stack.Screen
key='Screen-Shared-Hashtag'
name='Screen-Shared-Hashtag'
component={ScreenSharedHashtag}
options={({ route, navigation }: any) => ({
2020-12-13 23:38:37 +01:00
title: `#${decodeURIComponent(route.params.hashtag)}`,
headerLeft: () => (
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
)
2020-11-21 13:19:05 +01:00
})}
/>,
<Stack.Screen
key='Screen-Shared-Toot'
name='Screen-Shared-Toot'
component={ScreenSharedToot}
options={({ navigation }: any) => ({
2020-12-13 23:38:37 +01:00
title: t('sharedToot:heading'),
headerLeft: () => (
<HeaderLeft icon='chevron-left' onPress={() => navigation.goBack()} />
)
2020-11-21 13:19:05 +01:00
})}
/>,
<Stack.Screen
2020-11-22 00:57:43 +01:00
key='Screen-Shared-Compose'
name='Screen-Shared-Compose'
component={Compose}
2020-11-21 13:19:05 +01:00
options={{
stackPresentation: 'fullScreenModal'
}}
2020-11-24 00:18:47 +01:00
/>,
2020-12-06 12:52:29 +01:00
<Stack.Screen
key='Screen-Shared-Compose-EditAttachment'
name='Screen-Shared-Compose-EditAttachment'
component={ComposeEditAttachment}
options={{
2020-12-13 23:38:37 +01:00
stackPresentation: 'modal'
2020-12-06 12:52:29 +01:00
}}
/>,
2020-11-24 00:18:47 +01:00
<Stack.Screen
key='Screen-Shared-Search'
name='Screen-Shared-Search'
component={ScreenSharedSearch}
options={{
stackPresentation: 'modal'
}}
2020-12-23 01:31:11 +01:00
/>,
<Stack.Screen
key='Screen-Shared-Announcements'
name='Screen-Shared-Announcements'
component={ScreenSharedAnnouncements}
options={{
stackPresentation: 'transparentModal',
stackAnimation: 'fade'
}}
2020-11-21 13:19:05 +01:00
/>
]
}
export default sharedScreens