9613145464
* WIP * WIP store * Store in-place * WIP tests * Store completed * Expand option tests for events * Fix & test for errors found in manual testing * Add missing @observer (rookie mistake) * Fix intl formatting error (completed step) * Pass store to ErrorStep, test all stages for components * Add warning messages (e.g. no price found) * Fix typo
212 lines
5.1 KiB
JavaScript
212 lines
5.1 KiB
JavaScript
// 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 <http://www.gnu.org/licenses/>.
|
|
|
|
import { observer } from 'mobx-react';
|
|
import React, { Component, PropTypes } from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
import shapeshiftLogo from '~/../assets/images/shapeshift-logo.png';
|
|
import { Button, IdentityIcon, Modal } from '~/ui';
|
|
import { CancelIcon, DoneIcon } from '~/ui/Icons';
|
|
|
|
import AwaitingDepositStep from './AwaitingDepositStep';
|
|
import AwaitingExchangeStep from './AwaitingExchangeStep';
|
|
import CompletedStep from './CompletedStep';
|
|
import ErrorStep from './ErrorStep';
|
|
import OptionsStep from './OptionsStep';
|
|
import Store, { STAGE_COMPLETED, STAGE_OPTIONS, STAGE_WAIT_DEPOSIT, STAGE_WAIT_EXCHANGE } from './store';
|
|
|
|
import styles from './shapeshift.css';
|
|
|
|
const STAGE_TITLES = [
|
|
<FormattedMessage
|
|
id='shapeshift.title.details'
|
|
defaultMessage='details' />,
|
|
<FormattedMessage
|
|
id='shapeshift.title.deposit'
|
|
defaultMessage='awaiting deposit' />,
|
|
<FormattedMessage
|
|
id='shapeshift.title.exchange'
|
|
defaultMessage='awaiting exchange' />,
|
|
<FormattedMessage
|
|
id='shapeshift.title.completed'
|
|
defaultMessage='completed' />
|
|
];
|
|
const ERROR_TITLE = (
|
|
<FormattedMessage
|
|
id='shapeshift.title.error'
|
|
defaultMessage='exchange failed' />
|
|
);
|
|
|
|
@observer
|
|
export default class Shapeshift extends Component {
|
|
static contextTypes = {
|
|
store: PropTypes.object.isRequired
|
|
}
|
|
|
|
static propTypes = {
|
|
address: PropTypes.string.isRequired,
|
|
onClose: PropTypes.func
|
|
}
|
|
|
|
store = new Store(this.props.address);
|
|
|
|
componentDidMount () {
|
|
this.store.retrieveCoins();
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
this.store.unsubscribe();
|
|
}
|
|
|
|
render () {
|
|
const { error, stage } = this.store;
|
|
|
|
return (
|
|
<Modal
|
|
actions={ this.renderDialogActions() }
|
|
current={ stage }
|
|
steps={
|
|
error
|
|
? null
|
|
: STAGE_TITLES
|
|
}
|
|
title={
|
|
error
|
|
? ERROR_TITLE
|
|
: null
|
|
}
|
|
visible
|
|
waiting={ [
|
|
STAGE_WAIT_DEPOSIT,
|
|
STAGE_WAIT_EXCHANGE
|
|
] }>
|
|
{ this.renderPage() }
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
renderDialogActions () {
|
|
const { address } = this.props;
|
|
const { coins, error, hasAcceptedTerms, stage } = this.store;
|
|
|
|
const logo = (
|
|
<a href='http://shapeshift.io' target='_blank' className={ styles.shapeshift }>
|
|
<img src={ shapeshiftLogo } />
|
|
</a>
|
|
);
|
|
const cancelBtn = (
|
|
<Button
|
|
icon={ <CancelIcon /> }
|
|
label={
|
|
<FormattedMessage
|
|
id='shapeshift.button.cancel'
|
|
defaultMessage='Cancel' />
|
|
}
|
|
onClick={ this.onClose } />
|
|
);
|
|
|
|
if (error) {
|
|
return [
|
|
logo,
|
|
cancelBtn
|
|
];
|
|
}
|
|
|
|
switch (stage) {
|
|
case STAGE_OPTIONS:
|
|
return [
|
|
logo,
|
|
cancelBtn,
|
|
<Button
|
|
disabled={ !coins.length || !hasAcceptedTerms }
|
|
icon={
|
|
<IdentityIcon
|
|
address={ address }
|
|
button />
|
|
}
|
|
label={
|
|
<FormattedMessage
|
|
id='shapeshift.button.shift'
|
|
defaultMessage='Shift Funds' />
|
|
}
|
|
onClick={ this.onShift } />
|
|
];
|
|
|
|
case STAGE_WAIT_DEPOSIT:
|
|
case STAGE_WAIT_EXCHANGE:
|
|
return [
|
|
logo,
|
|
cancelBtn
|
|
];
|
|
|
|
case STAGE_COMPLETED:
|
|
return [
|
|
logo,
|
|
<Button
|
|
icon={ <DoneIcon /> }
|
|
label={
|
|
<FormattedMessage
|
|
id='shapeshift.button.done'
|
|
defaultMessage='Close' />
|
|
}
|
|
onClick={ this.onClose } />
|
|
];
|
|
}
|
|
}
|
|
|
|
renderPage () {
|
|
const { error, stage } = this.store;
|
|
|
|
if (error) {
|
|
return (
|
|
<ErrorStep store={ this.store } />
|
|
);
|
|
}
|
|
|
|
switch (stage) {
|
|
case STAGE_OPTIONS:
|
|
return (
|
|
<OptionsStep store={ this.store } />
|
|
);
|
|
|
|
case STAGE_WAIT_DEPOSIT:
|
|
return (
|
|
<AwaitingDepositStep store={ this.store } />
|
|
);
|
|
|
|
case STAGE_WAIT_EXCHANGE:
|
|
return (
|
|
<AwaitingExchangeStep store={ this.store } />
|
|
);
|
|
|
|
case STAGE_COMPLETED:
|
|
return (
|
|
<CompletedStep store={ this.store } />
|
|
);
|
|
}
|
|
}
|
|
|
|
onClose = () => {
|
|
this.store.setStage(STAGE_OPTIONS);
|
|
this.props.onClose && this.props.onClose();
|
|
}
|
|
|
|
onShift = () => {
|
|
return this.store.shift();
|
|
}
|
|
}
|