forked from stenciljs/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay-map-store.tsx
67 lines (56 loc) · 1.47 KB
/
display-map-store.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { Component, Host, h } from '@stencil/core';
import { state, Item } from '../../utils/map-store';
@Component({
tag: 'display-map-store',
shadow: false,
})
export class DisplayMapStore {
private currentId: number = 0;
private deletionIndex: number = 0;
render() {
return (
<Host>
<div>
<button onClick={this.addToMap}>add</button>
<button onClick={this.deleteFromMap}>remove</button>
</div>
<div>
{Array.from({ length: this.currentId + 10 - this.deletionIndex }, (_, i) => {
const item = state[`id-${i + this.deletionIndex}`];
if (!item) return null;
return (
<div
style={{
border: '1px solid grey',
padding: '5px',
margin: '5px',
}}
>
<div>{item.name}</div>
<div>{item.created.toLocaleDateString()}</div>
</div>
);
})}
</div>
</Host>
);
}
private addToMap = () => {
const item: Item = {
id: `id-${this.currentId}`,
name: `item-${this.currentId}`,
created: new Date(),
};
state[item.id] = item;
this.currentId++;
};
private deleteFromMap = () => {
const id = Object.keys(state)[0];
const toDelete = state[id];
console.log('will delete', toDelete);
if (id) {
delete state[id];
this.deletionIndex++;
}
};
}