2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-11-29 13:50:09 +01:00
|
|
|
// 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/>.
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
import { action, observable } from 'mobx';
|
2016-11-29 13:50:09 +01:00
|
|
|
|
|
|
|
export default class Store {
|
|
|
|
@observable blocks = {};
|
|
|
|
@observable sortedHashes = [];
|
|
|
|
@observable transactions = {};
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
constructor (api, onNewError, hashes) {
|
2016-11-29 13:50:09 +01:00
|
|
|
this._api = api;
|
2017-04-25 10:08:09 +02:00
|
|
|
this._onNewError = onNewError;
|
|
|
|
this.loadTransactions(hashes);
|
2016-11-29 13:50:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
@action addHash = (hash) => {
|
|
|
|
if (!this.sortedHashes.includes(hash)) {
|
|
|
|
this.sortedHashes.push(hash);
|
|
|
|
this.sortHashes();
|
|
|
|
}
|
2016-11-29 13:50:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
@action removeHash = (hash) => {
|
|
|
|
this.sortedHashes.remove(hash);
|
|
|
|
let tx = this.transactions[hash];
|
2017-03-07 20:19:55 +01:00
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
if (tx) {
|
|
|
|
delete this.transactions[hash];
|
|
|
|
delete this.blocks[tx.blockNumber];
|
|
|
|
}
|
|
|
|
this.sortHashes();
|
2016-11-29 13:50:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
containsAll = (arr1, arr2) => {
|
|
|
|
return arr2.every((arr2Item) => arr1.includes(arr2Item));
|
2016-11-29 13:50:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
sameHashList = (transactions) => {
|
|
|
|
return this.containsAll(transactions, this.sortedHashes) && this.containsAll(this.sortedHashes, transactions);
|
2016-11-29 13:50:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
sortHashes = () => {
|
|
|
|
this.sortedHashes = this.sortedHashes.sort((hashA, hashB) => {
|
|
|
|
const bnA = this.transactions[hashA].blockNumber;
|
|
|
|
const bnB = this.transactions[hashB].blockNumber;
|
2016-11-29 13:50:09 +01:00
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
// 0 is a special case (has not been added to the blockchain yet)
|
|
|
|
if (bnB.eq(0)) {
|
|
|
|
return bnB.eq(bnA) ? 0 : 1;
|
|
|
|
} else if (bnA.eq(0)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bnB.comparedTo(bnA);
|
|
|
|
});
|
2016-11-29 13:50:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
loadTransactions (_txhashes) {
|
|
|
|
const { eth } = this._api;
|
2016-11-29 13:50:09 +01:00
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
// Ignore special cases and if the contents of _txhashes && this.sortedHashes are the same
|
|
|
|
if (Array.isArray(_txhashes) || this.sameHashList(_txhashes)) {
|
2016-11-29 13:50:09 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
// Remove any tx that are edited/cancelled
|
|
|
|
this.sortedHashes
|
|
|
|
.forEach((hash) => {
|
|
|
|
if (!_txhashes.includes(hash)) {
|
|
|
|
this.removeHash(hash);
|
2017-03-07 20:19:55 +01:00
|
|
|
}
|
2017-04-25 10:08:09 +02:00
|
|
|
});
|
2016-11-29 13:50:09 +01:00
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
// Add any new tx
|
|
|
|
_txhashes
|
|
|
|
.forEach((txhash) => {
|
|
|
|
if (this.sortedHashes.includes(txhash)) { return; }
|
|
|
|
eth.getTransactionByHash(txhash)
|
|
|
|
.then((tx) => {
|
|
|
|
if (!tx) { return; }
|
|
|
|
this.transactions[txhash] = tx;
|
|
|
|
// If the tx has a blockHash, let's get the blockNumber, otherwise it's ready to be added
|
|
|
|
if (tx.blockHash) {
|
|
|
|
eth.getBlockByNumber(tx.blockNumber)
|
|
|
|
.then((block) => {
|
|
|
|
this.blocks[tx.blockNumber] = block;
|
|
|
|
this.addHash(txhash);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.addHash(txhash);
|
|
|
|
}
|
|
|
|
});
|
2016-11-29 13:50:09 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
cancelTransaction = (txComponent, tx) => {
|
|
|
|
const { parity } = this._api;
|
|
|
|
const { hash } = tx;
|
2016-11-29 13:50:09 +01:00
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
parity
|
|
|
|
.removeTransaction(hash)
|
|
|
|
.then(() => {
|
|
|
|
txComponent.setState({ canceled: true });
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
this._onNewError({ message: err });
|
|
|
|
});
|
|
|
|
}
|
2016-11-29 13:50:09 +01:00
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
editTransaction = (txComponent, tx) => {
|
|
|
|
const { parity } = this._api;
|
|
|
|
const { hash, gas, gasPrice, to, from, value, input, condition } = tx;
|
|
|
|
|
|
|
|
parity
|
|
|
|
.removeTransaction(hash)
|
|
|
|
.then(() => {
|
|
|
|
parity.postTransaction({
|
|
|
|
from,
|
|
|
|
to,
|
|
|
|
gas,
|
|
|
|
gasPrice,
|
|
|
|
value,
|
|
|
|
condition,
|
|
|
|
data: input
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
txComponent.setState({ editing: true });
|
2016-11-29 13:50:09 +01:00
|
|
|
})
|
2017-04-25 10:08:09 +02:00
|
|
|
.catch((err) => {
|
|
|
|
this._onNewError({ message: err });
|
2016-11-29 13:50:09 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|