1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-07 21:23:00 +03:00

Fix types

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2024-08-01 11:12:44 +01:00
parent 2938e5733e
commit a1c6ba3782
8 changed files with 51 additions and 57 deletions

View File

@@ -15,7 +15,16 @@ limitations under the License.
*/ */
import React, { ReactNode } from "react"; import React, { ReactNode } from "react";
import { EventStatus, MatrixEvent, Room, MatrixError, SyncState, SyncStateData } from "matrix-js-sdk/src/matrix"; import {
ClientEvent,
EventStatus,
MatrixError,
MatrixEvent,
Room,
RoomEvent,
SyncState,
SyncStateData,
} from "matrix-js-sdk/src/matrix";
import { Icon as WarningIcon } from "../../../res/img/feather-customised/warning-triangle.svg"; import { Icon as WarningIcon } from "../../../res/img/feather-customised/warning-triangle.svg";
import { _t, _td } from "../../languageHandler"; import { _t, _td } from "../../languageHandler";
@@ -79,8 +88,8 @@ interface IProps {
} }
interface IState { interface IState {
syncState: SyncState; syncState: SyncState | null;
syncStateData: SyncStateData; syncStateData: SyncStateData | null;
unsentMessages: MatrixEvent[]; unsentMessages: MatrixEvent[];
isResending: boolean; isResending: boolean;
} }
@@ -103,8 +112,8 @@ export default class RoomStatusBar extends React.PureComponent<IProps, IState> {
public componentDidMount(): void { public componentDidMount(): void {
const client = this.context; const client = this.context;
client.on("sync", this.onSyncStateChange); client.on(ClientEvent.Sync, this.onSyncStateChange);
client.on("Room.localEchoUpdated", this.onRoomLocalEchoUpdated); client.on(RoomEvent.LocalEchoUpdated, this.onRoomLocalEchoUpdated);
this.checkSize(); this.checkSize();
} }
@@ -118,19 +127,19 @@ export default class RoomStatusBar extends React.PureComponent<IProps, IState> {
// we may have entirely lost our client as we're logging out before clicking login on the guest bar... // we may have entirely lost our client as we're logging out before clicking login on the guest bar...
const client = this.context; const client = this.context;
if (client) { if (client) {
client.removeListener("sync", this.onSyncStateChange); client.removeListener(ClientEvent.Sync, this.onSyncStateChange);
client.removeListener("Room.localEchoUpdated", this.onRoomLocalEchoUpdated); client.removeListener(RoomEvent.LocalEchoUpdated, this.onRoomLocalEchoUpdated);
} }
} }
private onSyncStateChange = (state: SyncState, prevState: SyncState, data: SyncStateData): void => { private onSyncStateChange = (state: SyncState, prevState: SyncState | null, data?: SyncStateData): void => {
if (state === "SYNCING" && prevState === "SYNCING") { if (state === "SYNCING" && prevState === "SYNCING") {
return; return;
} }
if (this.unmounted) return; if (this.unmounted) return;
this.setState({ this.setState({
syncState: state, syncState: state,
syncStateData: data, syncStateData: data ?? null,
}); });
}; };

View File

