mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
29 lines
723 B
JavaScript
29 lines
723 B
JavaScript
'use strict';
|
|
|
|
import alt from '../alt';
|
|
import LoanContractActions from '../actions/loan_contract_actions';
|
|
|
|
|
|
class LoanContractStore {
|
|
constructor() {
|
|
this.contractKey = null;
|
|
this.contractUrl = null;
|
|
this.contractEmail = null;
|
|
this.bindActions(LoanContractActions);
|
|
}
|
|
|
|
onUpdateLoanContract({contractKey, contractUrl, contractEmail}) {
|
|
this.contractKey = contractKey;
|
|
this.contractUrl = contractUrl;
|
|
this.contractEmail = contractEmail;
|
|
}
|
|
|
|
onFlushLoanContract() {
|
|
this.contractKey = null;
|
|
this.contractUrl = null;
|
|
this.contractEmail = null;
|
|
}
|
|
}
|
|
|
|
export default alt.createStore(LoanContractStore, 'LoanContractStore');
|