mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
210 lines
7.7 KiB
TypeScript
210 lines
7.7 KiB
TypeScript
import { withSuspense } from '@app/components/withSuspense'
|
|
import { useFirstRun } from '@app/hooks/settings'
|
|
import { Album, Playlist } from '@app/models/library'
|
|
import BottomTabBar from '@app/navigation/BottomTabBar'
|
|
import LibraryTopTabNavigator from '@app/navigation/LibraryTopTabNavigator'
|
|
import ArtistView from '@app/screens/ArtistView'
|
|
import Home from '@app/screens/Home'
|
|
import Search from '@app/screens/Search'
|
|
import SearchResultsView from '@app/screens/SearchResultsView'
|
|
import ServerView from '@app/screens/ServerView'
|
|
import SettingsView from '@app/screens/Settings'
|
|
import SongListView from '@app/screens/SongListView'
|
|
import WebViewScreen from '@app/screens/WebViewScreen'
|
|
import { useStore } from '@app/state/store'
|
|
import colors from '@app/styles/colors'
|
|
import font from '@app/styles/font'
|
|
import { BottomTabNavigationProp, createBottomTabNavigator } from '@react-navigation/bottom-tabs'
|
|
import { RouteProp, StackActions } from '@react-navigation/native'
|
|
import React, { useEffect } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { StyleSheet } from 'react-native'
|
|
import { createNativeStackNavigator, NativeStackNavigationProp } from 'react-native-screens/native-stack'
|
|
|
|
type TabStackParamList = {
|
|
main: undefined
|
|
album: { id: string; title: string; album?: Album }
|
|
artist: { id: string; title: string }
|
|
playlist: { id: string; title: string; playlist?: Playlist }
|
|
results: { query: string; type: 'album' | 'song' | 'artist' }
|
|
}
|
|
|
|
type AlbumScreenNavigationProp = NativeStackNavigationProp<TabStackParamList, 'album'>
|
|
type AlbumScreenRouteProp = RouteProp<TabStackParamList, 'album'>
|
|
type AlbumScreenProps = {
|
|
route: AlbumScreenRouteProp
|
|
navigation: AlbumScreenNavigationProp
|
|
}
|
|
|
|
const AlbumScreen: React.FC<AlbumScreenProps> = ({ route }) => <SongListView {...route.params} type="album" />
|
|
|
|
type ArtistScreenNavigationProp = NativeStackNavigationProp<TabStackParamList, 'artist'>
|
|
type ArtistScreenRouteProp = RouteProp<TabStackParamList, 'artist'>
|
|
type ArtistScreenProps = {
|
|
route: ArtistScreenRouteProp
|
|
navigation: ArtistScreenNavigationProp
|
|
}
|
|
|
|
const ArtistScreen: React.FC<ArtistScreenProps> = ({ route }) => <ArtistView {...route.params} />
|
|
|
|
type PlaylistScreenNavigationProp = NativeStackNavigationProp<TabStackParamList, 'playlist'>
|
|
type PlaylistScreenRouteProp = RouteProp<TabStackParamList, 'playlist'>
|
|
type PlaylistScreenProps = {
|
|
route: PlaylistScreenRouteProp
|
|
navigation: PlaylistScreenNavigationProp
|
|
}
|
|
|
|
const PlaylistScreen: React.FC<PlaylistScreenProps> = ({ route }) => <SongListView {...route.params} type="playlist" />
|
|
|
|
type ResultsScreenNavigationProp = NativeStackNavigationProp<TabStackParamList, 'results'>
|
|
type ResultsScreenRouteProp = RouteProp<TabStackParamList, 'results'>
|
|
type ResultsScreenProps = {
|
|
route: ResultsScreenRouteProp
|
|
navigation: ResultsScreenNavigationProp
|
|
}
|
|
|
|
const ResultsScreen: React.FC<ResultsScreenProps> = ({ route }) => <SearchResultsView {...route.params} />
|
|
|
|
const styles = StyleSheet.create({
|
|
stackheaderStyle: {
|
|
backgroundColor: colors.gradient.high,
|
|
// backgroundColor: 'transparent',
|
|
},
|
|
stackheaderTitleStyle: {
|
|
fontSize: 18,
|
|
fontFamily: font.semiBold,
|
|
color: colors.text.primary,
|
|
},
|
|
})
|
|
|
|
const itemScreenOptions = {
|
|
title: '',
|
|
headerStyle: styles.stackheaderStyle,
|
|
headerHideShadow: true,
|
|
headerTintColor: 'white',
|
|
headerTitleStyle: styles.stackheaderTitleStyle,
|
|
// headerTranslucent: true,
|
|
}
|
|
|
|
function createTabStackNavigator(Component: React.ComponentType<any>) {
|
|
const Stack = createNativeStackNavigator<TabStackParamList>()
|
|
|
|
const Navigator: React.FC<{ navigation: BottomTabNavigationProp<{ a: undefined }, 'a'> }> = ({ navigation }) => {
|
|
useEffect(() => {
|
|
return navigation.addListener('tabPress', () => {
|
|
navigation.dispatch(StackActions.popToTop())
|
|
})
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [])
|
|
|
|
return (
|
|
<Stack.Navigator initialRouteName="main">
|
|
<Stack.Screen name="main" component={Component} options={{ headerShown: false }} />
|
|
<Stack.Screen name="album" component={AlbumScreen} options={{ headerShown: false }} />
|
|
<Stack.Screen name="artist" component={ArtistScreen} options={{ headerShown: false }} />
|
|
<Stack.Screen name="playlist" component={PlaylistScreen} options={{ headerShown: false }} />
|
|
<Stack.Screen name="results" component={ResultsScreen} options={itemScreenOptions} />
|
|
</Stack.Navigator>
|
|
)
|
|
}
|
|
|
|
return Navigator
|
|
}
|
|
|
|
const HomeTab = createTabStackNavigator(Home)
|
|
const LibraryTab = createTabStackNavigator(LibraryTopTabNavigator)
|
|
const SearchTab = createTabStackNavigator(Search)
|
|
|
|
type SettingsStackParamList = {
|
|
main: undefined
|
|
server?: { id?: string; title?: string }
|
|
web: { uri: string; title?: string }
|
|
}
|
|
|
|
type ServerScreenNavigationProp = NativeStackNavigationProp<SettingsStackParamList, 'server'>
|
|
type ServerScreenRouteProp = RouteProp<SettingsStackParamList, 'server'>
|
|
type ServerScreenProps = {
|
|
route: ServerScreenRouteProp
|
|
navigation: ServerScreenNavigationProp
|
|
}
|
|
const ServerScreen: React.FC<ServerScreenProps> = ({ route }) => (
|
|
<ServerView id={route.params?.id} title={route.params?.title} />
|
|
)
|
|
|
|
type WebScreenNavigationProp = NativeStackNavigationProp<SettingsStackParamList, 'web'>
|
|
type WebScreenRouteProp = RouteProp<SettingsStackParamList, 'web'>
|
|
type WebScreenProps = {
|
|
route: WebScreenRouteProp
|
|
navigation: WebScreenNavigationProp
|
|
}
|
|
const WebScreen: React.FC<WebScreenProps> = ({ route }) => (
|
|
<WebViewScreen uri={route.params.uri} title={route.params.title} />
|
|
)
|
|
|
|
const SettingsStack = createNativeStackNavigator()
|
|
|
|
const SettingsTab = () => {
|
|
return (
|
|
<SettingsStack.Navigator initialRouteName="main">
|
|
<SettingsStack.Screen name="main" component={SettingsView} options={{ headerShown: false }} />
|
|
<SettingsStack.Screen
|
|
name="server"
|
|
component={ServerScreen}
|
|
options={{
|
|
headerStyle: styles.stackheaderStyle,
|
|
headerHideShadow: true,
|
|
headerTintColor: 'white',
|
|
headerTitleStyle: styles.stackheaderTitleStyle,
|
|
}}
|
|
/>
|
|
<SettingsStack.Screen
|
|
name="web"
|
|
component={WebScreen}
|
|
options={{
|
|
headerStyle: styles.stackheaderStyle,
|
|
headerHideShadow: true,
|
|
headerTintColor: 'white',
|
|
headerTitleStyle: styles.stackheaderTitleStyle,
|
|
}}
|
|
/>
|
|
</SettingsStack.Navigator>
|
|
)
|
|
}
|
|
|
|
const Tab = createBottomTabNavigator()
|
|
|
|
const BottomTabNavigator = withSuspense(() => {
|
|
const { t } = useTranslation()
|
|
const firstRun = useFirstRun()
|
|
const disableMusicTabs = useStore(store => store.disableMusicTabs)
|
|
|
|
return (
|
|
<Tab.Navigator tabBar={BottomTabBar} initialRouteName={firstRun ? 'settings' : 'home'}>
|
|
{disableMusicTabs ? (
|
|
<>
|
|
<Tab.Screen name="home-disabled" children={() => null} options={{ tabBarLabel: t('navigation.tabs.home') }} />
|
|
<Tab.Screen
|
|
name="library-disabled"
|
|
children={() => null}
|
|
options={{ tabBarLabel: t('navigation.tabs.library') }}
|
|
/>
|
|
<Tab.Screen
|
|
name="search-disabled"
|
|
children={() => null}
|
|
options={{ tabBarLabel: t('navigation.tabs.search') }}
|
|
/>
|
|
</>
|
|
) : (
|
|
<>
|
|
<Tab.Screen name="home" component={HomeTab} options={{ tabBarLabel: t('navigation.tabs.home') }} />
|
|
<Tab.Screen name="library" component={LibraryTab} options={{ tabBarLabel: t('navigation.tabs.library') }} />
|
|
<Tab.Screen name="search" component={SearchTab} options={{ tabBarLabel: t('navigation.tabs.search') }} />
|
|
</>
|
|
)}
|
|
<Tab.Screen name="settings" component={SettingsTab} options={{ tabBarLabel: t('navigation.tabs.settings') }} />
|
|
</Tab.Navigator>
|
|
)
|
|
})
|
|
|
|
export default BottomTabNavigator
|