diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-23 06:05:23 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-23 06:05:23 +0800 |
commit | 3b5749c3bc3334156b311c293a584145f21171e0 (patch) | |
tree | ab7491b3324422ec038aebaf4ac20a03f02a1331 /ui/app | |
parent | c1fd19393f90968bc5a60a77812eac3f8785e3a3 (diff) | |
download | tangerine-wallet-browser-3b5749c3bc3334156b311c293a584145f21171e0.tar tangerine-wallet-browser-3b5749c3bc3334156b311c293a584145f21171e0.tar.gz tangerine-wallet-browser-3b5749c3bc3334156b311c293a584145f21171e0.tar.bz2 tangerine-wallet-browser-3b5749c3bc3334156b311c293a584145f21171e0.tar.lz tangerine-wallet-browser-3b5749c3bc3334156b311c293a584145f21171e0.tar.xz tangerine-wallet-browser-3b5749c3bc3334156b311c293a584145f21171e0.tar.zst tangerine-wallet-browser-3b5749c3bc3334156b311c293a584145f21171e0.zip |
[WIP] Use hardcoded values for dispatching from signTx
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/send.js | 97 |
1 files changed, 80 insertions, 17 deletions
diff --git a/ui/app/send.js b/ui/app/send.js index 66cde1b82..f541d741c 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -42,6 +42,19 @@ function mapStateToProps (state) { inherits(SendTransactionScreen, PersistentForm) function SendTransactionScreen () { PersistentForm.call(this) + + // [WIP] These are the bare minimum of tx props needed to sign a transaction + // We will need a few more for contract-related interactions + this.state = { + newTx: { + from: '', + to: '', + // these values are hardcoded, so "Next" can be clicked + amount: '0.0001', // see L544 + gasPrice: '4a817c800', + gas: '0x7b0d', + }, + } } SendTransactionScreen.prototype.render = function () { @@ -60,6 +73,9 @@ SendTransactionScreen.prototype.render = function () { currentCurrency, } = props + console.log({ selectedIdentity, identities }) + console.log("SendTransactionScreen state:", this.state) + return ( h('div.send-screen-wrapper', { @@ -96,7 +112,19 @@ SendTransactionScreen.prototype.render = function () { h('input.large-input.send-screen-input', { list: 'accounts', - value: selectedIdentity.address + placeholder: 'Account', + value: this.state.from, + onChange: (event) => { + console.log("event", event.target.value) + this.setState({ + newTx: Object.assign( + this.state.newTx, + { + from: event.target.value, + } + ), + }) + }, }, [ ]), @@ -122,7 +150,17 @@ SendTransactionScreen.prototype.render = function () { h(EnsInput, { name: 'address', placeholder: 'Recipient Address', - onChange: this.recipientDidChange.bind(this), + onChange: () => { + console.log("event", event.target.value) + this.setState({ + newTx: Object.assign( + this.state.newTx, + { + to: event.target.value, + } + ), + }) + }, network, identities, addressBook, @@ -138,7 +176,18 @@ SendTransactionScreen.prototype.render = function () { ]), h('input.large-input.send-screen-input', { - placeholder: '$0 USD', + placeholder: '0 ETH', + type: 'number', + onChange: () => { + this.setState({ + newTx: Object.assign( + this.state.newTx, + { + amount: event.target.value, + } + ), + }) + } }, []), ]), @@ -444,11 +493,18 @@ SendTransactionScreen.prototype.recipientDidChange = function (recipient, nickna SendTransactionScreen.prototype.onSubmit = function () { const state = this.state || {} - const recipient = state.recipient || document.querySelector('input[name="address"]').value.replace(/^[.\s]+|[.\s]+$/g, '') + + // const recipient = state.recipient || document.querySelector('input[name="address"]').value.replace(/^[.\s]+|[.\s]+$/g, '') + const recipient = state.newTx.to + const nickname = state.nickname || ' ' - const input = document.querySelector('input[name="amount"]').value - const value = util.normalizeEthStringToWei(input) - // TODO: check with team on whether txData is removed completely. + + // const input = document.querySelector('input[name="amount"]').value + // const input = state.newTx.value + // const value = util.normalizeEthStringToWei(input) + + // https://consensys.slack.com/archives/G1L7H42BT/p1503439134000169?thread_ts=1503438076.000411&cid=G1L7H42BT + // From @kumavis: "not needed for MVP but we will end up adding it again so consider just adding it now" const txData = false; // Must replace with memo data. // const txData = document.querySelector('input[name="txData"]').value @@ -456,15 +512,15 @@ SendTransactionScreen.prototype.onSubmit = function () { const balance = this.props.balance let message - if (value.gt(balance)) { - message = 'Insufficient funds.' - return this.props.dispatch(actions.displayWarning(message)) - } + // if (value.gt(balance)) { + // message = 'Insufficient funds.' + // return this.props.dispatch(actions.displayWarning(message)) + // } - if (input < 0) { - message = 'Can not send negative amounts of ETH.' - return this.props.dispatch(actions.displayWarning(message)) - } + // if (input < 0) { + // message = 'Can not send negative amounts of ETH.' + // return this.props.dispatch(actions.displayWarning(message)) + // } if ((!util.isValidAddress(recipient) && !txData) || (!recipient && !txData)) { message = 'Recipient address is invalid.' @@ -481,8 +537,15 @@ SendTransactionScreen.prototype.onSubmit = function () { this.props.dispatch(actions.addToAddressBook(recipient, nickname)) var txParams = { - from: this.props.address, - value: '0x' + value.toString(16), + // from: this.props.address, + from: this.state.newTx.to, + + // value: '0x' + value.toString(16), + value: '0x38d7ea4c68000', // hardcoded + + // New: gas will now be specified on this step + gas: this.state.newTx.gas, + gasPrice: this.state.newTx.gasPrice } if (recipient) txParams.to = ethUtil.addHexPrefix(recipient) |