Skip to content

Commit 95283d2

Browse files
authored
Conform more of the codebase to strict types (matrix-org#11162)
1 parent 9c7d935 commit 95283d2

9 files changed

+36
-31
lines changed

src/AddThreepid.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export type Binding = {
5858
* https://gist.github.com/jryans/839a09bf0c5a70e2f36ed990d50ed928
5959
*/
6060
export default class AddThreepid {
61-
private sessionId: string;
61+
private sessionId?: string;
6262
private submitUrl?: string;
6363
private bind = false;
6464
private readonly clientSecret: string;
@@ -202,7 +202,7 @@ export default class AddThreepid {
202202
throw new UserFriendlyError("No identity access token found");
203203
}
204204
await this.matrixClient.bindThreePid({
205-
sid: this.sessionId,
205+
sid: this.sessionId!,
206206
client_secret: this.clientSecret,
207207
id_server: getIdServerDomain(this.matrixClient),
208208
id_access_token: identityAccessToken,
@@ -278,7 +278,7 @@ export default class AddThreepid {
278278
*/
279279
private makeAddThreepidOnlyRequest = (auth?: IAddThreePidOnlyBody["auth"] | null): Promise<{}> => {
280280
return this.matrixClient.addThreePidOnly({
281-
sid: this.sessionId,
281+
sid: this.sessionId!,
282282
client_secret: this.clientSecret,
283283
auth: auth ?? undefined,
284284
});
@@ -302,13 +302,13 @@ export default class AddThreepid {
302302
if (this.submitUrl) {
303303
result = await this.matrixClient.submitMsisdnTokenOtherUrl(
304304
this.submitUrl,
305-
this.sessionId,
305+
this.sessionId!,
306306
this.clientSecret,
307307
msisdnToken,
308308
);
309309
} else if (this.bind || !supportsSeparateAddAndBind) {
310310
result = await this.matrixClient.submitMsisdnToken(
311-
this.sessionId,
311+
this.sessionId!,
312312
this.clientSecret,
313313
msisdnToken,
314314
await authClient.getAccessToken(),
@@ -323,7 +323,7 @@ export default class AddThreepid {
323323
if (supportsSeparateAddAndBind) {
324324
if (this.bind) {
325325
await this.matrixClient.bindThreePid({
326-
sid: this.sessionId,
326+
sid: this.sessionId!,
327327
client_secret: this.clientSecret,
328328
id_server: getIdServerDomain(this.matrixClient),
329329
id_access_token: await authClient.getAccessToken(),

src/Modal.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ const DIALOG_CONTAINER_ID = "mx_Dialog_Container";
2929
const STATIC_DIALOG_CONTAINER_ID = "mx_Dialog_StaticContainer";
3030

3131
// Type which accepts a React Component which looks like a Modal (accepts an onFinished prop)
32-
export type ComponentType = React.ComponentType<{
33-
onFinished(...args: any): void;
34-
}>;
32+
export type ComponentType =
33+
| React.ComponentType<{
34+
onFinished(...args: any): void;
35+
}>
36+
| React.ComponentType<any>;
3537

3638
// Generic type which returns the props of the Modal component with the onFinished being optional.
3739
export type ComponentProps<C extends ComponentType> = Defaultize<

src/NodeAnimator.tsx

+7-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
import React, { Key, ReactElement, ReactInstance } from "react";
17+
import React, { Key, ReactElement, ReactFragment, ReactInstance, ReactPortal } from "react";
1818
import ReactDom from "react-dom";
1919

2020
interface IChildProps {
@@ -33,6 +33,10 @@ interface IProps {
3333
startStyles: React.CSSProperties[];
3434
}
3535

36+
function isReactElement(c: ReactElement | ReactFragment | ReactPortal): c is ReactElement {
37+
return typeof c === "object" && "type" in c;
38+
}
39+
3640
/**
3741
* The NodeAnimator contains components and animates transitions.
3842
* It will only pick up direct changes to properties ('left', currently), and so
@@ -72,7 +76,8 @@ export default class NodeAnimator extends React.Component<IProps> {
7276
private updateChildren(newChildren: React.ReactNode): void {
7377
const oldChildren = this.children || {};
7478
this.children = {};
75-
React.Children.toArray(newChildren).forEach((c: ReactElement) => {
79+
React.Children.toArray(newChildren).forEach((c) => {
80+
if (!isReactElement(c)) return;
7681
if (oldChildren[c.key!]) {
7782
const old = oldChildren[c.key!];
7883
const oldNode = ReactDom.findDOMNode(this.nodes[old.key!]);

src/SecurityManager.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
import { ICryptoCallbacks } from "matrix-js-sdk/src/matrix";
17+
import { DeviceVerificationStatus, ICryptoCallbacks } from "matrix-js-sdk/src/matrix";
1818
import { ISecretStorageKeyInfo } from "matrix-js-sdk/src/crypto/api";
1919
import { MatrixClient } from "matrix-js-sdk/src/client";
2020
import { deriveKey } from "matrix-js-sdk/src/crypto/key_passphrase";
2121
import { decodeRecoveryKey } from "matrix-js-sdk/src/crypto/recoverykey";
2222
import { encodeBase64 } from "matrix-js-sdk/src/crypto/olmlib";
23-
import { DeviceTrustLevel } from "matrix-js-sdk/src/crypto/CrossSigning";
2423
import { logger } from "matrix-js-sdk/src/logger";
2524

2625
import type CreateSecretStorageDialog from "./async-components/views/dialogs/security/CreateSecretStorageDialog";
@@ -241,7 +240,7 @@ async function onSecretRequested(
241240
deviceId: string,
242241
requestId: string,
243242
name: string,
244-
deviceTrust: DeviceTrustLevel,
243+
deviceTrust: DeviceVerificationStatus,
245244
): Promise<string | undefined> {
246245
logger.log("onSecretRequested", userId, deviceId, requestId, name, deviceTrust);
247246
const client = MatrixClientPeg.safeGet();

src/SlashCommands.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ const singleMxcUpload = async (cli: MatrixClient): Promise<string | null> => {
8181
return new Promise((resolve) => {
8282
const fileSelector = document.createElement("input");
8383
fileSelector.setAttribute("type", "file");
84-
fileSelector.onchange = (ev: HTMLInputEvent) => {
85-
const file = ev.target.files?.[0];
84+
fileSelector.onchange = (ev: Event) => {
85+
const file = (ev as HTMLInputEvent).target.files?.[0];
8686
if (!file) return;
8787

8888
Modal.createDialog(UploadConfirmDialog, {

src/autocomplete/EmojiProvider.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ interface ISortedEmoji {
4747

4848
const SORTED_EMOJI: ISortedEmoji[] = EMOJI.sort((a, b) => {
4949
if (a.group === b.group) {
50-
return a.order - b.order;
50+
return a.order! - b.order!;
5151
}
52-
return a.group - b.group;
52+
return a.group! - b.group!;
5353
}).map((emoji, index) => ({
5454
emoji,
5555
// Include the index so that we can preserve the original order

src/emoji.ts

+5-11
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,11 @@ limitations under the License.
1616

1717
import EMOJIBASE from "emojibase-data/en/compact.json";
1818
import SHORTCODES from "emojibase-data/en/shortcodes/iamcal.json";
19+
import { CompactEmoji } from "emojibase";
1920

20-
export interface IEmoji {
21-
label: string;
22-
group: number;
23-
hexcode: string;
24-
order: number;
21+
export interface IEmoji extends Omit<CompactEmoji, "shortcodes"> {
22+
// We generate a shortcode based on the label if none exist in the dataset
2523
shortcodes: string[];
26-
tags?: string[];
27-
unicode: string;
28-
skins?: Omit<IEmoji, "shortcodes" | "tags">[]; // Currently unused
29-
emoticon?: string | string[];
3024
}
3125

3226
// The unicode is stored without the variant selector
@@ -74,7 +68,7 @@ export const DATA_BY_CATEGORY: Record<string, IEmoji[]> = {
7468
};
7569

7670
// Store various mappings from unicode/emoticon/shortcode to the Emoji objects
77-
export const EMOJI: IEmoji[] = EMOJIBASE.map((emojiData: Omit<IEmoji, "shortcodes">) => {
71+
export const EMOJI: IEmoji[] = EMOJIBASE.map((emojiData) => {
7872
// If there's ever a gap in shortcode coverage, we fudge it by
7973
// filling it in with the emoji's CLDR annotation
8074
const shortcodeData = SHORTCODES[emojiData.hexcode] ?? [emojiData.label.toLowerCase().replace(/\W+/g, "_")];
@@ -88,7 +82,7 @@ export const EMOJI: IEmoji[] = EMOJIBASE.map((emojiData: Omit<IEmoji, "shortcode
8882
// We manually include regional indicators in the symbols group, since
8983
// Emojibase intentionally leaves them uncategorized
9084
const categoryId =
91-
EMOJIBASE_GROUP_ID_TO_CATEGORY[emoji.group] ?? (isRegionalIndicator(emoji.unicode) ? "symbols" : null);
85+
EMOJIBASE_GROUP_ID_TO_CATEGORY[emoji.group!] ?? (isRegionalIndicator(emoji.unicode) ? "symbols" : null);
9286

9387
if (DATA_BY_CATEGORY.hasOwnProperty(categoryId)) {
9488
DATA_BY_CATEGORY[categoryId].push(emoji);

src/mjolnir/Mjolnir.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,12 @@ export class Mjolnir {
144144
this.updateLists(this._roomIds);
145145
};
146146

147-
private onListsChanged(settingName: string, roomId: string, atLevel: SettingLevel, newValue: string[]): void {
147+
private onListsChanged(
148+
settingName: string,
149+
roomId: string | null,
150+
atLevel: SettingLevel,
151+
newValue: string[],
152+
): void {
148153
// We know that ban lists are only recorded at one level so we don't need to re-eval them
149154
this.updateLists(newValue);
150155
}

src/stores/right-panel/RightPanelStore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default class RightPanelStore extends ReadyWatchingStore {
4747
private static internalInstance: RightPanelStore;
4848

4949
private global?: IRightPanelForRoom;
50-
private byRoom: { [roomId: string]: IRightPanelForRoom };
50+
private byRoom: { [roomId: string]: IRightPanelForRoom } = {};
5151
private viewedRoomId: Optional<string>;
5252

5353
private constructor() {

0 commit comments

Comments
 (0)