- useDrawing(canvasRef, roomStatus, options?): {
applyDrawing: ((crdtDrawingData: CRDTMessage) => void);
brushSize: any;
canRedo: boolean;
canUndo: boolean;
continueDrawing: ((point: Point) => CRDTUpdateMessage);
currentColor: any;
drawingMode: DrawingMode;
getAllDrawingData: (() => CRDTSyncMessage);
inkRemaining: any;
redo: (() => CRDTUpdateMessage[]);
resetCanvas: (() => void);
setBrushSize: Dispatch<any>;
setCurrentColor: Dispatch<any>;
setDrawingMode: Dispatch<any>;
startDrawing: ((point: Point) => CRDTUpdateMessage);
stopDrawing: (() => void);
undo: (() => CRDTUpdateMessage[]);
} Parameters
- canvasRef: RefObject<HTMLCanvasElement>
- roomStatus: RoomStatus
Optional
options: {
maxPixels?: number;
}Optional
maxPixels?: number
Returns {
applyDrawing: ((crdtDrawingData: CRDTMessage) => void);
brushSize: any;
canRedo: boolean;
canUndo: boolean;
continueDrawing: ((point: Point) => CRDTUpdateMessage);
currentColor: any;
drawingMode: DrawingMode;
getAllDrawingData: (() => CRDTSyncMessage);
inkRemaining: any;
redo: (() => CRDTUpdateMessage[]);
resetCanvas: (() => void);
setBrushSize: Dispatch<any>;
setCurrentColor: Dispatch<any>;
setDrawingMode: Dispatch<any>;
startDrawing: ((point: Point) => CRDTUpdateMessage);
stopDrawing: (() => void);
undo: (() => CRDTUpdateMessage[]);
}
드로잉 관련 상태와 메소드들을 포함하는 객체
applyDrawing: ((crdtDrawingData: CRDTMessage) => void)
- (crdtDrawingData): void
Parameters
- crdtDrawingData: CRDTMessage
Returns void
brushSize: any
canRedo: boolean
canUndo: boolean
continueDrawing: ((point: Point) => CRDTUpdateMessage)
- (point): CRDTUpdateMessage
Returns CRDTUpdateMessage
currentColor: any
drawingMode: DrawingMode
getAllDrawingData: (() => CRDTSyncMessage)
- (): CRDTSyncMessage
Returns CRDTSyncMessage
inkRemaining: any
redo: (() => CRDTUpdateMessage[])
- (): CRDTUpdateMessage[]
Returns CRDTUpdateMessage[]
resetCanvas: (() => void)
setBrushSize: Dispatch<any>
setCurrentColor: Dispatch<any>
setDrawingMode: Dispatch<any>
startDrawing: ((point: Point) => CRDTUpdateMessage)
- (point): CRDTUpdateMessage
Returns CRDTUpdateMessage
stopDrawing: (() => void)
undo: (() => CRDTUpdateMessage[])
- (): CRDTUpdateMessage[]
Returns CRDTUpdateMessage[]
캔버스 드로잉 기능을 관리하는 Hook입니다.
Remarks
캔버스의 실제 드로잉 작업을 처리합니다.
드로잉은 mousedown부터 mouseup까지를 하나의 단위로 처리하며, 실시간으로는 각 stroke 단위로 동기화하고 히스토리는 mouseup 단위로 기록됩니다.
Example