instanceRef.current is undefined
See original GitHub issueEnvironment
- @editorjs/editorjs version: ^2.23.2
- react-editor-js version: ^2.0.6
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:
Issue Analytics
- State:
- Created a year ago
- Reactions:2
- Comments:7
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@quatre29 @AlbinoGeek I just switched to TinyMCE (best decision ever). Thanks, guys.
@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.