Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Object literal may only specify known properties, and 'fabricRef' does not exist in type '{ canvas: Canvas | null; }' #20

Open
Avani011 opened this issue Sep 11, 2024 · 0 comments

Comments

@Avani011
Copy link

The page.ts code gives an error in the part where we create an event listener for resizing and using the reference of fabric.js.

{
const canvasRef = useRef(null);
const fabricRef = useRef<fabric.Canvas | null>(null);
const isDrawing = useRef(false);
const shapeRef = useRef<fabric.Object | null>(null);
const selectedShapeRef = useRef<String | null>(null);

useEffect(() => {
const canvas = initializeFabric({ canvasRef, fabricRef})

canvas.on("mouse:down", (options) => {
  handleCanvasMouseDown({
    options,
    canvas,
    isDrawing,
    shapeRef,
    selectedShapeRef,
  })
})

window.addEventListener("resize", () => {
  handleResize({fabricRef})
})

}), [];
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant