aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Feeds.js
blob: e79d7f83db45bbe7d842a211cc23691ca94485ce (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
import 'whatwg-fetch';
import React from 'react';
import PropTypes from 'prop-types';
import * as qs from 'query-string';

import Message from './Message';
import Spinner from './Spinner';

export function Discover(props) {
  return (<Feed baseUrl="https://api.juick.com/messages" {...props} />)
}

export function Discussions(props) {
  return (<Feed authRequired="true" baseUrl="https://api.juick.com/messages/discussions" {...props} />)
}

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);
  }
  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 = '') {
    this.setState({ msgs: [] })
    let params = qs.parse(filter) || {}
    let url = this.props.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 =>
        this.setState({ msgs: data })
      ).catch(ex => {
        console.log(ex);
      });
  }

  render() {
    var nodes = this.state.msgs.map(msg => {
      return (<Message key={msg.mid} data={msg} visitor={this.props.visitor} />);
    });
    return this.state.msgs.length > 0 ? (
      <div className="msgs" id="content">{nodes}</div>
    ) : <Spinner />;
  }
}

Feed.propTypes = {
  msgs: PropTypes.array,
  baseUrl: PropTypes.string
};