* Conform more of the codebase to `strictNullChecks` * Iterate * Conform more of the codebase to `strictNullChecks` * Iterate * Iterate * Iterate * Iterate
87 lines
3.2 KiB
TypeScript
87 lines
3.2 KiB
TypeScript
/*
|
|
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 React, { ForwardedRef, forwardRef, MutableRefObject, useRef } from "react";
|
|
import classNames from "classnames";
|
|
|
|
import EditorStateTransfer from "../../../../utils/EditorStateTransfer";
|
|
import { WysiwygComposer } from "./components/WysiwygComposer";
|
|
import { EditionButtons } from "./components/EditionButtons";
|
|
import { useWysiwygEditActionHandler } from "./hooks/useWysiwygEditActionHandler";
|
|
import { useEditing } from "./hooks/useEditing";
|
|
import { useInitialContent } from "./hooks/useInitialContent";
|
|
import { ComposerContext, getDefaultContextValue } from "./ComposerContext";
|
|
import { ComposerFunctions } from "./types";
|
|
|
|
interface ContentProps {
|
|
disabled?: boolean;
|
|
composerFunctions: ComposerFunctions;
|
|
}
|
|
|
|
const Content = forwardRef<HTMLElement, ContentProps>(function Content(
|
|
{ disabled = false, composerFunctions }: ContentProps,
|
|
forwardRef: ForwardedRef<HTMLElement>,
|
|
) {
|
|
useWysiwygEditActionHandler(disabled, forwardRef as MutableRefObject<HTMLElement>, composerFunctions);
|
|
return null;
|
|
});
|
|
|
|
interface EditWysiwygComposerProps {
|
|
disabled?: boolean;
|
|
onChange?: (content: string) => void;
|
|
editorStateTransfer: EditorStateTransfer;
|
|
className?: string;
|
|
}
|
|
|
|
// Default needed for React.lazy
|
|
export default function EditWysiwygComposer({
|
|
editorStateTransfer,
|
|
className,
|
|
...props
|
|
}: EditWysiwygComposerProps): JSX.Element {
|
|
const defaultContextValue = useRef(getDefaultContextValue({ editorStateTransfer }));
|
|
const initialContent = useInitialContent(editorStateTransfer);
|
|
const isReady = !editorStateTransfer || initialContent !== undefined;
|
|
|
|
const { editMessage, endEditing, onChange, isSaveDisabled } = useEditing(editorStateTransfer, initialContent);
|
|
|
|
if (!isReady) {
|
|
return <></>;
|
|
}
|
|
|
|
return (
|
|
<ComposerContext.Provider value={defaultContextValue.current}>
|
|
<WysiwygComposer
|
|
className={classNames("mx_EditWysiwygComposer", className)}
|
|
initialContent={initialContent}
|
|
onChange={onChange}
|
|
onSend={editMessage}
|
|
{...props}
|
|
>
|
|
{(ref, composerFunctions) => (
|
|
<>
|
|
<Content disabled={props.disabled} ref={ref} composerFunctions={composerFunctions} />
|
|
<EditionButtons
|
|
onCancelClick={endEditing}
|
|
onSaveClick={editMessage}
|
|
isSaveDisabled={isSaveDisabled}
|
|
/>
|
|
</>
|
|
)}
|
|
</WysiwygComposer>
|
|
</ComposerContext.Provider>
|
|
);
|
|
}
|