Browse Source

update

all-modes
pbca26 8 years ago
parent
commit
d853f43858
  1. 14
      react/src/actions/actionCreators.js
  2. 39
      react/src/components/dashboard/appSettings.js
  3. 11
      react/src/components/dashboard/sendCoin.js
  4. 41
      react/src/components/dashboard/settings.js
  5. 4
      react/src/components/dashboard/walletsBalance.js
  6. 2
      react/src/components/dashboard/walletsNativeSend.js

14
react/src/actions/actionCreators.js

@ -1351,7 +1351,7 @@ export function fetchUtxoCache(_payload) {
function getShepherdCacheState(json, pubkey, coin) {
if (json.result && json.error && json.result.indexOf('no file with handle') > -1) {
console.log('new cache');
console.log('request new cache', true);
return dispatch => {
dispatch(fetchNewCacheData({
'pubkey': pubkey,
@ -1810,7 +1810,13 @@ export function sendNativeTx(coin, _payload) {
dispatch(triggerToaster(true, 'sendNativeTx', 'Error', 'error'));
})
.then(response => response.json())
.then(json => dispatch(triggerToaster(true, translate('TOASTR.TX_SENT_ALT'), translate('TOASTR.WALLET_NOTIFICATION'), 'success')))
.then(function(json) {
if (json.error && json.error.indexOf('code:') > -1) {
dispatch(triggerToaster(true, 'Send failed', translate('TOASTR.WALLET_NOTIFICATION'), 'error'));
} else {
dispatch(triggerToaster(true, translate('TOASTR.TX_SENT_ALT'), translate('TOASTR.WALLET_NOTIFICATION'), 'success'));
}
})
.catch(function(ex) {
dispatch(triggerToaster(true, translate('TOASTR.TX_SENT_ALT'), translate('TOASTR.WALLET_NOTIFICATION'), 'success'));
console.log('parsing failed', ex);
@ -2146,8 +2152,8 @@ export function deleteCacheFile(_payload) {
}
}
export function getCacheFile() {
const _pubkey = JSON.parse(sessionStorage.getItem('IguanaActiveAccount')).pubkey;
export function getCacheFile(pubkey) {
const _pubkey = pubkey || JSON.parse(sessionStorage.getItem('IguanaActiveAccount')).pubkey;
return new Promise((resolve, reject) => {
fetch('http://127.0.0.1:' + Config.agamaPort + '/shepherd/groom?pubkey=' + _pubkey, {

39
react/src/components/dashboard/appSettings.js

@ -0,0 +1,39 @@
import React from 'react';
import { translate } from '../../translate/translate';
import {
} from '../../actions/actionCreators';
import Store from '../../store';
class AppSettings extends React.Component {
constructor(props) {
super(props);
//this.closeSyncOnlyModal = this.closeSyncOnlyModal.bind(this);
}
render() {
/*if (this.props && this.props.SyncOnly.display) {
return (
<div>
<div className="modal show sync-only-forks" aria-hidden="false" role="dialog">
<div className="modal-dialog modal-center modal-lg">
<div className="modal-content">
<div className="modal-body" style={{height: '590px'}}>
{this.renderForksList()}
</div>
<div className="modal-footer">
<button type="button" className="btn btn-default" onClick={this.closeSyncOnlyModal}>Close</button>
</div>
</div>
</div>
</div>
<div className="modal-backdrop show in"></div>
</div>
);
} else {
return null;
}*/
}
}
export default AppSettings;

11
react/src/components/dashboard/sendCoin.js

@ -21,7 +21,8 @@ import {
fetchUtxoCache,
basiliskRefresh,
edexGetTransaction,
getCacheFile
getCacheFile,
shepherdGroomPost
} from '../../actions/actionCreators';
import Store from '../../store';
@ -126,7 +127,7 @@ class SendCoin extends React.Component {
} else {
isReadyToUpdate = true;
}
return (
<div className="col-lg-12">
<hr />
@ -344,9 +345,9 @@ class SendCoin extends React.Component {
console.log(txidListToRemove);
console.log(sendData);
getCacheFile()
getCacheFile(this.props.Dashboard.activeHandle.pubkey)
.then(function(result) {
console.log(result);
console.log('got cache file', result);
let saveThisData = edexRemoveTXID(result, txidListToRemove);
console.log(saveThisData);
resolve(saveThisData);
@ -479,7 +480,7 @@ class SendCoin extends React.Component {
return (
<div style={{padding: '20px', textAlign: 'center'}}>
<div style={{padding: '10px 0'}}>
Processing transaction...
Processing transaction...<br />
Note: it may take a few minutes to complete the transaction.
</div>
<div className="loader-wrapper active">

41
react/src/components/dashboard/settings.js

@ -7,7 +7,8 @@ import {
importPrivKey,
getDebugLog,
getPeersList,
addPeerNode
addPeerNode,
getAppConfig
} from '../../actions/actionCreators';
import Store from '../../store';
import AddCoinOptionsCrypto from '../addcoin/addcoinOptionsCrypto';
@ -42,6 +43,7 @@ class Settings extends React.Component {
componentDidMount() {
Store.dispatch(iguanaActiveHandle());
Store.dispatch(getAppConfig());
}
openTab(elemId, tab) {
@ -388,6 +390,43 @@ class Settings extends React.Component {
</div>
</div>
</div>
<div className="panel" id="AppSettings">
<div className="panel-heading" role="tab" onClick={() => this.openTab('AppSettings', 7)}>
<a className={this.state.activeTab === 6 ? 'panel-title' : 'panel-title collapsed'} data-toggle="collapse" data-parent="#AppSettings">
<i className="icon md-info" aria-hidden="true"></i>App Settings (config.json)
</a>
</div>
<div className={this.state.activeTab === 7 ? 'panel-collapse collapse in' : 'panel-collapse collapse'} style={{height: this.state.activeTab === 7 ? this.state.activeTabHeight + 'px' : '10px'}} id="DebugLogTab" aria-labelledby="DebugLog" role="tabpanel">
<div className="panel-body">
<p>Manage app settings</p>
<div className="col-sm-12"></div>
<form className="read-debug-log-import-form" method="post" action="javascript:" autoComplete="off">
<div className="form-group form-material floating">
<input type="text" className="form-control" name="debugLinesCount" id="read_debug_log_lines" value={this.state.debugLinesCount} onChange={this.updateInput} />
<label className="floating-label" htmlFor="read_debug_log_lines">{translate('INDEX.DEBUG_LOG_LINES')}</label>
</div>
<div className="form-group form-material floating">
<select className="form-control form-material" name="debugTarget" id="settings_select_debuglog_options" onChange={this.updateInput}>
<option value="iguana">Iguana</option>
<option value="komodo">Komodo</option>
</select>
<label className="floating-label" htmlFor="settings_select_debuglog_options">{translate('INDEX.TARGET')}</label>
</div>
<div className="col-sm-12 col-xs-12" style={{textAlign: 'center'}}>
<button type="button" className="btn btn-primary waves-effect waves-light" data-toggle="modal" data-dismiss="modal" id="read_debug_log_btn" onClick={this.readDebugLog}>{translate('INDEX.LOAD_DEBUG_LOG')}</button>
</div>
<div className="col-sm-12 col-xs-12" style={{textAlign: 'left'}}>
<br />
<div style={{padding: '20px 0'}}>{this.props.Settings.debugLog}</div>
</div>
</form>
<div className="col-sm-12" style={{paddingTop: '15px'}}>
<div className="row" data-plugin="masonry"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

4
react/src/components/dashboard/walletsBalance.js

@ -23,8 +23,8 @@ class WalletsBalance extends React.Component {
const _balance = this.props.ActiveCoin.balance || 0;
return _balance;
} else {
if (this.props.ActiveCoin.activeAddress && this.props.ActiveCoin.cache[this.props.ActiveCoin.activeAddress].getbalance) {
const _balance = this.props.ActiveCoin.cache[this.props.ActiveCoin.activeAddress].getbalance;
if (this.props.ActiveCoin.activeAddress && this.props.ActiveCoin.cache[this.props.ActiveCoin.coin][this.props.ActiveCoin.activeAddress].getbalance) {
const _balance = this.props.ActiveCoin.cache[this.props.ActiveCoin.coin][this.props.ActiveCoin.activeAddress].getbalance;
console.log('balance', _balance);
} else {
return 'N/A';

2
react/src/components/dashboard/walletsNativeSend.js

@ -187,7 +187,7 @@ class WalletsNativeSend extends React.Component {
Store.dispatch(sendNativeTx(this.props.ActiveCoin.coin, this.state));
setTimeout(function() {
Store.dispatch(getKMDOPID(null, this.props.ActiveCoin.coin));
}, 1000);
}.bind(this), 1000);
}
getOAdress() {

Loading…
Cancel
Save