fix: buttons not working

This commit is contained in:
2025-11-10 12:00:15 +01:00
parent f1d5d6bfee
commit 4c3c4afe27
3 changed files with 68 additions and 46 deletions

View File

@@ -117,3 +117,22 @@ pre {
width: 100%;
}
}
@keyframes dashboard-row-glow {
0% {
background-color: rgba(59, 130, 246, 0.25);
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
}
60% {
background-color: rgba(59, 130, 246, 0.15);
box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.15);
}
100% {
background-color: transparent;
box-shadow: 0 0 0 0 transparent;
}
}
.dashboard-row-highlight {
animation: dashboard-row-glow 2.5s ease forwards;
}

View File

@@ -1,4 +1,4 @@
import React, { useState, useEffect, useCallback, useMemo } from 'react';
import React, { useState, useEffect, useCallback, useMemo, useRef } from 'react';
import { BrowserRouter as Router, Routes, Route, Navigate } from 'react-router-dom';
import { startOfDay } from 'date-fns';
import './App.css';
@@ -40,6 +40,10 @@ function App() {
const [activeRangePicker, setActiveRangePicker] = useState(null);
const [notificationPanelOpen, setNotificationPanelOpen] = useState(false);
const [focusedStoreId, setFocusedStoreId] = useState(null);
const configRef = useRef(config);
useEffect(() => {
configRef.current = config;
}, [config]);
const minSelectableDate = useMemo(() => startOfDay(new Date()), []);
const weekdays = ['Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag', 'Sonntag'];
@@ -681,16 +685,16 @@ function App() {
};
}, [isDirty]);
const persistConfigUpdate = async (updater, successMessage, { autoCommit = false } = {}) => {
if (!session?.token) {
const persistConfigUpdate = useCallback(
async (updater, successMessage, { autoCommit = false } = {}) => {
const baseConfig = configRef.current;
const nextConfigState = typeof updater === 'function' ? updater(baseConfig) : updater;
if (!nextConfigState) {
return;
}
let nextConfigState;
setConfig((prev) => {
nextConfigState = typeof updater === 'function' ? updater(prev) : updater;
return nextConfigState;
});
if (!nextConfigState) {
setConfig(nextConfigState);
if (!session?.token) {
setIsDirty(true);
return;
}
if (!autoCommit) {
@@ -721,7 +725,9 @@ function App() {
setIsDirty(true);
}
}
};
},
[authorizedFetch, session?.token]
);
const deleteEntry = async (entryId) => {
const confirmed = await askConfirmation({

View File

@@ -43,17 +43,14 @@ const DashboardView = ({
return;
}
row.scrollIntoView({ behavior: 'smooth', block: 'center' });
row.classList.add('ring-4', 'ring-blue-400', 'bg-blue-50', 'transition');
row.style.transition = 'background-color 0.8s ease, box-shadow 0.8s ease';
row.classList.add('dashboard-row-highlight', 'ring-4', 'ring-blue-400');
const timeout = setTimeout(() => {
row.classList.remove('ring-4', 'ring-blue-400');
row.style.backgroundColor = 'transparent';
setTimeout(onClearFocus, 600);
}, 2200);
row.classList.remove('dashboard-row-highlight', 'ring-4', 'ring-blue-400');
onClearFocus();
}, 2500);
return () => {
clearTimeout(timeout);
row.classList.remove('ring-4', 'ring-blue-400');
row.style.backgroundColor = 'transparent';
row.classList.remove('dashboard-row-highlight', 'ring-4', 'ring-blue-400');
};
}, [focusedStoreId, onClearFocus]);
const {