-
Notifications
You must be signed in to change notification settings - Fork 1
/
AddPinPage.js
89 lines (86 loc) · 2.18 KB
/
AddPinPage.js
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
import React from "react";
import { Icon, Heading } from "gestalt";
import { Route } from "react-router-dom";
import "./AddPinPage.css";
class AddPinPage extends React.Component {
state = {
title: "",
link: "",
image: ""
};
componentDidMount() {
if (this.props.match && !this.props.authenticated) {
this.props.history.push("/login");
}
}
render() {
return (
<div className="add-pin">
<Heading size="md">Add pin</Heading>
<form
style={{ display: "grid", gridGap: 20 }}
onSubmit={event => {
this.setState({
title: "",
link: "",
image: ""
});
this.props.addPin({
title: this.state.title,
link: this.state.link,
image: this.state.image
});
this.props.history.push("/");
event.preventDefault();
}}
>
<input
className="input"
value={this.state.title}
onChange={event => this.setState({ title: event.target.value })}
placeholder="Title"
type="text"
required
autoFocus
/>
<input
className="input"
value={this.state.link}
onChange={event => this.setState({ link: event.target.value })}
placeholder="URL"
type="url"
required
/>
<input
className="input"
value={this.state.image}
onChange={event => {
this.setState({
image: event.target.value
});
}}
placeholder="Image URL"
type="url"
required
/>
<button type="submit">
<Icon
accessibilityLabel="Home"
icon="pin"
color="white"
size="20"
/>Save
</button>
</form>
</div>
);
}
}
export default ({ addPin = () => {}, ...props }) => (
<Route
path="/upload-pin"
component={routerProps => (
<AddPinPage {...routerProps} {...props} addPin={addPin} />
)}
/>
);