mirror of
https://github.com/Boof2015/astra-mobile.git
synced 2026-08-21 13:09:46 +02:00
139 lines
4.2 KiB
TypeScript
139 lines
4.2 KiB
TypeScript
import { useState } from 'react';
|
|
import {
|
|
Pressable,
|
|
StyleSheet,
|
|
View
|
|
} from 'react-native';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { FlashList } from '@shopify/flash-list';
|
|
import { useLocalSearchParams, useRouter } from 'expo-router';
|
|
import { Screen } from '@/components/Screen';
|
|
import { Text } from '@/components/Text';
|
|
import { TrackRow } from '@/components/library/TrackRow';
|
|
import { TrackActionsSheet } from '@/components/library/TrackActionsSheet';
|
|
import { spacing } from '@/theme';
|
|
import { useColors } from '@/theme/themed';
|
|
import { SCROLL_PRESS_DELAY, useRipple } from '@/theme/ripple';
|
|
import { usePlayerStore } from '@/stores/playerStore';
|
|
import { useSettingsStore } from '@/stores/settingsStore';
|
|
import { playLibraryQuery } from '@/audio/playbackController';
|
|
import { useNativeArtistDetail } from '@/library/nativePages';
|
|
import type { DbTrack } from '@/types/library';
|
|
|
|
export default function ArtistAppearancesScreen() {
|
|
const colors = useColors();
|
|
const ripple = useRipple();
|
|
const router = useRouter();
|
|
const { name = 'Artist', credit } = useLocalSearchParams<{
|
|
name: string;
|
|
credit?: string;
|
|
}>();
|
|
const groupingMode = useSettingsStore((s) => s.artistGroupingMode);
|
|
const detailGroupingMode = credit === '1' ? 'astra' : groupingMode;
|
|
const currentPath = usePlayerStore((s) => s.currentTrack?.path);
|
|
const [actionTrack, setActionTrack] = useState<DbTrack | null>(null);
|
|
|
|
const { items: tracks, totalCount, loadMore } = useNativeArtistDetail(
|
|
name,
|
|
detailGroupingMode,
|
|
'appearances'
|
|
);
|
|
|
|
const playFrom = (index: number) => {
|
|
if (tracks.length === 0) return;
|
|
void playLibraryQuery({
|
|
kind: 'artist',
|
|
artistKey: name,
|
|
groupingMode: detailGroupingMode,
|
|
section: 'appearances',
|
|
}, {
|
|
anchorPath: tracks[index]?.path,
|
|
source: { kind: 'artist', label: name },
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Screen>
|
|
<Pressable android_ripple={ripple.bounded} unstable_pressDelay={SCROLL_PRESS_DELAY} style={styles.back} onPress={() => router.back()} hitSlop={8}>
|
|
<Ionicons name="chevron-back" size={22} color={colors.textSecondary} />
|
|
<Text variant="body" color={colors.textSecondary} numberOfLines={1}>
|
|
{name}
|
|
</Text>
|
|
</Pressable>
|
|
|
|
<View style={styles.heading}>
|
|
<Text variant="title" numberOfLines={1}>
|
|
Appears On
|
|
</Text>
|
|
<Text variant="label">{formatCount(totalCount, 'track')}</Text>
|
|
</View>
|
|
|
|
<FlashList
|
|
data={tracks}
|
|
keyExtractor={(track) => String(track.id)}
|
|
showsVerticalScrollIndicator={false}
|
|
onEndReached={() => void loadMore()}
|
|
onEndReachedThreshold={2}
|
|
renderItem={({ item, index }) => (
|
|
<TrackRow
|
|
track={item}
|
|
subtitle={`${item.artist} - ${item.album}`}
|
|
active={item.path === currentPath}
|
|
onPress={() => playFrom(index)}
|
|
onLongPress={() => setActionTrack(item)}
|
|
onOpenActions={() => setActionTrack(item)}
|
|
/>
|
|
)}
|
|
ListEmptyComponent={<EmptyList label="No appearances found for this artist." />}
|
|
contentContainerStyle={styles.listContent}
|
|
/>
|
|
|
|
<TrackActionsSheet track={actionTrack} onClose={() => setActionTrack(null)} />
|
|
</Screen>
|
|
);
|
|
}
|
|
|
|
function EmptyList({ label }: { label: string }) {
|
|
const colors = useColors();
|
|
return (
|
|
<View style={styles.emptyState}>
|
|
<Ionicons name="people-outline" size={24} color={colors.textTertiary} />
|
|
<Text variant="body" color={colors.textSecondary} style={styles.emptyText}>
|
|
{label}
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function formatCount(count: number, noun: string): string {
|
|
return `${count} ${count === 1 ? noun : `${noun}s`}`;
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
back: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 2,
|
|
marginTop: spacing.md,
|
|
marginBottom: spacing.lg,
|
|
alignSelf: 'flex-start',
|
|
maxWidth: '100%',
|
|
},
|
|
heading: {
|
|
gap: spacing.xs,
|
|
marginBottom: spacing.lg,
|
|
},
|
|
listContent: {
|
|
paddingBottom: spacing.xxl,
|
|
},
|
|
emptyState: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
gap: spacing.sm,
|
|
paddingVertical: spacing.xxl,
|
|
},
|
|
emptyText: {
|
|
textAlign: 'center',
|
|
},
|
|
});
|