[ABANDONED] React/Redux front end for the Flexor social network.
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.
 
 

90 lines
3.0 KiB

import React, { FC, useEffect } from 'react'
import { useSelector, useDispatch } from 'react-redux'
import { useParams, useHistory } from 'react-router-dom'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faArrowsAltV } from '@fortawesome/free-solid-svg-icons'
import { handleApiError } from 'src/api/errors'
import { fetchPost } from 'src/actions/posts'
import { getAuthenticated, getChecked } from 'src/selectors/authentication'
import { getEntity } from 'src/selectors/entities'
import { getPostParents, getPostChildren } from 'src/selectors/posts'
import { setTitle } from 'src/utils'
import { AppState, AppThunkDispatch, EntityType, Post } from 'src/types'
import PageHeader from 'src/components/page-header'
import Loading from 'src/components/pages/loading'
import PostComponent from 'src/components/post'
import PostList from 'src/components/post-list'
import Composer from 'src/components/composer'
interface Params {
id: string
}
const ViewPost: FC = () => {
const { id } = useParams<Params>()
const post = useSelector<AppState, Post | undefined>(state => getEntity<Post>(state, EntityType.Post, id))
const parents = useSelector<AppState, Post[]>(state => getPostParents(state, id))
const replies = useSelector<AppState, Post[]>(state => getPostChildren(state, id))
const checked = useSelector<AppState, boolean>(getChecked)
const authenticated = useSelector<AppState, boolean>(getAuthenticated)
const dispatch = useDispatch<AppThunkDispatch>()
const history = useHistory()
const fetch = async () => {
try {
await dispatch(fetchPost(id))
} catch (err) {
handleApiError(err, dispatch, history)
}
}
useEffect(() => {
if (checked) fetch()
}, [checked, id])
useEffect(() => {
if (post) setTitle('Post')
}, [post])
if (!post) return <Loading />
return (
<div>
<PageHeader title="Post" />
<div className="main-content">
{parents.length > 0 &&
<div>
<PostList posts={parents} collapseText="Show Older Posts" />
<div className="has-text-centered">
<FontAwesomeIcon icon={faArrowsAltV} />
</div>
</div>
}
<PostComponent post={post} />
{authenticated &&
<div>
<br />
<h1 className="title is-size-5 is-primary">Reply</h1>
<Composer parent={post} onPost={fetch} />
</div>
}
{replies.length > 0 &&
<div>
<br />
<h1 className="title is-size-5">Replies</h1>
<PostList posts={replies} />
</div>
}
</div>
</div>
)
}
export default ViewPost