Skip to content
Snippets Groups Projects
Commit 814aab0f authored by NGUYEN DINH Quoc-Huy's avatar NGUYEN DINH Quoc-Huy
Browse files

Added witness description

parent 654c3c1f
No related branches found
No related tags found
2 merge requests!11merge autoclave into master,!7Refresh Witnesses page design
This commit is part of merge request !7. Comments created here will be created in the context of that merge request.
import React from 'react'; import React from 'react';
import Moment from 'moment'; import Moment from 'moment';
import { api } from '@steemit/steem-js';
import classnames from 'classnames'; import classnames from 'classnames';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
...@@ -13,8 +14,9 @@ import { formatLargeNumber } from 'app/utils/ParsersAndFormatters'; ...@@ -13,8 +14,9 @@ import { formatLargeNumber } from 'app/utils/ParsersAndFormatters';
import ByteBuffer from 'bytebuffer'; import ByteBuffer from 'bytebuffer';
import { is, Set, List } from 'immutable'; import { is, Set, List } from 'immutable';
import * as globalActions from 'app/redux/GlobalReducer'; import * as globalActions from 'app/redux/GlobalReducer';
import { vestsToHpf, numberWithCommas } from 'app/utils/StateFunctions'; import { vestsToHpf } from 'app/utils/StateFunctions';
import tt from 'counterpart'; import tt from 'counterpart';
import _ from 'lodash';
const Long = ByteBuffer.Long; const Long = ByteBuffer.Long;
const { string, func, object } = PropTypes; const { string, func, object } = PropTypes;
...@@ -49,7 +51,12 @@ class Witnesses extends React.Component { ...@@ -49,7 +51,12 @@ class Witnesses extends React.Component {
constructor() { constructor() {
super(); super();
this.state = { customUsername: '', proxy: '', proxyFailed: false }; this.state = {
customUsername: '',
proxy: '',
proxyFailed: false,
witnessAccounts: {},
};
this.accountWitnessVote = (accountName, approve, e) => { this.accountWitnessVote = (accountName, approve, e) => {
e.preventDefault(); e.preventDefault();
const { username, accountWitnessVote } = this.props; const { username, accountWitnessVote } = this.props;
...@@ -72,6 +79,8 @@ class Witnesses extends React.Component { ...@@ -72,6 +79,8 @@ class Witnesses extends React.Component {
} }
componentDidMount() { componentDidMount() {
this.loadWitnessAccounts();
if (typeof document !== 'undefined') { if (typeof document !== 'undefined') {
setTimeout(() => { setTimeout(() => {
const highlightedWitnessElement = document.querySelector( const highlightedWitnessElement = document.querySelector(
...@@ -97,10 +106,51 @@ class Witnesses extends React.Component { ...@@ -97,10 +106,51 @@ class Witnesses extends React.Component {
np.username !== this.props.username || np.username !== this.props.username ||
ns.customUsername !== this.state.customUsername || ns.customUsername !== this.state.customUsername ||
ns.proxy !== this.state.proxy || ns.proxy !== this.state.proxy ||
ns.proxyFailed !== this.state.proxyFailed ns.proxyFailed !== this.state.proxyFailed ||
ns.witnessAccounts !== this.state.witnessAccounts
); );
} }
async loadWitnessAccounts() {
const witnessAccounts = this.state.witnessAccounts;
const { witnesses } = this.props;
const witnessOwners = [[]];
let chunksCount = 0;
witnesses.map(item => {
if (witnessOwners[chunksCount].length >= 20) {
chunksCount += 1;
witnessOwners[chunksCount] = [];
}
witnessOwners[chunksCount].push(item.get('owner'));
return true;
});
for (let oi = 0; oi < witnessOwners.length; oi += 1) {
const owners = witnessOwners[oi];
const res = await api.getAccountsAsync(owners);
if (!(res && res.length > 0)) {
console.error(tt('g.account_not_found'));
return false;
}
for (let ri = 0; ri < res.length; ri += 1) {
const witnessAccount = res[ri];
let jsonMetadata = { witness_description: '' };
if (
witnessAccount.hasOwnProperty('json_metadata') &&
witnessAccount.json_metadata
) {
jsonMetadata = JSON.parse(witnessAccount.json_metadata);
}
witnessAccounts[witnessAccount.name] = jsonMetadata;
}
}
this.setState({ witnessAccounts: { ...witnessAccounts } });
return true;
}
render() { render() {
const { const {
props: { props: {
...@@ -109,7 +159,7 @@ class Witnesses extends React.Component { ...@@ -109,7 +159,7 @@ class Witnesses extends React.Component {
current_proxy, current_proxy,
head_block, head_block,
}, },
state: { customUsername, proxy }, state: { customUsername, proxy, witnessAccounts },
accountWitnessVote, accountWitnessVote,
accountWitnessProxy, accountWitnessProxy,
onWitnessChange, onWitnessChange,
...@@ -130,6 +180,11 @@ class Witnesses extends React.Component { ...@@ -130,6 +180,11 @@ class Witnesses extends React.Component {
if (owner === witnessToHighlight) { if (owner === witnessToHighlight) {
foundWitnessToHighlight = true; foundWitnessToHighlight = true;
} }
const witnessDescription = _.get(
witnessAccounts[owner],
'profile.witness_description',
null
);
const totalVotesVests = item.get('votes'); const totalVotesVests = item.get('votes');
const totalVotesHpf = vestsToHpf( const totalVotesHpf = vestsToHpf(
this.props.state, this.props.state,
...@@ -156,7 +211,9 @@ class Witnesses extends React.Component { ...@@ -156,7 +211,9 @@ class Witnesses extends React.Component {
const myVote = witness_votes ? witness_votes.has(owner) : null; const myVote = witness_votes ? witness_votes.has(owner) : null;
const signingKey = item.get('signing_key'); const signingKey = item.get('signing_key');
const witnessCreated = item.get('created'); const witnessCreated = item.get('created');
const accountBirthday = Moment.utc(witnessCreated).format('ll'); const accountBirthday = Moment.utc(`${witnessCreated}Z`).format(
'll'
);
const now = Moment(); const now = Moment();
const witnessAgeDays = now.diff(accountBirthday, 'days'); const witnessAgeDays = now.diff(accountBirthday, 'days');
const witnessAgeWeeks = now.diff(accountBirthday, 'weeks'); const witnessAgeWeeks = now.diff(accountBirthday, 'weeks');
...@@ -261,6 +318,11 @@ class Witnesses extends React.Component { ...@@ -261,6 +318,11 @@ class Witnesses extends React.Component {
</div> </div>
<div> <div>
<small> <small>
{witnessDescription && (
<div className="Witnesses__description">
{witnessDescription}
</div>
)}
Produced block{' '} Produced block{' '}
<Link <Link
to={`https://hiveblocks.com/b/${lastBlock}`} to={`https://hiveblocks.com/b/${lastBlock}`}
......
...@@ -53,6 +53,18 @@ ...@@ -53,6 +53,18 @@
div.Witnesses__highlight form input.input-group-field { div.Witnesses__highlight form input.input-group-field {
box-shadow: 0px 0px 3px 3px pink; box-shadow: 0px 0px 3px 3px pink;
} }
div.Witnesses__description {
display: block;
width: calc(100% - 20px);
max-width: 660px;
font-style: italic;
max-height: 5em;
overflow-x: hidden;
overflow-y: auto;
margin-left: 20px;
margin-bottom: 10px;
border-bottom: 1px dotted #dcdcdc;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment