mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #558 from MetaMask/i390-TransactionLimit
Enforce transaction log limit
This commit is contained in:
commit
07927b5798
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@ builds/
|
|||||||
notes.txt
|
notes.txt
|
||||||
app/.DS_Store
|
app/.DS_Store
|
||||||
development/bundle.js
|
development/bundle.js
|
||||||
|
builds.zip
|
||||||
|
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
- Transaction history now has a hard limit.
|
||||||
|
- Added info link on account screen that visits Etherscan.
|
||||||
|
|
||||||
## 2.9.0 2016-08-22
|
## 2.9.0 2016-08-22
|
||||||
|
|
||||||
- Added ShapeShift to the transaction history
|
- Added ShapeShift to the transaction history
|
||||||
|
@ -5,6 +5,7 @@ const rp = require('request-promise')
|
|||||||
|
|
||||||
const TESTNET_RPC = MetamaskConfig.network.testnet
|
const TESTNET_RPC = MetamaskConfig.network.testnet
|
||||||
const MAINNET_RPC = MetamaskConfig.network.mainnet
|
const MAINNET_RPC = MetamaskConfig.network.mainnet
|
||||||
|
const txLimit = 40
|
||||||
|
|
||||||
/* The config-manager is a convenience object
|
/* The config-manager is a convenience object
|
||||||
* wrapping a pojo-migrator.
|
* wrapping a pojo-migrator.
|
||||||
@ -15,6 +16,8 @@ const MAINNET_RPC = MetamaskConfig.network.mainnet
|
|||||||
*/
|
*/
|
||||||
module.exports = ConfigManager
|
module.exports = ConfigManager
|
||||||
function ConfigManager (opts) {
|
function ConfigManager (opts) {
|
||||||
|
this.txLimit = txLimit
|
||||||
|
|
||||||
// ConfigManager is observable and will emit updates
|
// ConfigManager is observable and will emit updates
|
||||||
this._subs = []
|
this._subs = []
|
||||||
|
|
||||||
@ -181,6 +184,9 @@ ConfigManager.prototype._saveTxList = function (txList) {
|
|||||||
|
|
||||||
ConfigManager.prototype.addTx = function (tx) {
|
ConfigManager.prototype.addTx = function (tx) {
|
||||||
var transactions = this.getTxList()
|
var transactions = this.getTxList()
|
||||||
|
while (transactions.length > this.txLimit - 1) {
|
||||||
|
transactions.shift()
|
||||||
|
}
|
||||||
transactions.push(tx)
|
transactions.push(tx)
|
||||||
this._saveTxList(transactions)
|
this._saveTxList(transactions)
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,9 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "gulp dev",
|
"start": "gulp dev",
|
||||||
|
"lint": "gulp lint",
|
||||||
|
"dev": "gulp dev",
|
||||||
|
"dist": "gulp dist",
|
||||||
"test": "npm run fastTest && npm run ci",
|
"test": "npm run fastTest && npm run ci",
|
||||||
"fastTest": "mocha --require test/helper.js --compilers js:babel-register --recursive \"test/unit/**/*.js\"",
|
"fastTest": "mocha --require test/helper.js --compilers js:babel-register --recursive \"test/unit/**/*.js\"",
|
||||||
"watch": "mocha watch --compilers js:babel-register --recursive \"test/unit/**/*.js\"",
|
"watch": "mocha watch --compilers js:babel-register --recursive \"test/unit/**/*.js\"",
|
||||||
|
12
test/unit/account-link-test.js
Normal file
12
test/unit/account-link-test.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
var assert = require('assert')
|
||||||
|
var linkGen = require('../../ui/lib/account-link')
|
||||||
|
|
||||||
|
describe('account-link', function() {
|
||||||
|
|
||||||
|
it('adds testnet prefix to morden test network', function() {
|
||||||
|
var result = linkGen('account', '2')
|
||||||
|
assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected')
|
||||||
|
assert.notEqual(result.indexOf('account'), -1, 'account included')
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
@ -233,6 +233,17 @@ describe('config-manager', function() {
|
|||||||
assert.equal(result.length, 1)
|
assert.equal(result.length, 1)
|
||||||
assert.equal(result[0].id, 1)
|
assert.equal(result[0].id, 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('cuts off early txs beyond a limit', function() {
|
||||||
|
const limit = configManager.txLimit
|
||||||
|
for (let i = 0; i < limit + 1; i++) {
|
||||||
|
let tx = { id: i }
|
||||||
|
configManager.addTx(tx)
|
||||||
|
}
|
||||||
|
var result = configManager.getTxList()
|
||||||
|
assert.equal(result.length, limit, `limit of ${limit} txs enforced`)
|
||||||
|
assert.equal(result[0].id, 1, 'early txs truncted')
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('#confirmTx', function() {
|
describe('#confirmTx', function() {
|
||||||
|
@ -4,6 +4,7 @@ const Component = require('react').Component
|
|||||||
const h = require('react-hyperscript')
|
const h = require('react-hyperscript')
|
||||||
const connect = require('react-redux').connect
|
const connect = require('react-redux').connect
|
||||||
const CopyButton = require('./components/copyButton')
|
const CopyButton = require('./components/copyButton')
|
||||||
|
const AccountInfoLink = require('./components/account-info-link')
|
||||||
const actions = require('./actions')
|
const actions = require('./actions')
|
||||||
const ReactCSSTransitionGroup = require('react-addons-css-transition-group')
|
const ReactCSSTransitionGroup = require('react-addons-css-transition-group')
|
||||||
const valuesFor = require('./util').valuesFor
|
const valuesFor = require('./util').valuesFor
|
||||||
@ -44,6 +45,7 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
var selected = props.address || Object.keys(props.accounts)[0]
|
var selected = props.address || Object.keys(props.accounts)[0]
|
||||||
var identity = props.identities[selected]
|
var identity = props.identities[selected]
|
||||||
var account = props.accounts[selected]
|
var account = props.accounts[selected]
|
||||||
|
const { network } = props
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
@ -127,6 +129,9 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
bottom: '15px',
|
bottom: '15px',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
|
|
||||||
|
h(AccountInfoLink, { selected, network }),
|
||||||
|
|
||||||
h(CopyButton, {
|
h(CopyButton, {
|
||||||
value: ethUtil.toChecksumAddress(selected),
|
value: ethUtil.toChecksumAddress(selected),
|
||||||
}),
|
}),
|
||||||
@ -136,16 +141,15 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
}, [
|
}, [
|
||||||
h('div', {
|
h('div', {
|
||||||
style: {
|
style: {
|
||||||
margin: '5px',
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
h('img.cursor-pointer.color-orange', {
|
h('img.cursor-pointer.color-orange', {
|
||||||
src: 'images/key-32.png',
|
src: 'images/key-32.png',
|
||||||
onClick: () => this.requestAccountExport(selected),
|
onClick: () => this.requestAccountExport(selected),
|
||||||
style: {
|
style: {
|
||||||
margin: '0px 5px',
|
height: '19px',
|
||||||
width: '20px',
|
|
||||||
height: '20px',
|
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
@ -244,6 +248,7 @@ AccountDetailScreen.prototype.transactionList = function () {
|
|||||||
network,
|
network,
|
||||||
unconfTxs,
|
unconfTxs,
|
||||||
unconfMsgs,
|
unconfMsgs,
|
||||||
|
address,
|
||||||
shapeShiftTxList,
|
shapeShiftTxList,
|
||||||
viewPendingTx: (txId) => {
|
viewPendingTx: (txId) => {
|
||||||
this.props.dispatch(actions.viewPendingTx(txId))
|
this.props.dispatch(actions.viewPendingTx(txId))
|
||||||
|
42
ui/app/components/account-info-link.js
Normal file
42
ui/app/components/account-info-link.js
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
const Component = require('react').Component
|
||||||
|
const h = require('react-hyperscript')
|
||||||
|
const inherits = require('util').inherits
|
||||||
|
const Tooltip = require('./tooltip')
|
||||||
|
const genAccountLink = require('../../lib/account-link')
|
||||||
|
const extension = require('../../../app/scripts/lib/extension')
|
||||||
|
|
||||||
|
module.exports = AccountInfoLink
|
||||||
|
|
||||||
|
inherits(AccountInfoLink, Component)
|
||||||
|
function AccountInfoLink () {
|
||||||
|
Component.call(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
AccountInfoLink.prototype.render = function () {
|
||||||
|
const { selected, network } = this.props
|
||||||
|
const title = 'View account on etherscan'
|
||||||
|
const url = genAccountLink(selected, network)
|
||||||
|
|
||||||
|
if (!url) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return h('.account-info-link', {
|
||||||
|
style: {
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
},
|
||||||
|
}, [
|
||||||
|
|
||||||
|
h(Tooltip, {
|
||||||
|
title,
|
||||||
|
}, [
|
||||||
|
h('i.fa.fa-info-circle.cursor-pointer.color-orange', {
|
||||||
|
style: {
|
||||||
|
margin: '5px',
|
||||||
|
},
|
||||||
|
onClick () { extension.tabs.create({ url }) },
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
}
|
@ -26,6 +26,7 @@ function ShiftListItem () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ShiftListItem.prototype.render = function () {
|
ShiftListItem.prototype.render = function () {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
h('.transaction-list-item.flex-row', {
|
h('.transaction-list-item.flex-row', {
|
||||||
style: {
|
style: {
|
||||||
@ -113,7 +114,6 @@ ShiftListItem.prototype.renderUtilComponents = function () {
|
|||||||
default:
|
default:
|
||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ShiftListItem.prototype.renderInfo = function () {
|
ShiftListItem.prototype.renderInfo = function () {
|
||||||
|
@ -19,7 +19,7 @@ function TransactionListItem () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TransactionListItem.prototype.render = function () {
|
TransactionListItem.prototype.render = function () {
|
||||||
const { transaction, i, network } = this.props
|
const { transaction, network } = this.props
|
||||||
if (transaction.key === 'shapeshift') {
|
if (transaction.key === 'shapeshift') {
|
||||||
if (network === '1') return h(ShiftListItem, transaction)
|
if (network === '1') return h(ShiftListItem, transaction)
|
||||||
}
|
}
|
||||||
@ -44,7 +44,6 @@ TransactionListItem.prototype.render = function () {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
h(`.transaction-list-item.flex-row.flex-space-between${isClickable ? '.pointer' : ''}`, {
|
h(`.transaction-list-item.flex-row.flex-space-between${isClickable ? '.pointer' : ''}`, {
|
||||||
key: `tx-${transaction.id + i}`,
|
|
||||||
onClick: (event) => {
|
onClick: (event) => {
|
||||||
if (isPending) {
|
if (isPending) {
|
||||||
this.props.showTx(transaction.id)
|
this.props.showTx(transaction.id)
|
||||||
|
@ -43,33 +43,46 @@ TransactionList.prototype.render = function () {
|
|||||||
paddingBottom: '4px',
|
paddingBottom: '4px',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
'Transactions',
|
'History',
|
||||||
]),
|
]),
|
||||||
|
|
||||||
h('.tx-list', {
|
h('.tx-list', {
|
||||||
style: {
|
style: {
|
||||||
overflowY: 'auto',
|
overflowY: 'auto',
|
||||||
height: '305px',
|
height: '300px',
|
||||||
padding: '0 20px',
|
padding: '0 20px',
|
||||||
textAlign: 'center',
|
textAlign: 'center',
|
||||||
},
|
},
|
||||||
}, (
|
}, [
|
||||||
|
|
||||||
transactions.length
|
transactions.length
|
||||||
? transactions.map((transaction, i) => {
|
? transactions.map((transaction, i) => {
|
||||||
|
let key
|
||||||
|
switch (transaction.key) {
|
||||||
|
case 'shapeshift':
|
||||||
|
const { depositAddress, time } = transaction
|
||||||
|
key = `shift-tx-${depositAddress}-${time}-${i}`
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
key = `tx-${transaction.id}-${i}`
|
||||||
|
}
|
||||||
return h(TransactionListItem, {
|
return h(TransactionListItem, {
|
||||||
transaction, i, network,
|
transaction, i, network, key,
|
||||||
showTx: (txId) => {
|
showTx: (txId) => {
|
||||||
this.props.viewPendingTx(txId)
|
this.props.viewPendingTx(txId)
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
: [h('.flex-center', {
|
: h('.flex-center', {
|
||||||
style: {
|
style: {
|
||||||
|
flexDirection: 'column',
|
||||||
height: '100%',
|
height: '100%',
|
||||||
},
|
},
|
||||||
}, 'No transaction history...')]
|
}, [
|
||||||
)),
|
'No transaction history.',
|
||||||
|
]),
|
||||||
|
]),
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
18
ui/lib/account-link.js
Normal file
18
ui/lib/account-link.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
module.exports = function(address, network) {
|
||||||
|
const net = parseInt(network)
|
||||||
|
let link
|
||||||
|
|
||||||
|
switch (net) {
|
||||||
|
case 1: // main net
|
||||||
|
link = `http://etherscan.io/address/${address}`
|
||||||
|
break
|
||||||
|
case 2: // morden test net
|
||||||
|
link = `http://testnet.etherscan.io/address/${address}`
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
link = ''
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
return link
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user