question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

instanceRef.current is undefined

See original GitHub issue

Environment

Describe

I’m trying to get the data when hitting save. But I get this error: Unhandled Rejection (TypeError): Cannot read properties of undefined (reading ‘save’)

I followed this example and this other one (both I found in other issues), but nothing seems to work.

My code:

import { createReactEditorJS } from 'react-editor-js'
import Image from '@editorjs/image'
const Editor = createReactEditorJS()

const instanceRef = useRef(null);
async function handleSave() {
  const savedData = await instanceRef.current.save();
  console.log("savedData", savedData);
}
<Button color='primary' className='text-nowrap px-1 btn-sm' onClick={handleSave} outline>

<Editor
  placeholder="Enunciado da alternativa"
  tools={{ image: Image }}
  instanceRef={instance => (instanceRef.current = instance)}
/>

When I press the button:

ex

Issue Analytics

  • State:closed
  • Created a year ago
  • Reactions:2
  • Comments:7

github_iconTop GitHub Comments

1reaction
codigoisaaccommented, May 1, 2022

@quatre29 @AlbinoGeek I just switched to TinyMCE (best decision ever). Thanks, guys.

0reactions
codigoisaaccommented, May 1, 2022

@AlbinoGeek I see, and you have good points, but I tried some editors (draftjs, quill, editorjs), and TinyMCE was and it’s being the best experience. I needed to implement image upload and image resize, and it simply was so painful to find information and to implement it with others, and none of them has image resize, except TinyMCE and Draftjs-plugins - but Draftjs-plugins has a documentation that doesn’t work and Draftjs is being discontinued by Facebook…

With TinyMCE things just worked and we could move on to actually building our software.

Read more comments on GitHub >

github_iconTop Results From Across the Web

TypeError: ref.current is undefined (useRef()) - Stack Overflow
The problem is that you are trying to use componentRef before it is actually being assigned. Make use of useEffect and store the...
Read more >
Ref returns undefined or null in React [Solved] | bobbyhadz
A React ref most commonly returns undefined or null when we try to access its current property before its corresponding DOM element is...
Read more >
Refs and the DOM - React
When a ref is passed to an element in render , a reference to the node becomes accessible at the current attribute of...
Read more >
Lazy useRef instance variables · Issue #14490 · facebook/react
My thoughts were: const instanceRef = useRef(() => new Instance()) ... ... Lazy init let newInstance = new Instance() instanceRef.current ...
Read more >
Integrating Axios with React Hooks - OpenReplay Blog
Learn how to integrate Axios with React by creating a custom hook.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found