2020-01-24 12:28:03 +00:00
|
|
|
/*
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-06-07 09:57:25 +00:00
|
|
|
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
|
2020-01-24 12:28:03 +00:00
|
|
|
|
2024-09-09 13:57:16 +00: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 12:28:03 +00:00
|
|
|
*/
|
|
|
|
|
2024-11-12 21:19:11 +00:00
|
|
|
import React, { ReactNode, Suspense } from "react";
|
2021-06-07 09:57:25 +00:00
|
|
|
|
2020-01-24 12:28:03 +00:00
|
|
|
import { _t } from "./languageHandler";
|
2022-03-02 23:33:40 +00: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 09:57:25 +00:00
|
|
|
|
2023-02-28 10:31:48 +00:00
|
|
|
interface IProps {
|
|
|
|
onFinished(): void;
|
2024-11-12 21:19:11 +00:00
|
|
|
children: ReactNode;
|
2021-06-07 09:57:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IState {
|
|
|
|
error?: Error;
|
|
|
|
}
|
2020-01-24 12:28:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrap an asynchronous loader function with a react component which shows a
|
|
|
|
* spinner until the real component loads.
|
|
|
|
*/
|
2021-06-07 09:57:25 +00:00
|
|
|
export default class AsyncWrapper extends React.Component<IProps, IState> {
|
2024-11-12 21:19:11 +00:00
|
|
|
public static getDerivedStateFromError(error: Error): IState {
|
|
|
|
return { error };
|
2020-08-29 11:14:16 +00:00
|
|
|
}
|
2020-01-24 12:28:03 +00:00
|
|
|
|
2024-11-12 21:19:11 +00:00
|
|
|
public state: IState = {};
|
2020-01-24 12:28:03 +00:00
|
|
|
|
2023-02-13 17:01:43 +00:00
|
|
|
public render(): React.ReactNode {
|
2024-11-12 21:19:11 +00:00
|
|
|
if (this.state.error) {
|
2021-06-07 09:57:25 +00:00
|
|
|
return (
|
2023-08-22 17:47:33 +00:00
|
|
|
<BaseDialog onFinished={this.props.onFinished} title={_t("common|error")}>
|
2023-09-22 15:39:40 +00:00
|
|
|
{_t("failed_load_async_component")}
|
2020-01-24 12:28:03 +00:00
|
|
|
<DialogButtons
|
2023-08-23 10:57:22 +00:00
|
|
|
primaryButton={_t("action|dismiss")}
|
2024-11-12 21:19:11 +00:00
|
|
|
onPrimaryButtonClick={this.props.onFinished}
|
2020-01-24 12:28:03 +00:00
|
|
|
hasCancel={false}
|
|
|
|
/>
|
|
|
|
</BaseDialog>
|
|
|
|
);
|
|
|
|
}
|
2024-11-12 21:19:11 +00:00
|
|
|
|
|
|
|
return <Suspense fallback={<Spinner />}>{this.props.children}</Suspense>;
|
2020-08-29 11:14:16 +00:00
|
|
|
}
|
|
|
|
}
|