-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
147 lines (143 loc) · 3.56 KB
/
index.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
class Base extends React.Component {
componentWillMount() {
this.state = {isFinishedAuth: false};
firebase.auth().onAuthStateChanged(user => {
this.setState({isFinishedAuth: true, user});
});
}
render() {
const {user, isFinishedAuth} = this.state;
return (
<div>
<h1>Firebase Notes App</h1>
{isFinishedAuth && !user && <Login />}
{user && <Notes user={user} />}
{user && <Logout />}
</div>
);
}
}
class Logout extends React.Component {
handleLogout(event) {
event.preventDefault();
firebase.auth().signOut();
}
render() {
return (
<div>
<button name="logout" onClick={this.handleLogout.bind(this)}>
Logout
</button>
</div>
);
}
}
class Login extends React.Component {
componentWillMount() {
this.state = {email: "", password: "", error: {}};
}
handleLogin(event) {
event.preventDefault();
const {email, password} = this.state;
firebase
.auth()
.signInWithEmailAndPassword(email, password)
.catch(error => {
this.setState({error});
});
}
handleEmailChange(event) {
this.setState({email: event.target.value});
}
handlePasswordChange(event) {
this.setState({password: event.target.value});
}
render() {
const {error, email, password} = this.state;
return (
<div>
<h3>Login</h3>
<div id="login-error" data-error-code={error.code}>
{error.message}
</div>
<form onSubmit={this.handleLogin.bind(this)}>
<input
name="email"
type="text"
placeholder="email"
value={email}
onChange={this.handleEmailChange.bind(this)}
/>
<input
name="password"
type="password"
placeholder="password"
value={password}
onChange={this.handlePasswordChange.bind(this)}
/>
<button name="login" type="submit">
Login
</button>
</form>
</div>
);
}
}
class Notes extends React.Component {
componentWillMount() {
this.state = {notes: [], text: ""};
const {user} = this.props;
const notesRef = firebase
.firestore()
.collection("users")
.doc(user.uid)
.collection("notes");
notesRef.onSnapshot(snapshot => {
this.setState({notes: snapshot.docs});
});
}
handleAdd(event) {
const {text} = this.state;
const {user} = this.props;
event.preventDefault();
const notesRef = firebase
.firestore()
.collection("users")
.doc(user.uid)
.collection("notes");
notesRef.add({created: Date.now(), text});
this.setState({text: ""});
}
handleNoteChange(event) {
this.setState({text: event.target.value});
}
render() {
const {notes} = this.state;
const {user} = this.props;
return (
<div>
<h3 id="user">{user.email}</h3>
{notes && (
<ul id="notes">
{notes.map(note => (
<li key={note.data().created}>{note.data().text}</li>
))}
</ul>
)}
{!notes && <div id="no-notes">No notes</div>}
<form onSubmit={this.handleAdd.bind(this)}>
<input
name="note"
type="text"
placeholder="note"
onChange={this.handleNoteChange.bind(this)}
/>
<button name="add" type="submit">
Add
</button>
</form>
</div>
);
}
}
ReactDOM.render(<Base />, document.getElementById("container"));