cal.pub0.org/pages/[user].tsx

92 lines
2.8 KiB
TypeScript
Raw Normal View History

2021-04-11 17:12:18 +00:00
import Head from 'next/head';
import Link from 'next/link';
import prisma from '../lib/prisma';
import Avatar from '../components/Avatar';
2021-03-22 13:48:48 +00:00
export default function User(props) {
2021-04-28 09:23:30 +00:00
const eventTypes = props.eventTypes.map(type =>
<li key={type.id}>
2021-04-28 12:24:16 +00:00
<Link href={'/' + props.user.username + '/' + type.slug}>
<a className="block px-6 py-4">
<div className="inline-block w-3 h-3 rounded-full mr-2" style={{backgroundColor:getRandomColorCode()}}></div>
2021-03-22 13:48:48 +00:00
<h2 className="inline-block font-medium">{type.title}</h2>
<p className="inline-block text-gray-400 ml-2">{type.description}</p>
</a>
</Link>
</li>
2021-03-22 13:48:48 +00:00
);
return (
<div>
<Head>
2021-03-31 20:10:53 +00:00
<title>{props.user.name || props.user.username} | Calendso</title>
2021-03-22 13:48:48 +00:00
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="max-w-2xl mx-auto my-24">
<div className="mb-8 text-center">
<Avatar user={props.user} className="mx-auto w-24 h-24 rounded-full mb-4" />
2021-03-31 20:10:53 +00:00
<h1 className="text-3xl font-semibold text-gray-800 mb-1">{props.user.name || props.user.username}</h1>
2021-03-22 13:48:48 +00:00
<p className="text-gray-600">{props.user.bio}</p>
</div>
<div className="bg-white shadow overflow-hidden rounded-md">
<ul className="divide-y divide-gray-200">
{eventTypes}
</ul>
2021-03-31 20:10:53 +00:00
{eventTypes.length == 0 &&
<div className="p-8 text-center text-gray-400">
<h2 className="font-semibold text-3xl text-gray-600">Uh oh!</h2>
<p className="max-w-md mx-auto">This user hasn't set up any event types yet.</p>
</div>
}
2021-03-22 13:48:48 +00:00
</div>
</main>
</div>
)
}
export async function getServerSideProps(context) {
const user = await prisma.user.findFirst({
where: {
2021-04-28 09:23:30 +00:00
username: context.query.user,
2021-03-22 13:48:48 +00:00
},
select: {
2021-04-28 09:23:30 +00:00
id: true,
2021-03-22 13:48:48 +00:00
username: true,
email:true,
2021-03-22 13:48:48 +00:00
name: true,
bio: true,
avatar: true,
eventTypes: true
}
});
if (!user) {
return {
notFound: true,
}
}
2021-04-28 09:23:30 +00:00
const eventTypes = await prisma.eventType.findMany({
where: {
userId: user.id,
hidden: false
}
});
2021-03-22 13:48:48 +00:00
return {
props: {
2021-04-28 09:23:30 +00:00
user,
eventTypes
2021-03-22 13:48:48 +00:00
},
}
}
// Auxiliary methods
export function getRandomColorCode() {
let color = '#';
for (let idx = 0; idx < 6; idx++) {
color += Math.floor(Math.random() * 10);
}
return color;
}