-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcreate.tsx
More file actions
94 lines (87 loc) · 2.3 KB
/
create.tsx
File metadata and controls
94 lines (87 loc) · 2.3 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import React, { useState } from 'react'
import Layout from '../components/Layout'
import Router from 'next/router'
const Draft: React.FC = () => {
const [title, setTitle] = useState('')
const [content, setContent] = useState('')
const [authorEmail, setAuthorEmail] = useState('')
const submitData = async (e: React.SyntheticEvent) => {
e.preventDefault()
try {
const body = { title, content, authorEmail }
await fetch(`http://localhost:3000/api/post`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(body),
})
await Router.push('/drafts')
} catch (error) {
console.error(error)
}
}
return (
<Layout>
<div>
<form
onSubmit={submitData}>
<h1>Create Draft</h1>
<input
autoFocus
onChange={e => setTitle(e.target.value)}
placeholder="Title"
type="text"
value={title}
/>
<input
onChange={e => setAuthorEmail(e.target.value)}
placeholder="Author (email address)"
type="text"
value={authorEmail}
/>
<textarea
cols={50}
onChange={e => setContent(e.target.value)}
placeholder="Content"
rows={8}
value={content}
/>
<input
disabled={!content || !title || !authorEmail}
type="submit"
value="Create"
/>
<a className="back" href="#" onClick={() => Router.push('/')}>
or Cancel
</a>
</form>
</div>
<style jsx>{`
.page {
background: white;
padding: 3rem;
display: flex;
justify-content: center;
align-items: center;
}
input[type='text'],
textarea {
width: 100%;
padding: 0.5rem;
margin: 0.5rem 0;
border-radius: 0.25rem;
border: 0.125rem solid rgba(0, 0, 0, 0.2);
}
input[type='submit'] {
background: #ececec;
border: 0;
padding: 1rem 2rem;
cursor: pointer;
}
.back {
margin-left: 1rem;
}
`}</style>
</Layout>
)
}
export default Draft;