-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.js
More file actions
449 lines (443 loc) · 12.5 KB
/
note.js
File metadata and controls
449 lines (443 loc) · 12.5 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
class Title extends React.Component {
render(){
return(
<div className="title">
<h1>{this.props.name}</h1>
</div>
)
}
}
class Sort extends React.Component {
setSort=(e)=>{
this.props.sort(e.target.value)
}
render(){
return(
<form className="form-group col-md-3">
<select className="form-control" onChange={this.setSort}>
<option>Sort...</option>
<optgroup label="Sort by Alphabet">
<option value="az">A-Z</option>
<option value="za">Z-A</option>
</optgroup>
<optgroup label="Sort by Date">
<option value="newest">Newest</option>
<option value="oldest">Oldest</option>
</optgroup>
</select>
</form>
)
}
}
class Search extends React.Component {
search=(e)=>{
e.preventDefault()
this.props.search(this.refs.input.value)
}
clear=(e)=>{
e.preventDefault()
this.props.search('')
this.refs.input.value=''
}
render(){
return(
<form className="form-group col-md-5">
<div className="input-group">
<input ref="input" className="form-control"
placeholder="Search for..."
onChange={(e)=>{this.props.search(e.target.value)}}
/>
<div className="input-group-append">
<button className="btn btn-danger" onClick={this.clear}>
<span className="fa fa-window-close"></span>
</button>
</div>
<div className="input-group-append">
<button className="btn btn-primary" onClick={this.search}>
<span className="fa fa-search"></span>
</button>
</div>
</div>
</form>
)
}
}
class Menu extends React.Component {
render(){
return(
<div className="row">
<Search search={this.props.search} />
<Sort sort={this.props.sort} />
{this.props.showRecycle?
<form className="form-group col-md-2">
<button className="btn btn-primary btn-block"
onClick={e=>this.props.toggleRecycle(e)}>Note</button>
</form>
:<form className="form-group col-md-2">
<button className="btn btn-success btn-block"
onClick={e=>this.props.toggleRecycle(e)}>Recycle</button>
</form>}
<form className="form-group col-md-2">
{this.props.showRecycle?
<button
className="btn btn-danger btn-block"
onClick={e=>this.props.cleanRecycle(e)}
>Clear All</button>
:<button
className="btn btn-primary btn-block"
onClick={e=>this.props.addList(e)}
>New note</button>}
</form>
</div>
)
}
}
class Item extends React.Component {
render(){
const item=this.props.item
const time=new Date(item.createAt)
return(
<li
key={item.id}
className={this.props.className}
onClick={()=>{this.props.show(this.props.index)}}
style={{}}
>
<div style={{overflow:'hidden'}}>
{item.title==''?'...'+item.content:item.title}
<br/><small style={{whiteSpace:'nowrap'}}>{time.toLocaleString()}</small>
</div>
</li>
)
}
}
class List extends React.Component {
createElm=(list,search,globalIndex,selectedClass)=>{
const len=list.length
let elm=[]
if(search!=''){
list.forEach((item,index)=>{
if(item.title.indexOf(search)>-1
||item.content.indexOf(search)>-1)
{
elm.push(<Item item={item} index={index} show={this.props.show} className='list-group-item'/>)
if (index==globalIndex){
const lenElm=elm.length
elm[lenElm-1].props.className+=selectedClass
}
}
})
}
else{
elm= list.map((item,index)=>{
return <Item item={item} index={index} show={this.props.show} className='list-group-item'/>
})
if(len>0) {
elm[globalIndex].props.className+=selectedClass
}
}
return elm
}
render(){
const showRecycle=this.props.showRecycle
const selectedClass=showRecycle?' bg-success text-white':' bg-primary text-white';
const list=showRecycle?this.props.recycle:this.props.list
const index=this.props.index
const search=this.props.search
const elm=this.createElm(list,search,index,selectedClass)
return(
<ul className="col-3 list-group" style={{overflow:'auto'}}>
{elm}
</ul>
)
}
}
class Main extends React.Component {
render(){
const showRecycle=this.props.showRecycle
const list=showRecycle?this.props.recycle:this.props.list
const len=list.length
const index=this.props.index
return(
<div className="col-9" style={{display:'grid',gridTemplateRows:'auto 1fr'}}>
<div className="row form-group">
<div className="input-group">
<input type="text"
name="title"
className="form-control"
value={len>0&&index>-1?list[index].title:''}
onChange={!showRecycle?(e)=>this.props.edit(e):null}
readonly={showRecycle}
/>
{showRecycle&&<div className="input-group-append">
<button className="btn btn-danger"
onClick={this.props.permanentlyDelete}>Del</button>
</div>}
{showRecycle?
<div className="input-group-append">
<button className="btn btn-success"
onClick={this.props.recover}>Recover</button>
</div>
:<div className="input-group-append">
<button className="btn btn-danger"
onClick={this.props.del}>Del</button>
</div>}
</div>
</div>
<div className="row" style={{}}>
<textarea type="text"
name="content"
style={{}}
className="form-control"
value={len>0&&index>-1?list[index].content:''}
onChange={!showRecycle?(e)=>this.props.edit(e):null}
readonly={showRecycle}
/>
</div>
</div>
)
}
}
class App extends React.Component {
constructor(props){
super(props);
this.state={
index: 0,
counter: 0,
sort: "newest",
list: [],
search: '',
recycle: [],
showRecycle: false,
};
this.show=this.show.bind(this)
}
componentWillMount(){
const localList = data
//const localList=JSON.parse(localStorage.getItem('list'))
const localRecycle = JSON.parse(localStorage.getItem('recycle'))
let counter=0;
if(localRecycle!==null&&localRecycle.length>0){
this.state.recycle=localRecycle
localRecycle.forEach((item)=>{
if(item.id>counter) counter=item.id
})
}
if(localList!==null&&localList.length>0){
const lenList=localList.length
this.state.list=localList
this.state.counter=lenList
localList.forEach((item)=>{
if(item.id>counter) counter=item.id
})
}
this.setState({
index: 0,
counter: counter,
})
}
update=()=>{
localStorage.list=JSON.stringify(this.state.list)
localStorage.recycle=JSON.stringify(this.state.recycle)
localStorage.counter=JSON.stringify(this.state.counter)
}
toggleRecycle=(e)=>{
e.preventDefault()
const list=this.state.showRecycle?this.state.list:this.state.recycle//bi nguoc do chua set showRecycle
const len=list.length
this.setState({
index: 0,
search:'',
showRecycle: !this.state.showRecycle
})
}
addItem=(e)=>{
e.preventDefault()
if(!this.state.showRecycle){
const list=this.state.list
const len=list.length
if(len==0||list[0].title!==''||list[0].content!==''){
const date=new Date()
const blankItem={id:this.state.counter+1,title: '',content: '',createAt:date}
this.setState({
counter: this.state.counter+1,
list: [blankItem,...this.state.list],
index: 0,
})
}
}
}
setSort=(sort)=>{
if(sort=="az"||sort=="za"||sort=="newest"||sort=="oldest"){
const list=this.state.list
let sortList
switch(sort){
case "oldest":
sortList=list.sort((a,b)=>{return new Date(a.createAt).getTime()-new Date(b.createAt).getTime()})
break;
case "newest":
sortList=list.sort((a,b)=>{return new Date(b.createAt).getTime()-new Date(a.createAt).getTime()})
break;
case "az":
sortList=list.sort((a,b)=>{return a.title.localeCompare(b.title)})
break;
case "za":
sortList=list.sort((a,b)=>{return b.title.localeCompare(a.title)})
break;
}
this.setState({list:sortList},()=>{
this.update()
})
}
}
del=()=>{
const list=this.state.list
const len=list.length
let index=this.state.index
if(len>0&&index>-1){
const isBlank=list[index].title==''&&list[index].content==''
const recycleItem=list.splice(index,1)
if(!isBlank){
this.state.recycle.unshift(recycleItem[0])
}
if(this.state.search!==''){
index=-1
}
else if(len>1&&index==len-1){
index--
}
this.update()
this.setState({
index: index
})
}
}
permanentlyDelete=()=>{
const recycle=this.state.recycle
const len=recycle.length
let index=this.state.index
if(len>0&&index>-1){
const recoverItem=recycle.splice(index,1)
if(this.state.search!==''){
index=-1
}
else if(len>1&&index==len-1){
index--
}
this.update()
this.setState({
index: index
})
}
}
cleanRecycle=(e)=>{
e.preventDefault()
const confirm=window.confirm("Are you sure want to delete ALL?")
if(confirm){
this.state.recycle.length=0
this.update()
this.setState({
index: 0,
})
}
}
recover=(e)=>{
const recycle=this.state.recycle
const len=recycle.length
let index=this.state.index
if(len>0&&index>-1){
const recoverItem=recycle.splice(index,1)
this.state.list.unshift(recoverItem[0])
if(this.state.search!==''){
index=-1
}
else if(len>1&&index==len-1){
index--
}
this.update()
this.setState({
index: index
})
}
}
edit=(e)=>{
const len=this.state.list.length
if(len==0){
const date=new Date()
this.state.list[this.state.index]={id:this.state.counter+1,title:'',content:'',createAt:date}
this.state.counter++
}
this.state.list[this.state.index][e.target.name]= e.target.value
this.update()
this.setState({
index: this.state.index,
})
}
search=(search)=>{
if(search!=''||search==''&&this.state.search!=''){
let list=this.state.showRecycle?this.state.recycle:this.state.list
let index= list.findIndex((item,i) =>{
return item.title.indexOf(search)>-1
||item.content.indexOf(search)>-1
})//ko co thi return -1
this.setState({
index: index,
search: search,
})
}
}
show=(index)=>{
this.setState({
index: index,
})
}
render(){
// console.log(this.state.index)
// console.log(this.state.list)
// console.log(this.state.recycle)
return(
<div style={{minHeight:'100%' ,display:'flex',flexDirection:'column',padding:10}}>
<div style={{display: 'flex',justifyContent:'space-between'}}>
<Title name="Note List"/>
<div className="note-btn">
<span></span>
<span></span>
<span></span>
</div>
</div>
<Menu
search={this.search}
addList={this.addItem}
sort={this.setSort}
toggleRecycle={this.toggleRecycle}
showRecycle={this.state.showRecycle}
cleanRecycle={this.cleanRecycle}
/>
<div className="border" style={{display:'flex',flex:'1',padding:'5px'}}>
<List
search={this.state.search}
show={this.show}
index={this.state.index}
list={this.state.list}
sort={this.state.sort}
recycle={this.state.recycle}
showRecycle={this.state.showRecycle}
cleanRecycle={this.cleanRecycle}
/>
<Main
list={this.state.list}
index={this.state.index}
del={this.del}
edit={this.edit}
recycle={this.state.recycle}
showRecycle={this.state.showRecycle}
recover={this.recover}
permanentlyDelete={this.permanentlyDelete}
/>
</div>
</div>
)
}
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);