-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
185 lines (155 loc) · 5.65 KB
/
app.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
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
const container = document.getElementById("root");
const ajax = new XMLHttpRequest();
const content = document.createElement("div");
const NEWS_URL = "https://api.hnpwa.com/v0/news/1.json";
// 바뀔 가능성이 있는 변수는 뺴주는게 좋다 URL
const CONTENT_URL = "https://api.hnpwa.com/v0/item/@id.json";
const store = {
currentPage: 1,
};
function getData(url) {
ajax.open("GET", url, false);
ajax.send();
return JSON.parse(ajax.response);
}
//응답 값을 객체로 바꿔보자 (preview 탭)
// JSON 데이터를 객체로 바꾸는 도구는 'json.parse)이다
// 객체화되어 있을 것 (axios에서는 이 기능을 자동으로 처리해줌)
function newsFeed() {
const newsFeed = getData(NEWS_URL);
const newsList = [];
let template = `
<div class="bg-gray-600 min-h-screen">
<div class="bg-white text-xl">
<div class="mx-auto px-4">
<div class="flex justify-between items-center py-6">
<div class="flex justify-start">
<h1 class="font-extrabold">Hacker News</h1>
</div>
<div class="items-center justify-end">
<a href="#/page/{{__prev_page__}}" class="text-gray-500">
Previous
</a>
<a href="#/page/{{__next_page__}}" class="text-gray-500 ml-4">
Next
</a>
</div>
</div>
</div>
</div>
<div class="p-4 text-2xl text-gray-700">
{{__news_feed__}}
</div>
</div>
`;
for (let i = (store.currentPage - 1) * 10; i < store.currentPage * 10; i++) {
newsList.push(`
<div class="p-6 bg-white mt-6 rounded-lg shadow-md transition-colors duration-500 hover:bg-green-100">
<div class="flex">
<div class="flex-auto">
<a href="#/show/${newsFeed[i].id}">${newsFeed[i].title}</a>
</div>
<div class="text-center text-sm">
<div class="w-10 text-white bg-green-300 rounded-lg px-0 py-2">${newsFeed[i].comments_count}</div>
</div>
</div>
<div class="flex mt-3">
<div class="grid grid-cols-3 text-sm text-gray-500">
<div><i class="fas fa-user mr-1"></i>${newsFeed[i].user}</div>
<div><i class="fas fa-heart mr-1"></i>${newsFeed[i].points}</div>
<div><i class="far fa-clock mr-1"></i>${newsFeed[i].time_ago}</div>
</div>
</div>
</div>
`);
}
template = template.replace("{{__news_feed__}}", newsList.join(""));
template = template.replace(
"{{__prev_page__}}",
store.currentPage > 1 ? store.currentPage - 1 : 1
);
template = template.replace("{{__next_page__}}", store.currentPage + 1);
container.innerHTML = template;
// ** 문자열만을 가지고 UI를 만드는 것, DOM API를 최대한 이용하지 않는 것이
// 실제 프로젝트가 커지고 코드가 복잡해질 수록 권장된다.
// 마크업 구조가 잘 보인다는 것이다. 문자열을 사용하면 좋은 점
// join : 배열 요소 안에 문자열들을 하나의 문자열로 합쳐서 반환 (기본 , 구분자가 있음)
// join('') 빈 문자열을 넣어주면 구분자 없이 하나의 합쳐진 HTML 문자열을 얻을 수 있음
// 똑같은 코드 반복은 좋지 않다
}
function newsDetail() {
const id = location.hash.substring(7);
// 쓰고 싶은 위치값부터 그 이후부터만 나오게
// 1은 "#"을 제외한 나머지의 문자열만 나오게 되는 것이다.
const newsContent = getData(CONTENT_URL.replace("@id", id));
let template = `
<div class="bg-gray-600 min-h-screen pb-8">
<div class="bg-white text-xl">
<div class="mx-auto px-4">
<div class="flex justify-between items-center py-6">
<div class="flex justify-start">
<h1 class="font-extrabold">Hacker News</h1>
</div>
<div class="items-center justify-end">
<a href="#/page/${store.currentPage}" class="text-gray-500">
<i class="fa fa-times"></i>
</a>
</div>
</div>
</div>
</div>
<div class="h-full border rounded-xl bg-white m-6 p-4 ">
<h2>${newsContent.title}</h2>
<div class="text-gray-400 h-20">
${newsContent.content}
</div>
{{__comments__}}
</div>
</div>
`;
container.innerHTML = `
<h1>${newsContent.title}</h1>
<div>
<a href="#/page/${store.currentPage}">목록으로</a>
</div>
`;
// title.innerHTML = newsContent.title;
// content.appendChild(title);
// 문자열 함수 중에 값을 대체해주는 replace 함수가 있다
function makeComment(comments, called = 0) {
const commentString = [];
for (let i = 0; i < comments.length; i++) {
commentString.push(`
<div style="padding-left: ${called * 40}px;" class="mt-4">
<div class="text-gray-400">
<i class="fa fa-sort-up mr-2"></i>
<strong>${comments[i].user}</strong> ${comments[i].time_ago}
</div>
<p class="text-gray-700">${comments[i].content}</p>
</div>
`);
if (comments[i].comments.length > 0) {
commentString.push(makeComment(comments[i].comments, called + 1));
}
}
return commentString.join("");
}
container.innerHTML = template.replace(
"{{__comments__}}",
makeComment(newsContent.comments)
);
}
function router() {
const routePath = location.hash;
console.log(routePath);
if (routePath === "") {
newsFeed();
} else if (routePath.indexOf("#/page/") >= 0) {
store.currentPage = Number(routePath.substring(7));
newsFeed();
} else {
newsDetail();
}
}
window.addEventListener("hashchange", router);
router();