- useDrawingState(options?): {
brushSize: any;
canRedo: boolean;
canUndo: boolean;
checkInkAvailability: (() => boolean);
crdtRef: MutableRefObject<LWWMap>;
currentColor: any;
currentPlayerId: any;
currentStrokeIdsRef: MutableRefObject<string[]>;
drawingMode: DrawingMode;
historyPointerRef: MutableRefObject<number>;
inkRemaining: any;
resetDrawingState: (() => void);
setBrushSize: Dispatch<any>;
setCurrentColor: Dispatch<any>;
setDrawingMode: Dispatch<any>;
setInkRemaining: Dispatch<any>;
strokeHistoryRef: MutableRefObject<StrokeHistoryEntry[]>;
updateHistoryState: (() => void);
} Parameters
Optional
options: {
maxPixels?: number;
}Optional
maxPixels?: number
Returns {
brushSize: any;
canRedo: boolean;
canUndo: boolean;
checkInkAvailability: (() => boolean);
crdtRef: MutableRefObject<LWWMap>;
currentColor: any;
currentPlayerId: any;
currentStrokeIdsRef: MutableRefObject<string[]>;
drawingMode: DrawingMode;
historyPointerRef: MutableRefObject<number>;
inkRemaining: any;
resetDrawingState: (() => void);
setBrushSize: Dispatch<any>;
setCurrentColor: Dispatch<any>;
setDrawingMode: Dispatch<any>;
setInkRemaining: Dispatch<any>;
strokeHistoryRef: MutableRefObject<StrokeHistoryEntry[]>;
updateHistoryState: (() => void);
}
드로잉 상태와 관리 함수들을 포함하는 객체
brushSize: any
canRedo: boolean
canUndo: boolean
checkInkAvailability: (() => boolean)
- (): boolean
Returns boolean
crdtRef: MutableRefObject<LWWMap>
currentColor: any
currentPlayerId: any
currentStrokeIdsRef: MutableRefObject<string[]>
drawingMode: DrawingMode
historyPointerRef: MutableRefObject<number>
inkRemaining: any
resetDrawingState: (() => void)
setBrushSize: Dispatch<any>
setCurrentColor: Dispatch<any>
setDrawingMode: Dispatch<any>
setInkRemaining: Dispatch<any>
strokeHistoryRef: MutableRefObject<StrokeHistoryEntry[]>
updateHistoryState: (() => void)
캔버스 드로잉의 상태를 관리하는 Hook입니다.
Remarks
드로잉과 관련된 모든 상태를 관리합니다.
드로잉 작업과 여러 사용자 간의 동기화를 위한 기반을 제공합니다.
Example