mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
Apply strictNullChecks to src/components/views/rooms/wysiwyg_composer/* (#10653)
* update components folder * update useInitialContent
This commit is contained in:
parent
fbf3de52cd
commit
c824c4a858
@ -14,14 +14,14 @@ See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import React, { MouseEventHandler } from "react";
|
||||
import React from "react";
|
||||
|
||||
import { _t } from "../../../../../languageHandler";
|
||||
import AccessibleButton from "../../../elements/AccessibleButton";
|
||||
import AccessibleButton, { ButtonEvent } from "../../../elements/AccessibleButton";
|
||||
|
||||
interface EditionButtonsProps {
|
||||
onCancelClick: MouseEventHandler<HTMLButtonElement>;
|
||||
onSaveClick: MouseEventHandler<HTMLButtonElement>;
|
||||
onCancelClick: (e: ButtonEvent) => void;
|
||||
onSaveClick: (e: ButtonEvent) => void;
|
||||
isSaveDisabled?: boolean;
|
||||
}
|
||||
|
||||
|
@ -40,11 +40,14 @@ export function parseEditorStateTransfer(
|
||||
): string {
|
||||
const partCreator = new CommandPartCreator(room, mxClient);
|
||||
|
||||
let parts: Part[];
|
||||
let parts: (Part | undefined)[] = [];
|
||||
if (editorStateTransfer.hasEditorState()) {
|
||||
// if restoring state from a previous editor,
|
||||
// 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 {
|
||||
// otherwise, either restore serialized parts from localStorage or parse the body of the event
|
||||
// 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
|
||||
// this.saveStoredEditorState();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user