46 lines
992 B
JavaScript
46 lines
992 B
JavaScript
import Layout from '../../components/layout'
|
|
import { gql } from '@apollo/client'
|
|
import ApolloClient from '../../api/client'
|
|
import UserHeader from '../../components/user-header'
|
|
import CommentsFlat from '../../components/comments-flat'
|
|
import Seo from '../../components/seo'
|
|
|
|
export async function getServerSideProps ({ req, params }) {
|
|
const { error, data: { user } } = await (await ApolloClient(req)).query({
|
|
query:
|
|
gql`{
|
|
user(name: "${params.username}") {
|
|
id
|
|
createdAt
|
|
name
|
|
nitems
|
|
ncomments
|
|
stacked
|
|
sats
|
|
}
|
|
}`
|
|
})
|
|
|
|
if (!user || error) {
|
|
return {
|
|
notFound: true
|
|
}
|
|
}
|
|
|
|
return {
|
|
props: {
|
|
user
|
|
}
|
|
}
|
|
}
|
|
|
|
export default function UserComments ({ user }) {
|
|
return (
|
|
<Layout noSeo>
|
|
<Seo user={user} />
|
|
<UserHeader user={user} />
|
|
<CommentsFlat variables={{ userId: user.id }} includeParent noReply clickToContext />
|
|
</Layout>
|
|
)
|
|
}
|