mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.2 KiB
97 lines
2.2 KiB
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { connect } from 'react-redux';
|
|
import { drizzle } from '../index';
|
|
|
|
import Post from './Post';
|
|
|
|
const contract = 'Forum';
|
|
const getPostMethod = 'getPost';
|
|
|
|
class PostList extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.getBlockchainData = this.getBlockchainData.bind(this);
|
|
|
|
this.state = {
|
|
dataKeys: []
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.getBlockchainData();
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.getBlockchainData();
|
|
}
|
|
|
|
getBlockchainData() {
|
|
const { dataKeys } = this.state;
|
|
const { drizzleStatus, postIDs } = this.props;
|
|
|
|
if (drizzleStatus.initialized) {
|
|
const dataKeysShallowCopy = dataKeys.slice();
|
|
let fetchingNewData = false;
|
|
|
|
postIDs.forEach((postID) => {
|
|
if (!dataKeys[postID]) {
|
|
dataKeysShallowCopy[postID] = drizzle.contracts[contract].methods[getPostMethod].cacheCall(
|
|
postID,
|
|
);
|
|
fetchingNewData = true;
|
|
}
|
|
});
|
|
|
|
if (fetchingNewData) {
|
|
this.setState({
|
|
dataKeys: dataKeysShallowCopy
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { dataKeys } = this.state;
|
|
const { postIDs, contracts, focusOnPost, recentToTheTop } = this.props;
|
|
|
|
const posts = postIDs.map((postID, index) => (
|
|
<Post
|
|
postData={(dataKeys[postID]
|
|
&& contracts[contract][getPostMethod][dataKeys[postID]])
|
|
? contracts[contract][getPostMethod][dataKeys[postID]]
|
|
: null}
|
|
avatarUrl=""
|
|
postIndex={index}
|
|
postID={postID}
|
|
getFocus={focusOnPost === postID}
|
|
key={postID}
|
|
/>
|
|
));
|
|
|
|
return (
|
|
<div>
|
|
{recentToTheTop
|
|
? posts.slice(0).reverse()
|
|
: posts
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
PostList.propTypes = {
|
|
drizzleStatus: PropTypes.object.isRequired,
|
|
postIDs: PropTypes.array.isRequired,
|
|
contracts: PropTypes.array.isRequired,
|
|
focusOnPost: PropTypes.number,
|
|
recentToTheTop: PropTypes.bool
|
|
};
|
|
|
|
const mapStateToProps = state => ({
|
|
contracts: state.contracts,
|
|
drizzleStatus: state.drizzleStatus
|
|
});
|
|
|
|
export default connect(mapStateToProps)(PostList);
|
|
|