// Copyright 2015, 2016 Parity Technologies (UK) Ltd. // This file is part of Parity. // Parity is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Parity is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Parity. If not, see . import React, { Component, PropTypes } from 'react'; import store from 'store'; import { parse as parseUrl, format as formatUrl } from 'url'; import { parse as parseQuery } from 'querystring'; import AddressBar from './AddressBar'; import styles from './web.css'; const LS_LAST_ADDRESS = '_parity::webLastAddress'; const hasProtocol = /^https?:\/\//; export default class Web extends Component { static contextTypes = { api: PropTypes.object.isRequired } static propTypes = { params: PropTypes.object.isRequired } state = { displayedUrl: null, isLoading: true, token: null, url: null }; componentDidMount () { const { api } = this.context; const { params } = this.props; api .signer .generateWebProxyAccessToken() .then((token) => { this.setState({ token }); }); this.setUrl(params.url); } componentWillReceiveProps (props) { this.setUrl(props.params.url); } setUrl = (url) => { url = url || store.get(LS_LAST_ADDRESS) || 'https://mkr.market'; if (!hasProtocol.test(url)) { url = `https://${url}`; } this.setState({ url, displayedUrl: url }); }; render () { const { displayedUrl, isLoading, token } = this.state; if (!token) { return (

Requesting access token...

); } const { dappsUrl } = this.context.api; const { url } = this.state; if (!url || !token) { return null; } const parsed = parseUrl(url); const { protocol, host, path } = parsed; const address = `${dappsUrl}/web/${token}/${protocol.slice(0, -1)}/${host}${path}`; return (