Feature: Show Past Week Instead of "Enjoy the Weekend"
FeatureRequest enum:NO_WEEKENDS Description: Zrušení "užívejte víkend", místo toho umožnit zpětně náhled na uplynulý týden
Implementation Notes
Currently on weekends, the app shows a "enjoy the weekend" message. Instead, show the previous week's menu data for review.
Key files to modify:
client/src/App.tsx – Remove/replace weekend detection logic that shows the idle message; instead load and display the last working week's data
server/src/service.ts – Ensure the API can serve historical menu data for past dates
Approach:
Modify the weekend detection in the client to fetch Friday's (or the last weekday's) data instead of showing a static message
Allow browsing the full previous week using the existing day navigation arrows
Ensure the server returns cached/stored menu data for past dates
Optionally show a subtle banner indicating the user is viewing past data
## Feature: Show Past Week Instead of "Enjoy the Weekend"
**FeatureRequest enum:** `NO_WEEKENDS`
**Description:** Zrušení "užívejte víkend", místo toho umožnit zpětně náhled na uplynulý týden
### Implementation Notes
Currently on weekends, the app shows a "enjoy the weekend" message. Instead, show the previous week's menu data for review.
**Key files to modify:**
- `client/src/App.tsx` – Remove/replace weekend detection logic that shows the idle message; instead load and display the last working week's data
- `server/src/service.ts` – Ensure the API can serve historical menu data for past dates
**Approach:**
1. Modify the weekend detection in the client to fetch Friday's (or the last weekday's) data instead of showing a static message
2. Allow browsing the full previous week using the existing day navigation arrows
3. Ensure the server returns cached/stored menu data for past dates
4. Optionally show a subtle banner indicating the user is viewing past data
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Feature: Show Past Week Instead of "Enjoy the Weekend"
FeatureRequest enum:
NO_WEEKENDSDescription: Zrušení "užívejte víkend", místo toho umožnit zpětně náhled na uplynulý týden
Implementation Notes
Currently on weekends, the app shows a "enjoy the weekend" message. Instead, show the previous week's menu data for review.
Key files to modify:
client/src/App.tsx– Remove/replace weekend detection logic that shows the idle message; instead load and display the last working week's dataserver/src/service.ts– Ensure the API can serve historical menu data for past datesApproach: