added sound context, and functionality to select sighting sound
This commit is contained in:
18
src/context/SoundContext.ts
Normal file
18
src/context/SoundContext.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { createContext, useContext, type Dispatch } from "react";
|
||||
import type { SoundPayload, SoundState } from "../types/types";
|
||||
|
||||
type SoundContextType = {
|
||||
state: SoundState;
|
||||
dispatch: Dispatch<SoundPayload>;
|
||||
};
|
||||
|
||||
export const SoundContext = createContext<SoundContextType | undefined>(
|
||||
undefined
|
||||
);
|
||||
|
||||
export const useSoundContext = () => {
|
||||
const ctx = useContext(SoundContext);
|
||||
if (!ctx)
|
||||
throw new Error("useSoundContext must be used within <SoundContext>");
|
||||
return ctx;
|
||||
};
|
||||
Reference in New Issue
Block a user