diff --git a/src/App.css b/src/App.css deleted file mode 100644 index e6abb66..0000000 --- a/src/App.css +++ /dev/null @@ -1,124 +0,0 @@ -/* Container styles */ -.waldorf-vote-landing-page { - display: flex; - flex-direction: column; - align-items: center; - max-width: 1200px; - margin: auto; -} - -/* Header styles */ -.waldorf-header { - text-align: center; - margin-bottom: 20px; -} - -.waldorf-logo-container { - display: flex; - justify-content: center; - margin-bottom: 10px; -} - -.waldorf-logo { - max-width: 80px; -} - -.waldorf-main-content { - width: 100%; -} - -/* Description styles */ -.waldorf-description { - max-width: 800px; - margin: 0 auto; - padding: 10px; - background: rgba(255, 255, 255, 0.9); - border-radius: 5px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); - color: #555; - font-size: 1em; - line-height: 1.5; -} - -/* Section styles */ -.waldorf-section { - background: #fff; - border-radius: 5px; - padding: 15px; - margin-bottom: 20px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); -} - -.waldorf-section-title { - margin-bottom: 10px; - font-size: 1.4em; - color: #f89e23; - text-align: center; -} - -.waldorf-vote-list { - display: flex; - flex-direction: column; - gap: 10px; -} - -.waldorf-vote-card { - padding: 10px; - border-left: 3px solid #f89e23; -} - -.waldorf-link { - color: #646cff; - text-decoration: none; - font-weight: bold; -} - -.waldorf-link:hover { - text-decoration: underline; -} - -.waldorf-no-votes { - text-align: center; - color: #888; -} - -/* Footer styles */ -.waldorf-footer { - margin-top: 20px; - text-align: center; -} - -.waldorf-credits { - color: #888; -} - -.waldorf-credits a { - color: #646cff; - text-decoration: none; -} - -.waldorf-credits a:hover { - text-decoration: underline; -} - -/* Responsive design */ -@media (max-width: 768px) { - .waldorf-section-title { - font-size: 1.2em; - } -} - -@media (max-width: 480px) { - .waldorf-section { - padding: 10px; - margin-bottom: 15px; - } - - .waldorf-section-title { - font-size: 1em; - } - - .waldorf-vote-card { - padding: 8px; - } -} diff --git a/src/App.jsx b/src/App.jsx index 8753864..fe5dfae 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,7 +1,6 @@ import { collection, getDocs } from "firebase/firestore"; import moment from "moment-timezone"; import { useLoaderData } from "react-router-dom"; -import "./App.css"; import { db } from "./firebase"; function App() { const { activeVotes, expiredVotes, scheduledVotes } = useLoaderData(); diff --git a/src/Vote.jsx b/src/Vote.jsx index c7364d8..797c948 100644 --- a/src/Vote.jsx +++ b/src/Vote.jsx @@ -13,7 +13,7 @@ import { db } from "./firebase"; import moment from "moment-timezone"; import { breakpoint, confirm, snackbar } from "mdui"; -import "./vote.css"; +import { capitalizeWords } from "./admin/utils"; export default function Vote() { const refs = useRef([]); const urlParams = new URLSearchParams(window.location.search); @@ -33,7 +33,6 @@ export default function Vote() { description, } = vote; - const [firstName, setFirstName] = React.useState(); const [lastName, setLastName] = React.useState(); const [grade, setGrade] = React.useState(); @@ -49,19 +48,34 @@ export default function Vote() { React.useEffect(() => { document.title = title; + }, [title]); - if (localStorage.getItem(id) && !urlParams.get("preview")) { - if (urlParams.get("allowResubmission")) { - navigate(`/x/${id}?allowResubmission=true`); - window.location.href = `/x/${id}?allowResubmission=true`; - return; - } - navigate(`/x/${id}`); - window.location.href = `/x/${id}`; + const preview = urlParams.get("preview"); + + + if (localStorage.getItem(id) && !urlParams.get("preview")) { + if (urlParams.get("allowResubmission")) { + navigate(`/x/${id}?allowResubmission=true`); + return; } - }, []); + navigate(`/x/${id}`); + } + + if ((active === false || Date.now() > endTime.seconds * 1000) && !preview) { + snackbar({ message: "Die Wahl ist bereits beendet." }); + navigate(`/r/${id}`); + } + if (Date.now() < startTime.seconds * 1000 && !preview) { + snackbar({ + message: + "Die Wahl startet erst am " + + moment + .tz(startTime.seconds * 1000, "Europe/Berlin") + .format("dddd, D. MMMM YYYY, HH:mm"), + }); + navigate("/"); + } - const preview = urlParams.get("preview"); const submitDisabled = () => { if ( @@ -122,39 +136,39 @@ export default function Vote() { setSending(false); if (error.code === "permission-denied") { snackbar({ - message: - "Es ist ein Berechtigungsfehler aufgetreten.", - action:"Details", - onActionClick: () => { - console.error(error); - alert( - "Es scheint, als sei die Wahl nicht mehr verfügbar. Bitte versuchen Sie es später erneut.\n"+error - ) - } + message: "Es ist ein Berechtigungsfehler aufgetreten.", + action: "Details", + onActionClick: () => { + console.error(error); + alert( + "Es scheint, als sei die Wahl nicht mehr verfügbar. Bitte versuchen Sie es später erneut.\n" + + error + ); + }, }); } else if (error.message === "Network Error") { - snackbar({ - message: - "Es ist ein Netzwerkfehler aufgetreten.", - action:"Details", - onActionClick: () => { - console.error(error); - alert( - "Es scheint, als gäbe es ein Problem mit Ihrer Internetverbindung. Bitte überprüfen Sie diese und versuchen Sie es erneut.\n"+error - ) - } + snackbar({ + message: "Es ist ein Netzwerkfehler aufgetreten.", + action: "Details", + onActionClick: () => { + console.error(error); + alert( + "Es scheint, als gäbe es ein Problem mit Ihrer Internetverbindung. Bitte überprüfen Sie diese und versuchen Sie es erneut.\n" + + error + ); + }, }); } else { snackbar({ - message: - "Es ist ein Fehler aufgetreten.", - action:"Details", + message: "Es ist ein Fehler aufgetreten.", + action: "Details", onActionClick: () => { console.error(error); alert( - "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.\n"+error - ) - } + "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.\n" + + error + ); + }, }); } }); @@ -166,36 +180,6 @@ export default function Vote() { setExtraFieldsValues(newValues); }; - React.useEffect(() => { - if ((active === false || Date.now() > endTime.seconds * 1000) && !preview) { - snackbar({ message: "Die Wahl ist bereits beendet." }); - navigate(`/r/${id}`); - } - if (Date.now() < startTime.seconds * 1000 && !preview) { - snackbar({ - message: - "Die Wahl startet erst am " + - moment - .tz(startTime.seconds * 1000, "Europe/Berlin") - .format("dddd, D. MMMM YYYY, HH:mm"), - }); - navigate("/"); - } - }, []); - - const capitalizeWords = (str) => { - return str - .replace(/[^a-zA-ZäöüÄÖÜß\s-]/g, "") // Remove non-alphabetic characters except hyphens and umlauts - .replace(/\b\w/g, (char, index) => { - if (index === 0 || str[index - 1].match(/\s/)) { - return char.toUpperCase(); - } else if (str[index - 1] === "-") { - return char.toUpperCase(); - } - return char; - }); // Capitalize words correctly - }; - return (