* refactor: apply biome formatting to packages/features (batch 1 - small subdirs) Format small subdirectories in packages/features: di, flags, holidays, oauth, settings, users, assignment-reason, selectedCalendar, hashedLink, host, form, form-builder, availability, data-table, pbac, schedules, troubleshooter, eventtypes, calendar-subscription, and root-level files. Also includes straggler apps/web BookEventForm.tsx. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 2 - medium subdirs) Format medium subdirectories in packages/features: auth, credentials, calendars, routing-forms, routing-trace, attributes, watchlist, calAIPhone, tasker, and webhooks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 3 - bookings + insights) Format bookings and insights subdirectories in packages/features. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 4 - ee) Format packages/features/ee subdirectory covering billing, workflows, organizations, teams, managed-event-types, round-robin, dsync, integration-attribute-sync, and payments. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 5 - booking-audit part 1) Format booking-audit di, actions, common, dto, repository, and types subdirectories in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 6 - booking-audit part 2) Format booking-audit service subdirectory in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
import { useState, useEffect, useRef } from "react";
|
|
|
|
import { showToast } from "@calcom/ui/components/toast";
|
|
|
|
export function useVoicePreview() {
|
|
const [playingVoiceId, setPlayingVoiceId] = useState<string | null>(null);
|
|
const [currentAudio, setCurrentAudio] = useState<HTMLAudioElement | null>(null);
|
|
const audioRef = useRef<HTMLAudioElement | null>(null);
|
|
|
|
const stopCurrentAudio = () => {
|
|
if (currentAudio) {
|
|
currentAudio.pause();
|
|
currentAudio.currentTime = 0;
|
|
setCurrentAudio(null);
|
|
audioRef.current = null;
|
|
}
|
|
setPlayingVoiceId(null);
|
|
};
|
|
|
|
const handlePlayVoice = (previewUrl?: string, voiceId?: string) => {
|
|
if (!previewUrl) {
|
|
showToast("Preview not available for this voice", "error");
|
|
return;
|
|
}
|
|
|
|
if (playingVoiceId === voiceId) {
|
|
stopCurrentAudio();
|
|
return;
|
|
}
|
|
|
|
stopCurrentAudio();
|
|
|
|
const audio = new Audio(previewUrl);
|
|
|
|
audio.onended = () => {
|
|
setPlayingVoiceId(null);
|
|
setCurrentAudio(null);
|
|
audioRef.current = null;
|
|
};
|
|
|
|
audio.onerror = () => {
|
|
setPlayingVoiceId(null);
|
|
setCurrentAudio(null);
|
|
audioRef.current = null;
|
|
showToast("Failed to play voice preview", "error");
|
|
};
|
|
|
|
setCurrentAudio(audio);
|
|
audioRef.current = audio;
|
|
|
|
audio
|
|
.play()
|
|
.then(() => {
|
|
setPlayingVoiceId(voiceId || null);
|
|
})
|
|
.catch(() => {
|
|
setPlayingVoiceId(null);
|
|
setCurrentAudio(null);
|
|
audioRef.current = null;
|
|
showToast("Failed to play voice preview", "error");
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
if (audioRef.current) {
|
|
audioRef.current.pause();
|
|
audioRef.current.currentTime = 0;
|
|
audioRef.current = null;
|
|
}
|
|
};
|
|
}, []);
|
|
|
|
return {
|
|
playingVoiceId,
|
|
handlePlayVoice,
|
|
stopCurrentAudio,
|
|
};
|
|
}
|