Apply strictNullChecks to src/components/views/rooms/wysiwyg_composer/* (#10653)

* update components folder

* update useInitialContent
pull/28788/head^2
alunturner 2023-05-05 10:11:56 +01:00 committed by GitHub
parent fbf3de52cd
commit c824c4a858
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 7 deletions

View File

@ -14,14 +14,14 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import React, { MouseEventHandler } from "react"; import React from "react";
import { _t } from "../../../../../languageHandler"; import { _t } from "../../../../../languageHandler";
import AccessibleButton from "../../../elements/AccessibleButton"; import AccessibleButton, { ButtonEvent } from "../../../elements/AccessibleButton";
interface EditionButtonsProps { interface EditionButtonsProps {
onCancelClick: MouseEventHandler<HTMLButtonElement>; onCancelClick: (e: ButtonEvent) => void;
onSaveClick: MouseEventHandler<HTMLButtonElement>; onSaveClick: (e: ButtonEvent) => void;
isSaveDisabled?: boolean; isSaveDisabled?: boolean;
} }

View File

@ -40,11 +40,14 @@ export function parseEditorStateTransfer(
): string { ): string {
const partCreator = new CommandPartCreator(room, mxClient); const partCreator = new CommandPartCreator(room, mxClient);
let parts: Part[]; let parts: (Part | undefined)[] = [];
if (editorStateTransfer.hasEditorState()) { if (editorStateTransfer.hasEditorState()) {
// if restoring state from a previous editor, // if restoring state from a previous editor,
// restore serialized parts from the state // restore serialized parts from the state
parts = editorStateTransfer.getSerializedParts().map((p) => partCreator.deserializePart(p)); const serializedParts = editorStateTransfer.getSerializedParts();
if (serializedParts !== null) {
parts = serializedParts.map((p) => partCreator.deserializePart(p));
}
} else { } else {
// otherwise, either restore serialized parts from localStorage or parse the body of the event // otherwise, either restore serialized parts from localStorage or parse the body of the event
// TODO local storage // TODO local storage
@ -59,7 +62,7 @@ export function parseEditorStateTransfer(
}); });
} }
return parts.reduce((content, part) => content + part.text, ""); return parts.reduce((content, part) => content + part?.text, "");
// Todo local storage // Todo local storage
// this.saveStoredEditorState(); // this.saveStoredEditorState();
} }