mirror of
				https://github.com/cinnyapp/cinny.git
				synced 2025-11-04 06:20:28 +03:00 
			
		
		
		
	fix type to focus not working after room switch (#1866)
This commit is contained in:
		
							parent
							
								
									cfe893f358
								
							
						
					
					
						commit
						cabfdd47b5
					
				
					 1 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -186,9 +186,8 @@ export const RoomInput = forwardRef<HTMLDivElement, RoomInputProps>(
 | 
			
		|||
      Transforms.insertFragment(editor, msgDraft);
 | 
			
		||||
    }, [editor, msgDraft]);
 | 
			
		||||
 | 
			
		||||
    useEffect(() => {
 | 
			
		||||
      if (!mobileOrTablet()) ReactEditor.focus(editor);
 | 
			
		||||
      return () => {
 | 
			
		||||
    useEffect(
 | 
			
		||||
      () => () => {
 | 
			
		||||
        if (!isEmptyEditor(editor)) {
 | 
			
		||||
          const parsedDraft = JSON.parse(JSON.stringify(editor.children));
 | 
			
		||||
          setMsgDraft(parsedDraft);
 | 
			
		||||
| 
						 | 
				
			
			@ -197,8 +196,9 @@ export const RoomInput = forwardRef<HTMLDivElement, RoomInputProps>(
 | 
			
		|||
        }
 | 
			
		||||
        resetEditor(editor);
 | 
			
		||||
        resetEditorHistory(editor);
 | 
			
		||||
      };
 | 
			
		||||
    }, [roomId, editor, setMsgDraft]);
 | 
			
		||||
      },
 | 
			
		||||
      [roomId, editor, setMsgDraft]
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
    const handleRemoveUpload = useCallback(
 | 
			
		||||
      (upload: TUploadContent | TUploadContent[]) => {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue