Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2024-12-06 00:15:08 +00:00
parent a9a3751f3e
commit c299d2a0d1
No known key found for this signature in database
GPG key ID: A2B008A5F49F5D0D
281 changed files with 458 additions and 377 deletions

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import { JSXElementConstructor } from "react"; import { JSXElementConstructor, type JSX } from "react";
export type { NonEmptyArray, XOR, Writeable } from "matrix-js-sdk/src/matrix"; export type { NonEmptyArray, XOR, Writeable } from "matrix-js-sdk/src/matrix";

View file

@ -11,8 +11,8 @@ import React, { PropsWithChildren } from "react";
declare module "react" { declare module "react" {
// Fix forwardRef types for Generic components - https://stackoverflow.com/a/58473012 // Fix forwardRef types for Generic components - https://stackoverflow.com/a/58473012
function forwardRef<T, P = {}>( function forwardRef<T, P = {}>(
render: (props: PropsWithChildren<P>, ref: React.ForwardedRef<T>) => React.ReactElement | null, render: (props: PropsWithChildren<P>, ref: React.ForwardedRef<T>) => React.ReactElement<any> | null,
): (props: P & React.RefAttributes<T>) => React.ReactElement | null; ): (props: P & React.RefAttributes<T>) => React.ReactElement<any> | null;
// Fix lazy types - https://stackoverflow.com/a/71017028 // Fix lazy types - https://stackoverflow.com/a/71017028
function lazy<T extends ComponentType<any>>(factory: () => Promise<{ default: T }>): T; function lazy<T extends ComponentType<any>>(factory: () => Promise<{ default: T }>): T;

View file

@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { LegacyRef, ReactNode } from "react"; import React, { Ref, ReactNode, type JSX } from "react";
import sanitizeHtml from "sanitize-html"; import sanitizeHtml from "sanitize-html";
import classNames from "classnames"; import classNames from "classnames";
import katex from "katex"; import katex from "katex";
@ -503,7 +503,7 @@ export function bodyToHtml(content: IContent, highlights: Optional<string[]>, op
export function topicToHtml( export function topicToHtml(
topic?: string, topic?: string,
htmlTopic?: string, htmlTopic?: string,
ref?: LegacyRef<HTMLSpanElement>, ref?: Ref<HTMLSpanElement>,
allowExtendedHtml = false, allowExtendedHtml = false,
): ReactNode { ): ReactNode {
if (!SettingsStore.getValue("feature_html_topic")) { if (!SettingsStore.getValue("feature_html_topic")) {

View file

@ -205,7 +205,7 @@ export const sanitizeHtmlParams: IExtendedSanitizeOptions = {
}; };
/* Wrapper around linkify-react merging in our default linkify options */ /* Wrapper around linkify-react merging in our default linkify options */
export function Linkify({ as, options, children }: React.ComponentProps<typeof _Linkify>): ReactElement { export function Linkify({ as, options, children }: React.ComponentProps<typeof _Linkify>): ReactElement<any> {
return ( return (
<_Linkify as={as} options={merge({}, linkifyMatrixOptions, options)}> <_Linkify as={as} options={merge({}, linkifyMatrixOptions, options)}>
{children} {children}

View file

@ -23,7 +23,7 @@ interface IProps {
innerRef?: MutableRefObject<any>; innerRef?: MutableRefObject<any>;
} }
function isReactElement(c: ReturnType<(typeof React.Children)["toArray"]>[number]): c is ReactElement { function isReactElement(c: ReturnType<(typeof React.Children)["toArray"]>[number]): c is ReactElement<any> {
return typeof c === "object" && "type" in c; return typeof c === "object" && "type" in c;
} }
@ -36,7 +36,7 @@ function isReactElement(c: ReturnType<(typeof React.Children)["toArray"]>[number
*/ */
export default class NodeAnimator extends React.Component<IProps> { export default class NodeAnimator extends React.Component<IProps> {
private nodes: Record<string, HTMLElement> = {}; private nodes: Record<string, HTMLElement> = {};
private children: { [key: string]: ReactElement } = {}; private children: { [key: string]: ReactElement<any> } = {};
public static defaultProps: Partial<IProps> = { public static defaultProps: Partial<IProps> = {
startStyles: [], startStyles: [],
}; };

View file

@ -354,7 +354,7 @@ export const RovingTabIndexProvider: React.FC<IProps> = ({
* nodeRef = inputRef when inputRef argument is provided. * nodeRef = inputRef when inputRef argument is provided.
*/ */
export const useRovingTabIndex = <T extends HTMLElement>( export const useRovingTabIndex = <T extends HTMLElement>(
inputRef?: RefObject<T>, inputRef?: RefObject<T | null>,
): [FocusHandler, boolean, RefCallback<T>, RefObject<T | null>] => { ): [FocusHandler, boolean, RefCallback<T>, RefObject<T | null>] => {
const context = useContext(RovingTabIndexContext); const context = useContext(RovingTabIndexContext);

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ComponentProps, forwardRef, Ref } from "react"; import React, { ComponentProps, forwardRef, Ref, type JSX } from "react";
import AccessibleButton from "../../components/views/elements/AccessibleButton"; import AccessibleButton from "../../components/views/elements/AccessibleButton";

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ComponentProps, forwardRef, Ref } from "react"; import React, { ComponentProps, forwardRef, Ref, type JSX } from "react";
import AccessibleButton from "../../components/views/elements/AccessibleButton"; import AccessibleButton from "../../components/views/elements/AccessibleButton";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ComponentProps } from "react"; import React, { ComponentProps, type JSX } from "react";
import AccessibleButton from "../../components/views/elements/AccessibleButton"; import AccessibleButton from "../../components/views/elements/AccessibleButton";
import { useRovingTabIndex } from "../RovingTabIndex"; import { useRovingTabIndex } from "../RovingTabIndex";

View file

@ -8,6 +8,6 @@ Please see LICENSE files in the repository root for full details.
import { RefObject } from "react"; import { RefObject } from "react";
export type Ref = RefObject<HTMLElement>; export type Ref = RefObject<HTMLElement | null>;
export type FocusHandler = () => void; export type FocusHandler = () => void;

View file

@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode } from "react"; import React, { ReactNode, type JSX } from "react";
import { Text, Heading, Button, Separator } from "@vector-im/compound-web"; import { Text, Heading, Button, Separator } from "@vector-im/compound-web";
import PopOutIcon from "@vector-im/compound-design-tokens/assets/web/icons/pop-out"; import PopOutIcon from "@vector-im/compound-design-tokens/assets/web/icons/pop-out";

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { MatrixClientPeg } from "../../../../MatrixClientPeg"; import { MatrixClientPeg } from "../../../../MatrixClientPeg";

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef } from "react"; import React, { createRef, type JSX } from "react";
import FileSaver from "file-saver"; import FileSaver from "file-saver";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { AuthDict, CrossSigningKeys, MatrixError, UIAFlow, UIAResponse } from "matrix-js-sdk/src/matrix"; import { AuthDict, CrossSigningKeys, MatrixError, UIAFlow, UIAResponse } from "matrix-js-sdk/src/matrix";

View file

@ -30,7 +30,7 @@ export interface ICompletion {
type?: "at-room" | "command" | "community" | "room" | "user"; type?: "at-room" | "command" | "community" | "room" | "user";
completion: string; completion: string;
completionId?: string; completionId?: string;
component: ReactElement; component: ReactElement<any>;
range: ISelectionRange; range: ISelectionRange;
command?: string; command?: string;
suffix?: string; suffix?: string;

View file

@ -8,7 +8,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import classNames from "classnames"; import classNames from "classnames";
import React, { HTMLAttributes, ReactHTML, ReactNode, WheelEvent } from "react"; import React, { HTMLAttributes, ReactHTML, ReactNode, WheelEvent, type JSX } from "react";
type DynamicHtmlElementProps<T extends keyof JSX.IntrinsicElements> = type DynamicHtmlElementProps<T extends keyof JSX.IntrinsicElements> =
JSX.IntrinsicElements[T] extends HTMLAttributes<{}> ? DynamicElementProps<T> : DynamicElementProps<"div">; JSX.IntrinsicElements[T] extends HTMLAttributes<{}> ? DynamicElementProps<T> : DynamicElementProps<"div">;
@ -30,7 +30,7 @@ export default class AutoHideScrollbar<T extends keyof JSX.IntrinsicElements> ex
element: "div" as keyof ReactHTML, element: "div" as keyof ReactHTML,
}; };
public readonly containerRef: React.RefObject<HTMLDivElement> = React.createRef(); public readonly containerRef: React.RefObject<HTMLDivElement | null> = React.createRef();
public componentDidMount(): void { public componentDidMount(): void {
if (this.containerRef.current && this.props.onScroll) { if (this.containerRef.current && this.props.onScroll) {

View file

@ -22,8 +22,8 @@ interface AutocompleteInputProps {
selection: ICompletion[]; selection: ICompletion[];
onSelectionChange: (selection: ICompletion[]) => void; onSelectionChange: (selection: ICompletion[]) => void;
maxSuggestions?: number; maxSuggestions?: number;
renderSuggestion?: (s: ICompletion) => ReactElement; renderSuggestion?: (s: ICompletion) => ReactElement<any>;
renderSelection?: (m: ICompletion) => ReactElement; renderSelection?: (m: ICompletion) => ReactElement<any>;
additionalFilter?: (suggestion: ICompletion) => boolean; additionalFilter?: (suggestion: ICompletion) => boolean;
} }
@ -163,11 +163,11 @@ export const AutocompleteInput: React.FC<AutocompleteInputProps> = ({
type SelectionItemProps = { type SelectionItemProps = {
item: ICompletion; item: ICompletion;
onClick: (completion: ICompletion) => void; onClick: (completion: ICompletion) => void;
render?: (completion: ICompletion) => ReactElement; render?: (completion: ICompletion) => ReactElement<any>;
}; };
const SelectionItem: React.FC<SelectionItemProps> = ({ item, onClick, render }) => { const SelectionItem: React.FC<SelectionItemProps> = ({ item, onClick, render }) => {
const withContainer = (children: ReactNode): ReactElement => ( const withContainer = (children: ReactNode): ReactElement<any> => (
<span <span
className="mx_AutocompleteInput_editor_selection" className="mx_AutocompleteInput_editor_selection"
data-testid={`autocomplete-selection-item-${item.completionId}`} data-testid={`autocomplete-selection-item-${item.completionId}`}
@ -194,7 +194,7 @@ type SuggestionItemProps = {
item: ICompletion; item: ICompletion;
selection: ICompletion[]; selection: ICompletion[];
onClick: (completion: ICompletion) => void; onClick: (completion: ICompletion) => void;
render?: (completion: ICompletion) => ReactElement; render?: (completion: ICompletion) => ReactElement<any>;
}; };
const SuggestionItem: React.FC<SuggestionItemProps> = ({ item, selection, onClick, render }) => { const SuggestionItem: React.FC<SuggestionItemProps> = ({ item, selection, onClick, render }) => {
@ -204,7 +204,7 @@ const SuggestionItem: React.FC<SuggestionItemProps> = ({ item, selection, onClic
"mx_AutocompleteInput_suggestion--selected": isSelected, "mx_AutocompleteInput_suggestion--selected": isSelected,
}); });
const withContainer = (children: ReactNode): ReactElement => ( const withContainer = (children: ReactNode): ReactElement<any> => (
<div <div
className={classes} className={classes}
// `onClick` cannot be used here as it would lead to focus loss and closing the suggestion list. // `onClick` cannot be used here as it would lead to focus loss and closing the suggestion list.

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { CSSProperties, RefObject, SyntheticEvent, useRef, useState } from "react"; import React, { CSSProperties, RefObject, SyntheticEvent, useRef, useState, type JSX } from "react";
import ReactDOM from "react-dom"; import ReactDOM from "react-dom";
import classNames from "classnames"; import classNames from "classnames";
import FocusLock from "react-focus-lock"; import FocusLock from "react-focus-lock";
@ -440,7 +440,7 @@ export default class ContextMenu extends React.PureComponent<React.PropsWithChil
); );
} }
public render(): React.ReactChild { public render(): React.ReactElement<any> | number | string {
if (this.props.mountAsChild) { if (this.props.mountAsChild) {
// Render as a child of the current parent // Render as a child of the current parent
return this.renderMenu(); return this.renderMenu();
@ -582,13 +582,13 @@ export const alwaysAboveRightOf = (
type ContextMenuTuple<T> = [ type ContextMenuTuple<T> = [
boolean, boolean,
RefObject<T>, RefObject<T | null>,
(ev?: SyntheticEvent) => void, (ev?: SyntheticEvent) => void,
(ev?: SyntheticEvent) => void, (ev?: SyntheticEvent) => void,
(val: boolean) => void, (val: boolean) => void,
]; ];
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-constraint // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-constraint
export const useContextMenu = <T extends any = HTMLElement>(inputRef?: RefObject<T>): ContextMenuTuple<T> => { export const useContextMenu = <T extends any = HTMLElement>(inputRef?: RefObject<T | null>): ContextMenuTuple<T> => {
let button = useRef<T>(null); let button = useRef<T>(null);
if (inputRef) { if (inputRef) {
// if we are given a ref, use it instead of ours // if we are given a ref, use it instead of ours

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import classNames from "classnames"; import classNames from "classnames";
import React, { FunctionComponent, Key, PropsWithChildren, ReactNode } from "react"; import React, { FunctionComponent, Key, PropsWithChildren, ReactNode, type JSX } from "react";
import { MenuItemRadio } from "../../accessibility/context_menu/MenuItemRadio"; import { MenuItemRadio } from "../../accessibility/context_menu/MenuItemRadio";
import { ButtonEvent } from "../views/elements/AccessibleButton"; import { ButtonEvent } from "../views/elements/AccessibleButton";

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import * as React from "react"; import * as React from "react";
import { useContext, useState } from "react"; import { useContext, useState, type JSX } from "react";
import AutoHideScrollbar from "./AutoHideScrollbar"; import AutoHideScrollbar from "./AutoHideScrollbar";
import { getHomePageUrl } from "../../utils/pages"; import { getHomePageUrl } from "../../utils/pages";

View file

@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef } from "react"; import React, { createRef, type JSX } from "react";
import AutoHideScrollbar, { IProps as AutoHideScrollbarProps } from "./AutoHideScrollbar"; import AutoHideScrollbar, { IProps as AutoHideScrollbarProps } from "./AutoHideScrollbar";
import UIStore, { UI_EVENTS } from "../../stores/UIStore"; import UIStore, { UI_EVENTS } from "../../stores/UIStore";

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import * as React from "react"; import * as React from "react";
import { createRef } from "react"; import { createRef, type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import dis from "../../dispatcher/dispatcher"; import dis from "../../dispatcher/dispatcher";

View file

@ -123,9 +123,9 @@ class LoggedInView extends React.Component<IProps, IState> {
public static displayName = "LoggedInView"; public static displayName = "LoggedInView";
protected readonly _matrixClient: MatrixClient; protected readonly _matrixClient: MatrixClient;
protected readonly _roomView: React.RefObject<RoomView>; protected readonly _roomView: React.RefObject<RoomView | null>;
protected readonly _resizeContainer: React.RefObject<HTMLDivElement>; protected readonly _resizeContainer: React.RefObject<HTMLDivElement | null>;
protected readonly resizeHandler: React.RefObject<HTMLDivElement>; protected readonly resizeHandler: React.RefObject<HTMLDivElement | null>;
protected layoutWatcherRef?: string; protected layoutWatcherRef?: string;
protected compactLayoutWatcherRef?: string; protected compactLayoutWatcherRef?: string;
protected backgroundImageWatcherRef?: string; protected backgroundImageWatcherRef?: string;

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode } from "react"; import React, { ReactNode, type JSX } from "react";
import { NumberSize, Resizable } from "re-resizable"; import { NumberSize, Resizable } from "re-resizable";
import { Direction } from "re-resizable/lib/resizer"; import { Direction } from "re-resizable/lib/resizer";
import { WebPanelResize } from "@matrix-org/analytics-events/types/typescript/WebPanelResize"; import { WebPanelResize } from "@matrix-org/analytics-events/types/typescript/WebPanelResize";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef, lazy } from "react"; import React, { createRef, lazy, type JSX } from "react";
import { import {
ClientEvent, ClientEvent,
createClient, createClient,

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef, ReactNode, TransitionEvent } from "react"; import React, { createRef, ReactNode, TransitionEvent, type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import { Room, MatrixClient, RoomStateEvent, EventStatus, MatrixEvent, EventType } from "matrix-js-sdk/src/matrix"; import { Room, MatrixClient, RoomStateEvent, EventStatus, MatrixEvent, EventType } from "matrix-js-sdk/src/matrix";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import NotificationsIcon from "@vector-im/compound-design-tokens/assets/web/icons/notifications"; import NotificationsIcon from "@vector-im/compound-design-tokens/assets/web/icons/notifications";

View file

@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef } from "react"; import React, { createRef, type JSX } from "react";
import UIStore, { UI_EVENTS } from "../../stores/UIStore"; import UIStore, { UI_EVENTS } from "../../stores/UIStore";
import { lerp } from "../../utils/AnimationUtils"; import { lerp } from "../../utils/AnimationUtils";

View file

@ -280,7 +280,7 @@ class PipContainerInner extends React.Component<IProps, IState> {
} }
export const PipContainer: React.FC = () => { export const PipContainer: React.FC = () => {
const movePersistedElement = useRef<() => void>(); const movePersistedElement = useRef<() => void>(undefined);
return <PipContainerInner movePersistedElement={movePersistedElement} />; return <PipContainerInner movePersistedElement={movePersistedElement} />;
}; };

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { forwardRef, useCallback, useContext, useEffect, useRef, useState } from "react"; import React, { forwardRef, useCallback, useContext, useEffect, useRef, useState, type JSX } from "react";
import { import {
ISearchResults, ISearchResults,
IThreadBundledRelationship, IThreadBundledRelationship,
@ -59,7 +59,7 @@ export const RoomSearchView = forwardRef<ScrollPanel, Props>(
const aborted = useRef(false); const aborted = useRef(false);
// A map from room ID to permalink creator // A map from room ID to permalink creator
const permalinkCreators = useRef(new Map<string, RoomPermalinkCreator>()).current; const permalinkCreators = useRef(new Map<string, RoomPermalinkCreator>()).current;
const innerRef = useRef<ScrollPanel | null>(); const innerRef = useRef<ScrollPanel | null>(undefined);
useEffect(() => { useEffect(() => {
return () => { return () => {

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode } from "react"; import React, { ReactNode, type JSX } from "react";
import { import {
ClientEvent, ClientEvent,
EventStatus, EventStatus,

View file

@ -15,10 +15,10 @@ interface RoomStatusBarUnsentMessagesProps {
title: ReactNode; title: ReactNode;
description?: string; description?: string;
notificationState: StaticNotificationState; notificationState: StaticNotificationState;
buttons: ReactElement; buttons: ReactElement<any>;
} }
export const RoomStatusBarUnsentMessages = (props: RoomStatusBarUnsentMessagesProps): ReactElement => { export const RoomStatusBarUnsentMessages = (props: RoomStatusBarUnsentMessagesProps): ReactElement<any> => {
return ( return (
<div className="mx_RoomStatusBar mx_RoomStatusBar_unsentMessages"> <div className="mx_RoomStatusBar mx_RoomStatusBar_unsentMessages">
<div role="alert"> <div role="alert">

View file

@ -251,7 +251,7 @@ interface LocalRoomViewProps {
localRoom: LocalRoom; localRoom: LocalRoom;
resizeNotifier: ResizeNotifier; resizeNotifier: ResizeNotifier;
permalinkCreator: RoomPermalinkCreator; permalinkCreator: RoomPermalinkCreator;
roomView: RefObject<HTMLElement>; roomView: RefObject<HTMLElement | null>;
onFileDrop: (dataTransfer: DataTransfer) => Promise<void>; onFileDrop: (dataTransfer: DataTransfer) => Promise<void>;
mainSplitContentType: MainSplitContentType; mainSplitContentType: MainSplitContentType;
} }
@ -262,7 +262,7 @@ interface LocalRoomViewProps {
* @param {LocalRoomViewProps} props Room view props * @param {LocalRoomViewProps} props Room view props
* @returns {ReactElement} * @returns {ReactElement}
*/ */
function LocalRoomView(props: LocalRoomViewProps): ReactElement { function LocalRoomView(props: LocalRoomViewProps): ReactElement<any> {
const context = useScopedRoomContext("room"); const context = useScopedRoomContext("room");
const room = context.room as LocalRoom; const room = context.room as LocalRoom;
const encryptionEvent = props.localRoom.currentState.getStateEvents(EventType.RoomEncryption)[0]; const encryptionEvent = props.localRoom.currentState.getStateEvents(EventType.RoomEncryption)[0];
@ -280,8 +280,8 @@ function LocalRoomView(props: LocalRoomViewProps): ReactElement {
}); });
}; };
let statusBar: ReactElement | null = null; let statusBar: ReactElement<any> | null = null;
let composer: ReactElement | null = null; let composer: ReactElement<any> | null = null;
if (room.isError) { if (room.isError) {
const buttons = ( const buttons = (
@ -340,7 +340,7 @@ interface ILocalRoomCreateLoaderProps {
* @param {ILocalRoomCreateLoaderProps} props Room view props * @param {ILocalRoomCreateLoaderProps} props Room view props
* @return {ReactElement} * @return {ReactElement}
*/ */
function LocalRoomCreateLoader(props: ILocalRoomCreateLoaderProps): ReactElement { function LocalRoomCreateLoader(props: ILocalRoomCreateLoaderProps): ReactElement<any> {
const text = _t("room|creating_room_text", { names: props.names }); const text = _t("room|creating_room_text", { names: props.names });
return ( return (
<div className="mx_RoomView mx_RoomView--local"> <div className="mx_RoomView mx_RoomView--local">

View file

@ -19,6 +19,7 @@ import React, {
useMemo, useMemo,
useRef, useRef,
useState, useState,
type JSX,
} from "react"; } from "react";
import { import {
Room, Room,
@ -134,7 +135,7 @@ const Tile: React.FC<ITileProps> = ({
} }
}; };
let button: ReactElement; let button: ReactElement<any>;
if (busy) { if (busy) {
button = ( button = (
<AccessibleButton <AccessibleButton
@ -169,7 +170,7 @@ const Tile: React.FC<ITileProps> = ({
); );
} }
let checkbox: ReactElement | undefined; let checkbox: ReactElement<any> | undefined;
if (onToggleClick) { if (onToggleClick) {
if (hasPermissions) { if (hasPermissions) {
checkbox = <StyledCheckbox checked={!!selected} onChange={onToggleClick} tabIndex={isActive ? 0 : -1} />; checkbox = <StyledCheckbox checked={!!selected} onChange={onToggleClick} tabIndex={isActive ? 0 : -1} />;
@ -187,7 +188,7 @@ const Tile: React.FC<ITileProps> = ({
} }
} }
let avatar: ReactElement; let avatar: ReactElement<any>;
if (joinedRoom) { if (joinedRoom) {
avatar = <RoomAvatar room={joinedRoom} size="20px" />; avatar = <RoomAvatar room={joinedRoom} size="20px" />;
} else { } else {
@ -233,12 +234,12 @@ const Tile: React.FC<ITileProps> = ({
); );
} }
let joinedSection: ReactElement | undefined; let joinedSection: ReactElement<any> | undefined;
if (joinedRoom) { if (joinedRoom) {
joinedSection = <div className="mx_SpaceHierarchy_roomTile_joined">{_t("common|joined")}</div>; joinedSection = <div className="mx_SpaceHierarchy_roomTile_joined">{_t("common|joined")}</div>;
} }
let suggestedSection: ReactElement | undefined; let suggestedSection: ReactElement<any> | undefined;
if (suggested && (!joinedRoom || hasPermissions)) { if (suggested && (!joinedRoom || hasPermissions)) {
suggestedSection = <InfoTooltip tooltip={_t("space|suggested_tooltip")}>{_t("space|suggested")}</InfoTooltip>; suggestedSection = <InfoTooltip tooltip={_t("space|suggested_tooltip")}>{_t("space|suggested")}</InfoTooltip>;
} }
@ -619,7 +620,7 @@ const useIntersectionObserver = (callback: () => void): ((element: HTMLDivElemen
} }
}; };
const observerRef = useRef<IntersectionObserver>(); const observerRef = useRef<IntersectionObserver>(undefined);
return (element: HTMLDivElement) => { return (element: HTMLDivElement) => {
if (observerRef.current) { if (observerRef.current) {
observerRef.current.disconnect(); observerRef.current.disconnect();

View file

@ -9,7 +9,7 @@ Please see LICENSE files in the repository root for full details.
import { EventType, RoomType, JoinRule, Preset, Room, RoomEvent } from "matrix-js-sdk/src/matrix"; import { EventType, RoomType, JoinRule, Preset, Room, RoomEvent } from "matrix-js-sdk/src/matrix";
import { KnownMembership } from "matrix-js-sdk/src/types"; import { KnownMembership } from "matrix-js-sdk/src/types";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import React, { useCallback, useContext, useRef, useState } from "react"; import React, { useCallback, useContext, useRef, useState, type JSX } from "react";
import MatrixClientContext from "../../contexts/MatrixClientContext"; import MatrixClientContext from "../../contexts/MatrixClientContext";
import createRoom, { IOpts } from "../../createRoom"; import createRoom, { IOpts } from "../../createRoom";

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import classNames from "classnames"; import classNames from "classnames";
import React, { DetailedHTMLProps, HTMLAttributes, ReactNode } from "react"; import React, { DetailedHTMLProps, HTMLAttributes, ReactNode, type JSX } from "react";
interface Props extends DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> { interface Props extends DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> {
className?: string; className?: string;

View file

@ -18,6 +18,8 @@ import { NonEmptyArray } from "../../@types/common";
import { RovingAccessibleButton, RovingTabIndexProvider } from "../../accessibility/RovingTabIndex"; import { RovingAccessibleButton, RovingTabIndexProvider } from "../../accessibility/RovingTabIndex";
import { useWindowWidth } from "../../hooks/useWindowWidth"; import { useWindowWidth } from "../../hooks/useWindowWidth";
import type { JSX } from "react";
/** /**
* Represents a tab for the TabbedView. * Represents a tab for the TabbedView.
*/ */

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef, KeyboardEvent } from "react"; import React, { createRef, KeyboardEvent, type JSX } from "react";
import { import {
Thread, Thread,
THREAD_RELATION_TYPE, THREAD_RELATION_TYPE,

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef, ReactNode } from "react"; import React, { createRef, ReactNode, type JSX } from "react";
import { Room } from "matrix-js-sdk/src/matrix"; import { Room } from "matrix-js-sdk/src/matrix";
import { MatrixClientPeg } from "../../MatrixClientPeg"; import { MatrixClientPeg } from "../../MatrixClientPeg";
@ -81,7 +81,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
private dispatcherRef?: string; private dispatcherRef?: string;
private themeWatcherRef?: string; private themeWatcherRef?: string;
private readonly dndWatcherRef?: string; private readonly dndWatcherRef?: string;
private buttonRef: React.RefObject<HTMLButtonElement> = createRef(); private buttonRef: React.RefObject<HTMLButtonElement | null> = createRef();
public constructor(props: IProps, context: React.ContextType<typeof SDKContext>) { public constructor(props: IProps, context: React.ContextType<typeof SDKContext>) {
super(props, context); super(props, context);

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { MatrixEvent } from "matrix-js-sdk/src/matrix"; import { MatrixEvent } from "matrix-js-sdk/src/matrix";
import SyntaxHighlight from "../views/elements/SyntaxHighlight"; import SyntaxHighlight from "../views/elements/SyntaxHighlight";

View file

@ -21,7 +21,7 @@ import SdkConfig from "../../SdkConfig";
import { useScopedRoomContext } from "../../contexts/ScopedRoomContext.tsx"; import { useScopedRoomContext } from "../../contexts/ScopedRoomContext.tsx";
interface Props { interface Props {
roomView: RefObject<HTMLElement>; roomView: RefObject<HTMLElement | null>;
resizeNotifier: ResizeNotifier; resizeNotifier: ResizeNotifier;
inviteEvent: MatrixEvent; inviteEvent: MatrixEvent;
} }

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";
import SdkConfig from "../../../SdkConfig"; import SdkConfig from "../../../SdkConfig";

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode } from "react"; import React, { ReactNode, type JSX } from "react";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { sleep } from "matrix-js-sdk/src/utils"; import { sleep } from "matrix-js-sdk/src/utils";
import { LockSolidIcon, CheckIcon } from "@vector-im/compound-design-tokens/assets/web/icons"; import { LockSolidIcon, CheckIcon } from "@vector-im/compound-design-tokens/assets/web/icons";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode } from "react"; import React, { ReactNode, type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { SSOFlow, SSOAction } from "matrix-js-sdk/src/matrix"; import { SSOFlow, SSOAction } from "matrix-js-sdk/src/matrix";

View file

@ -20,7 +20,7 @@ import {
SSOAction, SSOAction,
RegisterResponse, RegisterResponse,
} from "matrix-js-sdk/src/matrix"; } from "matrix-js-sdk/src/matrix";
import React, { Fragment, ReactNode } from "react"; import React, { Fragment, ReactNode, type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import SplashPage from "../SplashPage"; import SplashPage from "../SplashPage";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { KeyBackupInfo, VerificationRequest } from "matrix-js-sdk/src/crypto-api"; import { KeyBackupInfo, VerificationRequest } from "matrix-js-sdk/src/crypto-api";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { SecretStorageKeyDescription } from "matrix-js-sdk/src/secret-storage"; import { SecretStorageKeyDescription } from "matrix-js-sdk/src/secret-storage";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ChangeEvent, SyntheticEvent } from "react"; import React, { ChangeEvent, SyntheticEvent, type JSX } from "react";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { Optional } from "matrix-events-sdk"; import { Optional } from "matrix-events-sdk";
import { LoginFlow, MatrixError, SSOAction, SSOFlow } from "matrix-js-sdk/src/matrix"; import { LoginFlow, MatrixError, SSOAction, SSOFlow } from "matrix-js-sdk/src/matrix";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { Fragment, PropsWithChildren, ReactNode, useContext } from "react"; import React, { Fragment, PropsWithChildren, ReactNode, useContext, type JSX } from "react";
import { AuthHeaderContext } from "./AuthHeaderContext"; import { AuthHeaderContext } from "./AuthHeaderContext";

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import { isEqual } from "lodash"; import { isEqual } from "lodash";
import React, { ComponentProps, PropsWithChildren, Reducer, useReducer } from "react"; import React, { ComponentProps, PropsWithChildren, Reducer, useReducer, type JSX } from "react";
import { AuthHeaderContext } from "./AuthHeaderContext"; import { AuthHeaderContext } from "./AuthHeaderContext";
import { AuthHeaderModifier } from "./AuthHeaderModifier"; import { AuthHeaderModifier } from "./AuthHeaderModifier";

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import classNames from "classnames"; import classNames from "classnames";
import React, { useEffect, useRef } from "react"; import React, { useEffect, useRef, type JSX } from "react";
type FlexProps = { type FlexProps = {
/** /**
@ -71,7 +71,7 @@ export function Box({
children, children,
...props ...props
}: React.PropsWithChildren<FlexProps>): JSX.Element { }: React.PropsWithChildren<FlexProps>): JSX.Element {
const ref = useRef<HTMLElement>(); const ref = useRef<HTMLElement>(undefined);
useEffect(() => { useEffect(() => {
addOrRemoveProperty(ref, `--mx-box-flex`, flex); addOrRemoveProperty(ref, `--mx-box-flex`, flex);

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import classNames from "classnames"; import classNames from "classnames";
import React, { useEffect, useRef } from "react"; import React, { useEffect, useRef, type JSX } from "react";
type FlexProps = { type FlexProps = {
/** /**
@ -64,7 +64,7 @@ export function Flex({
children, children,
...props ...props
}: React.PropsWithChildren<FlexProps>): JSX.Element { }: React.PropsWithChildren<FlexProps>): JSX.Element {
const ref = useRef<HTMLElement>(); const ref = useRef<HTMLElement>(undefined);
useEffect(() => { useEffect(() => {
ref.current!.style.setProperty(`--mx-flex-display`, display); ref.current!.style.setProperty(`--mx-flex-display`, display);

View file

@ -31,8 +31,8 @@ interface IState {
} }
export default abstract class AudioPlayerBase<T extends IProps = IProps> extends React.PureComponent<T, IState> { export default abstract class AudioPlayerBase<T extends IProps = IProps> extends React.PureComponent<T, IState> {
protected seekRef: RefObject<SeekBar> = createRef(); protected seekRef: RefObject<SeekBar | null> = createRef();
protected playPauseRef: RefObject<PlayPauseButton> = createRef(); protected playPauseRef: RefObject<PlayPauseButton | null> = createRef();
public constructor(props: T) { public constructor(props: T) {
super(props); super(props);

View file

@ -6,7 +6,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import classNames from "classnames"; import classNames from "classnames";
import React, { PropsWithChildren } from "react"; import React, { PropsWithChildren, type JSX } from "react";
interface Props { interface Props {
className?: string; className?: string;

View file

@ -7,12 +7,12 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactElement } from "react"; import React, { ReactElement, type JSX } from "react";
import SdkConfig from "../../../SdkConfig"; import SdkConfig from "../../../SdkConfig";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";
const AuthFooter = (): ReactElement => { const AuthFooter = (): ReactElement<any> => {
const brandingConfig = SdkConfig.getObject("branding"); const brandingConfig = SdkConfig.getObject("branding");
const links = brandingConfig?.get("auth_footer_links") ?? [ const links = brandingConfig?.get("auth_footer_links") ?? [
{ text: "Blog", url: "https://element.io/blog" }, { text: "Blog", url: "https://element.io/blog" },

View file

@ -11,7 +11,7 @@ import React from "react";
import SdkConfig from "../../../SdkConfig"; import SdkConfig from "../../../SdkConfig";
export default class AuthHeaderLogo extends React.PureComponent { export default class AuthHeaderLogo extends React.PureComponent {
public render(): React.ReactElement { public render(): React.ReactElement<any> {
const brandingConfig = SdkConfig.getObject("branding"); const brandingConfig = SdkConfig.getObject("branding");
const logoUrl = brandingConfig?.get("auth_header_logo_url") ?? "themes/element/img/logos/element-logo.svg"; const logoUrl = brandingConfig?.get("auth_header_logo_url") ?? "themes/element/img/logos/element-logo.svg";

View file

@ -35,7 +35,7 @@ export default class AuthPage extends React.PureComponent<React.PropsWithChildre
return AuthPage.welcomeBackgroundUrl; return AuthPage.welcomeBackgroundUrl;
} }
public render(): React.ReactElement { public render(): React.ReactElement<any> {
const pageStyle = { const pageStyle = {
background: `center/cover fixed url(${AuthPage.getWelcomeBackgroundUrl()})`, background: `center/cover fixed url(${AuthPage.getWelcomeBackgroundUrl()})`,
}; };

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef } from "react"; import React, { createRef, type JSX } from "react";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";

View file

@ -149,7 +149,7 @@ export default class CountryDropdown extends React.Component<IProps, IState> {
{country.name} (+{country.prefix}) {country.name} (+{country.prefix})
</div> </div>
); );
}) as NonEmptyArray<ReactElement & { key: string }>; }) as NonEmptyArray<ReactElement<any> & { key: string }>;
// default value here too, otherwise we need to handle null / undefined // default value here too, otherwise we need to handle null / undefined
// values between mounting and the initial value propagating // values between mounting and the initial value propagating

View file

@ -15,7 +15,7 @@ import * as Email from "../../../email";
interface IProps extends Omit<IInputProps, "onValidate" | "element"> { interface IProps extends Omit<IInputProps, "onValidate" | "element"> {
id?: string; id?: string;
fieldRef?: RefCallback<Field> | RefObject<Field>; fieldRef?: RefCallback<Field> | RefObject<Field | null>;
value: string; value: string;
autoFocus?: boolean; autoFocus?: boolean;

View file

@ -10,7 +10,7 @@ import classNames from "classnames";
import { MatrixClient } from "matrix-js-sdk/src/matrix"; import { MatrixClient } from "matrix-js-sdk/src/matrix";
import { AuthType, AuthDict, IInputs, IStageStatus } from "matrix-js-sdk/src/interactive-auth"; import { AuthType, AuthDict, IInputs, IStageStatus } from "matrix-js-sdk/src/interactive-auth";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import React, { ChangeEvent, createRef, FormEvent, Fragment } from "react"; import React, { ChangeEvent, createRef, FormEvent, Fragment, type JSX } from "react";
import { Button, Text } from "@vector-im/compound-web"; import { Button, Text } from "@vector-im/compound-web";
import PopOutIcon from "@vector-im/compound-design-tokens/assets/web/icons/pop-out"; import PopOutIcon from "@vector-im/compound-design-tokens/assets/web/icons/pop-out";

View file

@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import SdkConfig from "../../../SdkConfig"; import SdkConfig from "../../../SdkConfig";
import { getCurrentLanguage } from "../../../languageHandler"; import { getCurrentLanguage } from "../../../languageHandler";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef, ReactNode } from "react"; import React, { createRef, ReactNode, type JSX } from "react";
import { ClientRendezvousFailureReason, MSC4108FailureReason } from "matrix-js-sdk/src/rendezvous"; import { ClientRendezvousFailureReason, MSC4108FailureReason } from "matrix-js-sdk/src/rendezvous";
import ChevronLeftIcon from "@vector-im/compound-design-tokens/assets/web/icons/chevron-left"; import ChevronLeftIcon from "@vector-im/compound-design-tokens/assets/web/icons/chevron-left";
import CheckCircleSolidIcon from "@vector-im/compound-design-tokens/assets/web/icons/check-circle-solid"; import CheckCircleSolidIcon from "@vector-im/compound-design-tokens/assets/web/icons/check-circle-solid";

View file

@ -14,7 +14,7 @@ import { _t, _td, TranslationKey } from "../../../languageHandler";
interface IProps extends Omit<IInputProps, "onValidate" | "label" | "element"> { interface IProps extends Omit<IInputProps, "onValidate" | "label" | "element"> {
id?: string; id?: string;
fieldRef?: RefCallback<Field> | RefObject<Field>; fieldRef?: RefCallback<Field> | RefObject<Field | null>;
autoComplete?: string; autoComplete?: string;
value: string; value: string;
password: string; // The password we're confirming password: string; // The password we're confirming

View file

@ -22,7 +22,7 @@ interface IProps extends Omit<IInputProps, "onValidate" | "element"> {
className?: string; className?: string;
minScore: 0 | 1 | 2 | 3 | 4; minScore: 0 | 1 | 2 | 3 | 4;
value: string; value: string;
fieldRef?: RefCallback<Field> | RefObject<Field>; fieldRef?: RefCallback<Field> | RefObject<Field | null>;
// Additional strings such as a username used to catch bad passwords // Additional strings such as a username used to catch bad passwords
userInputs?: string[]; userInputs?: string[];

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { SyntheticEvent } from "react"; import React, { SyntheticEvent, type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";
@ -411,7 +411,7 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
} }
return ( return (
<div> (<div>
<form onSubmit={this.onSubmitForm}> <form onSubmit={this.onSubmitForm}>
{loginType} {loginType}
{loginField} {loginField}
@ -427,7 +427,9 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
disabled={this.props.busy} disabled={this.props.busy}
autoFocus={autoFocusPassword} autoFocus={autoFocusPassword}
onValidate={this.onPasswordValidate} onValidate={this.onPasswordValidate}
ref={(field) => (this[LoginField.Password] = field)} ref={field => {
(this[LoginField.Password] = field);
}}
/> />
{forgotPasswordJsx} {forgotPasswordJsx}
{!this.props.busy && ( {!this.props.busy && (
@ -439,7 +441,7 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
/> />
)} )}
</form> </form>
</div> </div>)
); );
} }
} }

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { BaseSyntheticEvent, ComponentProps, ReactNode } from "react"; import React, { BaseSyntheticEvent, ComponentProps, ReactNode, type JSX } from "react";
import { MatrixClient, MatrixError } from "matrix-js-sdk/src/matrix"; import { MatrixClient, MatrixError } from "matrix-js-sdk/src/matrix";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
@ -513,23 +513,27 @@ export default class RegistrationForm extends React.PureComponent<IProps, IState
/> />
); );
return ( return (
<Field (<Field
ref={(field) => (this[RegistrationField.PhoneNumber] = field)} ref={field => {
(this[RegistrationField.PhoneNumber] = field);
}}
type="text" type="text"
label={phoneLabel} label={phoneLabel}
value={this.state.phoneNumber} value={this.state.phoneNumber}
prefixComponent={phoneCountry} prefixComponent={phoneCountry}
onChange={this.onPhoneNumberChange} onChange={this.onPhoneNumberChange}
onValidate={this.onPhoneNumberValidate} onValidate={this.onPhoneNumberValidate}
/> />)
); );
} }
public renderUsername(): ReactNode { public renderUsername(): ReactNode {
return ( return (
<Field (<Field
id="mx_RegistrationForm_username" id="mx_RegistrationForm_username"
ref={(field) => (this[RegistrationField.Username] = field)} ref={field => {
(this[RegistrationField.Username] = field);
}}
type="text" type="text"
autoFocus={true} autoFocus={true}
label={_t("common|username")} label={_t("common|username")}
@ -540,7 +544,7 @@ export default class RegistrationForm extends React.PureComponent<IProps, IState
tooltipAlignment={this.tooltipAlignment()} tooltipAlignment={this.tooltipAlignment()}
autoCorrect="off" autoCorrect="off"
autoCapitalize="none" autoCapitalize="none"
/> />)
); );
} }

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import { EventType, JoinRule, MatrixEvent, Room, RoomEvent, User, UserEvent } from "matrix-js-sdk/src/matrix"; import { EventType, JoinRule, MatrixEvent, Room, RoomEvent, User, UserEvent } from "matrix-js-sdk/src/matrix";
import { UnstableValue } from "matrix-js-sdk/src/NamespacedValue"; import { UnstableValue } from "matrix-js-sdk/src/NamespacedValue";

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { forwardRef, ReactNode, Ref, useContext } from "react"; import React, { forwardRef, ReactNode, Ref, useContext, type JSX } from "react";
import { RoomMember, ResizeMethod } from "matrix-js-sdk/src/matrix"; import { RoomMember, ResizeMethod } from "matrix-js-sdk/src/matrix";
import dis from "../../../dispatcher/dispatcher"; import dis from "../../../dispatcher/dispatcher";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { RoomMember } from "matrix-js-sdk/src/matrix"; import { RoomMember } from "matrix-js-sdk/src/matrix";
import emailPillAvatar from "../../../../res/img/icon-email-pill-avatar.svg"; import emailPillAvatar from "../../../../res/img/icon-email-pill-avatar.svg";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode, useEffect, useState } from "react"; import React, { ReactNode, useEffect, useState, type JSX } from "react";
import { ClientEvent, Room, RoomMember, RoomStateEvent, UserEvent } from "matrix-js-sdk/src/matrix"; import { ClientEvent, Room, RoomMember, RoomStateEvent, UserEvent } from "matrix-js-sdk/src/matrix";
import { Tooltip } from "@vector-im/compound-web"; import { Tooltip } from "@vector-im/compound-web";

View file

@ -8,7 +8,7 @@ Please see LICENSE files in the repository root for full details.
// Exports beacon components which touch maplibre-gs wrapped in React Suspense to enable code splitting // Exports beacon components which touch maplibre-gs wrapped in React Suspense to enable code splitting
import React, { ComponentProps, lazy, Suspense } from "react"; import React, { ComponentProps, lazy, Suspense, type JSX } from "react";
import Spinner from "../elements/Spinner"; import Spinner from "../elements/Spinner";

View file

@ -24,7 +24,7 @@ interface IState {
} }
export default class DialpadContextMenu extends React.Component<IProps, IState> { export default class DialpadContextMenu extends React.Component<IProps, IState> {
private numberEntryFieldRef: React.RefObject<Field> = createRef(); private numberEntryFieldRef: React.RefObject<Field | null> = createRef();
public constructor(props: IProps) { public constructor(props: IProps) {
super(props); super(props);

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode } from "react"; import React, { ReactNode, type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import ContextMenu, { import ContextMenu, {

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef, useContext } from "react"; import React, { createRef, useContext, type JSX } from "react";
import { import {
EventStatus, EventStatus,
MatrixEvent, MatrixEvent,

View file

@ -8,7 +8,7 @@ Please see LICENSE files in the repository root for full details.
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { Room } from "matrix-js-sdk/src/matrix"; import { Room } from "matrix-js-sdk/src/matrix";
import React, { useContext } from "react"; import React, { useContext, type JSX } from "react";
import { KeyBindingAction } from "../../../accessibility/KeyboardShortcuts"; import { KeyBindingAction } from "../../../accessibility/KeyboardShortcuts";
import RoomListActions from "../../../actions/RoomListActions"; import RoomListActions from "../../../actions/RoomListActions";

View file

@ -7,7 +7,7 @@ Please see LICENSE files in the repository root for full details.
*/ */
import { Room } from "matrix-js-sdk/src/matrix"; import { Room } from "matrix-js-sdk/src/matrix";
import React from "react"; import React, { type JSX } from "react";
import { KeyBindingAction } from "../../../accessibility/KeyboardShortcuts"; import { KeyBindingAction } from "../../../accessibility/KeyboardShortcuts";
import { useNotificationState } from "../../../hooks/useRoomNotificationState"; import { useNotificationState } from "../../../hooks/useRoomNotificationState";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { useContext } from "react"; import React, { useContext, type JSX } from "react";
import { Room, EventType, RoomType } from "matrix-js-sdk/src/matrix"; import { Room, EventType, RoomType } from "matrix-js-sdk/src/matrix";
import { IProps as IContextMenuProps } from "../../structures/ContextMenu"; import { IProps as IContextMenuProps } from "../../structures/ContextMenu";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ComponentProps, useContext } from "react"; import React, { ComponentProps, useContext, type JSX } from "react";
import { ClientWidgetApi, IWidget, MatrixCapabilities } from "matrix-widget-api"; import { ClientWidgetApi, IWidget, MatrixCapabilities } from "matrix-widget-api";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { ApprovalOpts, WidgetLifecycle } from "@matrix-org/react-sdk-module-api/lib/lifecycles/WidgetLifecycle"; import { ApprovalOpts, WidgetLifecycle } from "@matrix-org/react-sdk-module-api/lib/lifecycles/WidgetLifecycle";

View file

@ -423,7 +423,7 @@ export const SubspaceSelector: React.FC<ISubspaceSelectorProps> = ({ title, spac
{space.name || getDisplayAliasForRoom(space) || space.roomId} {space.name || getDisplayAliasForRoom(space) || space.roomId}
</div> </div>
); );
}) as NonEmptyArray<ReactElement & { key: string }> }) as NonEmptyArray<ReactElement<any> & { key: string }>
} }
</Dropdown> </Dropdown>
); );

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { useCallback } from "react"; import React, { useCallback, type JSX } from "react";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";
import SettingsStore from "../../../settings/SettingsStore"; import SettingsStore from "../../../settings/SettingsStore";

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import FocusLock from "react-focus-lock"; import FocusLock from "react-focus-lock";
import classNames from "classnames"; import classNames from "classnames";
import { MatrixClient } from "matrix-js-sdk/src/matrix"; import { MatrixClient } from "matrix-js-sdk/src/matrix";

View file

@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import SdkConfig from "../../../SdkConfig"; import SdkConfig from "../../../SdkConfig";
import Modal from "../../../Modal"; import Modal from "../../../Modal";
@ -46,7 +46,7 @@ interface IState {
export default class BugReportDialog extends React.Component<IProps, IState> { export default class BugReportDialog extends React.Component<IProps, IState> {
private unmounted: boolean; private unmounted: boolean;
private issueRef: React.RefObject<Field>; private issueRef: React.RefObject<Field | null>;
public constructor(props: IProps) { public constructor(props: IProps) {
super(props); super(props);

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";
import QuestionDialog from "./QuestionDialog"; import QuestionDialog from "./QuestionDialog";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ComponentProps, useMemo, useState } from "react"; import React, { ComponentProps, useMemo, useState, type JSX } from "react";
import { Room } from "matrix-js-sdk/src/matrix"; import { Room } from "matrix-js-sdk/src/matrix";
import ConfirmUserActionDialog from "./ConfirmUserActionDialog"; import ConfirmUserActionDialog from "./ConfirmUserActionDialog";

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ChangeEvent, createRef, KeyboardEvent, SyntheticEvent } from "react"; import React, { ChangeEvent, createRef, KeyboardEvent, SyntheticEvent, type JSX } from "react";
import { Room, RoomType, JoinRule, Preset, Visibility } from "matrix-js-sdk/src/matrix"; import { Room, RoomType, JoinRule, Preset, Visibility } from "matrix-js-sdk/src/matrix";
import SdkConfig from "../../../SdkConfig"; import SdkConfig from "../../../SdkConfig";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { useRef, useState } from "react"; import React, { useRef, useState, type JSX } from "react";
import { Room, JoinRule } from "matrix-js-sdk/src/matrix"; import { Room, JoinRule } from "matrix-js-sdk/src/matrix";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { AuthType, IAuthData } from "matrix-js-sdk/src/interactive-auth"; import { AuthType, IAuthData } from "matrix-js-sdk/src/interactive-auth";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { MatrixClient } from "matrix-js-sdk/src/matrix"; import { MatrixClient } from "matrix-js-sdk/src/matrix";

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { useState } from "react"; import React, { useState, type JSX } from "react";
import { _t, _td, TranslationKey } from "../../../languageHandler"; import { _t, _td, TranslationKey } from "../../../languageHandler";
import MatrixClientContext from "../../../contexts/MatrixClientContext"; import MatrixClientContext from "../../../contexts/MatrixClientContext";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { useRef, useState, Dispatch, SetStateAction } from "react"; import React, { useRef, useState, Dispatch, SetStateAction, type JSX } from "react";
import { Room } from "matrix-js-sdk/src/matrix"; import { Room } from "matrix-js-sdk/src/matrix";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";

View file

@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { useEffect, useRef, useState } from "react"; import React, { useEffect, useRef, useState, type JSX } from "react";
import QuestionDialog from "./QuestionDialog"; import QuestionDialog from "./QuestionDialog";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { useEffect, useMemo, useState } from "react"; import React, { useEffect, useMemo, useState, type JSX } from "react";
import classnames from "classnames"; import classnames from "classnames";
import { import {
IContent, IContent,

View file

@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { MatrixClient, UIAResponse } from "matrix-js-sdk/src/matrix"; import { MatrixClient, UIAResponse } from "matrix-js-sdk/src/matrix";
import { AuthType } from "matrix-js-sdk/src/interactive-auth"; import { AuthType } from "matrix-js-sdk/src/interactive-auth";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { createRef, ReactNode, SyntheticEvent } from "react"; import React, { createRef, ReactNode, SyntheticEvent, type JSX } from "react";
import classNames from "classnames"; import classNames from "classnames";
import { RoomMember, Room, MatrixError, EventType } from "matrix-js-sdk/src/matrix"; import { RoomMember, Room, MatrixError, EventType } from "matrix-js-sdk/src/matrix";
import { KnownMembership } from "matrix-js-sdk/src/types"; import { KnownMembership } from "matrix-js-sdk/src/types";
@ -343,7 +343,7 @@ export default class InviteDialog extends React.PureComponent<Props, IInviteDial
private debounceTimer: number | null = null; // actually number because we're in the browser private debounceTimer: number | null = null; // actually number because we're in the browser
private editorRef = createRef<HTMLInputElement>(); private editorRef = createRef<HTMLInputElement>();
private numberEntryFieldRef: React.RefObject<Field> = createRef(); private numberEntryFieldRef: React.RefObject<Field | null> = createRef();
private unmounted = false; private unmounted = false;
private encryptionByDefault = false; private encryptionByDefault = false;
private profilesStore: UserProfilesStore; private profilesStore: UserProfilesStore;

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { MatrixEvent, EventType, RelationType, MatrixClient, MatrixError } from "matrix-js-sdk/src/matrix"; import { MatrixEvent, EventType, RelationType, MatrixClient, MatrixError } from "matrix-js-sdk/src/matrix";
import { defer } from "matrix-js-sdk/src/utils"; import { defer } from "matrix-js-sdk/src/utils";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";

View file

@ -53,7 +53,7 @@ const MAX_BUTTONS = 3;
export default class ModalWidgetDialog extends React.PureComponent<IProps, IState> { export default class ModalWidgetDialog extends React.PureComponent<IProps, IState> {
private readonly widget: Widget; private readonly widget: Widget;
private readonly possibleButtons: ModalButtonID[]; private readonly possibleButtons: ModalButtonID[];
private appFrame: React.RefObject<HTMLIFrameElement> = React.createRef(); private appFrame: React.RefObject<HTMLIFrameElement | null> = React.createRef();
public state: IState = { public state: IState = {
disabledButtonIds: (this.props.widgetDefinition.buttons || []).filter((b) => b.disabled).map((b) => b.id), disabledButtonIds: (this.props.widgetDefinition.buttons || []).filter((b) => b.disabled).map((b) => b.id),

View file

@ -16,7 +16,7 @@ import ScrollableBaseModal, { IScrollableBaseState } from "./ScrollableBaseModal
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";
interface IProps<P extends DialogProps, C extends DialogContent<P>> { interface IProps<P extends DialogProps, C extends DialogContent<P>> {
contentFactory: (props: P, ref: React.RefObject<C>) => React.ReactNode; contentFactory: (props: P, ref: React.RefObject<C | null>) => React.ReactNode;
additionalContentProps: Omit<P, keyof DialogProps> | undefined; additionalContentProps: Omit<P, keyof DialogProps> | undefined;
initialOptions: ModuleUiDialogOptions; initialOptions: ModuleUiDialogOptions;
moduleApi: ModuleApi; moduleApi: ModuleApi;

View file

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ChangeEvent } from "react"; import React, { ChangeEvent, type JSX } from "react";
import { MatrixEvent } from "matrix-js-sdk/src/matrix"; import { MatrixEvent } from "matrix-js-sdk/src/matrix";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React from "react"; import React, { type JSX } from "react";
import { Room } from "matrix-js-sdk/src/matrix"; import { Room } from "matrix-js-sdk/src/matrix";
import Modal from "../../../Modal"; import Modal from "../../../Modal";

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details. Please see LICENSE files in the repository root for full details.
*/ */
import React, { ReactNode, SyntheticEvent } from "react"; import React, { ReactNode, SyntheticEvent, type JSX } from "react";
import { EventType, JoinRule } from "matrix-js-sdk/src/matrix"; import { EventType, JoinRule } from "matrix-js-sdk/src/matrix";
import { _t } from "../../../languageHandler"; import { _t } from "../../../languageHandler";

View file

@ -103,7 +103,7 @@ export function ShareDialog({ target, customTitle, onFinished, permalinkCreator
const showQrCode = useSettingValue<boolean>(UIFeature.ShareQRCode); const showQrCode = useSettingValue<boolean>(UIFeature.ShareQRCode);
const showSocials = useSettingValue<boolean>(UIFeature.ShareSocial); const showSocials = useSettingValue<boolean>(UIFeature.ShareSocial);
const timeoutIdRef = useRef<number>(); const timeoutIdRef = useRef<number>(undefined);
const [isCopied, setIsCopied] = useState(false); const [isCopied, setIsCopied] = useState(false);
const [linkToSpecificEvent, setLinkToSpecificEvent] = useState(target instanceof MatrixEvent); const [linkToSpecificEvent, setLinkToSpecificEvent] = useState(target instanceof MatrixEvent);

Some files were not shown because too many files have changed in this diff Show more