2016-11-13 15:10:33 +01:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2017-02-07 12:19:01 +01:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2016-11-13 15:10:33 +01: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-02-07 12:34:34 +01:00
|
|
|
import React from 'react';
|
|
|
|
import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg';
|
|
|
|
import sdk from 'matrix-react-sdk';
|
2017-05-30 04:58:45 +02:00
|
|
|
import GeminiScrollbar from 'react-gemini-scrollbar';
|
|
|
|
import request from 'browser-request';
|
2016-11-13 15:10:33 +01:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'HomePage',
|
|
|
|
|
|
|
|
propTypes: {
|
2017-05-25 15:35:59 +02:00
|
|
|
// URL base of the team server. Optional.
|
|
|
|
teamServerUrl: React.PropTypes.string,
|
|
|
|
// Team token. Optional. If set, used to get the static homepage of the team
|
2017-05-25 11:23:26 +02:00
|
|
|
// associated. If unset, homePageUrl will be used.
|
2017-05-24 18:58:03 +02:00
|
|
|
teamToken: React.PropTypes.string,
|
|
|
|
// URL to use as the iFrame src. Defaults to /home.html.
|
|
|
|
homePageUrl: React.PropTypes.string,
|
2016-11-13 15:10:33 +01:00
|
|
|
},
|
|
|
|
|
2017-05-30 04:58:45 +02:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
page: ""
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
2017-05-30 22:52:43 +02:00
|
|
|
if (this.props.teamToken && this.props.teamServerUrl) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-30 04:58:45 +02:00
|
|
|
// we use request() to inline the homepage into the react component
|
|
|
|
// so that it can inherit CSS and theming easily rather than mess around
|
|
|
|
// with iframes and trying to synchronise document.stylesheets.
|
|
|
|
|
|
|
|
let src = this.props.homePageUrl || '/home.html';
|
2017-05-24 18:58:03 +02:00
|
|
|
|
2017-05-30 04:58:45 +02:00
|
|
|
request(
|
|
|
|
{ method: "GET", url: src },
|
|
|
|
(err, response, body) => {
|
|
|
|
if (err || response.status < 200 || response.status >= 300) {
|
|
|
|
console.log(error);
|
|
|
|
this.setState({ page: "Couldn't load home page" });
|
|
|
|
}
|
|
|
|
|
2017-05-31 12:02:59 +02:00
|
|
|
body.replaceAll(/_t\(['"](.*?)['"]\)/, (match)=>{ return sanitizehtml_t(match[1]) });
|
2017-05-30 04:58:45 +02:00
|
|
|
this.setState({ page: body });
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2017-05-30 22:52:43 +02:00
|
|
|
if (this.props.teamToken && this.props.teamServerUrl) {
|
|
|
|
src = `${this.props.teamServerUrl}/static/${this.props.teamToken}/home.html`;
|
|
|
|
return (
|
|
|
|
<div className="mx_HomePage">
|
|
|
|
<iframe src={ src } />
|
2017-05-30 04:58:45 +02:00
|
|
|
</div>
|
2017-05-30 22:52:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return (
|
|
|
|
<GeminiScrollbar autoshow={true} className="mx_HomePage">
|
|
|
|
<div className="mx_HomePage_body" dangerouslySetInnerHTML={{ __html: this.state.page }}>
|
|
|
|
</div>
|
|
|
|
</GeminiScrollbar>
|
|
|
|
);
|
|
|
|
}
|
2016-11-13 15:10:33 +01:00
|
|
|
}
|
|
|
|
});
|