Add topics list with pagination and update to api.ronde.vu

Features:
- Added TopicsList component with pagination support
- Shows active topics with peer counts
- Pagination controls (Previous/Next)
- Refresh button to reload topics
- Modal UI with proper styling
- Floating "View Topics" button on main screens

Changes:
- Updated API URL from rondevu.xtrdev.workers.dev to api.ronde.vu
- Added TopicsList component with pagination UI
- Added modal overlay and styles
- Integrated topics modal into main App

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-12 22:20:37 +01:00
parent 6538b5a18f
commit 1bbce9295d
4 changed files with 345 additions and 2 deletions

View File

@@ -790,3 +790,204 @@ input[type="text"]:disabled {
width: 100%;
}
}
/* Topics List Modal */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
animation: fadeIn 0.2s ease-out;
}
.modal-content {
background: white;
border-radius: 12px;
max-width: 600px;
width: 90%;
max-height: 80vh;
display: flex;
flex-direction: column;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.modal-header {
padding: 24px 32px;
border-bottom: 1px solid #e8eaf0;
display: flex;
align-items: center;
justify-content: space-between;
}
.modal-header h2 {
margin: 0;
font-size: 1.5rem;
color: #1a1a1a;
}
.close-button {
background: none;
border: none;
font-size: 2rem;
color: #6c757d;
cursor: pointer;
padding: 0;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: all 0.2s;
}
.close-button:hover {
background: #f8f9fc;
color: #1a1a1a;
}
.modal-body {
padding: 24px 32px;
overflow-y: auto;
flex: 1;
}
.modal-footer {
padding: 20px 32px;
border-top: 1px solid #e8eaf0;
display: flex;
gap: 12px;
justify-content: flex-end;
}
.topics-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.topic-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
background: #f8f9fc;
border: 1px solid #e8eaf0;
border-radius: 8px;
transition: all 0.2s;
}
.topic-item:hover {
background: #f0f2f8;
border-color: #d0d5dd;
}
.topic-name {
font-weight: 500;
color: #1a1a1a;
font-size: 1rem;
word-break: break-all;
}
.topic-count {
font-size: 0.9rem;
color: #6c757d;
background: white;
padding: 4px 12px;
border-radius: 12px;
font-weight: 500;
white-space: nowrap;
}
.pagination {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid #e8eaf0;
}
.pagination-button {
padding: 10px 20px;
border: 1px solid #e8eaf0;
background: white;
color: #1a1a1a;
border-radius: 8px;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.2s;
font-weight: 500;
}
.pagination-button:hover:not(:disabled) {
background: #f8f9fc;
border-color: #5568d3;
color: #5568d3;
}
.pagination-button:disabled {
opacity: 0.4;
cursor: not-allowed;
}
.pagination-info {
font-size: 0.9rem;
color: #6c757d;
}
.loading-message, .empty-message, .error-message {
text-align: center;
padding: 40px 20px;
color: #6c757d;
font-size: 1rem;
}
.error-message {
color: #dc3545;
background: #ffe8eb;
border: 1px solid #ffccd2;
border-radius: 8px;
padding: 16px;
}
.view-topics-button {
position: fixed;
bottom: 80px;
right: 20px;
padding: 14px 24px;
background: #5568d3;
color: white;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
box-shadow: 0 4px 12px rgba(85, 104, 211, 0.3);
transition: all 0.2s;
z-index: 100;
}
.view-topics-button:hover {
background: #667eea;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(85, 104, 211, 0.4);
}