@@ -20,7 +20,7 @@ import { Blurhash } from "react-blurhash";
import classNames from "classnames"; import classNames from "classnames";
import { CSSTransition, SwitchTransition } from "react-transition-group"; import { CSSTransition, SwitchTransition } from "react-transition-group";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { ClientEvent, ClientEventHandlerMap } from "matrix-js-sdk/src/matrix"; import { ClientEvent } from "matrix-js-sdk/src/matrix";
import { ImageContent } from "matrix-js-sdk/src/types"; import { ImageContent } from "matrix-js-sdk/src/types";
import { Tooltip } from "@vector-im/compound-web"; import { Tooltip } from "@vector-im/compound-web";
@@ -71,14 +71,8 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
private image = createRef<HTMLImageElement>(); private image = createRef<HTMLImageElement>();
private timeout?: number; private timeout?: number;
private sizeWatcher?: string; private sizeWatcher?: string;
private reconnectedListener: ClientEventHandlerMap[ClientEvent.Sync];
public constructor(props: IBodyProps, context: React.ContextType<typeof RoomContext>) { public state: IState = {
super(props, context);
this.reconnectedListener = createReconnectedListener(this.clearError);
this.state = {
contentUrl: null, contentUrl: null,
thumbUrl: null, thumbUrl: null,
imgError: false, imgError: false,
@@ -87,7 +81,6 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
showImage: SettingsStore.getValue("showImages"), showImage: SettingsStore.getValue("showImages"),
placeholder: Placeholder.NoImage, placeholder: Placeholder.NoImage,
}; };
}
protected showImage(): void { protected showImage(): void {
localStorage.setItem("mx_ShowImage_" + this.props.mxEvent.getId(), "true"); localStorage.setItem("mx_ShowImage_" + this.props.mxEvent.getId(), "true");
@@ -160,10 +153,10 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
imgElement.src = url; imgElement.src = url;
}; };
private clearError = (): void => { private reconnectedListener = createReconnectedListener((): void => {
MatrixClientPeg.get()?.off(ClientEvent.Sync, this.reconnectedListener); MatrixClientPeg.get()?.off(ClientEvent.Sync, this.reconnectedListener);
this.setState({ imgError: false }); this.setState({ imgError: false });
}; });
private onImageError = (): void => { private onImageError = (): void => {
// If the thumbnail failed to load then try again using the contentUrl // If the thumbnail failed to load then try again using the contentUrl

View File

@@ -47,10 +47,7 @@ export default class MVideoBody extends React.PureComponent<IBodyProps, IState>
private videoRef = React.createRef<HTMLVideoElement>(); private videoRef = React.createRef<HTMLVideoElement>();
private sizeWatcher?: string; private sizeWatcher?: string;
public constructor(props: IBodyProps, context: React.ContextType<typeof RoomContext>) { public state = {
super(props, context);
this.state = {
fetchingData: false, fetchingData: false,
decryptedUrl: null, decryptedUrl: null,
decryptedThumbnailUrl: null, decryptedThumbnailUrl: null,
@@ -59,7 +56,6 @@ export default class MVideoBody extends React.PureComponent<IBodyProps, IState>
posterLoading: false, posterLoading: false,
blurhashUrl: null, blurhashUrl: null,
}; };
}
private getContentUrl(): string | undefined { private getContentUrl(): string | undefined {
const content = this.props.mxEvent.getContent<MediaEventContent>(); const content = this.props.mxEvent.getContent<MediaEventContent>();

View File

@@ -68,14 +68,10 @@ export default class TextualBody extends React.Component<IBodyProps, IState> {
public static contextType = RoomContext; public static contextType = RoomContext;
public declare context: React.ContextType<typeof RoomContext>; public declare context: React.ContextType<typeof RoomContext>;
public constructor(props: IBodyProps, context: React.ContextType<typeof RoomContext>) { public state = {
super(props, context);
this.state = {
links: [], links: [],
widgetHidden: false, widgetHidden: false,
}; };
}
public componentDidMount(): void { public componentDidMount(): void {
if (!this.props.editState) { if (!this.props.editState) {

View File

@@ -535,7 +535,7 @@ function createRightClickMenu(mxEvent: MatrixEvent, context?: Partial<IRoomState
function createMenuWithContent( function createMenuWithContent(
eventContent: object, eventContent: object,
props?: Partial<React.ComponentProps<typeof MessageContextMenu>>, props?: Partial<MessageContextMenu["props"]>,
context?: Partial<IRoomState>, context?: Partial<IRoomState>,
): RenderResult { ): RenderResult {
// XXX: We probably shouldn't be assuming all events are going to be message events, but considering this // XXX: We probably shouldn't be assuming all events are going to be message events, but considering this
@@ -552,7 +552,7 @@ function makeDefaultRoom(): Room {
function createMenu( function createMenu(
mxEvent: MatrixEvent, mxEvent: MatrixEvent,
props?: Partial<React.ComponentProps<typeof MessageContextMenu>>, props?: Partial<MessageContextMenu["props"]>,
context: Partial<IRoomState> = {}, context: Partial<IRoomState> = {},
beacons: Map<BeaconIdentifier, Beacon> = new Map(), beacons: Map<BeaconIdentifier, Beacon> = new Map(),
room: Room = makeDefaultRoom(), room: Room = makeDefaultRoom(),

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import React, { ComponentProps } from "react"; import React from "react";
import { fireEvent, render, waitFor } from "@testing-library/react"; import { fireEvent, render, waitFor } from "@testing-library/react";
import { LocationAssetType, ClientEvent, RoomMember, SyncState } from "matrix-js-sdk/src/matrix"; import { LocationAssetType, ClientEvent, RoomMember, SyncState } from "matrix-js-sdk/src/matrix";
import * as maplibregl from "maplibre-gl"; import * as maplibregl from "maplibre-gl";
@@ -42,7 +42,7 @@ describe("MLocationBody", () => {
isGuest: jest.fn().mockReturnValue(false), isGuest: jest.fn().mockReturnValue(false),
}); });
const defaultEvent = makeLocationEvent("geo:51.5076,-0.1276", LocationAssetType.Pin); const defaultEvent = makeLocationEvent("geo:51.5076,-0.1276", LocationAssetType.Pin);
const defaultProps: ComponentProps<typeof MLocationBody> = { const defaultProps: MLocationBody["props"] = {
mxEvent: defaultEvent, mxEvent: defaultEvent,
highlights: [], highlights: [],
highlightLink: "", highlightLink: "",

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import React, { ComponentProps } from "react"; import React from "react";
import { EventType, getHttpUriForMxc, IContent, MatrixEvent } from "matrix-js-sdk/src/matrix"; import { EventType, getHttpUriForMxc, IContent, MatrixEvent } from "matrix-js-sdk/src/matrix";
import { render, RenderResult } from "@testing-library/react"; import { render, RenderResult } from "@testing-library/react";
import fetchMock from "fetch-mock-jest"; import fetchMock from "fetch-mock-jest";
@@ -117,7 +117,7 @@ function makeMVideoBody(w: number, h: number): RenderResult {
content, content,
}); });
const defaultProps: ComponentProps<typeof MVideoBody> = { const defaultProps: MVideoBody["props"] = {
mxEvent: event, mxEvent: event,
highlights: [], highlights: [],
highlightLink: "", highlightLink: "",

View File

@@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import React, { ComponentProps } from "react"; import React from "react";
import { cleanup, queryByRole, render, screen, within } from "@testing-library/react"; import { cleanup, queryByRole, render, screen, within } from "@testing-library/react";
import userEvent from "@testing-library/user-event"; import userEvent from "@testing-library/user-event";
import { mocked } from "jest-mock"; import { mocked } from "jest-mock";
@@ -53,7 +53,7 @@ describe("RoomList", () => {
const client = MatrixClientPeg.safeGet(); const client = MatrixClientPeg.safeGet();
const store = SpaceStore.instance; const store = SpaceStore.instance;
function getComponent(props: Partial<ComponentProps<typeof RoomList>> = {}): JSX.Element { function getComponent(props: Partial<RoomList["props"]> = {}): JSX.Element {
return ( return (
<RoomList <RoomList
onKeyDown={jest.fn()} onKeyDown={jest.fn()}