File size: 1,021 Bytes
d69879c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { useEffect, useState } from "react";

import { facePoke } from "../lib/facePoke";

export function useFacePokeAPI() {

   // State for FacePoke
  const [isDebugMode, setIsDebugMode] = useState(false);
  const [interruptMessage, setInterruptMessage] = useState<string | null>(null);

  const [isLoading, setIsLoading] = useState(false);

  // Initialize FacePoke
  useEffect(() => {
    const urlParams = new URLSearchParams(window.location.search);
    setIsDebugMode(urlParams.get('debug') === 'true');
  }, []);

  // Handle WebSocket interruptions
  useEffect(() => {
    const handleInterruption = (event: CustomEvent) => {
      setInterruptMessage(event.detail.message);
    };

    window.addEventListener('websocketInterruption' as any, handleInterruption);

    return () => {
      window.removeEventListener('websocketInterruption' as any, handleInterruption);
    };
  }, []);

  return {
    facePoke,
    isDebugMode,
    setIsDebugMode,
    interruptMessage,
    isLoading,
    setIsLoading,
  }
}