aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/js/poloniex.jsx
blob: 76b68d8913312ff7f3640b4f87c98804c3311284 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import Api from './api.js';
import React from 'react';

class PoloniexController extends React.Component {
  constructor(props) {
    super(props);
    this.state = {'apiRequested': false, 'flag': 'loading', 'valueCurrency': null, 'balanceValue': null, 'balance': null};
  }

  loadBalance = () => {
    Api.Call('MARKET_BALANCE', {'name': 'poloniex', 'currency': 'BTC'}, function(err, status, data) {
      if (err) {
        console.error(err, data);
        if (err.code === 'invalid_market_credentials') {
          this.setState({'flag': 'invalidCredentials', 'apiRequested': true, 'valueCurrency': null, 'balanceValue': null, 'balance': null});
        } else if (err.code === 'ip_restricted_api_key') {
          this.setState({'flag': 'ipRestricted', 'apiRequested': true, 'valueCurrency': null, 'balanceValue': null, 'balance': null});
        }
        return;
      }

      this.setState({'flag': 'ok', 'apiRequested': true, 'valueCurrency': data.valueCurrency, 'balanceValue': data.value, 'balance': data.balance});
    }.bind(this));
  }

  componentDidMount = () => {
    this.loadBalance();
  }

  render = () => {
    var displayText = null;
    switch (this.state.flag) {
      case 'loading':
        displayText = 'Loading data from poloniex...';
        break;
      case 'invalidCredentials':
      case 'ipRestricted':
      case 'emptyCredentials':
        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}/>
      </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}>
                 <div>
                 <CurrencyLogo currency={currency} /> {this.props.balance[currency].amount} {currency} ({this.computeCurrencyRatio(currency)}%)
                 </div>
               </div>;
      }.bind(this));

      dashboard =
        <div className="row">
          <div className="col-6 align-self-center h-100 balances">
              {balance}
          </div>
          <div className="offset-1 col-5 h-100 align-self-center">
            <div className="text-center">
              Balance ({this.props.balanceCurrency}): <span>{this.props.balanceValue}</span><CurrencyLogo currency={this.props.balanceCurrency} />
            </div>
          </div>
        </div>;
    } 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 portfolio">
          <div className="row">
            <div className="col-4">Portfolio</div>
          </div>
          <hr/>
          {dashboard}
        </div>
      </div>
    );
  }
}

export default PoloniexController;