2015-12-01 16:27:23 +00:00
|
|
|
/*
|
2016-01-07 04:17:56 +00:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-12-01 16:27:23 +00: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-10-11 16:46:05 +01:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2015-12-01 16:27:23 +00:00
|
|
|
|
2017-04-21 17:03:31 +01:00
|
|
|
const i = [1, 2, 3, 4, 5][Math.floor(Math.random() * 5)];
|
2017-10-11 16:46:05 +01:00
|
|
|
const DEFAULT_LOGO_URI = "img/logos/riot-im-logo-" + i + ".svg";
|
2017-04-21 17:03:31 +01:00
|
|
|
|
2015-12-01 16:27:23 +00:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'VectorLoginHeader',
|
2015-12-01 18:31:13 +00:00
|
|
|
statics: {
|
|
|
|
replaces: 'LoginHeader',
|
|
|
|
},
|
2017-01-27 16:08:14 +00:00
|
|
|
propTypes: {
|
2017-10-11 16:46:05 +01:00
|
|
|
icon: PropTypes.string,
|
2017-01-27 16:08:14 +00:00
|
|
|
},
|
2015-12-01 16:27:23 +00:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
2017-10-23 00:57:02 +01:00
|
|
|
<div className="mx_Login_header">
|
|
|
|
<div className="mx_Login_logo">
|
|
|
|
<img src={this.props.icon || DEFAULT_LOGO_URI} alt="Riot"/>
|
|
|
|
</div>
|
2015-12-01 16:27:23 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|