From 076a8f408dd3237546406c74c6a1d57d770ff78b Mon Sep 17 00:00:00 2001 From: zwlucas Date: Tue, 1 Apr 2025 08:26:33 -0300 Subject: remove old audio code --- app/votar/page.tsx | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/app/votar/page.tsx b/app/votar/page.tsx index 62c1bb1..436c167 100644 --- a/app/votar/page.tsx +++ b/app/votar/page.tsx @@ -18,7 +18,6 @@ export default function VotarPage() { const nome = searchParams.get("nome") || ""; const cpf = searchParams.get("cpf") || ""; const [selectedOption, setSelectedOption] = useState(null); - const [audioContext, setAudioContext] = useState(null); const [audioElement, setAudioElement] = useState() useEffect(() => { @@ -27,10 +26,6 @@ export default function VotarPage() { return; } - // setAudioContext( - // new (window.AudioContext || (window as any).webkitContext)() - // ); - const audio = new Audio('/confirma.mp3') setAudioElement(audio) }, [rm, nome, cpf, router]); @@ -41,21 +36,6 @@ export default function VotarPage() { if (!audioElement) return; audioElement.play() - // if (!audioContext) return; - - // const oscillator = audioContext.createOscillator(); - // const gainNode = audioContext.createGain(); - - // oscillator.type = "sine"; - // oscillator.frequency.setValueAtTime(1000, audioContext.currentTime); - // gainNode.gain.setValueAtTime(0.5, audioContext.currentTime); - - // oscillator.connect(gainNode); - // gainNode.connect(audioContext.destination); - - // oscillator.start(); - // oscillator.stop(audioContext.currentTime + 0.2); - setTimeout(() => { router.push( `/obrigado?rm=${rm}&nome=${encodeURIComponent( -- cgit v1.2.3