fixed feature to upload sound files

This commit is contained in:
2025-10-20 16:17:37 +01:00
parent 0a3a543d6f
commit 1ffad51503
5 changed files with 17 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ const SoundSettingsFields = () => {
NPEDsoundVolume: state.NPEDsoundVolume, NPEDsoundVolume: state.NPEDsoundVolume,
hotlistSoundVolume: state.hotlistSoundVolume, hotlistSoundVolume: state.hotlistSoundVolume,
}; };
console.log(updatedValues);
dispatch({ type: "UPDATE", payload: updatedValues }); dispatch({ type: "UPDATE", payload: updatedValues });
const result = await mutation.mutateAsync({ const result = await mutation.mutateAsync({
operation: "INSERT", operation: "INSERT",

View File

@@ -9,6 +9,8 @@ const SoundUpload = () => {
const initialValues: SoundUploadValue = { const initialValues: SoundUploadValue = {
name: "", name: "",
soundFile: null, soundFile: null,
soundFileName: "",
soundUrl: "",
}; };
const handleSubmit = (values: SoundUploadValue) => { const handleSubmit = (values: SoundUploadValue) => {
@@ -16,6 +18,7 @@ const SoundUpload = () => {
toast.warning("Please select an audio file"); toast.warning("Please select an audio file");
} else { } else {
dispatch({ type: "ADD", payload: values }); dispatch({ type: "ADD", payload: values });
toast.success("Sound file upload successfully"); toast.success("Sound file upload successfully");
} }
}; };
@@ -36,7 +39,10 @@ const SoundUpload = () => {
className="mt-4 w-full flex flex-col items-center justify-center rounded-2xl border border-slate-800 bg-slate-900/40 p-10 text-center file:px-3 file:border file:border-gray-500 file:rounded-lg file:bg-blue-800 file:mr-5" className="mt-4 w-full flex flex-col items-center justify-center rounded-2xl border border-slate-800 bg-slate-900/40 p-10 text-center file:px-3 file:border file:border-gray-500 file:rounded-lg file:bg-blue-800 file:mr-5"
onChange={(e) => { onChange={(e) => {
if (e.target?.files && e.target?.files[0]?.type === "audio/mpeg") { if (e.target?.files && e.target?.files[0]?.type === "audio/mpeg") {
const url = URL.createObjectURL(e.target.files[0]);
setFieldValue("soundUrl", url);
setFieldValue("name", e.target.files[0].name); setFieldValue("name", e.target.files[0].name);
setFieldValue("soundFileName", e.target.files[0].name);
setFieldValue("soundFile", e.target.files[0]); setFieldValue("soundFile", e.target.files[0]);
} else { } else {
setFieldError("soundFile", "Not an mp3 file"); setFieldError("soundFile", "Not an mp3 file");

View File

@@ -43,8 +43,12 @@ export function useSightingFeed(url: string | undefined) {
}, [audioArmed, latestRef]); }, [audioArmed, latestRef]);
const soundSrc = useMemo(() => { const soundSrc = useMemo(() => {
if (state?.sightingSound?.includes(".mp3")) {
const file = state.soundOptions?.find((item) => item.name === state.sightingSound);
return file?.soundUrl;
}
return getSoundFileURL(state?.sightingSound) ?? switchSound; return getSoundFileURL(state?.sightingSound) ?? switchSound;
}, [state.sightingSound]); }, [state.sightingSound, state.soundOptions]);
function refetchInterval(query: Query<SightingType, Error, SightingType, (string | undefined)[]>) { function refetchInterval(query: Query<SightingType, Error, SightingType, (string | undefined)[]>) {
if (!query) return; if (!query) return;

View File

@@ -292,6 +292,7 @@ export type SoundUploadValue = {
name: string; name: string;
soundFileName?: string; soundFileName?: string;
soundFile?: File | null; soundFile?: File | null;
soundUrl?: string;
}; };
export type SoundState = { export type SoundState = {

View File

@@ -21,6 +21,10 @@ export function getSoundFileURL(name: string) {
return sounds[name] ?? null; return sounds[name] ?? null;
} }
export const showSoundURL = (url: URL | string | undefined) => {
console.log(url);
};
const randomChars = () => { const randomChars = () => {
const uppercaseAsciiStart = 65; const uppercaseAsciiStart = 65;
const letterIndex = Math.floor(Math.random() * 26); const letterIndex = Math.floor(Math.random() * 26);