From e02a01cf5b7b1fcef89e2b57d0ce12a90aba3586 Mon Sep 17 00:00:00 2001 From: pbca26 Date: Thu, 1 Jun 2017 11:54:20 +0300 Subject: [PATCH] settings tabs height fix --- react/src/components/dashboard/settings.js | 94 +++++++++++++++------- 1 file changed, 66 insertions(+), 28 deletions(-) diff --git a/react/src/components/dashboard/settings.js b/react/src/components/dashboard/settings.js index a7f183b..c87e18d 100644 --- a/react/src/components/dashboard/settings.js +++ b/react/src/components/dashboard/settings.js @@ -23,6 +23,7 @@ import AddCoinOptionsACFiat from '../addcoin/addcoinOptionsACFiat'; 2) add fiat section 3) kickstart section 4) batch export/import wallet addresses + 5) export keys, add coin selector */ class Settings extends React.Component { constructor(props) { @@ -33,6 +34,7 @@ class Settings extends React.Component { debugTarget: 'iguana', activeTabHeight: '10px', appSettings: {}, + tabElId: null, }; this.exportWifKeys = this.exportWifKeys.bind(this); this.updateInput = this.updateInput.bind(this); @@ -52,14 +54,29 @@ class Settings extends React.Component { Store.dispatch(getAppInfo()); } - openTab(elemId, tab) { - console.log(`#${elemId}.panel-collapse .panel-body`); - const _height = document.querySelector(`#${elemId} .panel-collapse .panel-body`).offsetHeight; + componentWillReceiveProps(props) { + if (this.state.tabElId) { + console.log('rerender opened tab'); + const _height = document.querySelector(`#${this.state.tabElId} .panel-collapse .panel-body`).offsetHeight; + + this.setState(Object.assign({}, this.state, { + activeTab: this.state.activeTab, + activeTabHeight: _height, + tabElId: this.state.tabElId, + })); + } + } - this.setState(Object.assign({}, this.state, { - activeTab: tab, - activeTabHeight: _height, - })); + openTab(elemId, tab) { + setTimeout(() => { + const _height = document.querySelector(`#${elemId} .panel-collapse .panel-body`).offsetHeight; + + this.setState(Object.assign({}, this.state, { + activeTab: tab, + activeTabHeight: _height, + tabElId: elemId, + })); + }, 100); } exportWifKeys() { @@ -109,8 +126,8 @@ class Settings extends React.Component { if (releaseInfo) { return ( -
-
this.openTab('AppInfo', 8) }> +
this.openTab('AppInfo', 8) }> +
{ translate('SETTINGS.APP_INFO') } @@ -315,8 +332,11 @@ class Settings extends React.Component {

{ translate('INDEX.WALLET_SETTINGS') }

-
-
this.openTab('WalletInfo', 0) }> +
this.openTab('WalletInfo', 0) }> +
{ translate('INDEX.WALLET_INFO') } @@ -378,8 +398,11 @@ class Settings extends React.Component {
-
-
this.openTab('AddNodeforCoin', 1) }> +
this.openTab('AddNodeforCoin', 1) }> +
{ translate('INDEX.ADD_NODE') } @@ -469,8 +492,11 @@ class Settings extends React.Component {
-
-
this.openTab('DumpWallet', 2) }> +
this.openTab('DumpWallet', 2) }> +
{ translate('INDEX.WALLET_BACKUP') } @@ -485,11 +511,11 @@ class Settings extends React.Component {
-
-
this.openTab('FiatCurrencySettings', 3) }> +
this.openTab('FiatCurrencySettings', 3) }> +
{ translate('INDEX.FIAT_CURRENCY') } @@ -504,8 +530,11 @@ class Settings extends React.Component {
-
-
this.openTab('ExportKeys', 4) }> +
this.openTab('ExportKeys', 4) }> +
{ translate('INDEX.EXPORT_KEYS') } @@ -565,8 +594,11 @@ class Settings extends React.Component {
-
-
this.openTab('ImportKeys', 5) }> +
this.openTab('ImportKeys', 5) }> +
{ translate('INDEX.IMPORT_KEYS') } @@ -611,8 +643,11 @@ class Settings extends React.Component {
-
-
this.openTab('DebugLog', 6) }> +
this.openTab('DebugLog', 6) }> +
{ translate('INDEX.DEBUG_LOG') } @@ -669,8 +704,11 @@ class Settings extends React.Component {
-
-
this.openTab('AppSettings', 7) }> +
this.openTab('AppSettings', 7) }> +