Add emoji handling for rich text mode
This commit is contained in:
parent
dd91250111
commit
75be1f9954
7 changed files with 87 additions and 7 deletions
|
@ -59,7 +59,14 @@ export function SendWysiwygComposer(
|
||||||
className="mx_SendWysiwygComposer"
|
className="mx_SendWysiwygComposer"
|
||||||
leftComponent={e2eStatus && <E2EIcon status={e2eStatus} />}
|
leftComponent={e2eStatus && <E2EIcon status={e2eStatus} />}
|
||||||
// TODO add emoji support
|
// TODO add emoji support
|
||||||
rightComponent={<EmojiButton menuPosition={menuPosition} addEmoji={() => false} />}
|
rightComponent={(composerFunctions, selectPreviousSelection) =>
|
||||||
|
<EmojiButton menuPosition={menuPosition}
|
||||||
|
addEmoji={(unicode) => {
|
||||||
|
selectPreviousSelection();
|
||||||
|
setTimeout(() => composerFunctions.insertText(unicode), 100);
|
||||||
|
return true;
|
||||||
|
}}
|
||||||
|
/>}
|
||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
{ (ref, composerFunctions) => (
|
{ (ref, composerFunctions) => (
|
||||||
|
|
|
@ -18,6 +18,7 @@ import classNames from 'classnames';
|
||||||
import React, { CSSProperties, forwardRef, memo, MutableRefObject, ReactNode } from 'react';
|
import React, { CSSProperties, forwardRef, memo, MutableRefObject, ReactNode } from 'react';
|
||||||
|
|
||||||
import { useIsExpanded } from '../hooks/useIsExpanded';
|
import { useIsExpanded } from '../hooks/useIsExpanded';
|
||||||
|
import { useSelection } from '../hooks/useSelection';
|
||||||
|
|
||||||
const HEIGHT_BREAKING_POINT = 20;
|
const HEIGHT_BREAKING_POINT = 20;
|
||||||
|
|
||||||
|
@ -25,7 +26,7 @@ interface EditorProps {
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
placeholder?: string;
|
placeholder?: string;
|
||||||
leftComponent?: ReactNode;
|
leftComponent?: ReactNode;
|
||||||
rightComponent?: ReactNode;
|
rightComponent?: (selectPreviousSelection: () => void) => ReactNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Editor = memo(
|
export const Editor = memo(
|
||||||
|
@ -33,6 +34,8 @@ export const Editor = memo(
|
||||||
function Editor({ disabled, placeholder, leftComponent, rightComponent }: EditorProps, ref,
|
function Editor({ disabled, placeholder, leftComponent, rightComponent }: EditorProps, ref,
|
||||||
) {
|
) {
|
||||||
const isExpanded = useIsExpanded(ref as MutableRefObject<HTMLDivElement | null>, HEIGHT_BREAKING_POINT);
|
const isExpanded = useIsExpanded(ref as MutableRefObject<HTMLDivElement | null>, HEIGHT_BREAKING_POINT);
|
||||||
|
const { onFocus, onBlur, selectPreviousSelection } =
|
||||||
|
useSelection(ref as MutableRefObject<HTMLDivElement | null>);
|
||||||
|
|
||||||
return <div
|
return <div
|
||||||
data-testid="WysiwygComposerEditor"
|
data-testid="WysiwygComposerEditor"
|
||||||
|
@ -55,9 +58,11 @@ export const Editor = memo(
|
||||||
aria-haspopup="listbox"
|
aria-haspopup="listbox"
|
||||||
dir="auto"
|
dir="auto"
|
||||||
aria-disabled={disabled}
|
aria-disabled={disabled}
|
||||||
|
onFocus={onFocus}
|
||||||
|
onBlur={onBlur}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{ rightComponent }
|
{ rightComponent(selectPreviousSelection) }
|
||||||
</div>;
|
</div>;
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
|
@ -33,7 +33,10 @@ interface PlainTextComposerProps {
|
||||||
initialContent?: string;
|
initialContent?: string;
|
||||||
className?: string;
|
className?: string;
|
||||||
leftComponent?: ReactNode;
|
leftComponent?: ReactNode;
|
||||||
rightComponent?: ReactNode;
|
rightComponent?: (
|
||||||
|
composerFunctions: ComposerFunctions,
|
||||||
|
selectPreviousSelection: () => void
|
||||||
|
) => ReactNode;
|
||||||
children?: (
|
children?: (
|
||||||
ref: MutableRefObject<HTMLDivElement | null>,
|
ref: MutableRefObject<HTMLDivElement | null>,
|
||||||
composerFunctions: ComposerFunctions,
|
composerFunctions: ComposerFunctions,
|
||||||
|
@ -58,6 +61,8 @@ export function PlainTextComposer({
|
||||||
useSetCursorPosition(disabled, ref);
|
useSetCursorPosition(disabled, ref);
|
||||||
const { isFocused, onFocus } = useIsFocused();
|
const { isFocused, onFocus } = useIsFocused();
|
||||||
const computedPlaceholder = !content && placeholder || undefined;
|
const computedPlaceholder = !content && placeholder || undefined;
|
||||||
|
const rightComp =
|
||||||
|
(selectPreviousSelection: () => void) => rightComponent(composerFunctions, selectPreviousSelection);
|
||||||
|
|
||||||
return <div
|
return <div
|
||||||
data-testid="PlainTextComposer"
|
data-testid="PlainTextComposer"
|
||||||
|
@ -68,7 +73,7 @@ export function PlainTextComposer({
|
||||||
onPaste={onPaste}
|
onPaste={onPaste}
|
||||||
onKeyDown={onKeyDown}
|
onKeyDown={onKeyDown}
|
||||||
>
|
>
|
||||||
<Editor ref={ref} disabled={disabled} leftComponent={leftComponent} rightComponent={rightComponent} placeholder={computedPlaceholder} />
|
<Editor ref={ref} disabled={disabled} leftComponent={leftComponent} rightComponent={rightComp} placeholder={computedPlaceholder} />
|
||||||
{ children?.(ref, composerFunctions) }
|
{ children?.(ref, composerFunctions) }
|
||||||
</div>;
|
</div>;
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,10 @@ interface WysiwygComposerProps {
|
||||||
initialContent?: string;
|
initialContent?: string;
|
||||||
className?: string;
|
className?: string;
|
||||||
leftComponent?: ReactNode;
|
leftComponent?: ReactNode;
|
||||||
rightComponent?: ReactNode;
|
rightComponent?: (
|
||||||
|
composerFunctions: FormattingFunctions,
|
||||||
|
selectPreviousSelection: () => void
|
||||||
|
) => ReactNode;
|
||||||
children?: (
|
children?: (
|
||||||
ref: MutableRefObject<HTMLDivElement | null>,
|
ref: MutableRefObject<HTMLDivElement | null>,
|
||||||
wysiwyg: FormattingFunctions,
|
wysiwyg: FormattingFunctions,
|
||||||
|
@ -69,10 +72,12 @@ export const WysiwygComposer = memo(function WysiwygComposer(
|
||||||
const { isFocused, onFocus } = useIsFocused();
|
const { isFocused, onFocus } = useIsFocused();
|
||||||
const computedPlaceholder = !content && placeholder || undefined;
|
const computedPlaceholder = !content && placeholder || undefined;
|
||||||
|
|
||||||
|
const rightComp = (selectPreviousSelection: () => void) => rightComponent(wysiwyg, selectPreviousSelection);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div data-testid="WysiwygComposer" className={classNames(className, { [`${className}-focused`]: isFocused })} onFocus={onFocus} onBlur={onFocus}>
|
<div data-testid="WysiwygComposer" className={classNames(className, { [`${className}-focused`]: isFocused })} onFocus={onFocus} onBlur={onFocus}>
|
||||||
<FormattingButtons composer={wysiwyg} actionStates={actionStates} />
|
<FormattingButtons composer={wysiwyg} actionStates={actionStates} />
|
||||||
<Editor ref={ref} disabled={!isReady} leftComponent={leftComponent} rightComponent={rightComponent} placeholder={computedPlaceholder} />
|
<Editor ref={ref} disabled={!isReady} leftComponent={leftComponent} rightComponent={rightComp} placeholder={computedPlaceholder} />
|
||||||
{ children?.(ref, wysiwyg) }
|
{ children?.(ref, wysiwyg) }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -23,5 +23,8 @@ export function useComposerFunctions(ref: RefObject<HTMLDivElement>) {
|
||||||
ref.current.innerHTML = '';
|
ref.current.innerHTML = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
insertText: (text: string) => {
|
||||||
|
// TODO
|
||||||
|
},
|
||||||
}), [ref]);
|
}), [ref]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
/*
|
||||||
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { RefObject, useCallback, useEffect, useRef } from "react";
|
||||||
|
|
||||||
|
import useFocus from "../../../../../hooks/useFocus";
|
||||||
|
|
||||||
|
export function useSelection(ref: RefObject<HTMLDivElement>) {
|
||||||
|
const selectionRef = useRef({
|
||||||
|
anchorOffset: 0,
|
||||||
|
focusOffset: 0,
|
||||||
|
});
|
||||||
|
const [isFocused, focusProps] = useFocus();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
function onSelectionChange() {
|
||||||
|
const selection = document.getSelection();
|
||||||
|
console.log('selection', selection);
|
||||||
|
selectionRef.current = {
|
||||||
|
anchorOffset: selection.anchorOffset,
|
||||||
|
focusOffset: selection.focusOffset,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isFocused) {
|
||||||
|
document.addEventListener('selectionchange', onSelectionChange);
|
||||||
|
}
|
||||||
|
|
||||||
|
return () => document.removeEventListener('selectionchange', onSelectionChange);
|
||||||
|
}, [isFocused]);
|
||||||
|
|
||||||
|
const selectPreviousSelection = useCallback(() => {
|
||||||
|
const range = new Range();
|
||||||
|
range.setStart(ref.current.firstChild, selectionRef.current.anchorOffset);
|
||||||
|
range.setEnd(ref.current.firstChild, selectionRef.current.focusOffset);
|
||||||
|
document.getSelection().removeAllRanges();
|
||||||
|
document.getSelection().addRange(range);
|
||||||
|
}, [selectionRef, ref]);
|
||||||
|
|
||||||
|
return { ...focusProps, selectPreviousSelection };
|
||||||
|
}
|
|
@ -16,4 +16,5 @@ limitations under the License.
|
||||||
|
|
||||||
export type ComposerFunctions = {
|
export type ComposerFunctions = {
|
||||||
clear: () => void;
|
clear: () => void;
|
||||||
|
insertText: (text: string) => void;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue