* #6707

* Fix default values for address input (#6701)

* #6702

* Remove .only
This commit is contained in:
Jaco Greeff 2017-10-11 20:34:25 +02:00 committed by Arkadiy Paronyan
parent d097956ede
commit 9afd1006ed
6 changed files with 90 additions and 32 deletions

View File

@ -75,7 +75,13 @@ export function bytesToAscii (bytes) {
}
export function asciiToHex (string) {
return '0x' + string.split('').map((s) => s.charCodeAt(0).toString(16)).join('');
let result = '0x';
for (let i = 0; i < string.length; ++i) {
result += ('0' + string.charCodeAt(i).toString(16)).substr(-2);
}
return result;
}
export function padRight (input, length) {

View File

@ -68,6 +68,14 @@ describe('api/util/format', () => {
it('correctly converts a non-empty string', () => {
expect(asciiToHex('abc')).to.equal('0x616263');
});
it('correctly converts where charCode < 0x10', () => {
expect(
asciiToHex(
[32, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0].map((v) => String.fromCharCode(v)).join('')
)
).to.equal('0x20100f0e0d0c0b0a09080706050403020100');
});
});
describe('hexToAscii', () => {

View File

@ -53,11 +53,11 @@ class InputAddressSelect extends Component {
const filteredContacts = nextAllowedValues
? pick(contacts, nextAllowedValues)
: accounts;
: contacts;
const filteredContracts = nextAllowedValues
? pick(contracts, nextAllowedValues)
: accounts;
: contracts;
return (
<AddressSelect

View File

@ -28,12 +28,12 @@
}
.signData {
background: rgba(255,255,255, 0.25);
border: 0.25em solid red;
margin-left: 2em;
padding: 0.5em;
font-size: 0.75em;
padding: 0.5rem;
overflow: auto;
max-height: 6em;
max-width: calc(100% - 2em);
max-height: 10em;
}
.signData > p {

View File

@ -18,7 +18,9 @@ import { observer } from 'mobx-react';
import React, { Component, PropTypes } from 'react';
import { FormattedMessage } from 'react-intl';
import { connect } from 'react-redux';
import ReactMarkdown from 'react-markdown';
import { hexToAscii } from '~/api/util/format';
import HardwareStore from '~/mobx/hardwareStore';
import Account from '../Account';
@ -28,16 +30,39 @@ import RequestOrigin from '../RequestOrigin';
import styles from './signRequest.css';
function isAscii (data) {
for (var i = 2; i < data.length; i += 2) {
for (let i = 2; i < data.length; i += 2) {
let n = parseInt(data.substr(i, 2), 16);
if (n < 32 || n >= 128) {
return false;
}
}
return true;
}
function decodeMarkdown (data) {
return decodeURIComponent(escape(hexToAscii(data)));
}
export function isMarkdown (data) {
try {
const decoded = decodeMarkdown(data);
for (let i = 0; i < decoded.length; i++) {
const code = decoded.charCodeAt(i);
if (code < 32 && code !== 10) {
return false;
}
}
return decoded.indexOf('#') !== -1 || decoded.indexOf('*') !== -1;
} catch (error) {
return false;
}
}
@observer
class SignRequest extends Component {
static contextTypes = {
@ -89,29 +114,26 @@ class SignRequest extends Component {
);
}
renderAsciiDetails (ascii) {
return (
<div className={ styles.signData }>
<p>{ascii}</p>
</div>
);
}
renderData (data) {
if (isAscii(data)) {
return hexToAscii(data);
}
if (isMarkdown(data)) {
return (
<ReactMarkdown source={ decodeMarkdown(data) } />
);
}
renderBinaryDetails (data) {
return (
<div className={ styles.signData }>
<p>
<FormattedMessage
id='signer.signRequest.unknownBinary'
defaultMessage='(Unknown binary data)'
/>
</p>
</div>
<FormattedMessage
id='signer.signRequest.unknownBinary'
defaultMessage='(Unknown binary data)'
/>
);
}
renderDetails () {
const { api } = this.context;
const { address, data, netVersion, origin, signerStore } = this.props;
const { balances, externalLink } = signerStore;
@ -121,6 +143,8 @@ class SignRequest extends Component {
return <div />;
}
const hashToSign = this.context.api.util.sha3(data);
return (
<div className={ styles.signDetails }>
<div className={ styles.address }>
@ -133,18 +157,16 @@ class SignRequest extends Component {
/>
<RequestOrigin origin={ origin } />
</div>
<div className={ styles.info } title={ api.util.sha3(data) }>
<div className={ styles.info } title={ hashToSign }>
<p>
<FormattedMessage
id='signer.signRequest.request'
defaultMessage='A request to sign data using your account:'
/>
</p>
{
isAscii(data)
? this.renderAsciiDetails(api.util.hexToAscii(data))
: this.renderBinaryDetails(data)
}
<div className={ styles.signData }>
<p>{ this.renderData(data) }</p>
</div>
<p>
<strong>
<FormattedMessage

View File

@ -18,7 +18,9 @@ import { shallow } from 'enzyme';
import React from 'react';
import sinon from 'sinon';
import SignRequest from './';
import { asciiToHex } from '~/api/util/format';
import SignRequest, { isMarkdown } from './signRequest';
let component;
let reduxStore;
@ -81,4 +83,24 @@ describe('views/Signer/components/SignRequest', () => {
it('renders', () => {
expect(component).to.be.ok;
});
describe('isMarkdown', () => {
it('returns true for markdown', () => {
const testMd = '# this is some\n\n*markdown*';
const encodedMd = asciiToHex(unescape(encodeURIComponent(testMd)));
expect(isMarkdown(encodedMd)).to.be.true;
});
it('return true with utf-8 markdown', () => {
const testMd = '# header\n\n(n) you are not a citizen of, or resident in, or located in, or incorporated or otherwise established in, the People\'s Republic of China 参与方并非中华人民共和国公民,或不常住中华人民共和国,或不位于中华人民共和国境内,或并非在中华人民共和国设立或以其他方式组建; and';
const encodedMd = asciiToHex(unescape(encodeURIComponent(testMd)));
expect(isMarkdown(encodedMd)).to.be.true;
});
it('returns false for randow data', () => {
expect(isMarkdown('0x1234')).to.be.false;
});
});
});