Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,6 +2,7 @@ from flask import Flask, render_template, request, jsonify, session
|
|
| 2 |
import requests
|
| 3 |
import os
|
| 4 |
from datetime import timedelta
|
|
|
|
| 5 |
|
| 6 |
app = Flask(__name__)
|
| 7 |
app.secret_key = os.urandom(24)
|
|
@@ -103,6 +104,10 @@ def login():
|
|
| 103 |
session['token'] = token
|
| 104 |
session['username'] = username
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
return jsonify({
|
| 107 |
'success': True,
|
| 108 |
'username': username
|
|
@@ -112,6 +117,7 @@ def login():
|
|
| 112 |
def logout():
|
| 113 |
session.pop('token', None)
|
| 114 |
session.pop('username', None)
|
|
|
|
| 115 |
return jsonify({'success': True})
|
| 116 |
|
| 117 |
@app.route('/api/urls', methods=['GET'])
|
|
@@ -124,18 +130,68 @@ def get_urls():
|
|
| 124 |
if not model_info:
|
| 125 |
continue
|
| 126 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 127 |
results.append({
|
| 128 |
'url': url,
|
| 129 |
'title': title,
|
| 130 |
-
'model_info': model_info
|
|
|
|
| 131 |
})
|
| 132 |
|
| 133 |
return jsonify(results)
|
| 134 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 135 |
@app.route('/api/session-status', methods=['GET'])
|
| 136 |
def session_status():
|
| 137 |
return jsonify({
|
| 138 |
-
'logged_in': '
|
| 139 |
'username': session.get('username')
|
| 140 |
})
|
| 141 |
|
|
@@ -157,6 +213,7 @@ if __name__ == '__main__':
|
|
| 157 |
margin: 0;
|
| 158 |
padding: 0;
|
| 159 |
color: #333;
|
|
|
|
| 160 |
}
|
| 161 |
|
| 162 |
.container {
|
|
@@ -166,25 +223,11 @@ if __name__ == '__main__':
|
|
| 166 |
}
|
| 167 |
|
| 168 |
.header {
|
| 169 |
-
background-color: #
|
| 170 |
-
padding: 1rem;
|
| 171 |
-
border-radius: 5px;
|
| 172 |
-
margin-bottom: 1rem;
|
| 173 |
-
}
|
| 174 |
-
|
| 175 |
-
.stats-bar {
|
| 176 |
-
background-color: #e9f7ef;
|
| 177 |
padding: 1rem;
|
| 178 |
-
border-radius:
|
| 179 |
margin-bottom: 1rem;
|
| 180 |
-
|
| 181 |
-
justify-content: space-between;
|
| 182 |
-
align-items: center;
|
| 183 |
-
}
|
| 184 |
-
|
| 185 |
-
.stats-bar .liked-count {
|
| 186 |
-
font-weight: bold;
|
| 187 |
-
color: #e74c3c;
|
| 188 |
}
|
| 189 |
|
| 190 |
.user-controls {
|
|
@@ -195,16 +238,20 @@ if __name__ == '__main__':
|
|
| 195 |
}
|
| 196 |
|
| 197 |
.filter-controls {
|
| 198 |
-
background-color: #
|
| 199 |
padding: 1rem;
|
| 200 |
-
border-radius:
|
| 201 |
margin-bottom: 1rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
}
|
| 203 |
|
| 204 |
input[type="password"],
|
| 205 |
input[type="text"] {
|
| 206 |
padding: 0.5rem;
|
| 207 |
-
border: 1px solid #
|
| 208 |
border-radius: 4px;
|
| 209 |
margin-right: 5px;
|
| 210 |
}
|
|
@@ -216,6 +263,7 @@ if __name__ == '__main__':
|
|
| 216 |
border: none;
|
| 217 |
border-radius: 4px;
|
| 218 |
cursor: pointer;
|
|
|
|
| 219 |
}
|
| 220 |
|
| 221 |
button:hover {
|
|
@@ -268,8 +316,19 @@ if __name__ == '__main__':
|
|
| 268 |
}
|
| 269 |
|
| 270 |
.card.liked {
|
| 271 |
-
border-color: #
|
| 272 |
-
background-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 273 |
}
|
| 274 |
|
| 275 |
.card a {
|
|
@@ -277,30 +336,29 @@ if __name__ == '__main__':
|
|
| 277 |
color: #2980b9;
|
| 278 |
word-break: break-all;
|
| 279 |
display: block;
|
| 280 |
-
|
| 281 |
}
|
| 282 |
|
| 283 |
.card a:hover {
|
| 284 |
text-decoration: underline;
|
| 285 |
}
|
| 286 |
|
| 287 |
-
.card-title {
|
| 288 |
-
margin-top: 0;
|
| 289 |
-
color: #333;
|
| 290 |
-
font-size: 1.2rem;
|
| 291 |
-
padding-right: 30px; /* ์ข์์ ๋ฒํผ ๊ณต๊ฐ ํ๋ณด */
|
| 292 |
-
}
|
| 293 |
-
|
| 294 |
.like-button {
|
| 295 |
position: absolute;
|
| 296 |
top: 1rem;
|
| 297 |
right: 1rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 298 |
border: none;
|
| 299 |
background: transparent;
|
| 300 |
-
font-size: 1.
|
| 301 |
cursor: pointer;
|
| 302 |
-
transition: all 0.
|
| 303 |
-
|
| 304 |
}
|
| 305 |
|
| 306 |
.like-button:hover {
|
|
@@ -308,46 +366,54 @@ if __name__ == '__main__':
|
|
| 308 |
}
|
| 309 |
|
| 310 |
.like-button.liked {
|
| 311 |
-
color: #
|
| 312 |
-
text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
|
| 313 |
}
|
| 314 |
|
| 315 |
-
.like-
|
| 316 |
-
color: #ccc;
|
| 317 |
-
}
|
| 318 |
-
|
| 319 |
-
.like-label {
|
| 320 |
position: absolute;
|
| 321 |
-
top:
|
| 322 |
-
left:
|
| 323 |
-
background-color: #
|
| 324 |
color: white;
|
| 325 |
-
padding:
|
| 326 |
-
border-radius:
|
| 327 |
font-size: 0.7rem;
|
| 328 |
font-weight: bold;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 329 |
display: none;
|
| 330 |
}
|
| 331 |
|
| 332 |
-
.
|
| 333 |
-
|
| 334 |
}
|
| 335 |
|
| 336 |
.status-message {
|
|
|
|
|
|
|
|
|
|
| 337 |
padding: 1rem;
|
| 338 |
-
border-radius:
|
| 339 |
-
margin-bottom: 1rem;
|
| 340 |
display: none;
|
|
|
|
|
|
|
|
|
|
| 341 |
}
|
| 342 |
|
| 343 |
.success {
|
| 344 |
-
background-color: #
|
| 345 |
-
color:
|
| 346 |
}
|
| 347 |
|
| 348 |
.error {
|
| 349 |
-
background-color: #
|
| 350 |
-
color:
|
| 351 |
}
|
| 352 |
|
| 353 |
.loading {
|
|
@@ -356,40 +422,51 @@ if __name__ == '__main__':
|
|
| 356 |
left: 0;
|
| 357 |
right: 0;
|
| 358 |
bottom: 0;
|
| 359 |
-
background-color: rgba(255, 255, 255, 0.
|
| 360 |
display: none;
|
| 361 |
justify-content: center;
|
| 362 |
align-items: center;
|
| 363 |
z-index: 1000;
|
| 364 |
-
font-size: 1.5rem;
|
| 365 |
}
|
| 366 |
|
| 367 |
-
.
|
| 368 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 369 |
}
|
| 370 |
|
| 371 |
-
|
| 372 |
-
|
| 373 |
-
|
| 374 |
}
|
| 375 |
|
| 376 |
-
.
|
| 377 |
-
margin-bottom: 1rem;
|
| 378 |
display: flex;
|
| 379 |
-
gap: 0.5rem;
|
| 380 |
}
|
| 381 |
|
| 382 |
-
.
|
| 383 |
-
|
|
|
|
| 384 |
color: #333;
|
| 385 |
-
border: 1px solid #ddd;
|
| 386 |
}
|
| 387 |
|
| 388 |
-
.
|
| 389 |
background-color: #4CAF50;
|
| 390 |
color: white;
|
| 391 |
}
|
| 392 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 393 |
@media (max-width: 768px) {
|
| 394 |
.user-controls {
|
| 395 |
flex-direction: column;
|
|
@@ -400,14 +477,16 @@ if __name__ == '__main__':
|
|
| 400 |
margin-bottom: 1rem;
|
| 401 |
}
|
| 402 |
|
| 403 |
-
.
|
| 404 |
-
|
| 405 |
}
|
| 406 |
|
| 407 |
-
.
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
|
|
|
|
|
|
| 411 |
}
|
| 412 |
}
|
| 413 |
</style>
|
|
@@ -435,26 +514,25 @@ if __name__ == '__main__':
|
|
| 435 |
</div>
|
| 436 |
</div>
|
| 437 |
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
<div>
|
| 441 |
-
์ด <span id="totalCount">0</span>๊ฐ ์ค <span id="likedCount" class="liked-count">0</span>๊ฐ ์ข์์ ํจ
|
| 442 |
-
</div>
|
| 443 |
-
<div class="view-toggle">
|
| 444 |
-
<button id="allViewBtn" class="active">์ ์ฒด ๋ณด๊ธฐ</button>
|
| 445 |
-
<button id="likedViewBtn">์ข์์๋ง ๋ณด๊ธฐ</button>
|
| 446 |
-
</div>
|
| 447 |
</div>
|
| 448 |
|
| 449 |
<div class="filter-controls">
|
| 450 |
-
<
|
| 451 |
-
<input type="text" id="searchInput" placeholder="URL ๋๋ ์ ๋ชฉ์ผ๋ก ๊ฒ์" style="width:
|
| 452 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
| 453 |
</div>
|
| 454 |
|
| 455 |
<div id="statusMessage" class="status-message"></div>
|
| 456 |
|
| 457 |
-
<div id="loadingIndicator" class="loading"
|
|
|
|
|
|
|
| 458 |
|
| 459 |
<div id="cardsContainer" class="cards-container"></div>
|
| 460 |
</div>
|
|
@@ -472,11 +550,11 @@ if __name__ == '__main__':
|
|
| 472 |
searchInput: document.getElementById('searchInput'),
|
| 473 |
loginSection: document.getElementById('loginSection'),
|
| 474 |
loggedInSection: document.getElementById('loggedInSection'),
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
| 479 |
-
|
| 480 |
};
|
| 481 |
|
| 482 |
// ์ ํ๋ฆฌ์ผ์ด์
์ํ
|
|
@@ -488,37 +566,6 @@ if __name__ == '__main__':
|
|
| 488 |
viewMode: 'all' // 'all' ๋๋ 'liked'
|
| 489 |
};
|
| 490 |
|
| 491 |
-
// ๋ก์ปฌ ์คํ ๋ฆฌ์ง ํค
|
| 492 |
-
function getLikesStorageKey(username) {
|
| 493 |
-
return `hf_local_likes_${username}`;
|
| 494 |
-
}
|
| 495 |
-
|
| 496 |
-
// ๋ก์ปฌ ์คํ ๋ฆฌ์ง์์ ์ข์์ ์ ๋ณด ๋ก๋
|
| 497 |
-
function loadLikesFromStorage() {
|
| 498 |
-
if (!state.username) return {};
|
| 499 |
-
|
| 500 |
-
const key = getLikesStorageKey(state.username);
|
| 501 |
-
const savedLikes = localStorage.getItem(key);
|
| 502 |
-
return savedLikes ? JSON.parse(savedLikes) : {};
|
| 503 |
-
}
|
| 504 |
-
|
| 505 |
-
// ๋ก์ปฌ ์คํ ๋ฆฌ์ง์ ์ข์์ ์ ๋ณด ์ ์ฅ
|
| 506 |
-
function saveLikesToStorage() {
|
| 507 |
-
if (!state.username) return;
|
| 508 |
-
|
| 509 |
-
const key = getLikesStorageKey(state.username);
|
| 510 |
-
localStorage.setItem(key, JSON.stringify(state.likedURLs));
|
| 511 |
-
}
|
| 512 |
-
|
| 513 |
-
// ์ข์์ ํต๊ณ ์
๋ฐ์ดํธ
|
| 514 |
-
function updateLikeStats() {
|
| 515 |
-
const totalCount = state.allURLs.length;
|
| 516 |
-
const likedCount = Object.keys(state.likedURLs).length;
|
| 517 |
-
|
| 518 |
-
elements.totalCount.textContent = totalCount;
|
| 519 |
-
elements.likedCount.textContent = likedCount;
|
| 520 |
-
}
|
| 521 |
-
|
| 522 |
// ๋ก๋ฉ ์ํ ํ์ ํจ์
|
| 523 |
function setLoading(isLoading) {
|
| 524 |
state.isLoading = isLoading;
|
|
@@ -546,6 +593,15 @@ if __name__ == '__main__':
|
|
| 546 |
return response.json();
|
| 547 |
}
|
| 548 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 549 |
// ์ธ์
์ํ ํ์ธ
|
| 550 |
async function checkSessionStatus() {
|
| 551 |
try {
|
|
@@ -557,10 +613,10 @@ if __name__ == '__main__':
|
|
| 557 |
elements.currentUser.textContent = data.username;
|
| 558 |
elements.loginSection.style.display = 'none';
|
| 559 |
elements.loggedInSection.style.display = 'block';
|
| 560 |
-
elements.
|
| 561 |
|
| 562 |
-
//
|
| 563 |
-
|
| 564 |
|
| 565 |
// URL ๋ชฉ๋ก ๋ก๋
|
| 566 |
loadUrls();
|
|
@@ -570,6 +626,23 @@ if __name__ == '__main__':
|
|
| 570 |
}
|
| 571 |
}
|
| 572 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 573 |
// ๋ก๊ทธ์ธ ์ฒ๋ฆฌ
|
| 574 |
async function login(token) {
|
| 575 |
if (!token.trim()) {
|
|
@@ -593,16 +666,16 @@ if __name__ == '__main__':
|
|
| 593 |
if (data.success) {
|
| 594 |
state.username = data.username;
|
| 595 |
|
| 596 |
-
// ๋ก์ปฌ ์คํ ๋ฆฌ์ง์์ ์ข์์ ์ ๋ณด ๋ก๋
|
| 597 |
-
state.likedURLs = loadLikesFromStorage();
|
| 598 |
-
|
| 599 |
elements.currentUser.textContent = state.username;
|
| 600 |
elements.loginSection.style.display = 'none';
|
| 601 |
elements.loggedInSection.style.display = 'block';
|
| 602 |
-
elements.
|
| 603 |
|
| 604 |
showMessage(`${state.username}๋์ผ๋ก ๋ก๊ทธ์ธ๋์์ต๋๋ค.`);
|
| 605 |
|
|
|
|
|
|
|
|
|
|
| 606 |
// URL ๋ชฉ๋ก ๋ก๋
|
| 607 |
loadUrls();
|
| 608 |
} else {
|
|
@@ -636,7 +709,7 @@ if __name__ == '__main__':
|
|
| 636 |
elements.tokenInput.value = '';
|
| 637 |
elements.loginSection.style.display = 'block';
|
| 638 |
elements.loggedInSection.style.display = 'none';
|
| 639 |
-
elements.
|
| 640 |
|
| 641 |
showMessage('๋ก๊ทธ์์๋์์ต๋๋ค.');
|
| 642 |
|
|
@@ -659,8 +732,16 @@ if __name__ == '__main__':
|
|
| 659 |
const response = await fetch('/api/urls');
|
| 660 |
const urls = await handleApiResponse(response);
|
| 661 |
|
|
|
|
| 662 |
state.allURLs = urls;
|
| 663 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 664 |
// ํํฐ๋ง ๋ฐ ๋ ๋๋ง
|
| 665 |
filterAndRenderCards();
|
| 666 |
|
|
@@ -699,7 +780,7 @@ if __name__ == '__main__':
|
|
| 699 |
}
|
| 700 |
|
| 701 |
// ์ข์์ ํ ๊ธ
|
| 702 |
-
function toggleLike(url, card) {
|
| 703 |
if (!state.username) {
|
| 704 |
showMessage('์ข์์๋ฅผ ํ๋ ค๋ฉด ํ๊น
ํ์ด์ค API ํ ํฐ์ผ๋ก ์ธ์ฆ์ด ํ์ํฉ๋๋ค.', true);
|
| 705 |
return;
|
|
@@ -708,39 +789,47 @@ if __name__ == '__main__':
|
|
| 708 |
setLoading(true);
|
| 709 |
|
| 710 |
try {
|
| 711 |
-
|
| 712 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 713 |
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
|
| 718 |
-
|
| 719 |
-
|
| 720 |
-
likeBtn.classList.
|
| 721 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 722 |
}
|
| 723 |
-
|
| 724 |
-
|
| 725 |
-
|
| 726 |
-
|
| 727 |
-
|
| 728 |
-
|
| 729 |
-
|
| 730 |
-
|
|
|
|
| 731 |
}
|
| 732 |
-
|
| 733 |
-
|
| 734 |
-
|
| 735 |
-
// ๋ก์ปฌ ์คํ ๋ฆฌ์ง์ ์ ์ฅ
|
| 736 |
-
saveLikesToStorage();
|
| 737 |
-
|
| 738 |
-
// ์ข์์ ํต๊ณ ์
๋ฐ์ดํธ
|
| 739 |
-
updateLikeStats();
|
| 740 |
-
|
| 741 |
-
// ์ข์์๋ง ๋ณด๊ธฐ ๋ชจ๋์ธ ๊ฒฝ์ฐ ๋ชฉ๋ก ๋ค์ ๋ ๋๋ง
|
| 742 |
-
if (state.viewMode === 'liked') {
|
| 743 |
-
filterAndRenderCards();
|
| 744 |
}
|
| 745 |
} catch (error) {
|
| 746 |
console.error('์ข์์ ํ ๊ธ ์ค๋ฅ:', error);
|
|
@@ -771,49 +860,60 @@ if __name__ == '__main__':
|
|
| 771 |
const card = document.createElement('div');
|
| 772 |
card.className = `card ${isLiked ? 'liked' : ''}`;
|
| 773 |
|
| 774 |
-
//
|
| 775 |
-
const
|
| 776 |
-
|
| 777 |
-
likeLabel.textContent = '์ข์์';
|
| 778 |
-
card.appendChild(likeLabel);
|
| 779 |
|
| 780 |
// ์ ๋ชฉ
|
| 781 |
const titleEl = document.createElement('h3');
|
| 782 |
titleEl.className = 'card-title';
|
| 783 |
titleEl.textContent = title;
|
| 784 |
-
|
|
|
|
|
|
|
| 785 |
|
| 786 |
// URL ๋งํฌ
|
| 787 |
const linkEl = document.createElement('a');
|
| 788 |
-
|
|
|
|
|
|
|
| 789 |
linkEl.textContent = url;
|
| 790 |
linkEl.target = '_blank';
|
| 791 |
card.appendChild(linkEl);
|
| 792 |
|
| 793 |
-
// ์ข์์ ๋ฒํผ
|
| 794 |
const likeBtn = document.createElement('button');
|
| 795 |
-
likeBtn.className = `like-button ${isLiked ? 'liked' : '
|
| 796 |
-
likeBtn.
|
| 797 |
likeBtn.title = isLiked ? '์ข์์ ์ทจ์' : '์ข์์';
|
| 798 |
|
| 799 |
-
likeBtn.addEventListener('click',
|
| 800 |
e.preventDefault();
|
| 801 |
toggleLike(url, card);
|
| 802 |
});
|
|
|
|
| 803 |
card.appendChild(likeBtn);
|
| 804 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 805 |
// ์นด๋ ์ถ๊ฐ
|
| 806 |
elements.cardsContainer.appendChild(card);
|
| 807 |
});
|
| 808 |
}
|
| 809 |
|
| 810 |
-
// ๋ชจ๋ ๋ณ๊ฒฝ
|
| 811 |
function changeViewMode(mode) {
|
| 812 |
state.viewMode = mode;
|
| 813 |
|
| 814 |
-
// ๋ฒํผ ์ํ ์
๋ฐ์ดํธ
|
| 815 |
-
elements.
|
| 816 |
-
elements.
|
| 817 |
|
| 818 |
// ์นด๋ ๋ค์ ๋ ๋๋ง
|
| 819 |
filterAndRenderCards();
|
|
@@ -835,14 +935,14 @@ if __name__ == '__main__':
|
|
| 835 |
|
| 836 |
// ๊ฒ์ ์ด๋ฒคํธ ๋ฆฌ์ค๋
|
| 837 |
elements.searchInput.addEventListener('input', () => {
|
| 838 |
-
// ์
๋ ฅ ์ง์ฐ ์ฒ๋ฆฌ
|
| 839 |
clearTimeout(state.searchTimeout);
|
| 840 |
state.searchTimeout = setTimeout(filterAndRenderCards, 300);
|
| 841 |
});
|
| 842 |
|
| 843 |
-
//
|
| 844 |
-
elements.
|
| 845 |
-
elements.
|
| 846 |
|
| 847 |
// ์ด๊ธฐํ
|
| 848 |
checkSessionStatus();
|
|
@@ -852,4 +952,4 @@ if __name__ == '__main__':
|
|
| 852 |
''')
|
| 853 |
|
| 854 |
# ํ๊น
ํ์ด์ค ์คํ์ด์ค์์๋ 7860 ํฌํธ ์ฌ์ฉ
|
| 855 |
-
app.run(host='0.0.0.0', port=7860)
|
|
|
|
| 2 |
import requests
|
| 3 |
import os
|
| 4 |
from datetime import timedelta
|
| 5 |
+
import json
|
| 6 |
|
| 7 |
app = Flask(__name__)
|
| 8 |
app.secret_key = os.urandom(24)
|
|
|
|
| 104 |
session['token'] = token
|
| 105 |
session['username'] = username
|
| 106 |
|
| 107 |
+
# ์ฌ์ฉ์๊ฐ ์ข์์ํ URL ์ํ๋ฅผ ์ธ์
์ ์ด๊ธฐํ
|
| 108 |
+
if 'liked_urls' not in session:
|
| 109 |
+
session['liked_urls'] = {}
|
| 110 |
+
|
| 111 |
return jsonify({
|
| 112 |
'success': True,
|
| 113 |
'username': username
|
|
|
|
| 117 |
def logout():
|
| 118 |
session.pop('token', None)
|
| 119 |
session.pop('username', None)
|
| 120 |
+
session.pop('liked_urls', None)
|
| 121 |
return jsonify({'success': True})
|
| 122 |
|
| 123 |
@app.route('/api/urls', methods=['GET'])
|
|
|
|
| 130 |
if not model_info:
|
| 131 |
continue
|
| 132 |
|
| 133 |
+
# ์ฌ์ฉ์์ ์ข์์ ์ํ ํ์ธ
|
| 134 |
+
is_liked = False
|
| 135 |
+
if 'liked_urls' in session and url in session['liked_urls']:
|
| 136 |
+
is_liked = True
|
| 137 |
+
|
| 138 |
results.append({
|
| 139 |
'url': url,
|
| 140 |
'title': title,
|
| 141 |
+
'model_info': model_info,
|
| 142 |
+
'is_liked': is_liked
|
| 143 |
})
|
| 144 |
|
| 145 |
return jsonify(results)
|
| 146 |
|
| 147 |
+
@app.route('/api/toggle-like', methods=['POST'])
|
| 148 |
+
def toggle_like():
|
| 149 |
+
if 'username' not in session:
|
| 150 |
+
return jsonify({'success': False, 'message': '๋ก๊ทธ์ธ์ด ํ์ํฉ๋๋ค.'})
|
| 151 |
+
|
| 152 |
+
data = request.json
|
| 153 |
+
url = data.get('url')
|
| 154 |
+
|
| 155 |
+
if not url:
|
| 156 |
+
return jsonify({'success': False, 'message': 'URL์ด ํ์ํฉ๋๋ค.'})
|
| 157 |
+
|
| 158 |
+
# ์ธ์
์์ ์ข์์ ์ ๋ณด ๊ฐ์ ธ์ค๊ธฐ
|
| 159 |
+
liked_urls = session.get('liked_urls', {})
|
| 160 |
+
|
| 161 |
+
# ์ข์์ ์ํ ํ ๊ธ
|
| 162 |
+
if url in liked_urls:
|
| 163 |
+
del liked_urls[url]
|
| 164 |
+
is_liked = False
|
| 165 |
+
message = '์ข์์๋ฅผ ์ทจ์ํ์ต๋๋ค.'
|
| 166 |
+
else:
|
| 167 |
+
liked_urls[url] = True
|
| 168 |
+
is_liked = True
|
| 169 |
+
message = '์ข์์๋ฅผ ์ถ๊ฐํ์ต๋๋ค.'
|
| 170 |
+
|
| 171 |
+
# ์ธ์
์ ์ข์์ ์ ๋ณด ์
๋ฐ์ดํธ
|
| 172 |
+
session['liked_urls'] = liked_urls
|
| 173 |
+
|
| 174 |
+
return jsonify({
|
| 175 |
+
'success': True,
|
| 176 |
+
'is_liked': is_liked,
|
| 177 |
+
'message': message
|
| 178 |
+
})
|
| 179 |
+
|
| 180 |
+
@app.route('/api/get-likes', methods=['GET'])
|
| 181 |
+
def get_likes():
|
| 182 |
+
if 'username' not in session:
|
| 183 |
+
return jsonify({'success': False, 'message': '๋ก๊ทธ์ธ์ด ํ์ํฉ๋๋ค.'})
|
| 184 |
+
|
| 185 |
+
liked_urls = session.get('liked_urls', {})
|
| 186 |
+
return jsonify({
|
| 187 |
+
'success': True,
|
| 188 |
+
'liked_urls': liked_urls
|
| 189 |
+
})
|
| 190 |
+
|
| 191 |
@app.route('/api/session-status', methods=['GET'])
|
| 192 |
def session_status():
|
| 193 |
return jsonify({
|
| 194 |
+
'logged_in': 'username' in session,
|
| 195 |
'username': session.get('username')
|
| 196 |
})
|
| 197 |
|
|
|
|
| 213 |
margin: 0;
|
| 214 |
padding: 0;
|
| 215 |
color: #333;
|
| 216 |
+
background-color: #f4f5f7;
|
| 217 |
}
|
| 218 |
|
| 219 |
.container {
|
|
|
|
| 223 |
}
|
| 224 |
|
| 225 |
.header {
|
| 226 |
+
background-color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 227 |
padding: 1rem;
|
| 228 |
+
border-radius: 8px;
|
| 229 |
margin-bottom: 1rem;
|
| 230 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 231 |
}
|
| 232 |
|
| 233 |
.user-controls {
|
|
|
|
| 238 |
}
|
| 239 |
|
| 240 |
.filter-controls {
|
| 241 |
+
background-color: #fff;
|
| 242 |
padding: 1rem;
|
| 243 |
+
border-radius: 8px;
|
| 244 |
margin-bottom: 1rem;
|
| 245 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
| 246 |
+
display: flex;
|
| 247 |
+
justify-content: space-between;
|
| 248 |
+
align-items: center;
|
| 249 |
}
|
| 250 |
|
| 251 |
input[type="password"],
|
| 252 |
input[type="text"] {
|
| 253 |
padding: 0.5rem;
|
| 254 |
+
border: 1px solid #ddd;
|
| 255 |
border-radius: 4px;
|
| 256 |
margin-right: 5px;
|
| 257 |
}
|
|
|
|
| 263 |
border: none;
|
| 264 |
border-radius: 4px;
|
| 265 |
cursor: pointer;
|
| 266 |
+
transition: background-color 0.2s;
|
| 267 |
}
|
| 268 |
|
| 269 |
button:hover {
|
|
|
|
| 316 |
}
|
| 317 |
|
| 318 |
.card.liked {
|
| 319 |
+
border-color: #ff4757;
|
| 320 |
+
background-color: #ffebee;
|
| 321 |
+
}
|
| 322 |
+
|
| 323 |
+
.card-header {
|
| 324 |
+
margin-bottom: 0.5rem;
|
| 325 |
+
padding-right: 40px; /* ์ข์์ ๋ฒํผ ๊ณต๊ฐ */
|
| 326 |
+
}
|
| 327 |
+
|
| 328 |
+
.card-title {
|
| 329 |
+
font-size: 1.2rem;
|
| 330 |
+
margin: 0 0 0.5rem 0;
|
| 331 |
+
color: #333;
|
| 332 |
}
|
| 333 |
|
| 334 |
.card a {
|
|
|
|
| 336 |
color: #2980b9;
|
| 337 |
word-break: break-all;
|
| 338 |
display: block;
|
| 339 |
+
font-size: 0.9rem;
|
| 340 |
}
|
| 341 |
|
| 342 |
.card a:hover {
|
| 343 |
text-decoration: underline;
|
| 344 |
}
|
| 345 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 346 |
.like-button {
|
| 347 |
position: absolute;
|
| 348 |
top: 1rem;
|
| 349 |
right: 1rem;
|
| 350 |
+
width: 30px;
|
| 351 |
+
height: 30px;
|
| 352 |
+
display: flex;
|
| 353 |
+
align-items: center;
|
| 354 |
+
justify-content: center;
|
| 355 |
+
border-radius: 50%;
|
| 356 |
border: none;
|
| 357 |
background: transparent;
|
| 358 |
+
font-size: 1.5rem;
|
| 359 |
cursor: pointer;
|
| 360 |
+
transition: all 0.3s ease;
|
| 361 |
+
color: #ddd;
|
| 362 |
}
|
| 363 |
|
| 364 |
.like-button:hover {
|
|
|
|
| 366 |
}
|
| 367 |
|
| 368 |
.like-button.liked {
|
| 369 |
+
color: #ff4757;
|
|
|
|
| 370 |
}
|
| 371 |
|
| 372 |
+
.like-badge {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 373 |
position: absolute;
|
| 374 |
+
top: -5px;
|
| 375 |
+
left: -5px;
|
| 376 |
+
background-color: #ff4757;
|
| 377 |
color: white;
|
| 378 |
+
padding: 0.2rem 0.5rem;
|
| 379 |
+
border-radius: 4px;
|
| 380 |
font-size: 0.7rem;
|
| 381 |
font-weight: bold;
|
| 382 |
+
}
|
| 383 |
+
|
| 384 |
+
.like-status {
|
| 385 |
+
background-color: #fff;
|
| 386 |
+
padding: 1rem;
|
| 387 |
+
border-radius: 8px;
|
| 388 |
+
margin-bottom: 1rem;
|
| 389 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
| 390 |
display: none;
|
| 391 |
}
|
| 392 |
|
| 393 |
+
.like-status strong {
|
| 394 |
+
color: #ff4757;
|
| 395 |
}
|
| 396 |
|
| 397 |
.status-message {
|
| 398 |
+
position: fixed;
|
| 399 |
+
bottom: 20px;
|
| 400 |
+
right: 20px;
|
| 401 |
padding: 1rem;
|
| 402 |
+
border-radius: 8px;
|
|
|
|
| 403 |
display: none;
|
| 404 |
+
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
| 405 |
+
z-index: 1000;
|
| 406 |
+
max-width: 300px;
|
| 407 |
}
|
| 408 |
|
| 409 |
.success {
|
| 410 |
+
background-color: #4CAF50;
|
| 411 |
+
color: white;
|
| 412 |
}
|
| 413 |
|
| 414 |
.error {
|
| 415 |
+
background-color: #f44336;
|
| 416 |
+
color: white;
|
| 417 |
}
|
| 418 |
|
| 419 |
.loading {
|
|
|
|
| 422 |
left: 0;
|
| 423 |
right: 0;
|
| 424 |
bottom: 0;
|
| 425 |
+
background-color: rgba(255, 255, 255, 0.8);
|
| 426 |
display: none;
|
| 427 |
justify-content: center;
|
| 428 |
align-items: center;
|
| 429 |
z-index: 1000;
|
|
|
|
| 430 |
}
|
| 431 |
|
| 432 |
+
.spinner {
|
| 433 |
+
width: 40px;
|
| 434 |
+
height: 40px;
|
| 435 |
+
border: 4px solid #f3f3f3;
|
| 436 |
+
border-top: 4px solid #3498db;
|
| 437 |
+
border-radius: 50%;
|
| 438 |
+
animation: spin 1s linear infinite;
|
| 439 |
}
|
| 440 |
|
| 441 |
+
@keyframes spin {
|
| 442 |
+
0% { transform: rotate(0deg); }
|
| 443 |
+
100% { transform: rotate(360deg); }
|
| 444 |
}
|
| 445 |
|
| 446 |
+
.filter-toggle {
|
|
|
|
| 447 |
display: flex;
|
|
|
|
| 448 |
}
|
| 449 |
|
| 450 |
+
.filter-toggle button {
|
| 451 |
+
margin-right: 0.5rem;
|
| 452 |
+
background-color: #f0f0f0;
|
| 453 |
color: #333;
|
|
|
|
| 454 |
}
|
| 455 |
|
| 456 |
+
.filter-toggle button.active {
|
| 457 |
background-color: #4CAF50;
|
| 458 |
color: white;
|
| 459 |
}
|
| 460 |
|
| 461 |
+
.login-section {
|
| 462 |
+
margin-top: 1rem;
|
| 463 |
+
}
|
| 464 |
+
|
| 465 |
+
.logged-in-section {
|
| 466 |
+
display: none;
|
| 467 |
+
margin-top: 1rem;
|
| 468 |
+
}
|
| 469 |
+
|
| 470 |
@media (max-width: 768px) {
|
| 471 |
.user-controls {
|
| 472 |
flex-direction: column;
|
|
|
|
| 477 |
margin-bottom: 1rem;
|
| 478 |
}
|
| 479 |
|
| 480 |
+
.filter-controls {
|
| 481 |
+
flex-direction: column;
|
| 482 |
}
|
| 483 |
|
| 484 |
+
.filter-controls > div {
|
| 485 |
+
margin-bottom: 0.5rem;
|
| 486 |
+
}
|
| 487 |
+
|
| 488 |
+
.card {
|
| 489 |
+
width: 100%;
|
| 490 |
}
|
| 491 |
}
|
| 492 |
</style>
|
|
|
|
| 514 |
</div>
|
| 515 |
</div>
|
| 516 |
|
| 517 |
+
<div id="likeStatus" class="like-status">
|
| 518 |
+
<div id="likeStatsText">์ด <span id="totalUrlCount">0</span>๊ฐ ์ค <strong><span id="likedUrlCount">0</span>๊ฐ</strong>์ URL์ ์ข์์ ํ์ต๋๋ค.</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 519 |
</div>
|
| 520 |
|
| 521 |
<div class="filter-controls">
|
| 522 |
+
<div>
|
| 523 |
+
<input type="text" id="searchInput" placeholder="URL ๋๋ ์ ๋ชฉ์ผ๋ก ๊ฒ์" style="width: 300px;" />
|
| 524 |
+
</div>
|
| 525 |
+
<div class="filter-toggle">
|
| 526 |
+
<button id="allUrlsBtn" class="active">์ ์ฒด ๋ณด๊ธฐ</button>
|
| 527 |
+
<button id="likedUrlsBtn">์ข์์๋ง ๋ณด๊ธฐ</button>
|
| 528 |
+
</div>
|
| 529 |
</div>
|
| 530 |
|
| 531 |
<div id="statusMessage" class="status-message"></div>
|
| 532 |
|
| 533 |
+
<div id="loadingIndicator" class="loading">
|
| 534 |
+
<div class="spinner"></div>
|
| 535 |
+
</div>
|
| 536 |
|
| 537 |
<div id="cardsContainer" class="cards-container"></div>
|
| 538 |
</div>
|
|
|
|
| 550 |
searchInput: document.getElementById('searchInput'),
|
| 551 |
loginSection: document.getElementById('loginSection'),
|
| 552 |
loggedInSection: document.getElementById('loggedInSection'),
|
| 553 |
+
likeStatus: document.getElementById('likeStatus'),
|
| 554 |
+
totalUrlCount: document.getElementById('totalUrlCount'),
|
| 555 |
+
likedUrlCount: document.getElementById('likedUrlCount'),
|
| 556 |
+
allUrlsBtn: document.getElementById('allUrlsBtn'),
|
| 557 |
+
likedUrlsBtn: document.getElementById('likedUrlsBtn')
|
| 558 |
};
|
| 559 |
|
| 560 |
// ์ ํ๋ฆฌ์ผ์ด์
์ํ
|
|
|
|
| 566 |
viewMode: 'all' // 'all' ๋๋ 'liked'
|
| 567 |
};
|
| 568 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 569 |
// ๋ก๋ฉ ์ํ ํ์ ํจ์
|
| 570 |
function setLoading(isLoading) {
|
| 571 |
state.isLoading = isLoading;
|
|
|
|
| 593 |
return response.json();
|
| 594 |
}
|
| 595 |
|
| 596 |
+
// ์ข์์ ํต๊ณ ์
๋ฐ์ดํธ
|
| 597 |
+
function updateLikeStats() {
|
| 598 |
+
const totalCount = state.allURLs.length;
|
| 599 |
+
const likedCount = Object.keys(state.likedURLs).length;
|
| 600 |
+
|
| 601 |
+
elements.totalUrlCount.textContent = totalCount;
|
| 602 |
+
elements.likedUrlCount.textContent = likedCount;
|
| 603 |
+
}
|
| 604 |
+
|
| 605 |
// ์ธ์
์ํ ํ์ธ
|
| 606 |
async function checkSessionStatus() {
|
| 607 |
try {
|
|
|
|
| 613 |
elements.currentUser.textContent = data.username;
|
| 614 |
elements.loginSection.style.display = 'none';
|
| 615 |
elements.loggedInSection.style.display = 'block';
|
| 616 |
+
elements.likeStatus.style.display = 'block';
|
| 617 |
|
| 618 |
+
// ์ข์์ ๋ชฉ๋ก ๊ฐ์ ธ์ค๊ธฐ
|
| 619 |
+
await getLikedUrls();
|
| 620 |
|
| 621 |
// URL ๋ชฉ๋ก ๋ก๋
|
| 622 |
loadUrls();
|
|
|
|
| 626 |
}
|
| 627 |
}
|
| 628 |
|
| 629 |
+
// ์ข์์ URL ๊ฐ์ ธ์ค๊ธฐ
|
| 630 |
+
async function getLikedUrls() {
|
| 631 |
+
try {
|
| 632 |
+
const response = await fetch('/api/get-likes');
|
| 633 |
+
const data = await handleApiResponse(response);
|
| 634 |
+
|
| 635 |
+
if (data.success) {
|
| 636 |
+
state.likedURLs = data.liked_urls || {};
|
| 637 |
+
return true;
|
| 638 |
+
}
|
| 639 |
+
} catch (error) {
|
| 640 |
+
console.error('์ข์์ ๋ชฉ๋ก ๊ฐ์ ธ์ค๊ธฐ ์ค๋ฅ:', error);
|
| 641 |
+
}
|
| 642 |
+
|
| 643 |
+
return false;
|
| 644 |
+
}
|
| 645 |
+
|
| 646 |
// ๋ก๊ทธ์ธ ์ฒ๋ฆฌ
|
| 647 |
async function login(token) {
|
| 648 |
if (!token.trim()) {
|
|
|
|
| 666 |
if (data.success) {
|
| 667 |
state.username = data.username;
|
| 668 |
|
|
|
|
|
|
|
|
|
|
| 669 |
elements.currentUser.textContent = state.username;
|
| 670 |
elements.loginSection.style.display = 'none';
|
| 671 |
elements.loggedInSection.style.display = 'block';
|
| 672 |
+
elements.likeStatus.style.display = 'block';
|
| 673 |
|
| 674 |
showMessage(`${state.username}๋์ผ๋ก ๋ก๊ทธ์ธ๋์์ต๋๋ค.`);
|
| 675 |
|
| 676 |
+
// ์ข์์ ๋ชฉ๋ก ๊ฐ์ ธ์ค๊ธฐ
|
| 677 |
+
await getLikedUrls();
|
| 678 |
+
|
| 679 |
// URL ๋ชฉ๋ก ๋ก๋
|
| 680 |
loadUrls();
|
| 681 |
} else {
|
|
|
|
| 709 |
elements.tokenInput.value = '';
|
| 710 |
elements.loginSection.style.display = 'block';
|
| 711 |
elements.loggedInSection.style.display = 'none';
|
| 712 |
+
elements.likeStatus.style.display = 'none';
|
| 713 |
|
| 714 |
showMessage('๋ก๊ทธ์์๋์์ต๋๋ค.');
|
| 715 |
|
|
|
|
| 732 |
const response = await fetch('/api/urls');
|
| 733 |
const urls = await handleApiResponse(response);
|
| 734 |
|
| 735 |
+
// URL ๋ฐ ์ข์์ ์ํ ์ ์ฅ
|
| 736 |
state.allURLs = urls;
|
| 737 |
|
| 738 |
+
// ์๋ฒ์์ ๋ฐ์ ์ข์์ ์ํ ์
๋ฐ์ดํธ
|
| 739 |
+
urls.forEach(item => {
|
| 740 |
+
if (item.is_liked) {
|
| 741 |
+
state.likedURLs[item.url] = true;
|
| 742 |
+
}
|
| 743 |
+
});
|
| 744 |
+
|
| 745 |
// ํํฐ๋ง ๋ฐ ๋ ๋๋ง
|
| 746 |
filterAndRenderCards();
|
| 747 |
|
|
|
|
| 780 |
}
|
| 781 |
|
| 782 |
// ์ข์์ ํ ๊ธ
|
| 783 |
+
async function toggleLike(url, card) {
|
| 784 |
if (!state.username) {
|
| 785 |
showMessage('์ข์์๋ฅผ ํ๋ ค๋ฉด ํ๊น
ํ์ด์ค API ํ ํฐ์ผ๋ก ์ธ์ฆ์ด ํ์ํฉ๋๋ค.', true);
|
| 786 |
return;
|
|
|
|
| 789 |
setLoading(true);
|
| 790 |
|
| 791 |
try {
|
| 792 |
+
const response = await fetch('/api/toggle-like', {
|
| 793 |
+
method: 'POST',
|
| 794 |
+
headers: {
|
| 795 |
+
'Content-Type': 'application/json'
|
| 796 |
+
},
|
| 797 |
+
body: JSON.stringify({ url })
|
| 798 |
+
});
|
| 799 |
+
|
| 800 |
+
const data = await handleApiResponse(response);
|
| 801 |
|
| 802 |
+
if (data.success) {
|
| 803 |
+
// ์ข์์ ์ํ ์
๋ฐ์ดํธ
|
| 804 |
+
if (data.is_liked) {
|
| 805 |
+
state.likedURLs[url] = true;
|
| 806 |
+
card.classList.add('liked');
|
| 807 |
+
const likeBtn = card.querySelector('.like-button');
|
| 808 |
+
if (likeBtn) likeBtn.classList.add('liked');
|
| 809 |
+
const likeBadge = document.createElement('div');
|
| 810 |
+
likeBadge.className = 'like-badge';
|
| 811 |
+
likeBadge.textContent = '์ข์์';
|
| 812 |
+
card.appendChild(likeBadge);
|
| 813 |
+
} else {
|
| 814 |
+
delete state.likedURLs[url];
|
| 815 |
+
card.classList.remove('liked');
|
| 816 |
+
const likeBtn = card.querySelector('.like-button');
|
| 817 |
+
if (likeBtn) likeBtn.classList.remove('liked');
|
| 818 |
+
const likeBadge = card.querySelector('.like-badge');
|
| 819 |
+
if (likeBadge) card.removeChild(likeBadge);
|
| 820 |
}
|
| 821 |
+
|
| 822 |
+
showMessage(data.message);
|
| 823 |
+
|
| 824 |
+
// ์ข์์ ํต๊ณ ์
๋ฐ์ดํธ
|
| 825 |
+
updateLikeStats();
|
| 826 |
+
|
| 827 |
+
// ์ข์์๋ง ๋ณด๊ธฐ ๋ชจ๋์ธ ๊ฒฝ์ฐ ๋ชฉ๋ก ๋ค์ ํํฐ๋ง
|
| 828 |
+
if (state.viewMode === 'liked') {
|
| 829 |
+
filterAndRenderCards();
|
| 830 |
}
|
| 831 |
+
} else {
|
| 832 |
+
showMessage(data.message || '์ข์์ ์ฒ๋ฆฌ์ ์คํจํ์ต๋๋ค.', true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 833 |
}
|
| 834 |
} catch (error) {
|
| 835 |
console.error('์ข์์ ํ ๊ธ ์ค๋ฅ:', error);
|
|
|
|
| 860 |
const card = document.createElement('div');
|
| 861 |
card.className = `card ${isLiked ? 'liked' : ''}`;
|
| 862 |
|
| 863 |
+
// ์นด๋ ํค๋
|
| 864 |
+
const cardHeader = document.createElement('div');
|
| 865 |
+
cardHeader.className = 'card-header';
|
|
|
|
|
|
|
| 866 |
|
| 867 |
// ์ ๋ชฉ
|
| 868 |
const titleEl = document.createElement('h3');
|
| 869 |
titleEl.className = 'card-title';
|
| 870 |
titleEl.textContent = title;
|
| 871 |
+
cardHeader.appendChild(titleEl);
|
| 872 |
+
|
| 873 |
+
card.appendChild(cardHeader);
|
| 874 |
|
| 875 |
// URL ๋งํฌ
|
| 876 |
const linkEl = document.createElement('a');
|
| 877 |
+
|
| 878 |
+
|
| 879 |
+
linkEl.href = url;
|
| 880 |
linkEl.textContent = url;
|
| 881 |
linkEl.target = '_blank';
|
| 882 |
card.appendChild(linkEl);
|
| 883 |
|
| 884 |
+
// ์ข์์ ๋ฒํผ
|
| 885 |
const likeBtn = document.createElement('button');
|
| 886 |
+
likeBtn.className = `like-button ${isLiked ? 'liked' : ''}`;
|
| 887 |
+
likeBtn.innerHTML = 'โฅ';
|
| 888 |
likeBtn.title = isLiked ? '์ข์์ ์ทจ์' : '์ข์์';
|
| 889 |
|
| 890 |
+
likeBtn.addEventListener('click', (e) => {
|
| 891 |
e.preventDefault();
|
| 892 |
toggleLike(url, card);
|
| 893 |
});
|
| 894 |
+
|
| 895 |
card.appendChild(likeBtn);
|
| 896 |
|
| 897 |
+
// ์ข์์ ๋ฐฐ์ง (์ข์์ ์ํ์ผ ๋๋ง)
|
| 898 |
+
if (isLiked) {
|
| 899 |
+
const likeBadge = document.createElement('div');
|
| 900 |
+
likeBadge.className = 'like-badge';
|
| 901 |
+
likeBadge.textContent = '์ข์์';
|
| 902 |
+
card.appendChild(likeBadge);
|
| 903 |
+
}
|
| 904 |
+
|
| 905 |
// ์นด๋ ์ถ๊ฐ
|
| 906 |
elements.cardsContainer.appendChild(card);
|
| 907 |
});
|
| 908 |
}
|
| 909 |
|
| 910 |
+
// ๋ทฐ ๋ชจ๋ ๋ณ๊ฒฝ
|
| 911 |
function changeViewMode(mode) {
|
| 912 |
state.viewMode = mode;
|
| 913 |
|
| 914 |
+
// ๋ฒํผ ํ์ฑํ ์ํ ์
๋ฐ์ดํธ
|
| 915 |
+
elements.allUrlsBtn.classList.toggle('active', mode === 'all');
|
| 916 |
+
elements.likedUrlsBtn.classList.toggle('active', mode === 'liked');
|
| 917 |
|
| 918 |
// ์นด๋ ๋ค์ ๋ ๋๋ง
|
| 919 |
filterAndRenderCards();
|
|
|
|
| 935 |
|
| 936 |
// ๊ฒ์ ์ด๋ฒคํธ ๋ฆฌ์ค๋
|
| 937 |
elements.searchInput.addEventListener('input', () => {
|
| 938 |
+
// ๋๋ฐ์ด์ฑ (์
๋ ฅ ์ง์ฐ ์ฒ๋ฆฌ)
|
| 939 |
clearTimeout(state.searchTimeout);
|
| 940 |
state.searchTimeout = setTimeout(filterAndRenderCards, 300);
|
| 941 |
});
|
| 942 |
|
| 943 |
+
// ํํฐ ๋ฒํผ ์ด๋ฒคํธ ๋ฆฌ์ค๋
|
| 944 |
+
elements.allUrlsBtn.addEventListener('click', () => changeViewMode('all'));
|
| 945 |
+
elements.likedUrlsBtn.addEventListener('click', () => changeViewMode('liked'));
|
| 946 |
|
| 947 |
// ์ด๊ธฐํ
|
| 948 |
checkSessionStatus();
|
|
|
|
| 952 |
''')
|
| 953 |
|
| 954 |
# ํ๊น
ํ์ด์ค ์คํ์ด์ค์์๋ 7860 ํฌํธ ์ฌ์ฉ
|
| 955 |
+
app.run(host='0.0.0.0', port=7860)
|