feat: Implement Event Deep-Linking (?event=ID) and TEILEN share link buttons

This commit is contained in:
Richard
2026-07-31 12:28:31 +02:00
parent 1a880d3452
commit 5f1607f0d3
4 changed files with 78 additions and 5 deletions
+53 -1
View File
@@ -180,16 +180,38 @@ export default function App() {
} catch (e) {}
};
const updateUrlParam = (id) => {
if (!id) return;
try {
const url = new URL(window.location.href);
url.searchParams.set('event', id);
window.history.replaceState(null, '', url.pathname + url.search);
} catch (e) {}
};
const refreshEvents = async () => {
try {
const data = await apiFetch('/events/');
const list = data.results || data;
setEvents(list);
if (list.length > 0 && !selectedEventId) {
// Check URL query parameters for deep linking (?event=12)
const urlParams = new URLSearchParams(window.location.search);
const urlEventParam = urlParams.get('event') || urlParams.get('event_id');
const targetIdFromUrl = urlEventParam ? parseInt(urlEventParam, 10) : null;
if (targetIdFromUrl && list.some(e => e.id === targetIdFromUrl)) {
setSelectedEventId(targetIdFromUrl);
fetchEventMatrix(targetIdFromUrl);
setActiveTab('schedule');
updateUrlParam(targetIdFromUrl);
} else if (list.length > 0 && !selectedEventId) {
setSelectedEventId(list[0].id);
fetchEventMatrix(list[0].id);
updateUrlParam(list[0].id);
} else if (selectedEventId) {
fetchEventMatrix(selectedEventId);
updateUrlParam(selectedEventId);
}
} catch (e) {}
};
@@ -205,6 +227,34 @@ export default function App() {
setSelectedEventId(id);
fetchEventMatrix(id);
setActiveTab('schedule');
updateUrlParam(id);
};
const fallbackCopyText = (text) => {
const el = document.createElement('textarea');
el.value = text;
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
showNotification('Direktlink zum Schichtplan in Zwischenablage kopiert! 🔗');
};
const handleShareEvent = (targetEventOrId) => {
const targetId = typeof targetEventOrId === 'object' ? targetEventOrId.id : (targetEventOrId || selectedEventId);
if (!targetId) return;
const shareUrl = `${window.location.origin}${window.location.pathname}?event=${targetId}`;
if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(shareUrl).then(() => {
showNotification('Direktlink zum Schichtplan in Zwischenablage kopiert! 🔗');
}).catch(() => {
fallbackCopyText(shareUrl);
});
} else {
fallbackCopyText(shareUrl);
}
};
const handleLogout = () => {
@@ -464,6 +514,7 @@ export default function App() {
alert(err.message || 'Aktion fehlgeschlagen.');
}
}}
onShareEvent={handleShareEvent}
onEditEvent={(evt) => {
setEventToEdit(evt);
setActiveTab('event-editor');
@@ -572,6 +623,7 @@ export default function App() {
onGenerateClaimLink={handleGenerateClaimLink}
onExportPdf={handleExportPdf}
onPrintView={handlePrintView}
onShareLink={() => handleShareEvent(selectedEventId)}
/>
</div>
)}