Skip to content

Commit 4df6509

Browse files
authored
Merge pull request #546 from ckeditor/ck/542
Fix: Prevent potential crashes of `useMultiRootEditor` during the initialization phase when setting the new state of the multi-root editor with an attached watchdog. Closes #542
2 parents 2cea7d9 + 69f4c3f commit 4df6509

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/useMultiRootEditor.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,13 @@ const useMultiRootEditor = ( props: MultiRootHookProps ): MultiRootHookReturns =
380380
current: 0
381381
};
382382

383-
watchdog.setCreator( async ( data, config ) => {
383+
// Keeping using `data` from creator function callback seems to be a good idea in theory,
384+
// but in practice, it leads to instability. The `data` object can be changed during the editor
385+
// initialization, which can lead to unexpected reset of value in the editor, that do not match
386+
// with the current react state. To prevent this, we are using the `data` from the hook state.
387+
// It's not super optimal, but it's the most stable solution at this moment.
388+
// See more: https://github.com/ckeditor/ckeditor5-react/issues/542
389+
watchdog.setCreator( async ( _, config ) => {
384390
const { onAfterDestroy } = props;
385391

386392
if ( totalRestartsRef.current > 0 && onAfterDestroy && editorRefs.instance.current ) {

0 commit comments

Comments
 (0)