import React from 'react';
import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
import * as qs from 'query-string';
import moment from 'moment';
import Message from './Message';
import Spinner from './Spinner';
export function Discover(props) {
const query = {
baseUrl: "https://api.juick.com/messages",
pageParam: 'before_mid'
};
return ()
}
export function Discussions(props) {
const query = {
baseUrl: "https://api.juick.com/messages/discussions",
pageParam: 'to'
};
return ()
}
export function Blog(props) {
const { user } = props.match.params;
const query = {
baseUrl: `https://api.juick.com/messages`,
search: {
uname: user
},
pageParam: 'before_mid'
};
return ()
}
export function Tag(props) {
const { tag } = props.match.params;
const query = {
baseUrl: `https://api.juick.com/messages`,
search: {
tag: tag
},
pageParam: 'before_mid'
};
return ()
}
export function Home(props) {
const query = {
baseUrl: `https://api.juick.com/home`,
pageParam: 'before_mid'
};
return ()
}
class Feed extends React.Component {
constructor(props) {
super(props);
this.state = {
msgs: []
};
this.loadMessages = this.loadMessages.bind(this);
}
componentDidMount() {
this.loadMessages(this.props.visitor.hash, this.props.location.search);
}
componentWillReceiveProps(nextProps) {
if (this.props.location.search != nextProps.location.search
|| this.props.visitor != nextProps.visitor) {
this.loadMessages(nextProps.visitor.hash, nextProps.location.search)
}
}
loadMessages(hash = '', filter = '') {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
this.setState({ msgs: [] })
const filterParams = qs.parse(filter);
let params = Object.assign({}, filterParams || {}, this.props.query.search || {});
let url = this.props.query.baseUrl;
if (hash) {
params.hash = hash;
}
if (Object.keys(params).length > 0) {
url = `${url}?${qs.stringify(params)}`;
}
if (!params.hash && this.props.authRequired) {
this.props.history.push('/')
}
fetch(url)
.then(response => {
return response.json()
})
.then(data => {
const { pageParam } = this.props.query;
const lastMessage = data.slice(-1)[0] || {};
const pageValue = pageParam === 'before_mid' ? lastMessage.mid : moment.utc(lastMessage.updated).valueOf();
let newFilter = Object.assign({}, filterParams);
newFilter[pageParam] = pageValue;
const nextpage = `?${qs.stringify(newFilter)}`;
this.setState({ msgs: data, nextpage: nextpage })
}).catch(ex => {
console.log(ex);
});
}
render() {
const { tag } = qs.parse(this.props.location.search || {});
const nodes = (
{
tag && (
← All posts with tag {tag}
)
}
{
this.state.msgs.map(msg =>
)
}
{
this.state.msgs.length >= 20 && (
Next →
)
}
);
return this.state.msgs.length > 0 ? (
{nodes}
) :
;
}
}
Feed.propTypes = {
msgs: PropTypes.array,
query: PropTypes.shape({
baseUrl: PropTypes.string.isRequired,
search: PropTypes.object,
pageParam: PropTypes.string.isRequired
})
};