7eaf47c9d4
Co-authored-by: dwelle <luzar.david@gmail.com> Co-authored-by: Aakansha Doshi <aakansha1216@gmail.com>
41 lines
877 B
TypeScript
41 lines
877 B
TypeScript
import { t } from "../i18n";
|
|
import { useState, useEffect } from "react";
|
|
import Spinner from "./Spinner";
|
|
import clsx from "clsx";
|
|
import { THEME } from "../constants";
|
|
import { Theme } from "../element/types";
|
|
|
|
export const LoadingMessage: React.FC<{ delay?: number; theme?: Theme }> = ({
|
|
delay,
|
|
theme,
|
|
}) => {
|
|
const [isWaiting, setIsWaiting] = useState(!!delay);
|
|
|
|
useEffect(() => {
|
|
if (!delay) {
|
|
return;
|
|
}
|
|
const timer = setTimeout(() => {
|
|
setIsWaiting(false);
|
|
}, delay);
|
|
return () => clearTimeout(timer);
|
|
}, [delay]);
|
|
|
|
if (isWaiting) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={clsx("LoadingMessage", {
|
|
"LoadingMessage--dark": theme === THEME.DARK,
|
|
})}
|
|
>
|
|
<div>
|
|
<Spinner />
|
|
</div>
|
|
<div className="LoadingMessage-text">{t("labels.loadingScene")}</div>
|
|
</div>
|
|
);
|
|
};
|