-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreeting.js
47 lines (39 loc) · 1.2 KB
/
greeting.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
const form = document.querySelector(".js-form"),
input = form.querySelector("input"),
greeting = document.querySelector(".js-greeting");
const USER_LS_KEY = "currentUser",
SHOWING_CN = "showing";
function saveName(key, value){
localStorage.setItem(key, value);
};
function handleSubmit(event){
event.preventDefault();
const currentValue = input.value;
saveName(USER_LS_KEY, currentValue);
loadName();
};
function askName(){
form.classList.add(SHOWING_CN);
form.addEventListener("submit", handleSubmit);
};
function paintText(text){
form.classList.remove(SHOWING_CN);
greeting.classList.add(SHOWING_CN);
greeting.innerText = `Hello ${text}`;
};
function loadName(){
const currentUser = localStorage.getItem(USER_LS_KEY);
if(currentUser === null){
askName();
document.querySelector(".js-toDoForm").classList.remove(SHOWING_CN);
document.querySelector(".js-toDoList").classList.remove(SHOWING_CN);
} else {
paintText(currentUser);
document.querySelector(".js-toDoForm").classList.add(SHOWING_CN);
document.querySelector(".js-toDoList").classList.add(SHOWING_CN);
}
};
function init(){
loadName();
};
init();