/* Copyright 2016 OpenMarket Ltd Copyright 2017 Vector Creations Ltd Copyright 2019 New Vector Ltd 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. */ import React from 'react'; import request from 'browser-request'; import { _t } from '../../languageHandler'; import sanitizeHtml from 'sanitize-html'; import dis from '../../dispatcher/dispatcher'; import { MatrixClientPeg } from '../../MatrixClientPeg'; import classnames from 'classnames'; import MatrixClientContext from "../../contexts/MatrixClientContext"; import AutoHideScrollbar from "./AutoHideScrollbar"; import { ActionPayload } from "../../dispatcher/payloads"; interface IProps { // URL to request embedded page content from url?: string; // Class name prefix to apply for a given instance className?: string; // Whether to wrap the page in a scrollbar scrollbar?: boolean; // Map of keys to replace with values, e.g {$placeholder: "value"} replaceMap?: Map; } interface IState { page: string; } export default class EmbeddedPage extends React.PureComponent { public static contextType = MatrixClientContext; private unmounted = false; private dispatcherRef: string = null; constructor(props: IProps, context: typeof MatrixClientContext) { super(props, context); this.state = { page: '', }; } protected translate(s: string): string { // default implementation - skins may wish to extend this return sanitizeHtml(_t(s)); } public componentDidMount(): void { this.unmounted = false; if (!this.props.url) { return; } // we use request() to inline the page 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. request( { method: "GET", url: this.props.url }, (err, response, body) => { if (this.unmounted) { return; } if (err || response.status < 200 || response.status >= 300) { console.warn(`Error loading page: ${err}`); this.setState({ page: _t("Couldn't load page") }); return; } body = body.replace(/_t\(['"]([\s\S]*?)['"]\)/mg, (match, g1)=>this.translate(g1)); if (this.props.replaceMap) { Object.keys(this.props.replaceMap).forEach(key => { body = body.split(key).join(this.props.replaceMap[key]); }); } this.setState({ page: body }); }, ); this.dispatcherRef = dis.register(this.onAction); } public componentWillUnmount(): void { this.unmounted = true; if (this.dispatcherRef !== null) dis.unregister(this.dispatcherRef); } private onAction = (payload: ActionPayload): void => { // HACK: Workaround for the context's MatrixClient not being set up at render time. if (payload.action === 'client_started') { this.forceUpdate(); } }; public render(): JSX.Element { // HACK: Workaround for the context's MatrixClient not updating. const client = this.context || MatrixClientPeg.get(); const isGuest = client ? client.isGuest() : true; const className = this.props.className; const classes = classnames({ [className]: true, [`${className}_guest`]: isGuest, [`${className}_loggedIn`]: !!client, }); const content =
; if (this.props.scrollbar) { return { content } ; } else { return
{ content }
; } } }