mirror of
https://github.com/aclindsa/moneygo.git
synced 2024-12-26 07:33:21 -05:00
Reduxify fetching transaction page
This commit is contained in:
parent
a9cf95dba8
commit
c61e561b4b
84
js/actions/TransactionPageActions.js
Normal file
84
js/actions/TransactionPageActions.js
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
var TransactionPageConstants = require('../constants/TransactionPageConstants');
|
||||||
|
|
||||||
|
var ErrorActions = require('./ErrorActions');
|
||||||
|
|
||||||
|
var models = require('../models.js');
|
||||||
|
var Account = models.Account;
|
||||||
|
var Transaction = models.Transaction;
|
||||||
|
var Error = models.Error;
|
||||||
|
|
||||||
|
var Big = require('big.js');
|
||||||
|
|
||||||
|
function fetchTransactionPage(account, pageSize, page) {
|
||||||
|
return {
|
||||||
|
type: TransactionPageConstants.FETCH_TRANSACTION_PAGE,
|
||||||
|
account: account,
|
||||||
|
pageSize: pageSize,
|
||||||
|
page: page
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function transactionPageFetched(account, pageSize, page, numPages,
|
||||||
|
transactions, endingBalance) {
|
||||||
|
return {
|
||||||
|
type: TransactionPageConstants.TRANSACTION_PAGE_FETCHED,
|
||||||
|
account: account,
|
||||||
|
pageSize: pageSize,
|
||||||
|
page: page,
|
||||||
|
numPages: numPages,
|
||||||
|
transactions: transactions,
|
||||||
|
endingBalance: endingBalance
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function fetch(account, pageSize, page) {
|
||||||
|
return function (dispatch) {
|
||||||
|
dispatch(fetchTransactionPage(account, pageSize, page));
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
dataType: "json",
|
||||||
|
url: "account/"+account.AccountId+"/transactions?sort=date-desc&limit="+pageSize+"&page="+page,
|
||||||
|
success: function(data, status, jqXHR) {
|
||||||
|
var e = new Error();
|
||||||
|
e.fromJSON(data);
|
||||||
|
if (e.isError()) {
|
||||||
|
dispatch(ErrorActions.serverError(e));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var transactions = [];
|
||||||
|
var balance = new Big(data.EndingBalance);
|
||||||
|
|
||||||
|
for (var i = 0; i < data.Transactions.length; i++) {
|
||||||
|
var t = new Transaction();
|
||||||
|
t.fromJSON(data.Transactions[i]);
|
||||||
|
|
||||||
|
t.Balance = balance.plus(0); // Make a copy of the current balance
|
||||||
|
// Keep a talley of the running balance of these transactions
|
||||||
|
for (var j = 0; j < data.Transactions[i].Splits.length; j++) {
|
||||||
|
var split = data.Transactions[i].Splits[j];
|
||||||
|
if (account.AccountId == split.AccountId) {
|
||||||
|
balance = balance.minus(split.Amount);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
transactions.push(t);
|
||||||
|
}
|
||||||
|
var a = new Account();
|
||||||
|
a.fromJSON(data.Account);
|
||||||
|
|
||||||
|
var numPages = Math.ceil(data.TotalTransactions / pageSize);
|
||||||
|
|
||||||
|
dispatch(transactionPageFetched(account, pageSize, page,
|
||||||
|
numPages, transactions, new Big(data.EndingBalance)));
|
||||||
|
},
|
||||||
|
error: function(jqXHR, status, error) {
|
||||||
|
dispatch(ErrorActions.ajaxError(error));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
fetch: fetch
|
||||||
|
};
|
@ -652,10 +652,6 @@ module.exports = React.createClass({
|
|||||||
importingTransactions: false,
|
importingTransactions: false,
|
||||||
editingTransaction: false,
|
editingTransaction: false,
|
||||||
selectedTransaction: new Transaction(),
|
selectedTransaction: new Transaction(),
|
||||||
transactions: [],
|
|
||||||
pageSize: 20,
|
|
||||||
numPages: 0,
|
|
||||||
currentPage: 0,
|
|
||||||
height: 0
|
height: 0
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -708,71 +704,27 @@ module.exports = React.createClass({
|
|||||||
e.ErrorString = "Request Failed: " + status + error;
|
e.ErrorString = "Request Failed: " + status + error;
|
||||||
this.setState({error: e});
|
this.setState({error: e});
|
||||||
},
|
},
|
||||||
getTransactionPage: function(account, page) {
|
|
||||||
$.ajax({
|
|
||||||
type: "GET",
|
|
||||||
dataType: "json",
|
|
||||||
url: "account/"+account.AccountId+"/transactions?sort=date-desc&limit="+this.state.pageSize+"&page="+page,
|
|
||||||
success: function(data, status, jqXHR) {
|
|
||||||
var e = new Error();
|
|
||||||
e.fromJSON(data);
|
|
||||||
if (e.isError()) {
|
|
||||||
this.setState({error: e});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var transactions = [];
|
|
||||||
var balance = new Big(data.EndingBalance);
|
|
||||||
|
|
||||||
for (var i = 0; i < data.Transactions.length; i++) {
|
|
||||||
var t = new Transaction();
|
|
||||||
t.fromJSON(data.Transactions[i]);
|
|
||||||
|
|
||||||
t.Balance = balance.plus(0); // Make a copy of the current balance
|
|
||||||
// Keep a talley of the running balance of these transactions
|
|
||||||
for (var j = 0; j < data.Transactions[i].Splits.length; j++) {
|
|
||||||
var split = data.Transactions[i].Splits[j];
|
|
||||||
if (this.props.accounts[this.props.selectedAccount].AccountId == split.AccountId) {
|
|
||||||
balance = balance.minus(split.Amount);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
transactions.push(t);
|
|
||||||
}
|
|
||||||
var a = new Account();
|
|
||||||
a.fromJSON(data.Account);
|
|
||||||
|
|
||||||
var pages = Math.ceil(data.TotalTransactions / this.state.pageSize);
|
|
||||||
|
|
||||||
this.setState({
|
|
||||||
transactions: transactions,
|
|
||||||
numPages: pages
|
|
||||||
});
|
|
||||||
}.bind(this),
|
|
||||||
error: this.ajaxError
|
|
||||||
});
|
|
||||||
},
|
|
||||||
handleSelectPage: function(eventKey) {
|
handleSelectPage: function(eventKey) {
|
||||||
var newpage = eventKey - 1;
|
var newpage = eventKey - 1;
|
||||||
// Don't do pages that don't make sense
|
// Don't do pages that don't make sense
|
||||||
if (newpage < 0)
|
if (newpage < 0)
|
||||||
newpage = 0;
|
newpage = 0;
|
||||||
if (newpage >= this.state.numPages)
|
if (newpage >= this.props.transactionPage.numPages)
|
||||||
newpage = this.state.numPages-1;
|
newpage = this.props.transactionPage.numPages - 1;
|
||||||
if (newpage != this.state.currentPage) {
|
if (newpage != this.props.transactionPage.page) {
|
||||||
if (this.props.selectedAccount != -1) {
|
if (this.props.selectedAccount != -1) {
|
||||||
this.getTransactionPage(this.props.accounts[this.props.selectedAccount], newpage);
|
this.props.onFetchTransactionPage(this.props.accounts[this.props.selectedAccount], this.props.pageSize, newpage);
|
||||||
}
|
}
|
||||||
this.setState({currentPage: newpage});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onNewTransaction: function() {
|
onNewTransaction: function() {
|
||||||
this.getTransactionPage(this.props.accounts[this.props.selectedAccount], this.state.currentPage);
|
this.props.onFetchTransactionPage(this.props.accounts[this.props.selectedAccount], this.props.pageSize, this.props.transactionPage.page);
|
||||||
},
|
},
|
||||||
onUpdatedTransaction: function() {
|
onUpdatedTransaction: function() {
|
||||||
this.getTransactionPage(this.props.accounts[this.props.selectedAccount], this.state.currentPage);
|
this.props.onFetchTransactionPage(this.props.accounts[this.props.selectedAccount], this.props.pageSize, this.props.transactionPage.page);
|
||||||
},
|
},
|
||||||
onDeletedTransaction: function() {
|
onDeletedTransaction: function() {
|
||||||
this.getTransactionPage(this.props.accounts[this.props.selectedAccount], this.state.currentPage);
|
this.props.onFetchTransactionPage(this.props.accounts[this.props.selectedAccount], this.props.pageSize, this.props.transactionPage.page);
|
||||||
},
|
},
|
||||||
createNewTransaction: function(transaction) {
|
createNewTransaction: function(transaction) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@ -829,7 +781,7 @@ module.exports = React.createClass({
|
|||||||
},
|
},
|
||||||
handleImportComplete: function() {
|
handleImportComplete: function() {
|
||||||
this.setState({importingTransactions: false});
|
this.setState({importingTransactions: false});
|
||||||
this.getTransactionPage(this.props.accounts[this.props.selectedAccount], this.state.currentPage);
|
this.props.onFetchTransactionPage(this.props.accounts[this.props.selectedAccount], this.props.pageSize, this.props.transactionPage.page);
|
||||||
},
|
},
|
||||||
handleDeleteTransaction: function(transaction) {
|
handleDeleteTransaction: function(transaction) {
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -851,11 +803,7 @@ module.exports = React.createClass({
|
|||||||
if (nextProps.selectedAccount != this.props.selectedAccount) {
|
if (nextProps.selectedAccount != this.props.selectedAccount) {
|
||||||
this.setState({
|
this.setState({
|
||||||
selectedTransaction: new Transaction(),
|
selectedTransaction: new Transaction(),
|
||||||
transactions: [],
|
|
||||||
currentPage: 0
|
|
||||||
});
|
});
|
||||||
if (nextProps.selectedAccount != -1)
|
|
||||||
this.getTransactionPage(nextProps.accounts[nextProps.selectedAccount], 0);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
@ -866,8 +814,8 @@ module.exports = React.createClass({
|
|||||||
name = this.props.accounts[this.props.selectedAccount].Name;
|
name = this.props.accounts[this.props.selectedAccount].Name;
|
||||||
|
|
||||||
var transactionRows = [];
|
var transactionRows = [];
|
||||||
for (var i = 0; i < this.state.transactions.length; i++) {
|
for (var i = 0; i < this.props.transactionPage.transactions.length; i++) {
|
||||||
var t = this.state.transactions[i];
|
var t = this.props.transactionPage.transactions[i];
|
||||||
transactionRows.push((
|
transactionRows.push((
|
||||||
<TransactionRow
|
<TransactionRow
|
||||||
key={t.TransactionId}
|
key={t.TransactionId}
|
||||||
@ -926,9 +874,9 @@ module.exports = React.createClass({
|
|||||||
<Pagination
|
<Pagination
|
||||||
className="skinny-pagination"
|
className="skinny-pagination"
|
||||||
prev next first last ellipsis
|
prev next first last ellipsis
|
||||||
items={this.state.numPages}
|
items={this.props.transactionPage.numPages}
|
||||||
maxButtons={Math.min(5, this.state.numPages)}
|
maxButtons={Math.min(5, this.props.transactionPage.numPages)}
|
||||||
activePage={this.state.currentPage+1}
|
activePage={this.props.transactionPage.page + 1}
|
||||||
onSelect={this.handleSelectPage} />
|
onSelect={this.handleSelectPage} />
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
<ButtonGroup>
|
<ButtonGroup>
|
||||||
|
@ -425,6 +425,7 @@ module.exports = React.createClass({
|
|||||||
},
|
},
|
||||||
handleAccountSelected: function(account) {
|
handleAccountSelected: function(account) {
|
||||||
this.props.onSelectAccount(account.AccountId);
|
this.props.onSelectAccount(account.AccountId);
|
||||||
|
this.props.onFetchTransactionPage(account, 20, 0);
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
var disabled = (this.props.selectedAccount == -1) ? true : false;
|
var disabled = (this.props.selectedAccount == -1) ? true : false;
|
||||||
@ -476,10 +477,13 @@ module.exports = React.createClass({
|
|||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
</Col><Col xs={10} className="fullheight transactions-column">
|
</Col><Col xs={10} className="fullheight transactions-column">
|
||||||
<AccountRegister
|
<AccountRegister
|
||||||
|
pageSize={20}
|
||||||
selectedAccount={this.props.selectedAccount}
|
selectedAccount={this.props.selectedAccount}
|
||||||
accounts={this.props.accounts}
|
accounts={this.props.accounts}
|
||||||
accountChildren={this.props.accountChildren}
|
accountChildren={this.props.accountChildren}
|
||||||
securities={this.props.securities} />
|
securities={this.props.securities}
|
||||||
|
transactionPage={this.props.transactionPage}
|
||||||
|
onFetchTransactionPage={this.props.onFetchTransactionPage}/>
|
||||||
</Col>
|
</Col>
|
||||||
</Row></Grid>
|
</Row></Grid>
|
||||||
);
|
);
|
||||||
|
6
js/constants/TransactionPageConstants.js
Normal file
6
js/constants/TransactionPageConstants.js
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
var keyMirror = require('keymirror');
|
||||||
|
|
||||||
|
module.exports = keyMirror({
|
||||||
|
FETCH_TRANSACTION_PAGE: null,
|
||||||
|
TRANSACTION_PAGE_FETCHED: null
|
||||||
|
});
|
@ -1,6 +1,8 @@
|
|||||||
var connect = require('react-redux').connect;
|
var connect = require('react-redux').connect;
|
||||||
|
|
||||||
var AccountActions = require('../actions/AccountActions');
|
var AccountActions = require('../actions/AccountActions');
|
||||||
|
var TransactionPageActions = require('../actions/TransactionPageActions');
|
||||||
|
|
||||||
var AccountsTab = require('../components/AccountsTab');
|
var AccountsTab = require('../components/AccountsTab');
|
||||||
|
|
||||||
function mapStateToProps(state) {
|
function mapStateToProps(state) {
|
||||||
@ -14,7 +16,8 @@ function mapStateToProps(state) {
|
|||||||
accountChildren: state.accounts.children,
|
accountChildren: state.accounts.children,
|
||||||
securities: state.securities,
|
securities: state.securities,
|
||||||
security_list: security_list,
|
security_list: security_list,
|
||||||
selectedAccount: state.selectedAccount
|
selectedAccount: state.selectedAccount,
|
||||||
|
transactionPage: state.transactionPage
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23,7 +26,8 @@ function mapDispatchToProps(dispatch) {
|
|||||||
onCreateAccount: function(account) {dispatch(AccountActions.create(account))},
|
onCreateAccount: function(account) {dispatch(AccountActions.create(account))},
|
||||||
onUpdateAccount: function(account) {dispatch(AccountActions.update(account))},
|
onUpdateAccount: function(account) {dispatch(AccountActions.update(account))},
|
||||||
onDeleteAccount: function(accountId) {dispatch(AccountActions.remove(accountId))},
|
onDeleteAccount: function(accountId) {dispatch(AccountActions.remove(accountId))},
|
||||||
onSelectAccount: function(accountId) {dispatch(AccountActions.select(accountId))}
|
onSelectAccount: function(accountId) {dispatch(AccountActions.select(accountId))},
|
||||||
|
onFetchTransactionPage: function(account, pageSize, page) {dispatch(TransactionPageActions.fetch(account, pageSize, page))},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,6 +9,7 @@ var SelectedAccountReducer = require('./SelectedAccountReducer');
|
|||||||
var SelectedSecurityReducer = require('./SelectedSecurityReducer');
|
var SelectedSecurityReducer = require('./SelectedSecurityReducer');
|
||||||
var ReportReducer = require('./ReportReducer');
|
var ReportReducer = require('./ReportReducer');
|
||||||
var SelectedReportReducer = require('./SelectedReportReducer');
|
var SelectedReportReducer = require('./SelectedReportReducer');
|
||||||
|
var TransactionPageReducer = require('./TransactionPageReducer');
|
||||||
var ErrorReducer = require('./ErrorReducer');
|
var ErrorReducer = require('./ErrorReducer');
|
||||||
|
|
||||||
module.exports = Redux.combineReducers({
|
module.exports = Redux.combineReducers({
|
||||||
@ -21,5 +22,6 @@ module.exports = Redux.combineReducers({
|
|||||||
selectedSecurity: SelectedSecurityReducer,
|
selectedSecurity: SelectedSecurityReducer,
|
||||||
reports: ReportReducer,
|
reports: ReportReducer,
|
||||||
selectedReport: SelectedReportReducer,
|
selectedReport: SelectedReportReducer,
|
||||||
|
transactionPage: TransactionPageReducer,
|
||||||
error: ErrorReducer
|
error: ErrorReducer
|
||||||
});
|
});
|
||||||
|
40
js/reducers/TransactionPageReducer.js
Normal file
40
js/reducers/TransactionPageReducer.js
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
var assign = require('object-assign');
|
||||||
|
|
||||||
|
var TransactionPageConstants = require('../constants/TransactionPageConstants');
|
||||||
|
var UserConstants = require('../constants/UserConstants');
|
||||||
|
|
||||||
|
var Account = require('../models').Account;
|
||||||
|
|
||||||
|
module.exports = function(state = {account: new Account(), pageSize: 1, page: 0, numPages: 0, transactions: [], endingBalance: "0" }, action) {
|
||||||
|
switch (action.type) {
|
||||||
|
case TransactionPageConstants.FETCH_TRANSACTION_PAGE:
|
||||||
|
return {
|
||||||
|
account: action.account,
|
||||||
|
pageSize: action.pageSize,
|
||||||
|
page: action.page,
|
||||||
|
numPages: 0,
|
||||||
|
transactions: [],
|
||||||
|
endingBalance: "0"
|
||||||
|
};
|
||||||
|
case TransactionPageConstants.TRANSACTION_PAGE_FETCHED:
|
||||||
|
return {
|
||||||
|
account: action.account,
|
||||||
|
pageSize: action.pageSize,
|
||||||
|
page: action.page,
|
||||||
|
numPages: action.numPages,
|
||||||
|
transactions: action.transactions,
|
||||||
|
endingBalance: action.endingBalance
|
||||||
|
};
|
||||||
|
case UserConstants.USER_LOGGEDOUT:
|
||||||
|
return {
|
||||||
|
account: new Account(),
|
||||||
|
pageSize: 1,
|
||||||
|
page: 0,
|
||||||
|
numPages: 0,
|
||||||
|
transactions: [],
|
||||||
|
endingBalance: "0"
|
||||||
|
};
|
||||||
|
default:
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user