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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| import { useState, useEffect, useLayoutEffect, useMemo, useCallback, useRef, useContext, useReducer, useDebugValue, useImperativeHandle, forwardRef } from "react" import { ThemeContext } from "./App";
function counterReducer(state, action) { switch (action.type) { case 'INCREMENT': return { count: state.count + 1 }; case 'DECREMENT': return { count: state.count - 1 }; case 'RESET': return { count: 0 }; default: throw new Error(); } } const Count = forwardRef((props, ref) => { const [num, setNum] = useState(''); const input = useRef<HTMLInputElement>(null); const context = useContext(ThemeContext); const [state, dispatch] = useReducer(counterReducer, { count: 0 });
useEffect(() => { console.log('init') return () => { console.log('destroy') } },[])
const handleChange = useCallback((event: React.ChangeEvent<HTMLInputElement>) => { setNum(event.target.value); }, []);
useLayoutEffect(() => { input.current?.focus(); }, []) const pow = useMemo(() => { const inputNum = Number(num); if (isNaN(inputNum)) return ''; return inputNum ** 2; }, [num]); useDebugValue(pow)
useImperativeHandle(ref, () => { return { changeNum: (nextNum: string) => { setNum(nextNum); } } })
return <> <div className="main" style={{backgroundColor: context === 'light' ? 'white' : 'black'}}> {pow} <input type="text" value={num} onInput={handleChange} ref={input} />
<div> Count: {state.count} <button onClick={() => dispatch({ type: 'INCREMENT' })}>+</button> <button onClick={() => dispatch({ type: 'DECREMENT' })}>-</button> <button onClick={() => dispatch({ type: 'RESET' })}>Reset</button> </div> </div> </> }); export default Count;
|