-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.js
116 lines (98 loc) · 3.27 KB
/
hello.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
/* const form = document.querySelector('.js_form'),
input = form.querySelector('input'),
hello = document.querySelector('.js_hello');
const resetNameBtn = document.querySelector('.js_resetName');
const User_LS = 'currentuserName',
Show_CN = 'show';
function saveUN(text){
localStorage.setItem(User_LS,text);
}
function submitHandler(event){
event.preventDefault();
const inputValue = input.value;
showHello(inputValue);
form.classList.add('hidden');
}
function showHello(text) {
hello.innerText = `Приветствую ${text}!`;
hello.classList.add(Show_CN);
form.style.display = 'none';
resetNameBtn.classList.remove('hidden');
saveUN(text);
}
function askForUN() {
form.classList.add(Show_CN);
form.addEventListener('submit', submitHandler);
}
function resetName() {
localStorage.removeItem(User_LS);
hello.innerText = '';
hello.classList.remove(Show_CN);
form.classList.add(Show_CN);
resetNameBtn.classList.add('hidden');
input.value = '';
form.addEventListener('submit', submitHandler);
}
function loadUserName() {
const currentuserName = localStorage.getItem(User_LS);
if (currentuserName === null) {
form.classList.add(Show_CN);
form.addEventListener('submit', submitHandler);
} else {
showHello(currentuserName);
resetNameBtn.classList.remove('hidden');
resetNameBtn.addEventListener('click', resetName);
}
}
function init() {
loadUserName();
}
init(); *//* Первая версия кода работала не очень корректно */
const form = document.querySelector('.js_form');
const input = form.querySelector('input');
const hello = document.querySelector('.js_hello');
const resetNameBtn = document.querySelector('.js_resetName');
const User_LS = 'currentuserName';
const Show_CN = 'show';
function saveUN(text) {
localStorage.setItem(User_LS, text);
}
function submitHandler(event) {
event.preventDefault();
const inputValue = input.value;
showHello(inputValue);
form.style.display = 'none'; // Скрываем форму после сохранения имени
}
function showHello(text) {
hello.innerText = `Приветствую ${text}!`;
hello.classList.add(Show_CN);
resetNameBtn.classList.remove('hidden');
saveUN(text);
}
function askForUN() {
form.style.display = 'block'; // Показываем форму
form.addEventListener('submit', submitHandler);
}
function resetName() {
localStorage.removeItem(User_LS);
hello.innerText = '';
hello.classList.remove(Show_CN);
resetNameBtn.classList.add('hidden');
input.value = '';
form.style.display = 'block'; // Показываем форму после сброса имени
}
function loadUserName() {
const currentuserName = localStorage.getItem(User_LS);
if (currentuserName === null) {
askForUN();
} else {
showHello(currentuserName);
resetNameBtn.classList.remove('hidden');
form.style.display = 'none'; // Скрываем форму, если имя уже сохранено
}
}
function init() {
loadUserName();
resetNameBtn.addEventListener('click', resetName); // Добавляем слушатель события для кнопки сброса имени
}
init(); /* Вторая отработанная */