-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotas-element.js
127 lines (112 loc) · 3.32 KB
/
notas-element.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
import { html, css, LitElement, property } from 'lit-element';
import '@kor-ui/kor/components/menu-item';
import '@kor-ui/kor/components/input';
import '@kor-ui/kor/components/button';
import '@vaadin/vaadin-text-field';
import '@vaadin/vaadin-button';
import '@vaadin/vaadin-checkbox';
import '@vaadin/vaadin-radio-button/vaadin-radio-button';
import '@vaadin/vaadin-radio-button/vaadin-radio-group';
const VisibilityFilters = {
SHOW_ALL: 'Todas',
SHOW_ACTIVE: 'Activas',
SHOW_COMPLETED: 'Completadas'
};
class NotasElement extends LitElement {
static get properties() {
return {
todos: { type: Array },
filter: { type: String },
task: { type: String }
};
}
constructor() {
super();
this.todos = [];
this.filter = VisibilityFilters.SHOW_ALL;
this.task = '';
}
render() {
return html`
<div style="height: 90%; text-align: center;">
<div class="todos-list" style="top: 0; text-align: center; height: 90%;">
${
this.applyFilter(this.todos).map(
todo => html`
<div class="todo-item">
<vaadin-text-area
theme="error primary"
value="${todo.task}"
@change="${this.updateTask}"
></vaadin-text-area>
<vaadin-checkbox
theme="error primary"
?checked="${todo.complete}"
@change="${
e => this.updateTodoStatus(todo, e.target.checked)
}"
>
</vaadin-checkbox>
</div>
`
)
}
</div>
<div class="input-layout" @keyup="${this.shortcutListener}">
<vaadin-text-area
theme="error primary"
placeholder="Write something"
value="${this.task}"
@change="${this.updateTask}"
></vaadin-text-area>
<vaadin-button theme="error primary" @click="${this.addTodo}" >
Add Note
</vaadin-button>
</div>
</div>
`;
}
addTodo() {
if (this.task) {
this.todos = [
...this.todos,
{
task: this.task,
complete: false,
tiempo: 3
}
];
this.task = '';
}
}
shortcutListener(e) {
if (e.key === 'Enter') {
this.addTodo();
}
}
updateTask(e) {
this.task = e.target.value;
}
updateTodoStatus(updatedTodo, complete) {
this.todos = this.todos.map(todo =>
updatedTodo === todo ? { ...updatedTodo, complete } : todo
);
}
filterChanged(e) {
this.filter = e.target.value;
}
clearCompleted() {
this.todos = this.todos.filter(todo => !todo.complete);
}
applyFilter(todos) {
switch (this.filter) {
case VisibilityFilters.SHOW_ACTIVE:
return todos.filter(todo => !todo.complete);
case VisibilityFilters.SHOW_COMPLETED:
return todos.filter(todo => todo.complete);
default:
return todos;
}
}
}
window.customElements.define("notas-element", NotasElement);