// Copyright 2015-2017 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 } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { Card, CardHeader, CardText } from 'material-ui/Card';
import TextField from 'material-ui/TextField';
import DropDownMenu from 'material-ui/DropDownMenu';
import MenuItem from 'material-ui/MenuItem';
import RaisedButton from 'material-ui/RaisedButton';
import CheckIcon from 'material-ui/svg-icons/navigation/check';
import PropTypes from 'prop-types';
import { nullableProptype } from '@parity/shared/util/proptypes';
import { fromWei } from '../parity.js';
import { clearError, reserve, drop } from './actions';
import styles from './names.css';
const useSignerText = (
Use the Signer to authenticate the following changes.
);
const renderNames = (names) => {
const values = Object.values(names);
return values
.map((name, index) => (
{ name }
{
index < values.length - 1
? (, )
: null
}
));
};
const renderQueue = (queue) => {
if (queue.length === 0) {
return null;
}
const grouped = queue.reduce((grouped, change) => {
const last = grouped[grouped.length - 1];
if (last && last.action === change.action) {
last.names.push(change.name);
} else {
grouped.push({ action: change.action, names: [change.name] });
}
return grouped;
}, []);
return (
{ grouped.map(({ action, names }) => (
-
{ renderNames(names) }
{ ' will be ' }
{ action === 'reserve' ? 'reserved' : 'dropped' }
)) }
);
};
class Names extends Component {
static propTypes = {
error: nullableProptype(PropTypes.object.isRequired),
fee: PropTypes.object.isRequired,
pending: PropTypes.bool.isRequired,
queue: PropTypes.array.isRequired,
clearError: PropTypes.func.isRequired,
reserve: PropTypes.func.isRequired,
drop: PropTypes.func.isRequired
};
state = {
action: 'reserve',
name: ''
};
render () {
const { action, name } = this.state;
const { fee, pending, queue } = this.props;
return (
{ (action === 'reserve'
? (
The fee to reserve a name is { fromWei(fee).toFixed(3) }
ETH.
)
: (To drop a name, you have to be the owner.
)
)
}
{ this.renderError() }
}
onTouchTap={ this.onSubmitClick }
/>
{ queue.length > 0
? ({ useSignerText }{ renderQueue(queue) }
)
: null
}
);
}
renderError () {
const { error } = this.props;
if (!error) {
return null;
}
return (
{ error.message }
);
}
onNameChange = (e) => {
this.clearError();
this.setState({ name: e.target.value });
};
onActionChange = (e, i, action) => {
this.clearError();
this.setState({ action });
};
onSubmitClick = () => {
const { action, name } = this.state;
if (action === 'reserve') {
return this.props.reserve(name);
}
if (action === 'drop') {
return this.props.drop(name);
}
};
clearError = () => {
if (this.props.error) {
this.props.clearError();
}
};
}
const mapStateToProps = (state) => ({ ...state.names, fee: state.fee });
const mapDispatchToProps = (dispatch) => bindActionCreators({ clearError, reserve, drop }, dispatch);
export default connect(mapStateToProps, mapDispatchToProps)(Names);