feat(frontend): add files
build / Go-Build (push) Failing after 15s

This commit is contained in:
2026-06-24 11:58:59 +02:00
parent 8f59f80eb2
commit d1d49ecc49
39 changed files with 3607 additions and 3 deletions
+184
View File
@@ -0,0 +1,184 @@
.counter {
font-size: 16px;
padding: 5px 10px;
border-radius: 5px;
color: var(--accent);
background: var(--accent-bg);
border: 2px solid transparent;
transition: border-color 0.3s;
margin-bottom: 24px;
&:hover {
border-color: var(--accent-border);
}
&:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
}
.hero {
position: relative;
.base,
.framework,
.vite {
inset-inline: 0;
margin: 0 auto;
}
.base {
width: 170px;
position: relative;
z-index: 0;
}
.framework,
.vite {
position: absolute;
}
.framework {
z-index: 1;
top: 34px;
height: 28px;
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
scale(1.4);
}
.vite {
z-index: 0;
top: 107px;
height: 26px;
width: auto;
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
scale(0.8);
}
}
#center {
display: flex;
flex-direction: column;
gap: 25px;
place-content: center;
place-items: center;
flex-grow: 1;
@media (max-width: 1024px) {
padding: 32px 20px 24px;
gap: 18px;
}
}
#next-steps {
display: flex;
border-top: 1px solid var(--border);
text-align: left;
& > div {
flex: 1 1 0;
padding: 32px;
@media (max-width: 1024px) {
padding: 24px 20px;
}
}
.icon {
margin-bottom: 16px;
width: 22px;
height: 22px;
}
@media (max-width: 1024px) {
flex-direction: column;
text-align: center;
}
}
#docs {
border-right: 1px solid var(--border);
@media (max-width: 1024px) {
border-right: none;
border-bottom: 1px solid var(--border);
}
}
#next-steps ul {
list-style: none;
padding: 0;
display: flex;
gap: 8px;
margin: 32px 0 0;
.logo {
height: 18px;
}
a {
color: var(--text-h);
font-size: 16px;
border-radius: 6px;
background: var(--social-bg);
display: flex;
padding: 6px 12px;
align-items: center;
gap: 8px;
text-decoration: none;
transition: box-shadow 0.3s;
&:hover {
box-shadow: var(--shadow);
}
.button-icon {
height: 18px;
width: 18px;
}
}
@media (max-width: 1024px) {
margin-top: 20px;
flex-wrap: wrap;
justify-content: center;
li {
flex: 1 1 calc(50% - 8px);
}
a {
width: 100%;
justify-content: center;
box-sizing: border-box;
}
}
}
#spacer {
height: 88px;
border-top: 1px solid var(--border);
@media (max-width: 1024px) {
height: 48px;
}
}
.ticks {
position: relative;
width: 100%;
&::before,
&::after {
content: '';
position: absolute;
top: -4.5px;
border: 5px solid transparent;
}
&::before {
left: 0;
border-left-color: var(--border);
}
&::after {
right: 0;
border-right-color: var(--border);
}
}
+23
View File
@@ -0,0 +1,23 @@
import React from 'react';
import { BrowserRouter, Routes, Route } from 'react-router-dom';
import { Footer } from './components/Footer';
import VotingPage from './pages/voting';
import AdminPage from './pages/admin';
import ResultPage from './pages/result';
export const App: React.FC = () => {
return (
<BrowserRouter>
<div className="app-container">
<Routes>
<Route path="/" element={<VotingPage />} />
<Route path="/admin" element={<AdminPage />} />
<Route path="/result" element={<ResultPage />} />
</Routes>
<Footer />
</div>
</BrowserRouter>
);
};
export default App;
+101
View File
@@ -0,0 +1,101 @@
import type { VoteOption, VoteResult } from '../types';
const API_BASE = '/api';
export const api = {
getVoteLocked: async (): Promise<boolean> => {
const res = await fetch(`${API_BASE}/vote/locked`);
if (!res.ok) throw new Error('Failed to fetch vote lock state');
return res.json();
},
getResultLocked: async (): Promise<boolean> => {
const res = await fetch(`${API_BASE}/result/locked`);
if (!res.ok) throw new Error('Failed to fetch result lock state');
return res.json();
},
getVoteOptions: async (): Promise<VoteOption[]> => {
const res = await fetch(`${API_BASE}/vote`);
if (res.status === 423) throw new Error('Locked');
if (!res.ok) throw new Error('Failed to fetch options');
return res.json();
},
incVote: async (id: string): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/${id}/inc`, { method: 'PATCH' });
if (!res.ok) throw new Error('Failed to submit vote');
},
getResults: async (): Promise<VoteResult[]> => {
const res = await fetch(`${API_BASE}/result`);
if (res.status === 423) throw new Error('Locked');
if (!res.ok) throw new Error('Failed to fetch results');
return res.json();
},
// Admin Endpoints
setVoteLocked: async (value: boolean): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/locked`, {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Value: value })
});
if (!res.ok) throw new Error('Failed to set lock');
},
setResultLocked: async (value: boolean): Promise<void> => {
const res = await fetch(`${API_BASE}/result/locked`, {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Value: value })
});
if (!res.ok) throw new Error('Failed to set lock');
},
addVoteEntry: async (name: string, category: string): Promise<VoteOption> => {
const res = await fetch(`${API_BASE}/vote`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Name: name, Category: category })
});
if (!res.ok) throw new Error('Failed to add entry');
return res.json();
},
deleteVoteEntry: async (id: string): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/${id}`, { method: 'DELETE' });
if (!res.ok) throw new Error('Failed to delete entry');
},
bulkDeleteVoteEntries: async (ids: string[]): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/bulk`, {
method: 'DELETE',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(ids)
});
if (!res.ok) throw new Error('Failed to delete entries');
},
setVoteCount: async (id: string, votes: number): Promise<void> => {
const res = await fetch(`${API_BASE}/vote/${id}/override`, {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ Votes: votes })
});
if (!res.ok) throw new Error('Failed to override vote');
},
getUser: async (): Promise<string | null> => {
try {
const res = await fetch(`/admin`);
return res.headers.get('user');
} catch {
return null;
}
},
logout: async (): Promise<void> => {
await fetch(`${API_BASE}/auth/logout`);
}
};
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.5 KiB

