-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drafts.tsx
53 lines (47 loc) · 1.16 KB
/
drafts.tsx
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
import React from "react";
import { GetServerSideProps } from "next";
import Layout from "../components/Layout";
import Post, { PostProps } from "../components/Post";
import prisma from "../lib/prisma";
import { makeSerializable } from "../lib/util";
type Props = {
drafts: PostProps[];
};
const Drafts: React.FC<Props> = (props) => {
return (
<Layout>
<div className="page">
<h1>Drafts</h1>
<main>
{props.drafts.map((post) => (
<div key={post.id} className="post">
<Post post={post} />
</div>
))}
</main>
</div>
<style jsx>{`
.post {
background: white;
transition: box-shadow 0.1s ease-in;
}
.post:hover {
box-shadow: 1px 1px 3px #aaa;
}
.post + .post {
margin-top: 2rem;
}
`}</style>
</Layout>
);
};
export const getServerSideProps: GetServerSideProps = async () => {
const drafts = await prisma.data.findMany({
where: { published: false },
include: { author: true },
});
return {
props: { drafts: makeSerializable(drafts) },
};
};
export default Drafts;