2020-01-24 13:28:03 +01:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-06-07 11:57:25 +02:00
|
|
|
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
|
2020-01-24 13:28:03 +01:00
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-01-24 13:28:03 +01:00
|
|
|
*/
|
|
|
|
|
2023-03-08 14:28:07 +01:00
|
|
|
import React, { ComponentType, PropsWithChildren } from "react";
|
2021-10-23 00:23:32 +02:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2021-06-07 11:57:25 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import { _t } from "./languageHandler";
|
2022-03-03 00:33:40 +01:00
|
|
|
import BaseDialog from "./components/views/dialogs/BaseDialog";
|
|
|
|
import DialogButtons from "./components/views/elements/DialogButtons";
|
|
|
|
import Spinner from "./components/views/elements/Spinner";
|
2021-06-07 11:57:25 +02:00
|
|
|
|
|
|
|
type AsyncImport<T> = { default: T };
|
|
|
|
|
2023-02-28 11:31:48 +01:00
|
|
|
interface IProps {
|
2021-06-07 11:57:25 +02:00
|
|
|
// A promise which resolves with the real component
|
2023-02-28 11:31:48 +01:00
|
|
|
prom: Promise<ComponentType<any> | AsyncImport<ComponentType<any>>>;
|
|
|
|
onFinished(): void;
|
2021-06-07 11:57:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IState {
|
2023-03-08 14:28:07 +01:00
|
|
|
component?: ComponentType<PropsWithChildren<any>>;
|
2021-06-07 11:57:25 +02:00
|
|
|
error?: Error;
|
|
|
|
}
|
2020-01-24 13:28:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrap an asynchronous loader function with a react component which shows a
|
|
|
|
* spinner until the real component loads.
|
|
|
|
*/
|
2021-06-07 11:57:25 +02:00
|
|
|
export default class AsyncWrapper extends React.Component<IProps, IState> {
|
|
|
|
private unmounted = false;
|
2020-01-24 13:28:03 +01:00
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
public state: IState = {};
|
2020-01-24 13:28:03 +01:00
|
|
|
|
2023-01-12 14:25:14 +01:00
|
|
|
public componentDidMount(): void {
|
2024-11-01 18:39:08 +01:00
|
|
|
this.unmounted = false;
|
2022-12-12 12:24:14 +01:00
|
|
|
this.props.prom
|
|
|
|
.then((result) => {
|
|
|
|
if (this.unmounted) return;
|
|
|
|
|
|
|
|
// Take the 'default' member if it's there, then we support
|
|
|
|
// passing in just an import()ed module, since ES6 async import
|
|
|
|
// always returns a module *namespace*.
|
|
|
|
const component = (result as AsyncImport<ComponentType>).default
|
|
|
|
? (result as AsyncImport<ComponentType>).default
|
|
|
|
: (result as ComponentType);
|
|
|
|
this.setState({ component });
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
logger.warn("AsyncWrapper promise failed", e);
|
|
|
|
this.setState({ error: e });
|
|
|
|
});
|
2020-08-29 13:14:16 +02:00
|
|
|
}
|
2020-01-24 13:28:03 +01:00
|
|
|
|
2023-01-12 14:25:14 +01:00
|
|
|
public componentWillUnmount(): void {
|
2021-06-07 11:57:25 +02:00
|
|
|
this.unmounted = true;
|
2020-08-29 13:14:16 +02:00
|
|
|
}
|
2020-01-24 13:28:03 +01:00
|
|
|
|
2023-01-12 14:25:14 +01:00
|
|
|
private onWrapperCancelClick = (): void => {
|
2023-02-28 11:31:48 +01:00
|
|
|
this.props.onFinished();
|
2020-08-29 13:14:16 +02:00
|
|
|
};
|
2020-01-24 13:28:03 +01:00
|
|
|
|
2023-02-13 18:01:43 +01:00
|
|
|
public render(): React.ReactNode {
|
2020-01-24 13:28:03 +01:00
|
|
|
if (this.state.component) {
|
|
|
|
const Component = this.state.component;
|
|
|
|
return <Component {...this.props} />;
|
|
|
|
} else if (this.state.error) {
|
2022-12-12 12:24:14 +01:00
|
|
|
return (
|
2023-08-22 19:47:33 +02:00
|
|
|
<BaseDialog onFinished={this.props.onFinished} title={_t("common|error")}>
|
2023-09-22 17:39:40 +02:00
|
|
|
{_t("failed_load_async_component")}
|
2022-12-12 12:24:14 +01:00
|
|
|
<DialogButtons
|
2023-08-23 12:57:22 +02:00
|
|
|
primaryButton={_t("action|dismiss")}
|
2022-12-12 12:24:14 +01:00
|
|
|
onPrimaryButtonClick={this.onWrapperCancelClick}
|
|
|
|
hasCancel={false}
|
|
|
|
/>
|
|
|
|
</BaseDialog>
|
|
|
|
);
|
2020-01-24 13:28:03 +01:00
|
|
|
} else {
|
|
|
|
// show a spinner until the component is loaded.
|
|
|
|
return <Spinner />;
|
|
|
|
}
|
2020-08-29 13:14:16 +02:00
|
|
|
}
|
|
|
|
}
|