]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git/blobdiff - cmd/web/js/poloniex.jsx
Various fixes.
[perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git] / cmd / web / js / poloniex.jsx
index a5fb9a74d49bb3ac45b933c088bb184c18038e75..edac368e84d07f02d2060d838481d7853cab04a3 100644 (file)
@@ -1,30 +1,10 @@
 import Api from './api.js';
-import classNames from 'classnames';
 import React from 'react';
 
 class PoloniexController extends React.Component {
   constructor(props) {
     super(props);
-    this.state = {'apiKey': '', 'apiSecret': '', 'apiRequested': false, 'flag': 'loading', 'valueCurrency': null, 'balanceValue': null, 'balance': null};
-  }
-
-  handleCredentialsChange = (key, secret) => {
-    this.setState({'apiKey': key, 'apiSecret': secret});
-  }
-
-  handleCredentialsSubmit = () => {
-    if (!this.state.apiKey || !this.state.apiSecret) {
-      return;
-    }
-    Api.Call('UPDATE_MARKET', {'key': this.state.apiKey, 'secret': this.state.apiSecret, 'name': 'poloniex'}, function(err, status, data) {
-      if (err) {
-        console.error(err, data);
-        return;
-      }
-
-      this.setState({'flag': 'loading', 'valueCurrency': null, 'balanceValue': null, 'balance': null});
-      this.loadBalance();
-    }.bind(this));
+    this.state = {'flag': 'loading', 'valueCurrency': null, 'balanceValue': null, 'balance': null};
   }
 
   loadBalance = () => {
@@ -33,6 +13,8 @@ class PoloniexController extends React.Component {
         console.error(err, data);
         if (err.code === 'invalid_market_credentials') {
           this.setState({'flag': 'invalidCredentials', 'valueCurrency': null, 'balanceValue': null, 'balance': null});
+        } else if (err.code === 'ip_restricted_api_key') {
+          this.setState({'flag': 'ipRestricted', 'valueCurrency': null, 'balanceValue': null, 'balance': null});
         }
         return;
       }
@@ -42,22 +24,7 @@ class PoloniexController extends React.Component {
   }
 
   componentDidMount = () => {
-    Api.Call('MARKET', {'name': 'poloniex'}, function(err, status, data) {
-      this.setState({'apiRequested': true});
-      if (err) {
-        console.error(err, data);
-        return;
-      }
-
-      var flag = this.state.flag;
-      if (!data.key || !data.secret) {
-        flag = 'emptyCredentials';
-      } else {
-        this.loadBalance();
-      }
-
-      this.setState({'apiKey': data.key, 'apiSecret': data.secret, 'flag': flag});
-    }.bind(this));
+    this.loadBalance();
   }
 
   render = () => {
@@ -67,73 +34,79 @@ class PoloniexController extends React.Component {
         displayText = 'Loading data from poloniex...';
         break;
       case 'invalidCredentials':
-        displayText = 'Invalid poloniex credentials';
-        break;
+      case 'ipRestricted':
       case 'emptyCredentials':
-        displayText = 'Please provide poloniex credentials';
+        displayText = <div>Please provide poloniex credentials in <a href="/account">Account</a> page.</div>;
         break;
       default:
         displayText = null;
     }
-    if (this.state.apiRequested === false) {
-      return <div></div>;
-    }
     return (
       <div>
         <PoloniexBalance  balanceCurrency={this.state.valueCurrency}
                           balanceValue={this.state.balanceValue}
                           balance={this.state.balance}
                           displayText={displayText}/>
-        <PoloniexCredentialsForm onLoadCredentials={this.onLoadCredentials}
-                                 onCredentialsSubmit={this.handleCredentialsSubmit}
-                                 onCredentialsChange={this.handleCredentialsChange}
-                                 apiSecret={this.state.apiSecret}
-                                 apiKey={this.state.apiKey}/>
       </div>
     );
   }
 }
 
+class CurrencyLogo extends React.Component {
+  render = () => {
+    return <img className="currency-logo"
+                src={'/public/icons/black/' + this.props.currency.toLowerCase() + '.svg' }
+                title={this.props.currency}
+                alt={this.props.currency} />;
+  }
+}
+
 class PoloniexBalance extends React.Component {
   constructor(props) {
     super(props);
     this.state = {'hideMsg': true, 'msg': '', 'msgOk': false};
   }
 
+  computeCurrencyRatio = (currency) => {
+    return (parseFloat(this.props.balance[currency].btcValue) / parseFloat(this.props.balanceValue) * 100.0).toFixed(1);
+  }
+
   render = () => {
     var dashboard = null;
 
     if (this.props.balanceValue !== null) {
 
       var balance = Object.keys(this.props.balance).map(function(currency) {
-        return <div key={currency}><i className={classNames('cc', currency)}></i> {this.props.balance[currency]}</div>;
+        return <div key={currency}>
+                 <div>
+                 <CurrencyLogo currency={currency} /> {this.props.balance[currency].amount} {currency} ({this.computeCurrencyRatio(currency)}%)
+                 </div>
+               </div>;
       }.bind(this));
 
       dashboard =
         <div className="row">
-          <div className="col-4 align-self-center h-100">
-            <div>
+          <div className="col-6 align-self-center h-100 balances">
               {balance}
-            </div>
           </div>
-          <div className="offset-1 col-7 h-100 align-self-center">
+          <div className="offset-1 col-5 h-100 align-self-center">
             <div className="text-center">
-              Balance ({this.props.balanceCurrency}): <span>{this.props.balanceValue} <i className={classNames('cc', this.props.balanceCurrency)}></i></span>
+              Balance ({this.props.balanceCurrency}): <span>{this.props.balanceValue}</span><CurrencyLogo currency={this.props.balanceCurrency} />
             </div>
           </div>
         </div>;
-} else {
+    } else {
       dashboard =
         <div className="row">
           <div className="col-12 text-center">
            <span>{this.props.displayText}</span>
           </div>
         </div>;
-}
+    }
 
     return (
       <div className="row">
-        <div className="box offset-2 col-8">
+        <div className="box offset-2 col-8 portfolio">
           <div className="row">
             <div className="col-4">Portfolio</div>
           </div>
@@ -145,55 +118,4 @@ class PoloniexBalance extends React.Component {
   }
 }
 
-class PoloniexCredentialsForm extends React.Component {
-  constructor(props) {
-    super(props);
-    this.state = {'hideMsg': true, 'msg': '', 'editMode': false, 'msgOk': false};
-  }
-
-  handleSubmit = (e) => {
-    this.props.onCredentialsSubmit();
-    this.setState({'editMode': false});
-    e.preventDefault();
-  }
-
-  handleApiKeyChange = (event) => {
-    this.props.onCredentialsChange(event.target.value, this.props.apiSecret);
-  }
-
-  handleApiSecretChange = (event) => {
-    this.props.onCredentialsChange(this.props.apiKey, event.target.value);
-  }
-
-  onEditClick = () => {
-    this.setState({'editMode': true});
-  }
-
-  render = () => {
-    var submitType      = this.state.editMode === true ? 'submit' : 'hidden';
-    var buttonDisplay   = this.state.editMode === true ? 'none' : 'inline';
-    var secretDisplayed = this.state.editMode === true ? this.props.apiSecret : 'XXXXXXX';
-    var keyDisplayed    = this.state.editMode === true ? this.props.apiKey : 'XXXXXXX';
-
-    return (
-        <div className="row api-credentials-form">
-          <div className="offset-3 col-6 box">
-            <span className="text-center">Poloniex credentials</span>
-            <hr/>
-            <form role="form" onSubmit={this.handleSubmit}>
-              <label className="w-100">Key:
-                <input className="form-control" type="text" placeholder="key" value={keyDisplayed} onChange={this.handleApiKeyChange} disabled={!this.state.editMode}/>
-              </label>
-              <label className="w-100">Secret:
-                <input className="form-control" type="text" placeholder="secret" value={secretDisplayed} onChange={this.handleApiSecretChange} disabled={!this.state.editMode}/>
-              </label>
-              <input className="form-control submit" type={submitType} value="Save" />
-              <button className="form-control submit" style={{display: buttonDisplay}} onSubmit={null} onClick={this.onEditClick} type="button">Show/Edit</button>
-            </form>
-          </div>
-        </div>
-       );
-  }
-}
-
 export default PoloniexController;