// 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 PropTypes from 'prop-types';
import { connect } from 'react-redux';
import util from '@parity/api/util';
import { nodeOrStringProptype } from '@parity/shared/util/proptypes';
import { isNullAddress } from '@parity/shared/util/validation';
import IdentityIcon from '../../IdentityIcon';
import Input from '../Input';
import styles from './inputAddress.css';
class InputAddress extends Component {
static propTypes = {
account: PropTypes.object,
allowCopy: PropTypes.bool,
autoFocus: PropTypes.bool,
allowInvalid: PropTypes.bool,
className: PropTypes.string,
disabled: PropTypes.bool,
error: PropTypes.string,
focused: PropTypes.bool,
hideUnderline: PropTypes.bool,
hint: nodeOrStringProptype(),
label: nodeOrStringProptype(),
onChange: PropTypes.func,
onClick: PropTypes.func,
onFocus: PropTypes.func,
onSubmit: PropTypes.func,
readOnly: PropTypes.bool,
small: PropTypes.bool,
tabIndex: PropTypes.number,
text: PropTypes.bool,
value: PropTypes.string
};
static defaultProps = {
allowCopy: true,
hideUnderline: false,
small: false
};
render () {
const { account, allowCopy, autoFocus, className, disabled, error, focused, hint } = this.props;
const { hideUnderline, label, onClick, onFocus, readOnly, small } = this.props;
const { tabIndex, text, value } = this.props;
const icon = this.renderIcon();
const classes = [ className ];
classes.push(!icon ? styles.inputEmpty : styles.input);
const containerClasses = [ styles.container ];
const nullName = (disabled || readOnly) && isNullAddress(value)
? 'null'
: null;
// FIXME: The is not advisable, fixes the display issue, however the name should come from
// a common component.
// account.name || (value ? 'UNNAMED' : value)
const displayValue = text && account
? (account.name || (value ? 'UNNAMED' : value))
: (nullName || value);
if (small) {
containerClasses.push(styles.small);
}
const props = {};
if (!disabled) {
props.focused = focused;
}
return (