2017-07-27 18:41:20 +03:00
|
|
|
/*
|
2017-07-28 18:23:49 +03:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2017-07-27 18:41:20 +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.
|
|
|
|
*/
|
|
|
|
|
2017-07-28 18:24:32 +03:00
|
|
|
import React from 'react';
|
2019-09-06 20:35:52 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2017-07-27 18:41:20 +03:00
|
|
|
|
2019-12-20 03:45:24 +03:00
|
|
|
export default createReactClass({
|
2017-07-27 18:41:20 +03:00
|
|
|
displayName: 'MessageSpinner',
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
const w = this.props.w || 32;
|
|
|
|
const h = this.props.h || 32;
|
|
|
|
const imgClass = this.props.imgClassName || "";
|
|
|
|
const msg = this.props.msg || "Loading...";
|
|
|
|
return (
|
|
|
|
<div className="mx_Spinner">
|
2017-09-28 13:21:06 +03:00
|
|
|
<div className="mx_Spinner_Msg">{ msg }</div>
|
2019-01-11 04:37:28 +03:00
|
|
|
<img src={require("../../../../res/img/spinner.gif")} width={w} height={h} className={imgClass} />
|
2017-07-27 18:41:20 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|