App.js 5.04 KiB
Newer Older
Amaury Martiny's avatar
Amaury Martiny committed
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
// This file is part of Parity.
Amaury Martiny's avatar
Amaury Martiny committed
//
Amaury Martiny's avatar
Amaury Martiny committed
// SPDX-License-Identifier: BSD-3-Clause
import {
  BrowserRouter,
  MemoryRouter,
  Redirect,
  Route,
  Switch
} from 'react-router-dom';
import { inject, observer } from 'mobx-react';
import isElectron from 'is-electron';
import { Modal } from 'fether-ui';
import ReactResizeDetector from 'react-resize-detector';
import semver from 'semver';
import { version } from '../../package.json';
import BackupAccount from '../BackupAccount';
Amaury Martiny's avatar
Amaury Martiny committed
import RequireHealthOverlay from '../RequireHealthOverlay';
import Send from '../Send';
import Whitelist from '../Whitelist';
const currentVersion = version;

Amaury Martiny's avatar
Amaury Martiny committed
// Use MemoryRouter for production viewing in file:// protocol
// https://github.com/facebook/create-react-app/issues/3591
const Router =
  process.env.NODE_ENV === 'production' ? MemoryRouter : BrowserRouter;
const electron = isElectron() ? window.require('electron') : null;
@inject('onboardingStore', 'parityStore')
Amaury Martiny's avatar
Amaury Martiny committed
@observer
class App extends Component {
Amaury Martiny's avatar
Amaury Martiny committed
  handleResize = (_, height) => {
    if (!electron) {
      return;
    }
    // Send height to main process
    electron.ipcRenderer.send('asynchronous-message', 'app-resize', height);
  state = {
    newRelease: false // false | {name, url, ignore}
  };

  componentDidMount () {
    window
      .fetch('https://api.github.com/repos/paritytech/fether/releases/latest')
      .then(j => j.json())
      .then(({ name, html_url: url, tag_name: tag }) => {
        const latestVersion = tag.match(/v(\d+\.\d+(\.\d+)?)/)[1];
        if (semver.gt(latestVersion, currentVersion)) {
          this.setState({
            newRelease: {
              name,
              url,
              ignore: false
            }
          });
        }
      })
      .catch(e => {
        console.error('Error while checking for a new version of Fether:', e);
      });
  }

  renderModalLinks = () => {
    return (
      <nav className='form-nav -binary'>
        <button className='button -back' onClick={this.hideNewReleaseModal}>
          Remind me later
        </button>

        <button className='button' onClick={this.openNewReleaseUrl}>
          Download
        </button>
      </nav>
    );
  };

  hideNewReleaseModal = () => {
    this.setState({
      newRelease: { ...this.state.newRelease, ignore: true }
    });
  };

  openNewReleaseUrl = () => {
    window.open(this.state.newRelease.url);
  };

Amaury Martiny's avatar
Amaury Martiny committed
  /**
   * Decide which screen to render.
   */
  render () {
Amaury Martiny's avatar
Amaury Martiny committed
    const {
      onboardingStore: { isFirstRun },
      parityStore: { api }
Amaury Martiny's avatar
Amaury Martiny committed
    } = this.props;

Amaury Martiny's avatar
Amaury Martiny committed
    if (isFirstRun) {
          <Onboarding />
        </div>
      );
Amaury Martiny's avatar
Amaury Martiny committed
    // The child components make use of light.js and light.js needs to be passed
    // an API first, otherwise it will throw an error.
    // We set parityStore.api right after we set the API for light.js, so we
    // verify here that parityStore.api is defined, and if not we don't render
    // the children, just a <RequireHealthOverlay />.
Amaury Martiny's avatar
Amaury Martiny committed
    if (!api) {
      return (
        <ReactResizeDetector handleHeight onResize={this.handleResize}>
          <RequireHealthOverlay fullscreen require='node'>
            {/* Adding these components to have minimum height on window */}
            <div className='content'>
              <div className='window' />
            </div>
          </RequireHealthOverlay>
        </ReactResizeDetector>
      );
Amaury Martiny's avatar
Amaury Martiny committed
    return (
      <ReactResizeDetector handleHeight onResize={this.handleResize}>
        <div className='content'>
          <div className='window'>
            <Modal
              title='New version available'
              description={`${this.state.newRelease.name &&
                this.state.newRelease.name} was released!`}
              visible={this.state.newRelease && !this.state.newRelease.ignore}
              buttons={this.renderModalLinks()}
            >
              <Router>
                <Switch>
                  {/* The next line is the homepage */}
                  <Redirect exact from='/' to='/accounts' />
                  <Route path='/accounts' component={Accounts} />
                  <Route path='/onboarding' component={Onboarding} />
                  <Route path='/tokens/:accountAddress' component={Tokens} />
                  <Route
                    path='/whitelist/:accountAddress'
                    component={Whitelist}
                  />
                  <Route
                    path='/backup/:accountAddress'
                    component={BackupAccount}
                  />
                  <Route
                    path='/send/:tokenAddress/from/:accountAddress'
                    component={Send}
                  />
                  <Redirect from='*' to='/' />
                </Switch>
              </Router>
            </Modal>
          </div>
        </div>
      </ReactResizeDetector>
}

export default App;