2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-10-06 17:06:34 +00:00
|
|
|
import * as React from 'react';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { LocalizerType } from '../types/Util';
|
2020-10-06 17:06:34 +00:00
|
|
|
import { Spinner } from './Spinner';
|
|
|
|
|
|
|
|
export type PropsType = {
|
|
|
|
readonly i18n: LocalizerType;
|
|
|
|
};
|
|
|
|
|
2021-04-13 14:20:02 +00:00
|
|
|
// TODO: This should use <Modal>. See DESKTOP-1038.
|
2022-11-18 00:45:19 +00:00
|
|
|
export const ProgressDialog = React.memo(function ProgressDialogInner({
|
|
|
|
i18n,
|
|
|
|
}: PropsType) {
|
2020-10-06 17:06:34 +00:00
|
|
|
return (
|
|
|
|
<div className="module-progress-dialog">
|
|
|
|
<div className="module-progress-dialog__spinner">
|
|
|
|
<Spinner svgSize="normal" size="39px" direction="on-progress-dialog" />
|
|
|
|
</div>
|
2023-03-30 00:03:25 +00:00
|
|
|
<div className="module-progress-dialog__text">{i18n('icu:updating')}</div>
|
2020-10-06 17:06:34 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|