Browse Source

kmd passive disable daemon down modal; switch toaster message

all-modes
pbca26 8 years ago
parent
commit
7cac689a95
  1. 33
      react/src/actions/actions/nativeSyncInfo.js
  2. 17
      react/src/components/dashboard/coindDownModal/coindDownModal.js
  3. 2
      react/src/components/dashboard/importKeyModal/importKeyModal.js

33
react/src/actions/actions/nativeSyncInfo.js

@ -149,14 +149,31 @@ export function getSyncInfoNative(coin, skipDebug, skipRemote, suppressErrors) {
} else { } else {
if (!json && if (!json &&
Config.cli.default) { Config.cli.default) {
dispatch( let _kmdMainPassiveMode;
triggerToaster(
'Komodod is down', try {
'Critical Error', _kmdMainPassiveMode = window.require('electron').remote.getCurrentWindow().kmdMainPassiveMode;
'error', } catch (e) {}
true
) if (!_kmdMainPassiveMode) {
); dispatch(
triggerToaster(
'Komodod is down',
'Critical Error',
'error',
true
)
);
} else {
dispatch(
triggerToaster(
'Please make sure to run komodod manually',
'Connection error',
'warning',
true
)
);
}
if (coin === 'KMD') { if (coin === 'KMD') {
dispatch(getDebugLog('komodo', 50)); dispatch(getDebugLog('komodo', 50));

17
react/src/components/dashboard/coindDownModal/coindDownModal.js

@ -11,6 +11,7 @@ class CoindDownModal extends React.Component {
this.state = { this.state = {
display: false, display: false,
debugLogCrash: null, debugLogCrash: null,
kmdMainPassiveMode: false,
}; };
this.dismiss = this.dismiss.bind(this); this.dismiss = this.dismiss.bind(this);
} }
@ -19,6 +20,18 @@ class CoindDownModal extends React.Component {
Store.dispatch(toggleCoindDownModal(false)); Store.dispatch(toggleCoindDownModal(false));
} }
componentWillMount() {
let _kmdMainPassiveMode;
try {
_kmdMainPassiveMode = window.require('electron').remote.getCurrentWindow().kmdMainPassiveMode;
} catch (e) {}
this.setState(Object.assign({}, this.state, {
kmdMainPassiveMode: _kmdMainPassiveMode,
}));
}
componentWillReceiveProps(nextProps) { componentWillReceiveProps(nextProps) {
if (this.props.displayCoindDownModal !== nextProps.displayCoindDownModal) { if (this.props.displayCoindDownModal !== nextProps.displayCoindDownModal) {
this.setState(Object.assign({}, this.state, { this.setState(Object.assign({}, this.state, {
@ -28,13 +41,15 @@ class CoindDownModal extends React.Component {
} }
render() { render() {
if (this.state.display) { if (this.state.display &&
!this.state.kmdMainPassiveMode) {
return CoindDownModalRender.call(this); return CoindDownModalRender.call(this);
} }
return null; return null;
} }
} }
const mapStateToProps = (state) => { const mapStateToProps = (state) => {
return { return {
ActiveCoin: { ActiveCoin: {

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

@ -142,7 +142,7 @@ class ImportKeyModal extends React.Component {
Store.dispatch(getDashboardUpdateState(null, this.props.ActiveCoin.coin, true)); Store.dispatch(getDashboardUpdateState(null, this.props.ActiveCoin.coin, true));
Store.dispatch( Store.dispatch(
triggerToaster( triggerToaster(
'Address imported. Wallet rescan is in progress. Please wait until it\s finished.', 'Address imported. Wallet rescan is in progress. Please wait until it is finished.',
translate('TOASTR.WALLET_NOTIFICATION'), translate('TOASTR.WALLET_NOTIFICATION'),
'info', 'info',
false false

Loading…
Cancel
Save