aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/Feeds.js
blob: c7b857b74d9fa9f4a0b7203f69226ccdae680a19 (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import React, { useState, useEffect } from 'react';
import PropTypes from 'prop-types';
import ReactRouterPropTypes from 'react-router-prop-types';
import { Link } from 'react-router-dom';
import qs from 'qs';
import moment from 'moment';

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

import UserInfo from './UserInfo';

import { getMessages } from '../api';
import { UserType } from './Types';

export function Discover(props) {
  let search = qs.parse(props.location.search.substring(1));
  const query = {
    baseUrl: '/api/messages',
    search: search,
    pageParam: search.search ? 'page' : 'before_mid'
  };
  return (<Feed authRequired={false} query={query} {...props} />);
}

export function Discussions(props) {
  const query = {
    baseUrl: '/api/messages/discussions',
    pageParam: 'to'
  };
  return (<Feed authRequired={false} query={query} {...props} />);
}

export function Blog(props) {
  const { user } = props.match.params;
  let search = qs.parse(props.location.search.substring(1));
  search.uname = user;
  const query = {
    baseUrl: '/api/messages',
    search: search,
    pageParam: search.search ? 'page' : 'before_mid'
  };
  return (
    <>
      <div className="msg-cont">
        <UserInfo user={user} />
      </div>
      <Feed authRequired={false} query={query} {...props} />
    </>
  );
}

export function Tag(props) {
  const { tag } = props.match.params;
  const query = {
    baseUrl: '/api/messages',
    search: {
      tag: tag
    },
    pageParam: 'before_mid'
  };
  return (<Feed authRequired={false} query={query} {...props} />);
}

export function Home(props) {
  const query = {
    baseUrl: '/api/home',
    pageParam: 'before_mid'
  };
  return (<Feed authRequired={true} query={query} {...props} />);
}

function Feed(props) {
  const [msgs, setMsgs] = useState([]);
  const [loading, setLoading] = useState(true);
  const [nextpage, setNextpage] = useState(null);
  const [error, setError] = useState(false);

  useEffect(() => {
    let loadMessages = (hash = '', filter = '') => {
      document.body.scrollTop = 0;
      document.documentElement.scrollTop = 0;
      setMsgs([]);
      const filterParams = qs.parse(filter);
      let params = Object.assign({}, filterParams || {}, props.query.search || {});
      let url = props.query.baseUrl;
      if (hash) {
        params.hash = hash;
      }
      if (!params.hash && props.authRequired) {
        props.history.push('/');
      }
      getMessages(url, params)
        .then(response => {
          const { data } = response;
          const { pageParam } = props.query;
          const lastMessage = data.slice(-1)[0] || {};
          const nextpage = getPageParam(pageParam, lastMessage, filterParams);
          setMsgs(data);
          setLoading(false);
          setNextpage(nextpage);
        }).catch(ex => {
          setError(true);
        });
    };
    loadMessages(props.visitor.hash, props.location.search.substring(1));
  }, [props]);

  let getPageParam = (pageParam, lastMessage, filterParams) => {
    const pageValue = pageParam === 'before_mid' ? lastMessage.mid : pageParam === 'page' ? (Number(filterParams.page) || 0) + 1 : moment.utc(lastMessage.updated).valueOf();
    let newFilter = { ...filterParams };
    newFilter[pageParam] = pageValue;
    return `?${qs.stringify(newFilter)}`;
  };
  const { tag } = qs.parse(location.search.substring(1) || {});
  const nodes = (
    <>
      {
        tag && (
          <p className="page">
            <Link to={{ pathname: `/tag/${tag}` }}>
              <span> All posts with tag&nbsp;</span><b>{tag}</b>
            </Link>
          </p>
        )
      }
      {
        msgs.map(msg =>
          <Message key={msg.mid} data={msg} visitor={props.visitor} />)
      }
      {
        msgs.length >= 20 && (
          <p className="page">
            <Link to={{ pathname: props.location.pathname, search: nextpage }} rel="prev">Next </Link>
          </p>
        )
      }
    </>
  );
  return msgs.length > 0 ? (
    <div className="msgs">{nodes}</div>
  ) : error ? <div>error</div> : loading ? <div className="msgs"><Spinner /><Spinner /><Spinner /><Spinner /></div> : <div>No more messages</div>;
}

Discover.propTypes = {
  location: ReactRouterPropTypes.location.isRequired,
  search: PropTypes.string
};

Blog.propTypes = {
  match: ReactRouterPropTypes.match.isRequired,
  location: ReactRouterPropTypes.location.isRequired,
  search: PropTypes.string
};

Tag.propTypes = {
  match: ReactRouterPropTypes.match.isRequired
};

Feed.propTypes = {
  authRequired: PropTypes.bool,
  visitor: UserType,
  history: ReactRouterPropTypes.history.isRequired,
  location: ReactRouterPropTypes.location.isRequired,
  msgs: PropTypes.array,
  query: PropTypes.shape({
    baseUrl: PropTypes.string.isRequired,
    search: PropTypes.object,
    pageParam: PropTypes.string.isRequired
  })
};