This commit is contained in:
2025-09-02 14:28:01 +02:00
11 changed files with 527 additions and 261 deletions
-4
View File
@@ -210,10 +210,6 @@ export const tutorial = {
tasks: tutorialTasks, tasks: tutorialTasks,
}; };
export const mockups = {
loginAppDashboard,
};
export const background = { export const background = {
writingBG, writingBG,
studioBG, studioBG,
Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

+3 -6
View File
@@ -55,9 +55,6 @@ export default function useDataFromRef({
if (!_.isEqual(data, initialState)) { if (!_.isEqual(data, initialState)) {
onUpdate(initialState); onUpdate(initialState);
} }
console.log("Reset state", initialState);
setEndReached(false); setEndReached(false);
setLastVisible(null); setLastVisible(null);
setData(initialState); setData(initialState);
@@ -113,7 +110,7 @@ export default function useDataFromRef({
if (e.code === "firestore/permission-denied") { if (e.code === "firestore/permission-denied") {
console.warn( console.warn(
"Permission denied for ref: ", "Permission denied for ref: ",
ref?._collectionPath?.relativeName ref?._collectionPath?.relativeName,
); );
} else { } else {
console.log(e); console.log(e);
@@ -143,14 +140,14 @@ export default function useDataFromRef({
if (e.code === "firestore/permission-denied") { if (e.code === "firestore/permission-denied") {
console.warn( console.warn(
"Permission denied for ref: ", "Permission denied for ref: ",
ref?._collectionPath?.relativeName ref?._collectionPath?.relativeName,
); );
} else { } else {
console.log(e); console.log(e);
} }
await updateData([]); await updateData([]);
setLoading(false); setLoading(false);
} },
); );
}; };
+2 -2
View File
@@ -40,10 +40,10 @@ const Library = () => {
<MyMusic /> <MyMusic />
<BackTracks /> <BackTracks />
<LikedMusic /> <LikedMusic />
<MyClips /> {/*<MyClips />*/}
<MyPlaylist /> <MyPlaylist />
<LikedPlayback /> <LikedPlayback />
<LikedClips /> {/*<LikedClips />*/}
</ScrollView> </ScrollView>
</View> </View>
</Page> </Page>
+45 -80
View File
@@ -1,5 +1,5 @@
import { useRoute } from "@react-navigation/core"; import { useRoute } from "@react-navigation/core";
import { Audio } from "expo-audio"; import { useAudioPlayer } from "expo-audio";
import { Image as ExpoImage } from "expo-image"; import { Image as ExpoImage } from "expo-image";
import React, { useEffect, useMemo, useState } from "react"; import React, { useEffect, useMemo, useState } from "react";
import { import {
@@ -11,10 +11,14 @@ import {
View, View,
} from "react-native"; } from "react-native";
import { SheetManager } from "react-native-actions-sheet"; import { SheetManager } from "react-native-actions-sheet";
import {
responsiveHeight,
responsiveWidth,
} from "react-native-responsive-dimensions";
import { useGlobal } from "reactn"; import { useGlobal } from "reactn";
import { background, icons, img } from "../../assets"; import { background, icons } from "../../assets";
import Slider from "../../components/Slider"; import Slider from "../../components/Slider";
import firebase, { import {
arrayRemove, arrayRemove,
arrayUnion, arrayUnion,
increment, increment,
@@ -44,9 +48,7 @@ const MusicDetails = () => {
const timerRef = React.useRef(null); const timerRef = React.useRef(null);
const { data: project } = useDataFromRef({ const { data: project } = useDataFromRef({
ref: projectId ref: projectId ? projectsRef.doc(projectId) : null,
? firebase.firestore().collection("projects").doc(projectId)
: null,
simpleRef: true, simpleRef: true,
listener: true, listener: true,
condition: !!projectId, condition: !!projectId,
@@ -71,61 +73,27 @@ const MusicDetails = () => {
const title = project?.title || "Sans titre"; const title = project?.title || "Sans titre";
const artist = owner?.userName || "MusicLand"; const artist = owner?.userName || "MusicLand";
const coverUrl = project?.coverUrl || null; const coverUrl = project?.coverUrl || null;
const songUrl = useMemo(() => { const songUrl = project?.songUrl || null;
if (project?.song?.url) return project.song.url;
const arr = Array.isArray(project?.musicUrls) ? project.musicUrls : [];
return arr[0] || null;
}, [project]);
const soundRef = React.useRef(null); const player = useAudioPlayer(songUrl ? { uri: songUrl } : undefined);
// Load/unload audio with expo-audio for reliable status updates on iOS/Android // Reset counters when the track changes
useEffect(() => { useEffect(() => {
let isMounted = true;
const load = async () => {
try {
// Unload previous
if (soundRef.current) {
await soundRef.current.unloadAsync();
soundRef.current.setOnPlaybackStatusUpdate(null);
soundRef.current = null;
}
// Reset listen tracking per song load
listenedMsRef.current = 0; listenedMsRef.current = 0;
incrementDoneRef.current = false; incrementDoneRef.current = false;
if (!songUrl) return;
const { sound } = await Audio.Sound.createAsync(
{ uri: songUrl },
{ shouldPlay: false }
);
sound.setOnPlaybackStatusUpdate((status) => {
if (!isMounted) return;
if (!status || !status.isLoaded) return;
const pos = status.positionMillis || 0;
const dur = status.durationMillis || 0;
setProgressInfo({ pos, dur });
setIsPlaying(!!status.isPlaying);
});
soundRef.current = sound;
} catch (e) {
console.log("Audio load error", e?.message);
}
};
load();
return () => {
isMounted = false;
(async () => {
try {
if (soundRef.current) {
await soundRef.current.unloadAsync();
soundRef.current.setOnPlaybackStatusUpdate(null);
soundRef.current = null;
}
} catch (_) {}
})();
};
}, [songUrl]); }, [songUrl]);
// Poll player state to update progress and play state
useEffect(() => {
const id = setInterval(() => {
const dur = (player?.duration || 0) * 1000;
const pos = (player?.currentTime || 0) * 1000;
setProgressInfo({ pos, dur });
setIsPlaying(!!player?.playing);
}, 300);
return () => clearInterval(id);
}, [player]);
// Start/stop a timer to accumulate listened milliseconds while playing // Start/stop a timer to accumulate listened milliseconds while playing
useEffect(() => { useEffect(() => {
const clearTimer = () => { const clearTimer = () => {
@@ -170,15 +138,13 @@ const MusicDetails = () => {
}; };
const togglePlay = async () => { const togglePlay = async () => {
const sound = soundRef.current; if (!player || !songUrl) return;
if (!sound || !songUrl) return;
try { try {
const status = await sound.getStatusAsync(); if (player.playing) {
if (status?.isLoaded && status.isPlaying) { await player.pause?.();
await sound.pauseAsync();
setIsPlaying(false); setIsPlaying(false);
} else { } else {
await sound.playAsync(); await player.play?.();
setIsPlaying(true); setIsPlaying(true);
} }
} catch (e) { } catch (e) {
@@ -190,9 +156,8 @@ const MusicDetails = () => {
try { try {
const dur = progressInfo.dur || 0; const dur = progressInfo.dur || 0;
const pos = Math.floor(dur * ratio); const pos = Math.floor(dur * ratio);
const sound = soundRef.current; if (player && dur > 0) {
if (sound && dur > 0) { await player.seekTo?.(Math.floor((pos || 0) / 1000));
await sound.setPositionAsync(pos);
} }
} catch (e) { } catch (e) {
console.log("MusicDetails seek error", e?.message); console.log("MusicDetails seek error", e?.message);
@@ -203,8 +168,7 @@ const MusicDetails = () => {
try { try {
const cur = Math.floor((progressInfo.pos || 0) / 1000); const cur = Math.floor((progressInfo.pos || 0) / 1000);
const next = Math.max(0, cur + deltaSeconds); const next = Math.max(0, cur + deltaSeconds);
const sound = soundRef.current; if (player) await player.seekTo?.(next);
if (sound) await sound.setPositionAsync(next * 1000);
} catch (e) { } catch (e) {
console.log("MusicDetails seekBy error", e?.message); console.log("MusicDetails seekBy error", e?.message);
} }
@@ -248,10 +212,9 @@ const MusicDetails = () => {
paddingTop: 20, paddingTop: 20,
paddingBottom: gutters * 2, paddingBottom: gutters * 2,
}} }}
// stickyHeaderIndices={[1]}
> >
<View style={{ gap: 28 }}> <View style={{ gap: 28 }}>
{coverUrl ? ( {coverUrl && (
<ExpoImage <ExpoImage
source={{ uri: coverUrl }} source={{ uri: coverUrl }}
cachePolicy="memory-disk" cachePolicy="memory-disk"
@@ -260,8 +223,6 @@ const MusicDetails = () => {
transition={150} transition={150}
style={styles.img} style={styles.img}
/> />
) : (
<RNImage source={img.placeholder4} style={styles.img} />
)} )}
<View style={{ ...Style.containerSpaceBetween }}> <View style={{ ...Style.containerSpaceBetween }}>
<View> <View>
@@ -305,22 +266,22 @@ const MusicDetails = () => {
</View> </View>
</View> </View>
</View> </View>
{songUrl && (
<View style={{ paddingTop: 22 }}> <View style={{ paddingTop: 22 }}>
<Slider <Slider
value={fmt(progressInfo.pos)} value={fmt(progressInfo.pos)}
maxValue={fmt(progressInfo.dur)} maxValue={fmt(progressInfo.dur)}
progress={ progress={
progressInfo.dur ? (progressInfo.pos || 0) / progressInfo.dur : 0 progressInfo.dur
? (progressInfo.pos || 0) / progressInfo.dur
: 0
} }
seekEnabled={!!songUrl} seekEnabled={!!songUrl}
onSeekStart={async () => { onSeekStart={async () => {
try { try {
const sound = soundRef.current; wasPlayingBeforeSeek.current = !!player?.playing;
const status = await sound?.getStatusAsync?.(); if (player?.playing) {
wasPlayingBeforeSeek.current = await player.pause?.();
!!status?.isLoaded && !!status?.isPlaying;
if (status?.isLoaded && status?.isPlaying) {
await sound.pauseAsync();
setIsPlaying(false); setIsPlaying(false);
} }
} catch (e) { } catch (e) {
@@ -330,9 +291,8 @@ const MusicDetails = () => {
onSeek={onSeek} onSeek={onSeek}
onSeekEnd={async () => { onSeekEnd={async () => {
try { try {
const sound = soundRef.current; if (player && wasPlayingBeforeSeek.current) {
if (sound && wasPlayingBeforeSeek.current) { await player.play?.();
await sound.playAsync();
setIsPlaying(true); setIsPlaying(true);
} }
wasPlayingBeforeSeek.current = false; wasPlayingBeforeSeek.current = false;
@@ -341,7 +301,9 @@ const MusicDetails = () => {
} }
}} }}
/> />
<View style={{ ...Style.containerRow, gap: 24, alignSelf: "center" }}> <View
style={{ ...Style.containerRow, gap: 24, alignSelf: "center" }}
>
{/* Previous (rewind 10s) */} {/* Previous (rewind 10s) */}
<Pressable onPress={() => seekBy(-10)}> <Pressable onPress={() => seekBy(-10)}>
<RNImage <RNImage
@@ -378,6 +340,7 @@ const MusicDetails = () => {
</Pressable> </Pressable>
</View> </View>
</View> </View>
)}
{description?.length > 0 && ( {description?.length > 0 && (
<View style={{ marginTop: 30, gap: 20 }}> <View style={{ marginTop: 30, gap: 20 }}>
<Text <Text
@@ -409,6 +372,8 @@ const styles = StyleSheet.create({
fontSize: 20, fontSize: 20,
color: Palette.white, color: Palette.white,
fontFamily: FONT_FAMILY.HelveticaNeueMedium, fontFamily: FONT_FAMILY.HelveticaNeueMedium,
width: responsiveWidth(70),
marginBottom: responsiveHeight(1),
}, },
name: { name: {
fontSize: 16, fontSize: 16,
-7
View File
@@ -239,13 +239,6 @@ const Research = () => {
/> />
<View style={{ flex: 1 }}> <View style={{ flex: 1 }}>
<ScrollView contentContainerStyle={{ paddingTop: 2 }}> <ScrollView contentContainerStyle={{ paddingTop: 2 }}>
{(!selected &&
!projectsLoading &&
!usersLoading &&
filteredProjects.length === 0 &&
filteredUsers.length === 0) && (
<EmptyText text={"Aucun résultat"} />
)}
{((!selected && (filteredProjects.length > 0 || projectsLoading)) || {((!selected && (filteredProjects.length > 0 || projectsLoading)) ||
selected === "Musiques") && ( selected === "Musiques") && (
<View style={{ paddingHorizontal: 2 }}> <View style={{ paddingHorizontal: 2 }}>
+15 -3
View File
@@ -1,6 +1,13 @@
import { BlurView } from "expo-blur"; import { BlurView } from "expo-blur";
import React, { useEffect, useRef, useState } from "react"; import React, { useEffect, useRef, useState } from "react";
import { Platform, Pressable, StyleSheet, Text, View, Image as RNImage } from "react-native"; import {
Platform,
Pressable,
StyleSheet,
Text,
View,
Image as RNImage,
} from "react-native";
import { Image as ExpoImage } from "expo-image"; import { Image as ExpoImage } from "expo-image";
import { useGlobal } from "reactn"; import { useGlobal } from "reactn";
import { icons, img } from "../../../assets"; import { icons, img } from "../../../assets";
@@ -8,6 +15,7 @@ import { arrayRemove, arrayUnion, projectsRef } from "../../../config/firebase";
import { Palette, Style } from "../../../styles"; import { Palette, Style } from "../../../styles";
import { FONT_FAMILY } from "../../../styles/Fonts"; import { FONT_FAMILY } from "../../../styles/Fonts";
import { size } from "../../../styles/Style"; import { size } from "../../../styles/Style";
import { responsiveWidth } from "react-native-responsive-dimensions";
const MusicCard = ({ const MusicCard = ({
onPress, onPress,
@@ -90,7 +98,7 @@ const MusicCard = ({
/> />
) : ( ) : (
<RNImage <RNImage
source={img.placeholder2} source={img.placeholder}
style={{ ...size({ size: 60 }), borderRadius: 12 }} style={{ ...size({ size: 60 }), borderRadius: 12 }}
/> />
)} )}
@@ -107,7 +115,9 @@ const MusicCard = ({
} }
> >
<View> <View>
<Text style={styles.title}>{title || "Sans titre"}</Text> <Text numberOfLines={2} style={styles.title}>
{title || "Sans titre"}
</Text>
<Text style={styles.subTitle}>{subtitle || "MusicLand"}</Text> <Text style={styles.subTitle}>{subtitle || "MusicLand"}</Text>
</View> </View>
<View <View
@@ -160,6 +170,8 @@ const styles = StyleSheet.create({
fontSize: 16, fontSize: 16,
color: Palette.white, color: Palette.white,
fontFamily: FONT_FAMILY.OwnersRegular, fontFamily: FONT_FAMILY.OwnersRegular,
lineHeight: 18,
width: responsiveWidth(45),
}, },
subTitle: { subTitle: {
fontSize: 12, fontSize: 12,
+7 -6
View File
@@ -30,8 +30,8 @@ const CREATE_DATA = [
img: ai.bena, img: ai.bena,
bg: background.productionBG, bg: background.productionBG,
label: "Bena", label: "Bena",
desc: "Come back when you want\nto publish the song!", desc: "Come back when you want\nto generate cover!",
type: "Producer", type: "Designer",
}, },
{ {
img: ai.john, img: ai.john,
@@ -85,18 +85,19 @@ const NewMusicOptions = ({ route }) => {
if (isLocked(index)) return; if (isLocked(index)) return;
switch (index) { switch (index) {
case 0: case 0:
navigate(Routes.WritingLyrics, {}); navigate(Routes.WritingLyrics, {
projectId: currentProjet?.id || null,
});
break; break;
case 1: case 1:
navigate(Routes.Studio, { action: item.type }); navigate(Routes.Compose, { projectId: currentProjet.id });
break; break;
case 2: case 2:
navigate(Routes.Production, { action: item.type }); navigate(Routes.PouchReady, { projectId: currentProjet.id });
break; break;
case 3: case 3:
console.log("test"); console.log("test");
navigate(Routes.Playback, { navigate(Routes.Playback, {
action: item.type,
project: currentProjet, project: currentProjet,
}); });
default: default:
+256 -77
View File
@@ -1,4 +1,3 @@
import { Audio } from "expo-audio";
import { CameraView, useCameraPermissions } from "expo-camera"; import { CameraView, useCameraPermissions } from "expo-camera";
import React from "react"; import React from "react";
import { Text, View } from "react-native"; import { Text, View } from "react-native";
@@ -10,7 +9,12 @@ import { goBack, navigate } from "../../navigation/NavigationService";
import { gutters, Palette } from "../../styles"; import { gutters, Palette } from "../../styles";
import { FONT_FAMILY } from "../../styles/Fonts"; import { FONT_FAMILY } from "../../styles/Fonts";
import CreateLyricsHeader from "../Writing/components/CreateLyricsHeader"; import CreateLyricsHeader from "../Writing/components/CreateLyricsHeader";
// ADD: Firestore helpers to increment views
import { useFocusEffect } from "@react-navigation/native";
import { useAudioPlayer } from "expo-audio";
import { useCallback, useEffect, useRef, useState } from "react";
import Svg, { Circle } from "react-native-svg";
import { increment, projectsRef } from "../../config/firebase";
const RecordPlayback = ({ route }) => { const RecordPlayback = ({ route }) => {
const { top } = useSafeAreaInsets(); const { top } = useSafeAreaInsets();
const { project } = route.params || {}; const { project } = route.params || {};
@@ -19,20 +23,48 @@ const RecordPlayback = ({ route }) => {
const [cameraPermission, requestCameraPermission] = useCameraPermissions(); const [cameraPermission, requestCameraPermission] = useCameraPermissions();
// Refs // Refs
const cameraRef = React.useRef(null); const cameraRef = useRef(null);
const soundRef = React.useRef(null); const countdownTimerRef = useRef(null);
const countdownTimerRef = React.useRef(null); const stopRequestedRef = useRef(false);
const stopRequestedRef = React.useRef(false);
// Listen counter refs (inspired by MusicDetails)
const listenedMsRef = useRef(0);
const incrementDoneRef = useRef(false);
const timerRef = useRef(null);
const timeBeforeIncrement = 20000; // 20 seconds
// UI / state // UI / state
const [isPreparing, setIsPreparing] = React.useState(false); const [isPreparing, setIsPreparing] = useState(false);
const [countdown, setCountdown] = React.useState(0); const [countdown, setCountdown] = useState(0);
const [isRecording, setIsRecording] = React.useState(false); const [isRecording, setIsRecording] = useState(false);
const [showProgress, setShowProgress] = useState(false);
const [progressInfo, setProgressInfo] = useState({ pos: 0, dur: 0 });
// Derive song URL robustly // Derive song URL robustly
const songUrl = project?.songUrl || null; const songUrl = project?.songUrl || null;
const player = useAudioPlayer(songUrl ? { uri: songUrl } : undefined);
// useEffect(() => {
// setVideo(null);
// }, []);
useEffect(() => {
listenedMsRef.current = 0;
incrementDoneRef.current = false;
}, [songUrl]);
React.useEffect(() => { // Poll player state to update progress ring
useEffect(() => {
if (!player) return;
const id = global.setInterval(() => {
try {
const dur = (player?.duration || 0) * 1000;
const pos = (player?.currentTime || 0) * 1000;
setProgressInfo({ pos, dur });
} catch (_) {}
}, 250);
return () => global.clearInterval(id);
}, [player]);
useEffect(() => {
// Request permissions on mount if not granted // Request permissions on mount if not granted
(async () => { (async () => {
try { try {
@@ -40,40 +72,88 @@ const RecordPlayback = ({ route }) => {
} catch (_) {} } catch (_) {}
})(); })();
return () => { return () => {
// Cleanup timers and audio on unmount // Cleanup timers on unmount
try { try {
if (countdownTimerRef.current) { if (countdownTimerRef.current) {
global.clearInterval(countdownTimerRef.current); global.clearInterval(countdownTimerRef.current);
countdownTimerRef.current = null; countdownTimerRef.current = null;
} }
(async () => { if (timerRef.current) {
try { global.clearInterval(timerRef.current);
if (soundRef.current) { timerRef.current = null;
soundRef.current.setOnPlaybackStatusUpdate(null);
await soundRef.current.unloadAsync();
soundRef.current = null;
} }
} catch (_) {} } catch (_) {}
})();
} catch (_) {}
}; };
}, []); }, []);
// Fully reset audio and recording state (used on focus and before new session)
const resetSession = useCallback(async () => {
try {
if (countdownTimerRef.current) {
global.clearInterval(countdownTimerRef.current);
countdownTimerRef.current = null;
}
if (timerRef.current) {
global.clearInterval(timerRef.current);
timerRef.current = null;
}
stopRequestedRef.current = false;
listenedMsRef.current = 0;
incrementDoneRef.current = false;
setIsPreparing(false);
setIsRecording(false);
setShowProgress(false);
setCountdown(0);
if (player) {
try {
if (player.playing) await player.pause?.();
await player.seekTo?.(0);
} catch (_) {}
}
} catch (_) {}
}, [player]);
// Reset when screen gains focus (coming from "Recommencer", etc.)
useFocusEffect(
useCallback(() => {
void resetSession();
return () => {};
}, [resetSession])
);
const startCountdownThenRecord = async () => { const startCountdownThenRecord = async () => {
console.log("start countdown"); console.log("start countdown");
if (!songUrl) return; if (!songUrl) return;
console.log("songUrl exists"); console.log("songUrl exists");
// Ensure clean state and audio at t=0
await resetSession();
setIsPreparing(true); setIsPreparing(true);
setCountdown(5); setCountdown(5);
// Start music + recording immediately when countdown starts setShowProgress(false);
void startRecordingWithMusic();
// 5 -> 0 countdown display only // Start countdown display; start recording+music WHEN countdown reaches 0
if (countdownTimerRef.current) {
global.clearInterval(countdownTimerRef.current);
countdownTimerRef.current = null;
}
countdownTimerRef.current = global.setInterval(() => { countdownTimerRef.current = global.setInterval(() => {
setCountdown((c) => { setCountdown((c) => {
const next = (c || 0) - 1; const next = (c || 0) - 1;
if (next <= 0) { if (next <= 0) {
console.log("clear timer");
// clear timer
global.clearInterval(countdownTimerRef.current); global.clearInterval(countdownTimerRef.current);
countdownTimerRef.current = null; countdownTimerRef.current = null;
// Ensure countdown overlay disappears and progress shows immediately
setIsPreparing(false);
setShowProgress(true);
// also set countdown to 0 explicitly in case of frame drop
if (c !== 0) {
// guard against stale value
setCountdown(0);
}
// start recording + music at the same time
void startRecordingWithMusic();
} }
return Math.max(0, next); return Math.max(0, next);
}); });
@@ -83,70 +163,90 @@ const RecordPlayback = ({ route }) => {
const startRecordingWithMusic = async () => { const startRecordingWithMusic = async () => {
try { try {
stopRequestedRef.current = false; stopRequestedRef.current = false;
console.log("stop requested ref is : ", soundRef.current);
// Prepare audio
if (soundRef.current) {
console.log("if sound ref current");
try {
soundRef.current.setOnPlaybackStatusUpdate(null);
await soundRef.current.unloadAsync();
console.log("unload sound ref");
} catch (_) {}
soundRef.current = null;
}
// Ensure audio mode allows playback alongside camera recording // Reset listen counters for this track/session
try { listenedMsRef.current = 0;
await Audio.setAudioModeAsync({ incrementDoneRef.current = false;
playsInSilentMode: true,
interruptionMode: "mixWithOthers",
allowsRecording: true,
shouldPlayInBackground: false,
});
} catch (_) {}
const { sound } = await Audio.Sound.createAsync(
{ uri: songUrl },
{ shouldPlay: false }
);
sound.setOnPlaybackStatusUpdate((status) => {
if (!status || !status.isLoaded) return;
if (status.didJustFinish && !stopRequestedRef.current) {
stopRequestedRef.current = true;
try {
cameraRef.current?.stopRecording?.();
} catch (_) {}
}
});
soundRef.current = sound;
// Start recording // Start recording
setIsRecording(true); setIsRecording(true);
setCountdown(0);
setIsPreparing(false);
setShowProgress(true);
const recordPromise = cameraRef.current?.recordAsync?.({ const recordPromise = cameraRef.current?.recordAsync?.({
mute: true, mute: true,
maxDuration: 600, // safety cap (10 min) maxDuration: 600, // safety cap (10 min)
}); });
// Start playing // Start playing with useAudioPlayer (like MusicDetails)
await sound.playAsync(); if (player && songUrl) {
// Wait for recording to stop (either by song end or manual stop)
const video = await recordPromise;
// Ensure audio stops and cleanup
try { try {
const s = soundRef.current; await player.seekTo?.(0);
if (s) { } catch (_) {}
s.setOnPlaybackStatusUpdate(null); await player.play?.();
await s.stopAsync().catch(() => {}); }
await s.unloadAsync().catch(() => {});
// Start timer to track listening time and increment views (like MusicDetails)
if (!timerRef.current && project?.id) {
timerRef.current = global.setInterval(async () => {
try {
if (player?.playing) {
listenedMsRef.current += 500;
if (
!incrementDoneRef.current &&
listenedMsRef.current >= timeBeforeIncrement
) {
incrementDoneRef.current = true;
try {
await projectsRef
.doc(project.id)
.set({ views: increment(1) }, { merge: true });
} catch (_) {}
}
} }
} catch (_) {} } catch (_) {}
soundRef.current = null; }, 500);
}
// Monitor when song ends to stop recording
const checkSongEnd = global.setInterval(async () => {
try {
if (player && !player.playing && !stopRequestedRef.current) {
const duration = (player?.duration || 0) * 1000;
const currentTime = (player?.currentTime || 0) * 1000;
// If we're near the end or stopped, stop recording
if (duration > 0 && currentTime >= duration - 1000) {
stopRequestedRef.current = true;
global.clearInterval(checkSongEnd);
try {
cameraRef.current?.stopRecording?.();
} catch (_) {}
}
}
} catch (_) {}
}, 1000);
// Wait for recording to stop
const video = await recordPromise;
global.clearInterval(checkSongEnd);
// Stop audio
try {
if (player?.playing) {
await player.pause?.();
}
} catch (_) {}
// Clear listen timer after recording ends
if (timerRef.current) {
global.clearInterval(timerRef.current);
timerRef.current = null;
}
setIsRecording(false); setIsRecording(false);
setIsPreparing(false); setIsPreparing(false);
setShowProgress(false);
// Navigate to next screen with video uri if available // Navigate to next screen with video uri if available
if (video?.uri) { if (video?.uri) {
@@ -156,13 +256,14 @@ const RecordPlayback = ({ route }) => {
} }
} catch (e) { } catch (e) {
// Fallback on error // Fallback on error
console.log("error : ", e);
setIsRecording(false); setIsRecording(false);
setIsPreparing(false); setIsPreparing(false);
try { setShowProgress(false);
soundRef.current?.setOnPlaybackStatusUpdate?.(null); if (timerRef.current) {
await soundRef.current?.unloadAsync?.(); global.clearInterval(timerRef.current);
} catch (_) {} timerRef.current = null;
soundRef.current = null; }
} }
}; };
@@ -200,7 +301,7 @@ const RecordPlayback = ({ route }) => {
</CreateLyricsHeader> </CreateLyricsHeader>
{/* Centered countdown overlay */} {/* Centered countdown overlay */}
{(isPreparing || isRecording) && countdown > 0 && ( {isPreparing && countdown > 0 && !showProgress && (
<View <View
style={{ style={{
position: "absolute", position: "absolute",
@@ -260,10 +361,88 @@ const RecordPlayback = ({ route }) => {
onPress={startCountdownThenRecord} onPress={startCountdownThenRecord}
/> />
)} )}
{/* Circular progress when countdown finished / recording */}
{permissionsGranted && (isRecording || showProgress) && (
<View
style={{
position: "absolute",
left: 0,
right: 0,
bottom: gutters,
alignItems: "center",
justifyContent: "center",
}}
>
{/* Dimmed circular backdrop */}
<View
style={{
width: 100,
height: 100,
borderRadius: 105,
// backgroundColor: Palette.ultraLightBlack,
alignItems: "center",
justifyContent: "center",
}}
>
{/* Progress ring */}
<ProgressRing
size={100}
strokeWidth={8}
progress={
progressInfo.dur
? Math.min(1, (progressInfo.pos || 0) / progressInfo.dur)
: 0
}
/>
{/* Center white button-like circle */}
<View
style={{
position: "absolute",
width: 50,
height: 50,
borderRadius: 55,
backgroundColor: Palette.white,
}}
/>
</View>
</View>
)}
</View> </View>
</CameraView> </CameraView>
</View> </View>
); );
}; };
// Simple SVG circular progress ring
const ProgressRing = ({ size = 50, strokeWidth = 12, progress = 0 }) => {
const r = size / 2 - strokeWidth / 2;
const c = 2 * Math.PI * r;
const clamped = Math.max(0, Math.min(1, progress || 0));
const offset = c * (1 - clamped);
return (
<Svg
width={size}
height={size}
style={{
transform: [{ rotate: "-90deg" }],
backgroundColor: "#ffffff3d",
borderRadius: 55,
}}
>
<Circle
cx={size / 2}
cy={size / 2}
r={r}
stroke={Palette.white}
strokeWidth={strokeWidth}
strokeLinecap="round"
strokeDasharray={`${c} ${c}`}
strokeDashoffset={offset}
fill="transparent"
/>
</Svg>
);
};
export default RecordPlayback; export default RecordPlayback;
+133 -10
View File
@@ -1,6 +1,9 @@
import React from "react"; import { useAudioPlayer } from "expo-audio";
import { Image, View } from "react-native"; import * as FileSystem from "expo-file-system";
import { background, img } from "../../assets"; import { VideoView, useVideoPlayer } from "expo-video";
import React, { useEffect, useMemo, useRef, useState } from "react";
import { View } from "react-native";
import { background } from "../../assets";
import BorderGradientButton from "../../components/BorderGradientButton"; import BorderGradientButton from "../../components/BorderGradientButton";
import GradientButton from "../../components/GradientButton"; import GradientButton from "../../components/GradientButton";
import MusicLandHeader from "../../components/MusicLandHeader"; import MusicLandHeader from "../../components/MusicLandHeader";
@@ -9,8 +12,100 @@ import Page from "../../layouts/Page";
import { Routes } from "../../navigation"; import { Routes } from "../../navigation";
import { goBack, navigate } from "../../navigation/NavigationService"; import { goBack, navigate } from "../../navigation/NavigationService";
import { gutters } from "../../styles"; import { gutters } from "../../styles";
const RecordedPlayback = ({ route }) => {
const { videoUri, project } = route.params || {};
const songUrl = project?.songUrl || null;
const audioPlayer = useAudioPlayer(songUrl ? { uri: songUrl } : undefined);
const videoPlayer = useVideoPlayer(videoUri || null, (p) => {
p.loop = false;
p.muted = true; // recorded video has no audio; keep muted anyway
p.timeUpdateEventInterval = 0.2;
});
const [progressInfo, setProgressInfo] = useState({ pos: 0, dur: 0 });
const wasPlayingBeforeSeek = useRef(false);
// Format mm:ss
const fmt = (ms) => {
const total = Math.max(0, Math.floor((ms || 0) / 1000));
const m = Math.floor(total / 60)
.toString()
.padStart(1, "0");
const s = (total % 60).toString().padStart(2, "0");
return `${m}:${s}`;
};
// Start both players on mount
useEffect(() => {
const start = async () => {
try {
if (audioPlayer && songUrl) await audioPlayer.play?.();
if (videoPlayer) videoPlayer.play();
} catch (e) {}
};
start();
return () => {
try {
if (audioPlayer?.playing) audioPlayer.pause?.();
if (videoPlayer?.playing) videoPlayer.pause();
} catch (e) {}
};
}, [audioPlayer, videoPlayer, songUrl]);
// Poll from audio player for progress display; keep video in sync if drifting
useEffect(() => {
const id = global.setInterval(() => {
try {
const dur = (audioPlayer?.duration || 0) * 1000;
const pos = (audioPlayer?.currentTime || 0) * 1000;
setProgressInfo({ pos, dur });
// basic drift correction: if desync > 300ms, align video
if (videoPlayer && !Number.isNaN(videoPlayer.currentTime)) {
const v = (videoPlayer.currentTime || 0) * 1000;
const drift = Math.abs(v - pos);
if (drift > 350) {
videoPlayer.currentTime = Math.max(0, (pos || 0) / 1000);
}
}
} catch (e) {}
}, 250);
return () => global.clearInterval(id);
}, [audioPlayer, videoPlayer]);
const onSeek = async (ratio) => {
try {
const dur = progressInfo.dur || 0;
const pos = Math.floor(dur * ratio);
if (audioPlayer && dur > 0)
await audioPlayer.seekTo?.(Math.floor(pos / 1000));
if (videoPlayer) videoPlayer.currentTime = Math.max(0, pos / 1000);
} catch (e) {}
};
const onSeekStart = async () => {
try {
wasPlayingBeforeSeek.current = !!audioPlayer?.playing;
if (audioPlayer?.playing) await audioPlayer.pause?.();
if (videoPlayer?.playing) videoPlayer.pause();
} catch (e) {}
};
const onSeekEnd = async () => {
try {
if (wasPlayingBeforeSeek.current) {
if (audioPlayer) await audioPlayer.play?.();
if (videoPlayer) videoPlayer.play();
}
} catch (e) {}
};
const sliderProgress = useMemo(() => {
return progressInfo.dur
? Math.min(1, (progressInfo.pos || 0) / progressInfo.dur)
: 0;
}, [progressInfo]);
const RecordedPlayback = () => {
return ( return (
<Page backgroundImg={background.playbackBG2} headerType="NONE"> <Page backgroundImg={background.playbackBG2} headerType="NONE">
<MusicLandHeader progress={19} onPressBack={goBack} /> <MusicLandHeader progress={19} onPressBack={goBack} />
@@ -18,26 +113,54 @@ const RecordedPlayback = () => {
style={{ flex: 1, paddingTop: 12, gap: 14, paddingBottom: gutters * 2 }} style={{ flex: 1, paddingTop: 12, gap: 14, paddingBottom: gutters * 2 }}
> >
<View style={{ flex: 1, gap: 22 }}> <View style={{ flex: 1, gap: 22 }}>
<Image {!!videoUri && (
source={img.placeholder3} <VideoView
player={videoPlayer}
nativeControls={false}
contentFit="contain"
style={{ style={{
width: "80%", width: "80%",
flex: 1, flex: 1,
alignSelf: "center", alignSelf: "center",
borderRadius: 16, borderRadius: 16,
backgroundColor: "#00000066",
overflow: "hidden",
}} }}
/> />
<Slider value="0:00" maxValue="2:00" /> )}
<Slider
value={fmt(progressInfo.pos)}
maxValue={fmt(progressInfo.dur)}
progress={sliderProgress}
seekEnabled={!!songUrl}
onSeek={onSeek}
onSeekStart={onSeekStart}
onSeekEnd={onSeekEnd}
/>
</View> </View>
<View <View
style={{ width: "80%", alignSelf: "center", marginTop: 4, gap: 12 }} style={{ width: "80%", alignSelf: "center", marginTop: 4, gap: 12 }}
> >
<GradientButton title="Je valide" /> <GradientButton title="Je valide" />
<BorderGradientButton <BorderGradientButton
title="Je change de décor" title="Recommencer"
onPress={() => navigate(Routes.ChooseDecor)} onPress={async () => {
try {
if (audioPlayer?.playing) await audioPlayer.pause?.();
if (videoPlayer?.playing) videoPlayer.pause();
} catch (e) {}
try {
if (videoUri) {
const info = await FileSystem.getInfoAsync(videoUri);
if (info?.exists)
await FileSystem.deleteAsync(videoUri, {
idempotent: true,
});
}
} catch (e) {}
navigate(Routes.RecordPlayback, { project });
}}
/> />
<BorderGradientButton title="Recommencer" />
</View> </View>
</View> </View>
</Page> </Page>
+1 -1
View File
@@ -124,7 +124,7 @@ const SongReady = () => {
.doc(projectId) .doc(projectId)
.set( .set(
{ {
song: { index: selectedIndex, url }, songUrl: url,
updatedAt: firebase.firestore.FieldValue.serverTimestamp(), updatedAt: firebase.firestore.FieldValue.serverTimestamp(),
}, },
{ merge: true }, { merge: true },