+66
View File
@@ -0,0 +1,66 @@
.dialog-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 1rem;
}
.dialog-panel {
max-width: 400px;
width: 100%;
padding: 2rem;
}
.dialog-title {
margin: 0 0 1rem 0;
font-family: 'Sora', sans-serif;
font-size: 1.5rem;
}
.dialog-message {
color: var(--text-muted);
margin-bottom: 2rem;
line-height: 1.5;
}
.dialog-actions {
display: flex;
justify-content: flex-end;
gap: 1rem;
}
.btn-cancel, .btn-confirm {
padding: 0.75rem 1.5rem;
border-radius: var(--radius-m);
border: none;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-cancel {
background: transparent;
color: var(--text);
border: 1px solid var(--panel-border);
}
.btn-cancel:hover {
background: rgba(255, 255, 255, 0.1);
}
.btn-confirm {
background: var(--teal);
color: var(--bg);
}
.btn-confirm:hover {
background: #25d9ff;
transform: translateY(-2px);
box-shadow: 0 4px 15px var(--teal-soft);
}
+27
View File
@@ -0,0 +1,27 @@
import React from 'react';
import './ConfirmDialog.css';
interface ConfirmDialogProps {
isOpen: boolean;
title: string;
message: string;
onConfirm: () => void;
onCancel: () => void;
}
export const ConfirmDialog: React.FC<ConfirmDialogProps> = ({ isOpen, title, message, onConfirm, onCancel }) => {
if (!isOpen) return null;
return (
<div className="dialog-overlay">
<div className="dialog-panel panel">
<h3 className="dialog-title">{title}</h3>
<p className="dialog-message">{message}</p>
<div className="dialog-actions">
<button className="btn-cancel" onClick={onCancel}>Abbrechen</button>
<button className="btn-confirm" onClick={onConfirm}>Bestätigen</button>
</div>
</div>
</div>
);
};
+53
View File
@@ -0,0 +1,53 @@
.footer {
margin-top: auto;
padding: 1.5rem 0 0.5rem 0;
text-align: center;
background: transparent;
border: none;
box-shadow: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.footer-content {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
font-size: 0.75rem;
color: var(--text-muted);
opacity: 0.6;
transition: opacity 0.2s ease;
}
.footer-content:hover {
opacity: 1;
}
.footer-link {
color: inherit;
text-decoration: underline;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.footer-link:hover {
color: var(--teal);
}
.footer-credits {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
}
.footer-credits p {
margin: 0;
}
.footer-credits strong {
font-weight: 500;
color: var(--text);
margin-left: 0.2rem;
}
+16
View File
@@ -0,0 +1,16 @@
import React from 'react';
import './Footer.css';
export const Footer: React.FC = () => {
return (
<footer className="footer">
<div className="footer-content">
<a href="/impressum" className="footer-link">Impressum</a>
<div className="footer-credits">
<p>Developed by <strong>Tim Müller</strong></p>
<p>Original Design by <strong>Alexey Sukhov</strong></p>
</div>
</div>
</footer>
);
};
+64
View File
@@ -0,0 +1,64 @@
.app-header {
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-bottom: 1px solid var(--panel-border);
background: rgba(8, 14, 20, 0.6);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
z-index: 100;
}
.header-brand {
display: flex;
align-items: center;
gap: 1rem;
text-decoration: none;
color: var(--text);
}
.header-brand:hover {
opacity: 0.9;
}
.header-logo {
height: 40px;
width: auto;
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}
.header-title {
font-family: 'Sora', sans-serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--text);
letter-spacing: 0.5px;
}
.header-admin {
display: flex;
align-items: center;
gap: 1.5rem;
}
.header-username {
font-size: 1rem;
font-weight: 500;
color: var(--teal);
background: var(--teal-soft);
padding: 0.4rem 0.8rem;
border-radius: var(--radius-m);
}
@media (max-width: 600px) {
.app-header {
flex-direction: column;
gap: 1rem;
padding: 1rem;
}
}
+44
View File
@@ -0,0 +1,44 @@
import React from 'react';
import { LogOut } from 'lucide-react';
import { Link } from 'react-router-dom';
import './Header.css';
interface HeaderProps {
showAdminControls?: boolean;
username?: string | null;
onLogout?: () => void;
showResultsLink?: boolean;
}
export const Header: React.FC<HeaderProps> = ({ showAdminControls, username, onLogout, showResultsLink }) => {
return (
<header className="app-header">
<Link to="/" className="header-brand">
<img src="/logo.png" alt="Goethe+ Logo" className="header-logo" />
<span className="header-title">Outfit-Voting Abi26</span>
</Link>
<div className="header-admin">
{showResultsLink && (
<Link to="/result" className="header-username" style={{ textDecoration: 'none' }}>
Ergebnisse
</Link>
)}
{showAdminControls && (
<>
{username && (
<a href="/account" className="header-username" style={{ textDecoration: 'none' }}>
{username}
</a>
)}
{onLogout && (
<button className="btn-logout" onClick={onLogout}>
<LogOut size={18} /> Logout
</button>
)}
</>
)}
</div>
</header>
);
};
+36
View File
@@ -0,0 +1,36 @@
.lock-screen {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
text-align: center;
margin: auto 0;
}
.lock-icon-container {
width: 96px;
height: 96px;
background: var(--teal-soft);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
color: var(--teal);
box-shadow: 0 0 40px var(--teal-soft);
}
.lock-title {
font-family: 'Sora', sans-serif;
font-size: 2rem;
margin: 0 0 1rem 0;
}
.lock-message {
color: var(--text-muted);
font-size: 1.1rem;
max-width: 400px;
line-height: 1.6;
}
+19
View File
@@ -0,0 +1,19 @@
import React from 'react';
import { Lock } from 'lucide-react';
import './LockScreen.css';
interface LockScreenProps {
message?: string;
}
export const LockScreen: React.FC<LockScreenProps> = ({ message = "Voting oder Zählung noch nicht abgeschlossen" }) => {
return (
<div className="lock-screen panel">
<div className="lock-icon-container">
<Lock size={48} className="lock-icon" />
</div>
<h2 className="lock-title">Derzeit Gesperrt</h2>
<p className="lock-message">{message}</p>
</div>
);
};
@@ -0,0 +1,104 @@
.search-select {
position: relative;
width: 100%;
font-family: 'Outfit', sans-serif;
}
.search-select.disabled {
opacity: 0.5;
cursor: not-allowed;
}
.select-header {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--panel-border);
border-radius: var(--radius-m);
padding: 0.8rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: all 0.2s ease;
}
.search-select:not(.disabled) .select-header:hover {
background: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.15);
}
.chevron {
transition: transform 0.2s ease;
}
.chevron.open {
transform: rotate(180deg);
}
.select-dropdown {
position: absolute;
top: calc(100% + 0.5rem);
left: 0;
right: 0;
z-index: 50;
display: flex;
flex-direction: column;
max-height: 300px;
overflow: hidden;
padding: 0;
}
.search-box {
display: flex;
align-items: center;
padding: 0.8rem 1rem;
border-bottom: 1px solid var(--panel-border);
gap: 0.5rem;
}
.search-icon {
color: var(--text-muted);
}
.search-box input {
background: transparent;
border: none;
outline: none;
width: 100%;
color: var(--text);
font-size: 0.95rem;
}
.options-list {
overflow-y: auto;
padding: 0.5rem;
}
.options-list::-webkit-scrollbar {
width: 6px;
}
.options-list::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
}
.option-item {
padding: 0.6rem 1rem;
border-radius: var(--radius-m);
cursor: pointer;
transition: background 0.2s;
}
.option-item:hover {
background: rgba(255, 255, 255, 0.05);
}
.option-item.selected {
background: var(--teal-soft);
color: var(--teal);
font-weight: 500;
}
.no-options {
padding: 1rem;
text-align: center;
color: var(--text-muted);
}
@@ -0,0 +1,64 @@
import React, { useState, useRef, useEffect } from 'react';
import { ChevronDown, Search } from 'lucide-react';
import './SearchableSelect.css';
interface Option { value: string; label: string; }
interface SearchableSelectProps {
options: Option[];
value: string;
onChange: (val: string) => void;
disabled?: boolean;
}
export const SearchableSelect: React.FC<SearchableSelectProps> = ({ options, value, onChange, disabled }) => {
const [isOpen, setIsOpen] = useState(false);
const [search, setSearch] = useState('');
const ref = useRef<HTMLDivElement>(null);
useEffect(() => {
const handleClick = (e: MouseEvent) => {
if (ref.current && !ref.current.contains(e.target as Node)) setIsOpen(false);
};
document.addEventListener('mousedown', handleClick);
return () => document.removeEventListener('mousedown', handleClick);
}, []);
const filtered = options.filter(o => o.label.toLowerCase().includes(search.toLowerCase()));
const selected = options.find(o => o.value === value);
return (
<div className={`search-select ${disabled ? 'disabled' : ''}`} ref={ref}>
<div className="select-header" onClick={() => !disabled && setIsOpen(!isOpen)}>
<span>{selected ? selected.label : 'Bitte wählen...'}</span>
<ChevronDown size={18} className={`chevron ${isOpen ? 'open' : ''}`} />
</div>
{isOpen && (
<div className="select-dropdown panel">
<div className="search-box">
<Search size={16} className="search-icon" />
<input
autoFocus
type="text"
placeholder="Suchen..."
value={search}
onChange={e => setSearch(e.target.value)}
/>
</div>
<div className="options-list">
{filtered.map(o => (
<div
key={o.value}
className={`option-item ${o.value === value ? 'selected' : ''}`}
onClick={() => { onChange(o.value); setIsOpen(false); setSearch(''); }}
>
{o.label}
</div>
))}
{filtered.length === 0 && <div className="no-options">Keine Ergebnisse</div>}
</div>
</div>
)}
</div>
);
};
+116
View File
@@ -0,0 +1,116 @@
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Sora:wght@500;600;700&display=swap');
:root {
--bg: #010407;
--bg-soft: #061019;
--panel: rgba(8, 14, 20, 0.82);
--panel-border: rgba(255, 255, 255, 0.09);
--text: #f4f8fc;
--text-muted: rgba(231, 238, 244, 0.66);
--teal: #17c1e7;
--teal-soft: rgba(23, 193, 231, 0.35);
--success: #55e783;
--danger: #ff5f69;
--shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.45);
--radius-xl: 28px;
--radius-l: 20px;
--radius-m: 14px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
#root {
min-height: 100vh;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
body {
font-family: 'Outfit', 'Segoe UI', sans-serif;
background:
radial-gradient(1050px 520px at 85% -12%, rgba(120, 236, 255, 0.21), transparent 56%),
radial-gradient(780px 380px at 12% -8%, rgba(0, 173, 217, 0.24), transparent 52%),
var(--bg);
background-attachment: fixed;
color: var(--text);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
button,
input,
textarea,
select {
font: inherit;
color: inherit;
}
a {
color: inherit;
text-decoration: none;
}
/* Base Panel Style */
.panel {
background: var(--panel);
border: 1px solid var(--panel-border);
border-radius: var(--radius-l);
box-shadow: var(--shadow-soft);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
/* Main Layout */
.app-container {
flex: 1;
display: flex;
flex-direction: column;
max-width: 1200px;
width: 100%;
margin: 0 auto;
padding: 100px 2rem 2rem 2rem;
}
@media (max-width: 768px) {
.app-container {
padding: 120px 1rem 1rem 1rem;
}
}
/* Shared Categories Grid & Cards */
.categories-grid {
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
}
.category-card {
width: 100%;
max-width: 600px;
padding: 2.2rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
transform: translateY(-2px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.category-title {
margin: 0;
font-family: 'Sora', sans-serif;
font-size: 1.5rem;
color: var(--teal);
}
+10
View File
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
+255
View File
@@ -0,0 +1,255 @@
.admin-page {
flex: 1;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.admin-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
}
.admin-header h2 {
margin: 0;
font-family: 'Sora', sans-serif;
color: var(--teal);
}
.btn-logout {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.2rem;
background: transparent;
color: var(--danger);
border: 1px solid var(--danger);
border-radius: var(--radius-m);
cursor: pointer;
transition: all 0.2s;
font-weight: 500;
}
.btn-logout:hover {
background: var(--danger);
color: #fff;
}
.admin-controls {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
@media (max-width: 768px) {
.admin-controls {
grid-template-columns: 1fr;
}
}
.control-card {
padding: 1.5rem;
}
.control-card h3 {
margin: 0 0 1.5rem 0;
font-family: 'Sora', sans-serif;
}
.lock-toggles {
display: flex;
flex-direction: column;
gap: 1rem;
}
.toggle-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1rem;
border-radius: var(--radius-m);
border: none;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.toggle-btn.unlocked {
background: var(--success);
color: #000;
}
.toggle-btn.locked {
background: var(--danger);
color: #fff;
}
.bulk-add-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.bulk-add-form input,
.bulk-add-form textarea {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--panel-border);
padding: 0.8rem;
border-radius: var(--radius-m);
color: var(--text);
}
.btn-primary {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: var(--teal);
color: var(--bg);
padding: 0.8rem;
border: none;
border-radius: var(--radius-m);
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.btn-primary:hover {
background: #25d9ff;
}
.bulk-actions {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.5rem;
background: rgba(255, 95, 105, 0.1);
border-color: var(--danger);
}
.btn-danger {
display: flex;
align-items: center;
gap: 0.5rem;
background: var(--danger);
color: #fff;
border: none;
padding: 0.6rem 1.2rem;
border-radius: var(--radius-m);
cursor: pointer;
}
.admin-tables {
display: flex;
flex-direction: column;
gap: 2rem;
}
.admin-table-panel {
padding: 0;
overflow: hidden;
}
.table-header-flex {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid var(--panel-border);
background: rgba(0, 0, 0, 0.2);
}
.table-title {
margin: 0;
font-family: 'Sora', sans-serif;
color: var(--teal);
}
.btn-icon.add-to-cat {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.85rem;
font-weight: 500;
background: rgba(255, 255, 255, 0.05);
padding: 0.4rem 0.8rem;
}
.btn-icon.add-to-cat:hover {
background: var(--teal-soft);
color: var(--teal);
}
.admin-table {
width: 100%;
border-collapse: collapse;
}
.admin-table th,
.admin-table td {
padding: 1rem 1.5rem;
text-align: left;
border-bottom: 1px solid var(--panel-border);
}
.admin-table th {
background: rgba(255, 255, 255, 0.02);
color: var(--text-muted);
font-weight: 500;
}
.admin-table tr:hover td {
background: rgba(255, 255, 255, 0.02);
}
.vote-badge {
background: var(--teal-soft);
color: var(--teal);
padding: 0.2rem 0.6rem;
border-radius: 12px;
font-weight: 600;
}
.edit-input {
width: 60px;
background: rgba(0,0,0,0.3);
border: 1px solid var(--teal);
color: var(--text);
padding: 0.3rem;
border-radius: 4px;
}
.action-buttons {
display: flex;
gap: 0.5rem;
}
.btn-icon {
background: transparent;
border: none;
cursor: pointer;
padding: 0.4rem;
border-radius: 4px;
color: var(--text-muted);
transition: all 0.2s;
}
.btn-icon.edit:hover {
color: var(--teal);
background: var(--teal-soft);
}
.btn-icon.delete:hover {
color: var(--danger);
background: rgba(255, 95, 105, 0.2);
}
.btn-icon.save {
color: var(--success);
background: rgba(85, 231, 131, 0.1);
padding: 0.4rem 0.8rem;
font-size: 0.85rem;
}
+338
View File
@@ -0,0 +1,338 @@
import { useEffect, useState, useMemo } from 'react';
import { api } from '../../api';
import type { VoteOption } from '../../types';
import { ConfirmDialog } from '../../components/ConfirmDialog';
import { Header } from '../../components/Header';
import { Trash2, Edit2, Lock, Unlock, Plus } from 'lucide-react';
import './Admin.css';
export default function AdminPage() {
const [options, setOptions] = useState<VoteOption[]>([]);
const [voteLocked, setVoteLocked] = useState(false);
const [resultLocked, setResultLocked] = useState(false);
const [loading, setLoading] = useState(true);
const [username, setUsername] = useState<string | null>(null);
// Confirm Dialog State
const [dialog, setDialog] = useState<{ isOpen: boolean; title: string; message: string; action: () => void }>({
isOpen: false, title: '', message: '', action: () => {}
});
// Bulk Add State
const [bulkCategory, setBulkCategory] = useState('');
const [bulkNames, setBulkNames] = useState('');
// Bulk Delete State
const [selectedIds, setSelectedIds] = useState<Set<string>>(new Set());
// Edit State
const [editId, setEditId] = useState<string | null>(null);
const [editVotes, setEditVotes] = useState<number>(0);
// Filter & Sort State
const [nameFilter, setNameFilter] = useState('');
const [sortBy, setSortBy] = useState<'votes_desc' | 'votes_asc' | 'name_asc' | 'name_desc'>('votes_desc');
const handleSort = (field: 'votes' | 'name') => {
if (field === 'votes') {
setSortBy(prev => prev === 'votes_desc' ? 'votes_asc' : 'votes_desc');
} else {
setSortBy(prev => prev === 'name_asc' ? 'name_desc' : 'name_asc');
}
};
const loadData = async () => {
try {
const opts = await api.getResults();
const vLocked = await api.getVoteLocked();
const rLocked = await api.getResultLocked();
const user = await api.getUser();
setOptions(opts);
setVoteLocked(vLocked);
setResultLocked(rLocked);
setUsername(user);
} catch (err) {
console.error(err);
alert('Fehler beim Laden der Admin-Daten. Möglicherweise nicht authentifiziert.');
} finally {
setLoading(false);
}
};
useEffect(() => {
document.title = 'Admin - Outfit-Voting Abi26';
loadData();
}, []);
const openDialog = (title: string, message: string, action: () => void) => {
setDialog({ isOpen: true, title, message, action });
};
const closeDialog = () => setDialog({ ...dialog, isOpen: false });
const toggleVoteLock = () => {
openDialog(
voteLocked ? "Voting entsperren?" : "Voting sperren?",
voteLocked ? "Das Voting wird für alle Nutzer geöffnet." : "Das Voting wird gesperrt und niemand kann mehr abstimmen.",
async () => {
await api.setVoteLocked(!voteLocked);
setVoteLocked(!voteLocked);
closeDialog();
}
);
};
const toggleResultLock = () => {
openDialog(
resultLocked ? "Ergebnisse entsperren?" : "Ergebnisse sperren?",
resultLocked ? "Die Ergebnisse werden für alle sichtbar." : "Die Ergebnisse werden für die Öffentlichkeit gesperrt.",
async () => {
await api.setResultLocked(!resultLocked);
setResultLocked(!resultLocked);
closeDialog();
}
);
};
const handleLogout = async () => {
await api.logout();
window.location.href = '/';
};
const handleBulkAdd = async () => {
if (!bulkCategory.trim() || !bulkNames.trim()) return;
const names = bulkNames.split('\n').map(n => n.trim()).filter(n => n.length > 0);
if (names.length === 0) return;
for (const name of names) {
await api.addVoteEntry(name, bulkCategory);
}
setBulkNames('');
setBulkCategory('');
loadData();
};
const handleBulkDelete = async () => {
if (selectedIds.size === 0) return;
openDialog(
"Ausgewählte Einträge löschen?",
`Möchtest du wirklich ${selectedIds.size} Einträge löschen?`,
async () => {
await api.bulkDeleteVoteEntries(Array.from(selectedIds));
setSelectedIds(new Set());
loadData();
closeDialog();
}
);
};
const handleDelete = (id: string) => {
openDialog("Eintrag löschen?", "Dieser Eintrag wird unwiderruflich gelöscht.", async () => {
await api.deleteVoteEntry(id);
loadData();
closeDialog();
});
};
const saveEdit = async (id: string) => {
await api.setVoteCount(id, editVotes);
setEditId(null);
loadData();
};
const toggleSelect = (id: string) => {
const next = new Set(selectedIds);
if (next.has(id)) next.delete(id);
else next.add(id);
setSelectedIds(next);
};
const categories = useMemo(() => {
const cats = new Set<string>();
options.forEach(o => cats.add(o.Category));
return Array.from(cats).sort();
}, [options]);
if (loading) return <div className="voting-loading">Laden...</div>;
return (
<>
<Header showAdminControls={true} username={username} onLogout={handleLogout} />
<div className="admin-page">
<div className="admin-header panel">
<h2>Admin Dashboard</h2>
</div>
<div className="admin-controls">
<div className="control-card panel">
<h3>Sperren & Freigaben</h3>
<div className="lock-toggles">
<button className={`toggle-btn ${voteLocked ? 'locked' : 'unlocked'}`} onClick={toggleVoteLock}>
{voteLocked ? <Lock size={18} /> : <Unlock size={18} />}
Voting {voteLocked ? 'Gesperrt' : 'Aktiv'}
</button>
<button className={`toggle-btn ${resultLocked ? 'locked' : 'unlocked'}`} onClick={toggleResultLock}>
{resultLocked ? <Lock size={18} /> : <Unlock size={18} />}
Ergebnisse {resultLocked ? 'Gesperrt' : 'Sichtbar'}
</button>
</div>
</div>
<div className="control-card panel">
<h3>Einträge hinzufügen (Bulk)</h3>
<div className="bulk-add-form">
<input
type="text"
placeholder="Kategorie (z.B. King & Queen)"
value={bulkCategory}
onChange={e => setBulkCategory(e.target.value)}
list="category-list"
/>
<datalist id="category-list">
{categories.map(c => <option key={c} value={c} />)}
</datalist>
<textarea
id="bulkNames"
placeholder="Namen (einer pro Zeile)"
value={bulkNames}
onChange={e => setBulkNames(e.target.value)}
rows={3}
/>
<button className="btn-primary" onClick={handleBulkAdd}>
<Plus size={18} /> Hinzufügen
</button>
</div>
</div>
</div>
{selectedIds.size > 0 && (
<div className="bulk-actions panel">
<span>{selectedIds.size} Einträge ausgewählt</span>
<button className="btn-danger" onClick={handleBulkDelete}>
<Trash2 size={18} /> Ausgewählte Löschen
</button>
</div>
)}
<div className="admin-tables">
{categories.map(cat => {
const catOptions = options
.filter(o => o.Category === cat)
.filter(o => o.Name.toLowerCase().includes(nameFilter.toLowerCase()))
.sort((a, b) => {
if (sortBy === 'votes_desc') {
return b.Votes - a.Votes || a.Name.localeCompare(b.Name);
} else if (sortBy === 'votes_asc') {
return a.Votes - b.Votes || a.Name.localeCompare(b.Name);
} else if (sortBy === 'name_asc') {
return a.Name.localeCompare(b.Name);
} else {
return b.Name.localeCompare(a.Name);
}
});
return (
<div key={cat} className="admin-table-panel panel">
<div className="table-header-flex">
<div style={{ display: 'flex', alignItems: 'center', gap: '1rem' }}>
<h3 className="table-title">{cat}</h3>
<input
type="text"
placeholder="Filtern..."
value={nameFilter}
onChange={e => setNameFilter(e.target.value)}
style={{ padding: '0.4rem 0.8rem', borderRadius: 'var(--radius-m)', background: 'rgba(255,255,255,0.05)', border: '1px solid var(--panel-border)', fontSize: '0.9rem', width: '160px' }}
/>
</div>
<button className="btn-icon add-to-cat" onClick={() => {
setBulkCategory(cat);
window.scrollTo({ top: 0, behavior: 'smooth' });
setTimeout(() => document.getElementById('bulkNames')?.focus(), 300);
}}>
<Plus size={16} /> Hier hinzufügen
</button>
</div>
<table className="admin-table">
<thead>
<tr>
<th style={{ width: '40px' }}></th>
<th
style={{ cursor: 'pointer', userSelect: 'none', whiteSpace: 'nowrap' }}
onClick={() => handleSort('name')}
>
Name {sortBy.startsWith('name') && (sortBy === 'name_asc' ? '↑' : '↓')}
</th>
<th
style={{ width: '100px', cursor: 'pointer', userSelect: 'none', whiteSpace: 'nowrap' }}
onClick={() => handleSort('votes')}
>
Stimmen {sortBy.startsWith('votes') && (sortBy === 'votes_asc' ? '↑' : '↓')}
</th>
<th style={{ width: '120px' }}>Aktionen</th>
</tr>
</thead>
<tbody>
{catOptions.length === 0 && (
<tr>
<td colSpan={4} style={{ textAlign: 'center', padding: '2rem', color: 'var(--text-muted)' }}>
Keine Einträge gefunden.
</td>
</tr>
)}
{catOptions.map(o => (
<tr key={o.ID}>
<td>
<input
type="checkbox"
checked={selectedIds.has(o.ID)}
onChange={() => toggleSelect(o.ID)}
/>
</td>
<td>{o.Name}</td>
<td>
{editId === o.ID ? (
<input
type="number"
className="edit-input"
value={editVotes}
onChange={e => setEditVotes(Number(e.target.value))}
/>
) : (
<span className="vote-badge">{o.Votes}</span>
)}
</td>
<td>
<div className="action-buttons">
{editId === o.ID ? (
<button className="btn-icon save" onClick={() => saveEdit(o.ID)}>Speichern</button>
) : (
<button className="btn-icon edit" onClick={() => { setEditId(o.ID); setEditVotes(o.Votes); }}>
<Edit2 size={16} />
</button>
)}
<button className="btn-icon delete" onClick={() => handleDelete(o.ID)}>
<Trash2 size={16} />
</button>
</div>
</td>
</tr>
))}
</tbody>
</table>
</div>
);
})}
</div>
<ConfirmDialog
isOpen={dialog.isOpen}
title={dialog.title}
message={dialog.message}
onConfirm={() => { dialog.action(); closeDialog(); }}
onCancel={closeDialog}
/>
</div>
</>
);
}
+45
View File
@@ -0,0 +1,45 @@
.result-page {
flex: 1;
display: flex;
flex-direction: column;
}
.result-list {
display: flex;
flex-direction: column;
gap: 0.8rem;
margin-top: 1rem;
}
.result-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.8rem 1rem;
background: rgba(255, 255, 255, 0.03);
border-radius: var(--radius-m);
transition: background 0.2s ease;
}
.result-item:hover {
background: rgba(255, 255, 255, 0.06);
}
.result-rank {
font-family: 'Sora', sans-serif;
color: var(--teal);
font-weight: 600;
font-size: 1.1rem;
min-width: 2rem;
}
.result-name {
font-weight: 500;
font-size: 1.05rem;
}
.no-data {
text-align: center;
color: var(--text-muted);
padding: 1rem;
}
+82
View File
@@ -0,0 +1,82 @@
import { useEffect, useState, useMemo } from 'react';
import { api } from '../../api';
import type { VoteResult } from '../../types';
import { LockScreen } from '../../components/LockScreen';
import { Header } from '../../components/Header';
import './Result.css';
export default function ResultPage() {
const [locked, setLocked] = useState(false);
const [loading, setLoading] = useState(true);
const [results, setResults] = useState<VoteResult[]>([]);
useEffect(() => {
document.title = 'Ergebnisse - Outfit-Voting Abi26';
const fetchData = async () => {
try {
const isLocked = await api.getResultLocked();
setLocked(isLocked);
if (!isLocked) {
const res = await api.getResults();
setResults(res);
}
} catch (err) {
console.error(err);
setLocked(true);
} finally {
setLoading(false);
}
};
fetchData();
}, []);
const categories = useMemo(() => {
const cats = new Set<string>();
results.forEach(r => cats.add(r.Category));
return Array.from(cats).sort();
}, [results]);
if (loading) return <div className="voting-loading">Laden...</div>;
if (locked) {
return (
<>
<Header />
<LockScreen message="Ergebnisse sind derzeit gesperrt und werden noch nicht veröffentlicht." />
</>
);
}
return (
<>
<Header />
<div className="result-page">
<h1 className="page-title">Top Ergebnisse</h1>
<p className="page-subtitle">Die Top 5 in jeder Kategorie.</p>
<div className="categories-grid">
{categories.map(cat => {
const catResults = results
.filter(r => r.Category === cat)
.sort((a, b) => b.Votes - a.Votes || a.Name.localeCompare(b.Name))
.slice(0, 5);
return (
<div key={cat} className="category-card panel">
<h3 className="category-title">{cat}</h3>
<div className="result-list">
{catResults.map((r, i) => (
<div key={r.ID} className="result-item">
<span className="result-rank">#{i + 1}</span>
<span className="result-name">{r.Name}</span>
</div>
))}
{catResults.length === 0 && <div className="no-data">Keine Daten bisher</div>}
</div>
</div>
);
})}
</div>
</div>
</>
);
}
+85
View File
@@ -0,0 +1,85 @@
.voting-page {
flex: 1;
display: flex;
flex-direction: column;
}
.logo-container {
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.app-logo {
max-width: 280px;
width: 100%;
height: auto;
filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}
.voting-loading {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: var(--text-muted);
}
.page-title {
font-family: 'Sora', sans-serif;
font-size: 1.8rem;
margin: 0 0 0.5rem 0;
text-align: center;
background: linear-gradient(135deg, #fff, var(--teal));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.page-subtitle {
text-align: center;
color: var(--text-muted);
margin: 0 0 3rem 0;
font-size: 1.1rem;
}
.category-content {
display: flex;
flex-direction: column;
gap: 1rem;
flex: 1;
justify-content: space-between;
}
.submit-btn {
padding: 0.8rem;
border-radius: var(--radius-m);
border: none;
font-weight: 600;
background: var(--teal);
color: var(--bg);
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.submit-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.submit-btn:not(:disabled):hover {
background: #25d9ff;
box-shadow: 0 4px 15px var(--teal-soft);
transform: translateY(-1px);
}
.submit-btn.submitted {
background: var(--success);
color: #000;
opacity: 0.9;
}
+145
View File
@@ -0,0 +1,145 @@
import { useEffect, useState, useMemo } from 'react';
import { api } from '../../api';
import type { VoteOption } from '../../types';
import { LockScreen } from '../../components/LockScreen';
import { SearchableSelect } from '../../components/SearchableSelect';
import { Header } from '../../components/Header';
import { Check } from 'lucide-react';
import './Voting.css';
export default function VotingPage() {
const [locked, setLocked] = useState<boolean>(false);
const [loading, setLoading] = useState(true);
const [options, setOptions] = useState<VoteOption[]>([]);
const [selections, setSelections] = useState<Record<string, string>>({});
const [submitted, setSubmitted] = useState<Record<string, boolean>>({});
useEffect(() => {
document.title = 'Abstimmen - Outfit-Voting Abi26';
// Load submitted state from local storage
try {
const stored = localStorage.getItem('abiball_votes');
if (stored) {
const parsed = JSON.parse(stored);
const newSubmitted: Record<string, boolean> = {};
const newSelected: Record<string, string> = {};
Object.entries(parsed).forEach(([cat, val]) => {
newSubmitted[cat] = true;
if (typeof val === 'string') {
newSelected[cat] = val;
}
});
setSubmitted(newSubmitted);
setSelections(newSelected);
}
} catch (e) {
console.error('Failed to parse local storage', e);
}
const fetchData = async () => {
try {
const isLocked = await api.getVoteLocked();
setLocked(isLocked);
if (!isLocked) {
const opts = await api.getVoteOptions();
setOptions(opts);
}
} catch (err) {
console.error(err);
// Fallback lock if auth error or explicitly locked
setLocked(true);
} finally {
setLoading(false);
}
};
fetchData();
}, []);
const categories = useMemo(() => {
const cats = new Set<string>();
options.forEach(o => cats.add(o.Category));
return Array.from(cats).sort();
}, [options]);
const handleSubmit = async (category: string) => {
const optionId = selections[category];
if (!optionId) return;
try {
await api.incVote(optionId);
const newSubmitted = { ...submitted, [category]: true };
const newSelected = { ...selections, [category]: optionId };
setSubmitted(newSubmitted);
setSelections(newSelected);
localStorage.setItem('abiball_votes', JSON.stringify(newSelected));
} catch (err) {
console.error('Failed to submit vote', err);
alert('Fehler beim Abstimmen. Bitte versuche es später erneut.');
}
};
if (loading) {
return <div className="voting-loading">Laden...</div>;
}
if (locked) {
return (
<>
<Header showResultsLink={true} />
<LockScreen message="Das Voting ist derzeit nicht aktiv oder die Stimmen werden gerade gezählt." />
</>
);
}
return (
<>
<Header showResultsLink={true} />
<div className="voting-page">
<h1 className="page-title">Outfit Voting</h1>
<p className="page-subtitle">Wähle deine Favoriten in jeder Kategorie.</p>
<div className="categories-grid">
{categories.map(cat => {
const catOptions = options
.filter(o => o.Category === cat)
.map(o => ({ value: o.ID, label: o.Name }));
const isSubmitted = submitted[cat];
return (
<div key={cat} className="category-card panel">
<h3 className="category-title">{cat}</h3>
<div className="category-content">
<>
<SearchableSelect
options={catOptions}
value={selections[cat] || ''}
onChange={(val) => !isSubmitted && setSelections(prev => ({ ...prev, [cat]: val }))}
disabled={isSubmitted}
/>
<button
className={`submit-btn ${isSubmitted ? 'submitted' : ''}`}
disabled={!selections[cat] || isSubmitted}
onClick={() => handleSubmit(cat)}
>
{isSubmitted ? (
<><Check size={18} /> Abgestimmt</>
) : (
'Abstimmen'
)}
</button>
</>
</div>
</div>
);
})}
</div>
</div>
</>
);
}
+13
View File
@@ -0,0 +1,13 @@
export interface VoteOption {
ID: string;
Name: string;
Category: string;
Votes: number;
}
export interface VoteResult {
ID: string;
Name: string;
Category: string;
Votes: number;
}