2018-04-12 01:58:04 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-12-20 03:45:24 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-09-06 20:35:52 +03:00
|
|
|
import React from "react";
|
2020-04-25 00:14:41 +03:00
|
|
|
import PropTypes from "prop-types";
|
|
|
|
import {_t} from "../../../languageHandler";
|
2020-06-26 02:00:30 +03:00
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2020-06-26 03:18:02 +03:00
|
|
|
const Spinner = ({w = 32, h = 32, imgClassName, message}) => {
|
2020-06-26 02:00:30 +03:00
|
|
|
let imageSource;
|
2020-08-17 22:12:18 +03:00
|
|
|
if (SettingsStore.getValue('feature_new_spinner')) {
|
2020-06-26 02:00:30 +03:00
|
|
|
imageSource = require("../../../../res/img/spinner.svg");
|
|
|
|
} else {
|
|
|
|
imageSource = require("../../../../res/img/spinner.gif");
|
|
|
|
}
|
|
|
|
|
2020-04-25 00:14:41 +03:00
|
|
|
return (
|
2020-07-13 19:39:57 +03:00
|
|
|
<div className="mx_Spinner">
|
2020-04-25 00:14:41 +03:00
|
|
|
{ message && <React.Fragment><div className="mx_Spinner_Msg">{ message}</div> </React.Fragment> }
|
2020-06-26 11:27:33 +03:00
|
|
|
<img
|
|
|
|
src={imageSource}
|
|
|
|
width={w}
|
|
|
|
height={h}
|
|
|
|
className={imgClassName}
|
|
|
|
aria-label={_t("Loading...")}
|
|
|
|
/>
|
2020-04-25 00:14:41 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
Spinner.propTypes = {
|
|
|
|
w: PropTypes.number,
|
|
|
|
h: PropTypes.number,
|
|
|
|
imgClassName: PropTypes.string,
|
|
|
|
message: PropTypes.node,
|
|
|
|
};
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2020-04-25 00:14:41 +03:00
|
|
|
export default Spinner;
|