mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 14:41:41 +03:00
74 lines
2.0 KiB
JavaScript
74 lines
2.0 KiB
JavaScript
import React, { useState } from 'react'
|
|
import { Link, useHistory } from 'react-router-dom'
|
|
|
|
import useAuth from '@wasp/auth/useAuth.js'
|
|
import logout from '@wasp/auth/logout.js'
|
|
import updateUser from '@wasp/actions/updateUser'
|
|
import getUser from '@wasp/queries/getUser'
|
|
import getArticlesByUser from '@wasp/queries/getArticlesByUser'
|
|
import { useQuery } from '@wasp/queries'
|
|
|
|
import Navbar from './Navbar'
|
|
import smileyImageUrl from './smiley.jpg'
|
|
|
|
const UserProfilePage = (props) => {
|
|
const history = useHistory()
|
|
|
|
const username = props.match.params.username
|
|
const { data: user, error: userError } = useQuery(getUser, { username })
|
|
|
|
// NOTE: use-query will retry multiple times in case of error, making user
|
|
// wait relatively long before giving up on for example 404 and returning error,
|
|
// while on the other hand we would probably like it to give up on 404 immediatelly!
|
|
// Should we modify react-query default settings to not do any retrying?
|
|
if (userError) {
|
|
console.log(userError)
|
|
history.push("/")
|
|
}
|
|
|
|
// TODO: List My Articles
|
|
// TODO: List Favorited Articles
|
|
|
|
return user ? (
|
|
<div>
|
|
<Navbar />
|
|
|
|
<img src={user.profilePictureUrl || smileyImageUrl} />
|
|
<p> { user.username } </p>
|
|
<p> { user.bio } </p>
|
|
<div>
|
|
{ /* TODO: Show this link only if user is logged in. */ }
|
|
<Link to='/settings'>Edit Profile Settings</Link>
|
|
</div>
|
|
|
|
<Articles user={user} />
|
|
</div>
|
|
) : null
|
|
}
|
|
|
|
const Articles = (props) => {
|
|
// TODO: Should I have pagination here, probably I should?
|
|
|
|
const { data: articles } = useQuery(getArticlesByUser, { username: props.user.username })
|
|
|
|
return articles ? (
|
|
<div>
|
|
{ articles.map(article => <Article article={article} key={article.id} />) }
|
|
</div>
|
|
) : null
|
|
}
|
|
|
|
const Article = (props) => {
|
|
const article = props.article
|
|
return (
|
|
<div>
|
|
<Link to={`/article/${article.slug}`}>
|
|
<h2> { article.title } </h2>
|
|
</Link>
|
|
<p> { article.description } </p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default UserProfilePage
|