-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCounterContext.tsx
More file actions
40 lines (33 loc) · 894 Bytes
/
CounterContext.tsx
File metadata and controls
40 lines (33 loc) · 894 Bytes
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
import { createContext, createSignal, JSX, onSettled, useContext } from "solid-js";
interface CounterContext {
value(): number;
increment(): void;
decrement(): void;
}
const CounterContext = createContext<CounterContext>();
export function useCounter() {
const ctx = useContext(CounterContext);
if (!ctx) {
throw new Error('Missing CounterContext');
}
return ctx;
}
export function CounterProvider(props: { children: JSX.Element }) {
const [value, setValue] = createSignal(0);
function increment() {
setValue((c) => c + 1);
}
function decrement() {
setValue((c) => c - 1);
}
onSettled(() => {
console.log('Mounted CounterProvider');
return () => console.log('Unmounted CounterProvider');
});
return (
<CounterContext value={{ value, increment, decrement }}>
<h1>Counter</h1>
{props.children}
</CounterContext>
);
}