-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathApp.tsx
More file actions
234 lines (222 loc) · 6.16 KB
/
App.tsx
File metadata and controls
234 lines (222 loc) · 6.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import { useCallback, useEffect, useRef, useState } from 'react'
import { StatusBar } from 'expo-status-bar'
import {
StyleSheet,
Text,
View,
FlatList,
ActivityIndicator,
TouchableOpacity,
} from 'react-native'
import { Audio } from 'expo-av'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { createSessionId } from '../shared/exampleDebug'
import { useTrendingTracks } from './src/hooks/useTrendingTracks'
import { getSDK } from './src/sdk'
const queryClient = new QueryClient()
function TrendingScreen() {
const sessionIdRef = useRef(createSessionId())
const { data: tracks, isPending, error } = useTrendingTracks()
const [playingId, setPlayingId] = useState<string | null>(null)
const soundRef = useRef<Audio.Sound | null>(null)
useEffect(() => {
Audio.setAudioModeAsync({
playsInSilentModeIOS: true,
staysActiveInBackground: false,
shouldDuckAndroid: true,
playThroughEarpieceAndroid: false
})
return () => {
soundRef.current?.unloadAsync().catch(() => {})
}
}, [])
const handlePlay = useCallback(async (item: { id?: string; track_id?: string; title?: string }) => {
const trackId = item.id ?? String((item as { track_id?: string }).track_id ?? '')
if (!trackId) return
try {
if (playingId === trackId && soundRef.current) {
await soundRef.current.stopAsync()
await soundRef.current.unloadAsync()
soundRef.current = null
setPlayingId(null)
return
}
if (soundRef.current) {
await soundRef.current.unloadAsync()
soundRef.current = null
}
setPlayingId(trackId)
const sdk = getSDK()
const streamUrl = await sdk.tracks.getTrackStreamUrl({ trackId })
const { sound } = await Audio.Sound.createAsync(
{ uri: streamUrl },
{ shouldPlay: true }
)
soundRef.current = sound
await sound.setStatusAsync({ progressUpdateIntervalMillis: 500 })
sound.setOnPlaybackStatusUpdate((status) => {
if (status.isLoaded && status.didJustFinishAndNotReset) {
setPlayingId(null)
soundRef.current = null
}
})
} catch {
setPlayingId(null)
}
}, [playingId])
if (isPending) {
return (
<View style={styles.center}>
<ActivityIndicator size="large" />
<Text style={styles.loadingText}>Loading trending tracks...</Text>
</View>
)
}
if (error) {
return (
<View style={styles.center}>
<Text style={styles.errorText}>
Error: {error instanceof Error ? error.message : String(error)}
</Text>
<Text style={styles.sessionHint} selectable>
Session: {sessionIdRef.current} (check Metro logs for requestId)
</Text>
</View>
)
}
const list = tracks ?? []
const trackIdForItem = (item: { id?: string; track_id?: string }) =>
item.id ?? String((item as { track_id?: string }).track_id ?? '')
return (
<View style={styles.container}>
<Text style={styles.title}>Trending on Audius</Text>
<Text style={styles.subtitle}>SDK + Expo example</Text>
<Text style={styles.sessionHint} selectable>
Session: {sessionIdRef.current}
</Text>
<FlatList
data={list}
keyExtractor={(item) => trackIdForItem(item) || String(Math.random())}
renderItem={({ item }) => {
const id = trackIdForItem(item)
const isPlaying = id ? playingId === id : false
return (
<View style={styles.trackItem}>
<View style={styles.trackItemContent}>
<View style={styles.trackItemText}>
<Text style={styles.trackTitle}>{item.title}</Text>
<Text style={styles.trackArtist}>
{item.user?.name ?? 'Unknown Artist'}
</Text>
<Text style={styles.trackPlays}>
{item.playCount?.toLocaleString() ?? 0} plays
</Text>
</View>
{id ? (
<TouchableOpacity
style={[styles.playBtn, isPlaying && styles.playBtnActive]}
onPress={() => handlePlay(item)}
>
<Text style={styles.playBtnText}>{isPlaying ? '⏹' : '▶'}</Text>
</TouchableOpacity>
) : null}
</View>
</View>
)
}}
contentContainerStyle={styles.list}
/>
<StatusBar style="auto" />
</View>
)
}
export default function App() {
return (
<QueryClientProvider client={queryClient}>
<TrendingScreen />
</QueryClientProvider>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
paddingTop: 60,
},
center: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
padding: 20,
},
title: {
fontSize: 28,
fontWeight: 'bold',
marginBottom: 8,
paddingHorizontal: 20,
},
subtitle: {
fontSize: 16,
color: '#666',
marginBottom: 16,
paddingHorizontal: 20,
},
loadingText: {
marginTop: 10,
fontSize: 16,
color: '#666',
},
errorText: {
fontSize: 16,
color: '#d32f2f',
textAlign: 'center',
},
sessionHint: {
marginTop: 12,
fontSize: 11,
color: '#888',
fontFamily: 'monospace',
textAlign: 'center',
paddingHorizontal: 24,
},
list: {
padding: 16,
},
trackItem: {
paddingVertical: 12,
paddingHorizontal: 0,
borderBottomWidth: 1,
borderBottomColor: '#eee',
},
trackItemContent: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
},
trackItemText: { flex: 1 },
playBtn: {
width: 44,
height: 44,
borderRadius: 22,
backgroundColor: '#CC0FE0',
alignItems: 'center',
justifyContent: 'center',
marginLeft: 12,
},
playBtnActive: { backgroundColor: '#9a0bb3' },
playBtnText: { fontSize: 18, color: '#fff' },
trackTitle: {
fontSize: 16,
fontWeight: '600',
marginBottom: 4,
},
trackArtist: {
fontSize: 14,
color: '#666',
marginBottom: 4,
},
trackPlays: {
fontSize: 12,
color: '#999',
},
})