49fdd23d58
* Move secureApi to shell * Extract isTestnet test * Use mobx + subscriptions for status * Re-add status indicator * Add lerna * Move intial packages to js/packages * Move 3rdparty/{email,sms}-verification to correct location * Move package.json & README to library src * Move tests for library packages * Move views & dapps to packages * Move i18n to root * Move shell to actual src (main app) * Remove ~ references * Change ~ to root (explicit imports) * Finalise convert of ~ * Move views into dapps as well * Move dapps to packages/ * Fix references * Update css * Update test spec locations * Update tests * Case fix * Skip flakey tests * Update enzyme * Skip previously ignored tests * Allow empty api for hw * Re-add theme for embed
181 lines
4.8 KiB
JavaScript
181 lines
4.8 KiB
JavaScript
// 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 <http://www.gnu.org/licenses/>.
|
||
|
||
import React, { Component } from 'react';
|
||
import { connect } from 'react-redux';
|
||
import { bindActionCreators } from 'redux';
|
||
import { Card, CardHeader, CardText } from 'material-ui/Card';
|
||
import RaisedButton from 'material-ui/RaisedButton';
|
||
import SearchIcon from 'material-ui/svg-icons/action/search';
|
||
import TextField from 'material-ui/TextField';
|
||
import DropDownMenu from 'material-ui/DropDownMenu';
|
||
import MenuItem from 'material-ui/MenuItem';
|
||
import keycode from 'keycode';
|
||
import PropTypes from 'prop-types';
|
||
|
||
import { nullableProptype } from '@parity/shared/util/proptypes';
|
||
|
||
import Address from '../ui/address.js';
|
||
import renderImage from '../ui/image.js';
|
||
|
||
import { clear, lookup, ownerLookup, reverseLookup } from './actions';
|
||
import styles from './lookup.css';
|
||
|
||
class Lookup extends Component {
|
||
static propTypes = {
|
||
result: nullableProptype(PropTypes.string.isRequired),
|
||
|
||
clear: PropTypes.func.isRequired,
|
||
lookup: PropTypes.func.isRequired,
|
||
ownerLookup: PropTypes.func.isRequired,
|
||
reverseLookup: PropTypes.func.isRequired
|
||
}
|
||
|
||
state = {
|
||
input: '', type: 'A'
|
||
};
|
||
|
||
render () {
|
||
const { input, type } = this.state;
|
||
const { result } = this.props;
|
||
|
||
return (
|
||
<Card className={ styles.lookup }>
|
||
<CardHeader title={ 'Query the Registry' } />
|
||
<div className={ styles.box }>
|
||
<TextField
|
||
hintText={ type === 'reverse' ? 'address' : 'name' }
|
||
value={ input }
|
||
onChange={ this.onInputChange }
|
||
onKeyDown={ this.onKeyDown }
|
||
/>
|
||
<DropDownMenu
|
||
value={ type }
|
||
onChange={ this.onTypeChange }
|
||
>
|
||
<MenuItem value='A' primaryText='A – Ethereum address' />
|
||
<MenuItem value='IMG' primaryText='IMG – hash of a picture in the blockchain' />
|
||
<MenuItem value='CONTENT' primaryText='CONTENT – hash of a data in the blockchain' />
|
||
<MenuItem value='reverse' primaryText='reverse – find a name for an address' />
|
||
<MenuItem value='owner' primaryText='owner – find the owner' />
|
||
</DropDownMenu>
|
||
<RaisedButton
|
||
label='Lookup'
|
||
primary
|
||
icon={ <SearchIcon /> }
|
||
onTouchTap={ this.onLookupClick }
|
||
/>
|
||
</div>
|
||
<CardText>
|
||
{ this.renderOutput(type, result) }
|
||
</CardText>
|
||
</Card>
|
||
);
|
||
}
|
||
|
||
renderOutput (type, result) {
|
||
if (result === null) {
|
||
return null;
|
||
}
|
||
|
||
if (type === 'A') {
|
||
return (
|
||
<code>
|
||
<Address
|
||
address={ result }
|
||
shortenHash={ false }
|
||
/>
|
||
</code>
|
||
);
|
||
}
|
||
|
||
if (type === 'owner') {
|
||
if (!result) {
|
||
return (
|
||
<code>Not reserved yet</code>
|
||
);
|
||
}
|
||
|
||
return (
|
||
<code>
|
||
<Address
|
||
address={ result }
|
||
shortenHash={ false }
|
||
/>
|
||
</code>
|
||
);
|
||
}
|
||
|
||
if (type === 'IMG') {
|
||
return renderImage(result);
|
||
}
|
||
|
||
if (type === 'CONTENT') {
|
||
return (
|
||
<div>
|
||
<code>{ result }</code>
|
||
<p>Keep in mind that this is most likely the hash of the content you are looking for.</p>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
return (
|
||
<code>{ result || 'No data' }</code>
|
||
);
|
||
}
|
||
|
||
onInputChange = (e) => {
|
||
this.setState({ input: e.target.value });
|
||
}
|
||
|
||
onKeyDown = (event) => {
|
||
const codeName = keycode(event);
|
||
|
||
if (codeName !== 'enter') {
|
||
return;
|
||
}
|
||
|
||
this.onLookupClick();
|
||
}
|
||
|
||
onTypeChange = (e, i, type) => {
|
||
this.setState({ type });
|
||
this.props.clear();
|
||
}
|
||
|
||
onLookupClick = () => {
|
||
const { input, type } = this.state;
|
||
|
||
if (type === 'reverse') {
|
||
return this.props.reverseLookup(input);
|
||
}
|
||
|
||
if (type === 'owner') {
|
||
return this.props.ownerLookup(input);
|
||
}
|
||
|
||
return this.props.lookup(input, type);
|
||
}
|
||
}
|
||
|
||
const mapStateToProps = (state) => state.lookup;
|
||
const mapDispatchToProps = (dispatch) =>
|
||
bindActionCreators({
|
||
clear, lookup, ownerLookup, reverseLookup
|
||
}, dispatch);
|
||
|
||
export default connect(mapStateToProps, mapDispatchToProps)(Lookup);
|