Compare commits
94 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 986c36b677 | |||
| 67abbf19b5 | |||
|
a26d6cf85c
|
|||
|
640c7ed41d
|
|||
|
a166634db8
|
|||
| 916766450a | |||
| 5e596c3b99 | |||
| 3ba5fdd086 | |||
| 03f4e438a3 | |||
| b591411d10 | |||
|
8a588cf486
|
|||
|
0e4dc061b8
|
|||
|
7fd3ba0fc4
|
|||
| 94b8f0a452 | |||
| 3e6ecd4e6a | |||
| f12dc7b562 | |||
| 8aef00ab05 | |||
|
d91c8db49c
|
|||
| d8714b2086 | |||
| c7f78cf2c9 | |||
| 1efe2b8f7d | |||
| 5f03471541 | |||
| 21d7224fb4 | |||
| abc3d070cc | |||
| cca751752d | |||
| d2f45be2d3 | |||
| 936b33cc80 | |||
| 774be3df6d | |||
| 5f903797f1 | |||
| a2d45ad7e7 | |||
| 4da3ce3b10 | |||
| e2615edc0f | |||
| a0d4921d87 | |||
| 8b1703dce9 | |||
| 3ed781d0cf | |||
| 70ed59ab9d | |||
| 6b2deff215 | |||
| ace4130171 | |||
| 9383cd7d4c | |||
| db1fe473cd | |||
| d7c8a4663d | |||
| ecbbeb2cec | |||
| e9c570b3d5 | |||
| f400d1c5f2 | |||
| ec6df8700b | |||
| 85cda34881 | |||
| d91c48c599 | |||
| e83cf14594 | |||
| 2067c21a29 | |||
| 99260a3250 | |||
| 091294f7f3 | |||
| bfe819020d | |||
| 467e3c155a | |||
| d3224a36d5 | |||
|
64d85036fd
|
|||
| fe6bb3290e | |||
| 1e1e23df80 | |||
|
e5999852b7
|
|||
|
4e7b83b667
|
|||
|
d6729388ab
|
|||
|
e9696f722c
|
|||
|
fdeb2636c2
|
|||
|
82ed16715f
|
|||
| 44cf749bc9 | |||
| a1b1eed86d | |||
| f8a65d7177 | |||
| 607bcd9bf5 | |||
| b6fdf1de98 | |||
| 27e56954bd | |||
| 20cc7259a3 | |||
| d62f6c1f5a | |||
| b77914404b | |||
| 8506b4e79f | |||
|
5f79a9431c
|
|||
|
cc98c2be0d
|
|||
| a849f4e922 | |||
| ac6727efa5 | |||
| f13cd4ffa9 | |||
| 086646fd1c | |||
| b8629afef2 | |||
| d366ac39d4 | |||
| fdd42dc46a | |||
| 2b7197eff6 | |||
| 6f43c74769 | |||
| d85c764c88 | |||
| 37cacd895a | |||
| 6a1da97ef1 | |||
|
f91973f1a4
|
|||
|
7cf9179a87
|
|||
|
54e5be6b6a
|
|||
|
c264f9921e
|
|||
|
e03ba45415
|
|||
|
20f4ee0427
|
|||
|
be4cee4cdb
|
@@ -0,0 +1,261 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "**"
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
# ─── 1. Generate OpenAPI types ────────────────────────────────────────────
|
||||||
|
|
||||||
|
generate-types:
|
||||||
|
name: Generate TypeScript types
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22"
|
||||||
|
|
||||||
|
- run: corepack enable
|
||||||
|
|
||||||
|
- run: cd types && yarn install --frozen-lockfile && yarn openapi-ts
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: types-gen
|
||||||
|
path: types/gen
|
||||||
|
|
||||||
|
# ─── 2a. Server unit tests ────────────────────────────────────────────────
|
||||||
|
|
||||||
|
server-test:
|
||||||
|
name: Server unit tests
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: generate-types
|
||||||
|
env:
|
||||||
|
NODE_ENV: test
|
||||||
|
JWT_SECRET: test-secret-min-32-chars-aaaaaaa!
|
||||||
|
MOCK_DATA: "true"
|
||||||
|
STORAGE: json
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22"
|
||||||
|
|
||||||
|
- run: corepack enable
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: types-gen
|
||||||
|
path: types/gen
|
||||||
|
|
||||||
|
- run: cd server && yarn install --frozen-lockfile && yarn test
|
||||||
|
|
||||||
|
# ─── 2b. Build server ─────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
server-build:
|
||||||
|
name: Build server
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: generate-types
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22"
|
||||||
|
|
||||||
|
- run: corepack enable
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: types-gen
|
||||||
|
path: types/gen
|
||||||
|
|
||||||
|
- run: cd types && yarn install --frozen-lockfile
|
||||||
|
|
||||||
|
- run: cd server && yarn install --frozen-lockfile && yarn build
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: server-dist
|
||||||
|
path: server/dist
|
||||||
|
|
||||||
|
# ─── 2c. Build client ─────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
client-build:
|
||||||
|
name: Build client
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: generate-types
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22"
|
||||||
|
|
||||||
|
- run: corepack enable
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: types-gen
|
||||||
|
path: types/gen
|
||||||
|
|
||||||
|
- run: cd types && yarn install --frozen-lockfile
|
||||||
|
|
||||||
|
- run: cd client && yarn install --frozen-lockfile && yarn build
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: client-dist
|
||||||
|
path: client/dist
|
||||||
|
|
||||||
|
# ─── 3. Playwright E2E tests ──────────────────────────────────────────────
|
||||||
|
|
||||||
|
e2e:
|
||||||
|
name: Playwright E2E tests
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [ server-build, client-build ]
|
||||||
|
container: mcr.microsoft.com/playwright:v1.59.1-jammy
|
||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: redis/redis-stack-server:7.4.0-v1
|
||||||
|
env:
|
||||||
|
REDIS_ARGS: "--save '' --loglevel warning"
|
||||||
|
env:
|
||||||
|
CI: "true"
|
||||||
|
NODE_ENV: test
|
||||||
|
JWT_SECRET: test-secret-min-32-chars-aaaaaaa!
|
||||||
|
MOCK_DATA: "true"
|
||||||
|
STORAGE: redis
|
||||||
|
REDIS_HOST: redis
|
||||||
|
REDIS_PORT: "6379"
|
||||||
|
HTTP_REMOTE_USER_ENABLED: "true"
|
||||||
|
HTTP_REMOTE_USER_HEADER_NAME: remote-user
|
||||||
|
HTTP_REMOTE_TRUSTED_IPS: "127.0.0.1,::1,::ffff:127.0.0.1"
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: server-dist
|
||||||
|
path: server/dist
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: client-dist
|
||||||
|
path: client/dist
|
||||||
|
|
||||||
|
- name: Install server dependencies
|
||||||
|
run: cd server && yarn install --frozen-lockfile
|
||||||
|
|
||||||
|
- name: Copy client build into server/public
|
||||||
|
run: cp -r client/dist server/public
|
||||||
|
|
||||||
|
- name: Install e2e dependencies and browsers
|
||||||
|
run: cd e2e && yarn install --frozen-lockfile && yarn playwright install firefox
|
||||||
|
--with-deps
|
||||||
|
|
||||||
|
- name: Run Playwright tests
|
||||||
|
run: cd e2e && yarn test
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
name: playwright-report
|
||||||
|
path: |
|
||||||
|
e2e/playwright-report
|
||||||
|
e2e/test-results
|
||||||
|
|
||||||
|
# ─── 4. Build and push Docker image (master only) ─────────────────────────
|
||||||
|
|
||||||
|
docker-build:
|
||||||
|
name: Build and push Docker image
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [ server-build, client-build, server-test, e2e ]
|
||||||
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22"
|
||||||
|
|
||||||
|
- run: corepack enable
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: server-dist
|
||||||
|
path: server/dist
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: client-dist
|
||||||
|
path: client/dist
|
||||||
|
|
||||||
|
- name: Install server production dependencies
|
||||||
|
run: cd server && yarn install --frozen-lockfile --production
|
||||||
|
|
||||||
|
- uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REPO_URL }}
|
||||||
|
username: ${{ secrets.REPO_USERNAME }}
|
||||||
|
password: ${{ secrets.REPO_PASSWORD }}
|
||||||
|
|
||||||
|
- uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: Dockerfile
|
||||||
|
target: runner-prebuilt
|
||||||
|
platforms: linux/amd64
|
||||||
|
push: true
|
||||||
|
tags: ${{ secrets.REPO_URL }}/${{ secrets.REPO_NAME }}:latest
|
||||||
|
|
||||||
|
# ─── 5. Notifications ────────────────────────
|
||||||
|
|
||||||
|
notify:
|
||||||
|
name: Notify
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [ server-build, client-build, server-test, e2e, docker-build ]
|
||||||
|
if: always() && github.event_name == 'push'
|
||||||
|
steps:
|
||||||
|
- name: Send webhook
|
||||||
|
env:
|
||||||
|
DISCORD_WEBHOOK_ID: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
||||||
|
DISCORD_WEBHOOK_TOKEN: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
||||||
|
NTFY_URL: ${{ secrets.NTFY_URL }}
|
||||||
|
BUILD_RESULT: ${{ needs.docker-build.result }}
|
||||||
|
RUN_NUMBER: ${{ github.run_number }}
|
||||||
|
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{
|
||||||
|
github.run_id }}
|
||||||
|
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
|
||||||
|
COMMIT_AUTHOR: ${{ github.event.head_commit.author.name }}
|
||||||
|
run: |
|
||||||
|
if [ "$BUILD_RESULT" = "success" ]; then
|
||||||
|
MSG="✅ Sestavení #${RUN_NUMBER} proběhlo úspěšně."
|
||||||
|
NTFY_TAGS="white_check_mark"
|
||||||
|
else
|
||||||
|
MSG="❌ Sestavení #${RUN_NUMBER} selhalo."
|
||||||
|
NTFY_TAGS="x"
|
||||||
|
fi
|
||||||
|
FULL_MSG="$(printf '%s\n\nPipeline: %s\nPoslední commit: %sAutor: %s' \
|
||||||
|
"$MSG" "$RUN_URL" "$COMMIT_MESSAGE" "$COMMIT_AUTHOR")"
|
||||||
|
curl -s -X POST \
|
||||||
|
"https://discord.com/api/webhooks/${DISCORD_WEBHOOK_ID}/${DISCORD_WEBHOOK_TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
--data "$(jq -n --arg content "$FULL_MSG" '{content: $content}')"
|
||||||
|
curl -s -X POST "${NTFY_URL}" \
|
||||||
|
-H "Title: Luncher CI #${RUN_NUMBER}" \
|
||||||
|
-H "Tags: ${NTFY_TAGS}" \
|
||||||
|
-H "Click: ${RUN_URL}" \
|
||||||
|
-d "${FULL_MSG}"
|
||||||
@@ -1,2 +1,9 @@
|
|||||||
node_modules
|
node_modules
|
||||||
types/gen
|
types/gen
|
||||||
|
**.DS_Store
|
||||||
|
.mcp.json
|
||||||
|
.claude/settings.local.json
|
||||||
|
server/public/
|
||||||
|
.claude/*.lock
|
||||||
|
.claude/worktrees
|
||||||
|
.playwright-mcp
|
||||||
Vendored
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Server (ts-node, debug)",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"cwd": "${workspaceFolder}/server",
|
||||||
|
"runtimeArgs": ["-r", "ts-node/register"],
|
||||||
|
"program": "${workspaceFolder}/server/src/index.ts",
|
||||||
|
"env": { "NODE_ENV": "development" },
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"skipFiles": ["<node_internals>/**"],
|
||||||
|
"preLaunchTask": "types: openapi-ts"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Client (vite + Edge)",
|
||||||
|
"type": "msedge",
|
||||||
|
"request": "launch",
|
||||||
|
"url": "http://localhost:3000",
|
||||||
|
"webRoot": "${workspaceFolder}/client",
|
||||||
|
"preLaunchTask": "client: vite"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"compounds": [
|
||||||
|
{
|
||||||
|
"name": "Dev: server + client",
|
||||||
|
"configurations": ["Server (ts-node, debug)", "Client (vite + Edge)"],
|
||||||
|
"stopAll": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Vendored
+67
@@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "types: openapi-ts",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "yarn openapi-ts",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/types"
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "silent",
|
||||||
|
"panel": "dedicated"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "server: startReload",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "yarn startReload",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/server",
|
||||||
|
"env": {
|
||||||
|
"NODE_ENV": "development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"isBackground": true,
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "always",
|
||||||
|
"panel": "dedicated",
|
||||||
|
"group": "dev"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "client: vite",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "yarn start",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/client"
|
||||||
|
},
|
||||||
|
"isBackground": true,
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "always",
|
||||||
|
"panel": "dedicated",
|
||||||
|
"group": "dev"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "dev: server+client",
|
||||||
|
"dependsOn": [
|
||||||
|
"server: startReload",
|
||||||
|
"client: vite"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "dev: all",
|
||||||
|
"dependsOrder": "sequence",
|
||||||
|
"dependsOn": [
|
||||||
|
"types: openapi-ts",
|
||||||
|
"dev: server+client"
|
||||||
|
],
|
||||||
|
"problemMatcher": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
variables:
|
|
||||||
- &node_image "node:22-alpine"
|
|
||||||
- &branch "master"
|
|
||||||
|
|
||||||
when:
|
|
||||||
- event: push
|
|
||||||
branch: *branch
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Generate TypeScript types
|
|
||||||
image: *node_image
|
|
||||||
commands:
|
|
||||||
- cd types
|
|
||||||
- yarn install --frozen-lockfile
|
|
||||||
- yarn openapi-ts
|
|
||||||
- name: Install server dependencies
|
|
||||||
image: *node_image
|
|
||||||
commands:
|
|
||||||
- cd server
|
|
||||||
- yarn install --frozen-lockfile
|
|
||||||
depends_on: [Generate TypeScript types]
|
|
||||||
- name: Install client dependencies
|
|
||||||
image: *node_image
|
|
||||||
commands:
|
|
||||||
- cd client
|
|
||||||
- yarn install --frozen-lockfile
|
|
||||||
depends_on: [Generate TypeScript types]
|
|
||||||
- name: Build server
|
|
||||||
depends_on: [Install server dependencies]
|
|
||||||
image: *node_image
|
|
||||||
commands:
|
|
||||||
- cd server
|
|
||||||
- yarn build
|
|
||||||
- name: Build client
|
|
||||||
depends_on: [Install client dependencies]
|
|
||||||
image: *node_image
|
|
||||||
commands:
|
|
||||||
- cd client
|
|
||||||
- yarn build
|
|
||||||
- name: Build Docker image
|
|
||||||
depends_on: [Build server, Build client]
|
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
|
||||||
settings:
|
|
||||||
dockerfile: Dockerfile-Woodpecker
|
|
||||||
platforms: linux/amd64
|
|
||||||
registry:
|
|
||||||
from_secret: REPO_URL
|
|
||||||
username:
|
|
||||||
from_secret: REPO_USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: REPO_PASSWORD
|
|
||||||
repo:
|
|
||||||
from_secret: REPO_NAME
|
|
||||||
- name: Discord notification - build
|
|
||||||
image: appleboy/drone-discord
|
|
||||||
depends_on: [Build Docker image]
|
|
||||||
when:
|
|
||||||
- status: [success, failure]
|
|
||||||
settings:
|
|
||||||
webhook_id:
|
|
||||||
from_secret: DISCORD_WEBHOOK_ID
|
|
||||||
webhook_token:
|
|
||||||
from_secret: DISCORD_WEBHOOK_TOKEN
|
|
||||||
message: "{{#success build.status}}✅ Sestavení {{build.number}} proběhlo úspěšně.{{else}}❌ Sestavení {{build.number}} selhalo.{{/success}}\n\nPipeline: {{build.link}}\nPoslední commit: {{commit.message}}Autor: {{commit.author}}"
|
|
||||||
@@ -0,0 +1,128 @@
|
|||||||
|
# CLAUDE.md
|
||||||
|
|
||||||
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
|
||||||
|
Luncher is a lunch management app for teams — daily restaurant menus, food ordering, pizza day events, and payment QR codes. Czech-language UI. Full-stack TypeScript monorepo.
|
||||||
|
|
||||||
|
## Monorepo Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
types/ → Shared OpenAPI-generated TypeScript types (source of truth: types/api.yml)
|
||||||
|
server/ → Express 5 backend (Node.js 22, ts-node)
|
||||||
|
client/ → React 19 frontend (Vite 7, React Bootstrap)
|
||||||
|
e2e/ → Playwright E2E tests (separate package)
|
||||||
|
```
|
||||||
|
|
||||||
|
Each of the four directories has its own `package.json`. Package manager: **Yarn Classic**.
|
||||||
|
|
||||||
|
Deployment files at repo root: `Dockerfile` (multi-stage, dva runner targety: výchozí `runner` pro lokální build, `runner-prebuilt` pro CI s předem sestavenými artefakty), `compose.yml`, `compose-traefik.yml`.
|
||||||
|
|
||||||
|
## Development Commands
|
||||||
|
|
||||||
|
### Initial setup
|
||||||
|
```bash
|
||||||
|
cd types && yarn install && yarn openapi-ts # Generate API types first
|
||||||
|
cd ../server && yarn install
|
||||||
|
cd ../client && yarn install
|
||||||
|
cd ../e2e && yarn install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Running dev environment
|
||||||
|
```bash
|
||||||
|
# All-in-one (tmux):
|
||||||
|
./run_dev.sh
|
||||||
|
|
||||||
|
# Or manually in separate terminals:
|
||||||
|
cd server && NODE_ENV=development yarn startReload # Port 3001, nodemon watch
|
||||||
|
cd client && yarn start # Port 3000, proxies /api → 3001
|
||||||
|
```
|
||||||
|
|
||||||
|
### Building
|
||||||
|
```bash
|
||||||
|
cd types && yarn openapi-ts # Regenerate types from api.yml
|
||||||
|
cd server && yarn build # tsc → server/dist
|
||||||
|
cd client && yarn build # tsc --noEmit + vite build → client/dist
|
||||||
|
```
|
||||||
|
|
||||||
|
### Tests
|
||||||
|
```bash
|
||||||
|
# Server unit tests (Jest)
|
||||||
|
cd server && yarn test # All tests in server/src/tests/
|
||||||
|
cd server && yarn test dates # Run one file by name
|
||||||
|
cd server && yarn test -t "name" # Run by test name pattern
|
||||||
|
|
||||||
|
# E2E (Playwright) — requires prebuilt server
|
||||||
|
cd server && yarn build
|
||||||
|
cd e2e && yarn test # chromium + firefox, baseURL 127.0.0.1:3001
|
||||||
|
cd e2e && yarn test:ui # interactive UI mode
|
||||||
|
cd e2e && yarn report # open last HTML report
|
||||||
|
```
|
||||||
|
|
||||||
|
Jest setup (`server/src/tests/setupEnv.ts`) forces `STORAGE=memory`, deletes `MOCK_DATA`, and sets a fixed `JWT_SECRET`. Playwright auto-starts the prebuilt server and authenticates via the `remote-user: e2e-user` trusted-header path; locally uses `STORAGE=json` + `MOCK_DATA=true`, CI uses `STORAGE=redis`.
|
||||||
|
|
||||||
|
### CI pipeline
|
||||||
|
Gitea Actions — `.gitea/workflows/ci.yaml` (no `.github/` equivalent):
|
||||||
|
|
||||||
|
1. `generate-types` — runs `yarn openapi-ts`, uploads artifact
|
||||||
|
2. `server-test` — Jest
|
||||||
|
3. `server-build` + `client-build` — parallel tsc/vite builds
|
||||||
|
4. `e2e` — Playwright in `mcr.microsoft.com/playwright:v1.59.1-jammy` with a Redis service container; only Firefox installed in CI
|
||||||
|
5. `docker-build` — master branch only, uses `Dockerfile` with `--target runner-prebuilt` (skládá image z artefaktů `server-build` + `client-build`)
|
||||||
|
6. `notify` — Discord + ntfy webhooks
|
||||||
|
|
||||||
|
### Formatting
|
||||||
|
Prettier is installed in `client/` (devDependency only, no script or config) — invoke via `yarn prettier <path>` with defaults.
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
### API Types (types/)
|
||||||
|
- OpenAPI 3.0 spec in `types/api.yml` — all API endpoints and DTOs defined here
|
||||||
|
- `api.yml` is a thin aggregator — actual endpoint specs live in `types/paths/<domain>/*.yml`, shared schemas in `types/schemas/_index.yml`
|
||||||
|
- `yarn openapi-ts` generates `types/gen/` (client.gen.ts, sdk.gen.ts, types.gen.ts)
|
||||||
|
- Both server and client import from these generated types
|
||||||
|
- **When changing API contracts: update api.yml first, then regenerate**
|
||||||
|
|
||||||
|
### Server (server/src/)
|
||||||
|
- **Entry:** `index.ts` — Express app + Socket.io setup
|
||||||
|
- **Routes:** `routes/` — 9 modular Express route handlers (food, pizzaDay, voting, notifications, qr, stats, easterEgg, dev, changelog)
|
||||||
|
- **Services:** domain logic files at root level (`service.ts`, `pizza.ts`, `restaurants.ts`, `chefie.ts`, `voting.ts`, `stats.ts`, `qr.ts`, `notifikace.ts`)
|
||||||
|
- **Helpers:** `mock.ts` (fake menu data for `MOCK_DATA=true`), `pushReminder.ts` (push notification reminders), `utils.ts` (shared utilities)
|
||||||
|
- **Auth:** `auth.ts` — JWT + optional trusted-header authentication
|
||||||
|
- **Storage:** `storage/index.ts` factory selects implementation; backends: `json.ts` (file-based, dev), `redis.ts` (production), `memory.ts` (tests). Data keyed by date (YYYY-MM-DD).
|
||||||
|
- **Restaurant scrapers:** Cheerio-based HTML parsing for daily menus from multiple restaurants
|
||||||
|
- **Pizza Chefie integration:** `chefie.ts` scrapes pizzachefie.cz for Pizza day menus and salads (only active when a Pizza day is open)
|
||||||
|
- **WebSocket:** `websocket.ts` — Socket.io for real-time client updates
|
||||||
|
- **Mock mode:** `MOCK_DATA=true` env var returns fake menus (useful for weekend/holiday dev)
|
||||||
|
- **Config:** `.env.development` / `.env.production` (see `.env.template` for all options)
|
||||||
|
|
||||||
|
### Client (client/src/)
|
||||||
|
- **Entry:** `index.tsx` → `App.tsx` → `AppRoutes.tsx`; `Login.tsx` is the auth screen; `FallingLeaves.tsx` is a seasonal visual effect
|
||||||
|
- **Pages:** `pages/` (StatsPage)
|
||||||
|
- **Components:** `components/` (Header, Footer, Loader, PizzaOrderList, PizzaOrderRow, and modals in `components/modals/`)
|
||||||
|
- **Context providers:** `context/` — `auth.tsx`, `settings.tsx`, `socket.js`, `eggs.tsx` (note: `socket.js` is the only non-TSX context file)
|
||||||
|
- **Hooks:** `hooks/` (`usePushReminder.ts`)
|
||||||
|
- **Utils:** `utils/` (`parsePrice.ts`)
|
||||||
|
- **Styling:** Bootstrap 5 + React Bootstrap + custom SCSS files (co-located with components)
|
||||||
|
- **API calls:** use OpenAPI-generated SDK from `types/gen/`
|
||||||
|
- **Routing:** React Router DOM v7
|
||||||
|
|
||||||
|
### Data Flow
|
||||||
|
1. Client calls API via generated SDK → Express routes
|
||||||
|
2. Server scrapes restaurant websites or returns cached data
|
||||||
|
3. Storage: Redis (production) or JSON file (development)
|
||||||
|
4. Socket.io broadcasts changes to all connected clients
|
||||||
|
|
||||||
|
## Environment
|
||||||
|
|
||||||
|
- **Server env files:** `server/.env.development`, `server/.env.production` (see `server/.env.template`)
|
||||||
|
- Key vars: `JWT_SECRET`, `STORAGE` (json/redis/memory), `MOCK_DATA`, `REDIS_HOST`, `REDIS_PORT`
|
||||||
|
- **Docker:** multi-stage Dockerfile, `compose.yml` for app + Redis. Timezone: Europe/Prague.
|
||||||
|
|
||||||
|
## Conventions
|
||||||
|
|
||||||
|
- Czech naming for domain variables and UI strings; English for infrastructure code
|
||||||
|
- TypeScript strict mode in both client and server
|
||||||
|
- Server module resolution: Node16; Client: ESNext/bundler
|
||||||
|
- `TODO.md` tracks open bugs and roadmap items — worth scanning before starting non-trivial work
|
||||||
+36
-8
@@ -1,6 +1,6 @@
|
|||||||
ARG NODE_VERSION="node:22-alpine"
|
ARG NODE_VERSION="node:22-alpine"
|
||||||
|
|
||||||
# Builder
|
# ─── Builder ──────────────────────────────────────────────────────────────────
|
||||||
FROM ${NODE_VERSION} AS builder
|
FROM ${NODE_VERSION} AS builder
|
||||||
|
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
@@ -62,8 +62,9 @@ RUN yarn build
|
|||||||
WORKDIR /build/client
|
WORKDIR /build/client
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
# Runner
|
# ─── Runner base ──────────────────────────────────────────────────────────────
|
||||||
FROM ${NODE_VERSION}
|
# Společný základ pro oba runner targety – nastaví prostředí a metadata běhu.
|
||||||
|
FROM ${NODE_VERSION} AS runner-base
|
||||||
|
|
||||||
RUN apk add --no-cache tzdata
|
RUN apk add --no-cache tzdata
|
||||||
ENV TZ=Europe/Prague \
|
ENV TZ=Europe/Prague \
|
||||||
@@ -72,6 +73,17 @@ ENV TZ=Europe/Prague \
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Export /data/db.json do složky /data
|
||||||
|
VOLUME ["/data"]
|
||||||
|
|
||||||
|
EXPOSE 3001
|
||||||
|
|
||||||
|
CMD [ "node", "./server/src/index.js" ]
|
||||||
|
|
||||||
|
# ─── Runner (default) ─────────────────────────────────────────────────────────
|
||||||
|
# Použití: docker build . (lokální sestavení – vše se buildí uvnitř image)
|
||||||
|
FROM runner-base AS runner
|
||||||
|
|
||||||
# Vykopírování sestaveného serveru
|
# Vykopírování sestaveného serveru
|
||||||
COPY --from=builder /build/server/node_modules ./server/node_modules
|
COPY --from=builder /build/server/node_modules ./server/node_modules
|
||||||
COPY --from=builder /build/server/dist ./
|
COPY --from=builder /build/server/dist ./
|
||||||
@@ -82,12 +94,28 @@ COPY --from=builder /build/client/dist ./public
|
|||||||
# Zkopírování produkčních .env serveru
|
# Zkopírování produkčních .env serveru
|
||||||
COPY /server/.env.production ./server
|
COPY /server/.env.production ./server
|
||||||
|
|
||||||
|
# Zkopírování changelogů (seznamu novinek)
|
||||||
|
COPY /server/changelogs ./server/changelogs
|
||||||
|
|
||||||
# Zkopírování konfigurace easter eggů
|
# Zkopírování konfigurace easter eggů
|
||||||
RUN if [ -f /server/.easter-eggs.json ]; then cp /server/.easter-eggs.json ./server/; fi
|
RUN if [ -f ./server/.easter-eggs.json ]; then cp ./server/.easter-eggs.json ./server/; fi
|
||||||
|
|
||||||
# Export /data/db.json do složky /data
|
# ─── Runner (prebuilt) ────────────────────────────────────────────────────────
|
||||||
VOLUME ["/data"]
|
# Použití: docker build --target runner-prebuilt .
|
||||||
|
# Očekává předem sestavené artefakty v build kontextu (server/dist,
|
||||||
|
# client/dist, server/node_modules) – využívá Gitea Actions, kde se
|
||||||
|
# server i klient buildí v separátních jobech a sem se jen kopírují.
|
||||||
|
FROM runner-base AS runner-prebuilt
|
||||||
|
|
||||||
EXPOSE 3000
|
# Vykopírování sestaveného serveru
|
||||||
|
COPY ./server/node_modules ./server/node_modules
|
||||||
|
COPY ./server/dist ./
|
||||||
|
|
||||||
CMD [ "node", "./server/src/index.js" ]
|
# Vykopírování sestaveného klienta
|
||||||
|
COPY ./client/dist ./public
|
||||||
|
|
||||||
|
# Zkopírování changelogů (seznamu novinek)
|
||||||
|
COPY ./server/changelogs ./server/changelogs
|
||||||
|
|
||||||
|
# Zkopírování konfigurace easter eggů
|
||||||
|
RUN if [ -f ./server/.easter-eggs.json ]; then cp ./server/.easter-eggs.json ./server/; fi
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
ARG NODE_VERSION="node:22-alpine"
|
|
||||||
|
|
||||||
FROM ${NODE_VERSION}
|
|
||||||
|
|
||||||
RUN apk add --no-cache tzdata
|
|
||||||
ENV TZ=Europe/Prague \
|
|
||||||
LC_ALL=cs_CZ.UTF-8 \
|
|
||||||
NODE_ENV=production
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# Vykopírování sestaveného serveru
|
|
||||||
COPY ./server/node_modules ./server/node_modules
|
|
||||||
COPY ./server/dist ./
|
|
||||||
# TODO tohle není dobře, má to být součástí serveru
|
|
||||||
# COPY ./server/resources ./resources
|
|
||||||
|
|
||||||
# Vykopírování sestaveného klienta
|
|
||||||
COPY ./client/dist ./public
|
|
||||||
|
|
||||||
# Zkopírování konfigurace easter eggů
|
|
||||||
RUN if [ -f ./server/.easter-eggs.json ]; then cp ./server/.easter-eggs.json ./server/; fi
|
|
||||||
|
|
||||||
EXPOSE 3000
|
|
||||||
|
|
||||||
CMD [ "node", "./server/src/index.js" ]
|
|
||||||
@@ -1,4 +1,9 @@
|
|||||||
# TODO
|
# TODO
|
||||||
|
|
||||||
|
## HA / multi-replica follow-ups
|
||||||
|
- [ ] `foodRoutes.ts` per-pod rate limiter (`rateLimits` map) — s více replikami může uživatel překročit limit ~N× rychleji; přesunout do Redis (např. `INCR` + `EXPIRE`)
|
||||||
|
- [ ] `easterEggRoutes.ts` — náhodně generované URL easter eggů jsou per-pod; URL funguje pouze na podu, který ji vygeneroval; zvážit deterministické seedy nebo sdílení přes Redis
|
||||||
|
- [ ] `service.ts` — komplexní víceúrovňové funkce (`addChoice`, `removeChoiceIfPresent`) provádějí více po sobě jdoucích zápisů do stejného Redis klíče; pro plnou atomicitu je potřeba per-klíčový distribuovaný zámek (Redlock nebo `SET NX EX`) nebo sloučení logiky do jednoho `updateData` volání
|
||||||
- [ ] HTTP_REMOTE_TRUSTED_IPS se nikde nevalidují, hlavičky jsou přijímány odkudkoli
|
- [ ] HTTP_REMOTE_TRUSTED_IPS se nikde nevalidují, hlavičky jsou přijímány odkudkoli
|
||||||
- [ ] V případě zapnutí přihlašování přes trusted headers nefunguje standardní přihlášení (nevrátí žádnou odpověď)
|
- [ ] V případě zapnutí přihlašování přes trusted headers nefunguje standardní přihlášení (nevrátí žádnou odpověď)
|
||||||
- [ ] Nemělo by se jít dostat na přihlašovací formulář (měla by tam být nanejvýš hláška nebo přesměrování)
|
- [ ] Nemělo by se jít dostat na přihlašovací formulář (měla by tam být nanejvýš hláška nebo přesměrování)
|
||||||
|
|||||||
@@ -10,6 +10,26 @@
|
|||||||
<link rel="apple-touch-icon" href="/logo192.png" />
|
<link rel="apple-touch-icon" href="/logo192.png" />
|
||||||
<link rel="manifest" href="/manifest.json" />
|
<link rel="manifest" href="/manifest.json" />
|
||||||
<title>Luncher</title>
|
<title>Luncher</title>
|
||||||
|
<script>
|
||||||
|
(function() {
|
||||||
|
try {
|
||||||
|
var saved = localStorage.getItem('theme_preference');
|
||||||
|
var theme;
|
||||||
|
if (saved === 'dark') {
|
||||||
|
theme = 'dark';
|
||||||
|
} else if (saved === 'light') {
|
||||||
|
theme = 'light';
|
||||||
|
} else {
|
||||||
|
// 'system' nebo neuloženo - použij systémové nastavení
|
||||||
|
theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
||||||
|
}
|
||||||
|
document.documentElement.setAttribute('data-bs-theme', theme);
|
||||||
|
} catch (e) {
|
||||||
|
// Fallback pokud localStorage není dostupný
|
||||||
|
document.documentElement.setAttribute('data-bs-theme', 'light');
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
"react-router": "^7.9.5",
|
"react-router": "^7.9.5",
|
||||||
"react-router-dom": "^7.9.5",
|
"react-router-dom": "^7.9.5",
|
||||||
"react-select-search": "^4.1.6",
|
"react-select-search": "^4.1.6",
|
||||||
|
"react-snow-overlay": "^1.0.14",
|
||||||
"react-snowfall": "^2.3.0",
|
"react-snowfall": "^2.3.0",
|
||||||
"react-toastify": "^11.0.5",
|
"react-toastify": "^11.0.5",
|
||||||
"recharts": "^3.4.1",
|
"recharts": "^3.4.1",
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
// Service Worker pro Web Push notifikace (připomínka výběru oběda)
|
||||||
|
|
||||||
|
self.addEventListener('push', (event) => {
|
||||||
|
const data = event.data?.json() ?? { title: 'Luncher', body: 'Ještě nemáte zvolený oběd!' };
|
||||||
|
event.waitUntil(
|
||||||
|
self.registration.showNotification(data.title, {
|
||||||
|
body: data.body,
|
||||||
|
icon: '/favicon.ico',
|
||||||
|
tag: 'lunch-reminder',
|
||||||
|
data: { login: data.login, token: data.token },
|
||||||
|
actions: [
|
||||||
|
{ action: 'neobedvam', title: 'Mám vlastní/neobědvám' },
|
||||||
|
],
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
self.addEventListener('notificationclick', (event) => {
|
||||||
|
event.notification.close();
|
||||||
|
|
||||||
|
if (event.action === 'neobedvam') {
|
||||||
|
const { login, token } = event.notification.data ?? {};
|
||||||
|
if (login && token) {
|
||||||
|
event.waitUntil(
|
||||||
|
fetch('/api/notifications/push/quickChoice', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json' },
|
||||||
|
body: JSON.stringify({ login, token }),
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
event.waitUntil(
|
||||||
|
self.clients.matchAll({ type: 'window' }).then((clientList) => {
|
||||||
|
for (const client of clientList) {
|
||||||
|
if (client.url.includes(self.location.origin) && 'focus' in client) {
|
||||||
|
return client.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return self.clients.openWindow('/');
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});
|
||||||
+1041
-97
File diff suppressed because it is too large
Load Diff
+436
-175
@@ -1,6 +1,6 @@
|
|||||||
import React, { useContext, useEffect, useMemo, useRef, useState, useCallback } from 'react';
|
import React, { useContext, useEffect, useMemo, useRef, useState, useCallback } from 'react';
|
||||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||||
import { EVENT_DISCONNECT, EVENT_MESSAGE, SocketContext } from './context/socket';
|
import { EVENT_DISCONNECT, EVENT_MESSAGE, EVENT_PENDING_QR, SocketContext } from './context/socket';
|
||||||
import { useAuth } from './context/auth';
|
import { useAuth } from './context/auth';
|
||||||
import Login from './Login';
|
import Login from './Login';
|
||||||
import { Alert, Button, Col, Form, Row, Table } from 'react-bootstrap';
|
import { Alert, Button, Col, Form, Row, Table } from 'react-bootstrap';
|
||||||
@@ -13,15 +13,18 @@ import './App.scss';
|
|||||||
import { faCircleCheck, faNoteSticky, faTrashCan, faComment } from '@fortawesome/free-regular-svg-icons';
|
import { faCircleCheck, faNoteSticky, faTrashCan, faComment } from '@fortawesome/free-regular-svg-icons';
|
||||||
import { useSettings } from './context/settings';
|
import { useSettings } from './context/settings';
|
||||||
import Footer from './components/Footer';
|
import Footer from './components/Footer';
|
||||||
import { faChainBroken, faChevronLeft, faChevronRight, faGear, faSatelliteDish, faSearch } from '@fortawesome/free-solid-svg-icons';
|
import { faArrowUpRightFromSquare, faBasketShopping, faChainBroken, faChevronLeft, faChevronRight, faGear, faMoneyBillTransfer, faSatelliteDish, faSearch, faTriangleExclamation } from '@fortawesome/free-solid-svg-icons';
|
||||||
|
import { useNavigate } from 'react-router-dom';
|
||||||
import Loader from './components/Loader';
|
import Loader from './components/Loader';
|
||||||
import { getHumanDateTime, isInTheFuture } from './Utils';
|
import { getHumanDateTime, isInTheFuture, formatDateString } from './Utils';
|
||||||
import NoteModal from './components/modals/NoteModal';
|
import NoteModal from './components/modals/NoteModal';
|
||||||
|
import ConfirmModal from './components/modals/ConfirmModal';
|
||||||
|
import PayForAllModal from './components/modals/PayForAllModal';
|
||||||
import { useEasterEgg } from './context/eggs';
|
import { useEasterEgg } from './context/eggs';
|
||||||
import { ClientData, Food, PizzaOrder, DepartureTime, PizzaDayState, Restaurant, RestaurantDayMenu, RestaurantDayMenuMap, LunchChoice, UserLunchChoice, PizzaVariant, getData, getEasterEggImage, addPizza, removePizza, updatePizzaDayNote, createPizzaDay, deletePizzaDay, lockPizzaDay, unlockPizzaDay, finishOrder, finishDelivery, addChoice, jdemeObed, removeChoices, removeChoice, updateNote, changeDepartureTime } from '../../types';
|
import { ClientData, Food, MealSlot, PendingQr, PizzaOrder, DepartureTime, PizzaDayState, Restaurant, RestaurantDayMenu, RestaurantDayMenuMap, LunchChoice, LocationLunchChoicesMap, UserLunchChoice, PizzaVariant, getData, getEasterEggImage, addPizza, removePizza, updatePizzaDayNote, createPizzaDay, deletePizzaDay, lockPizzaDay, unlockPizzaDay, finishOrder, finishDelivery, addChoice, jdemeObed, removeChoices, removeChoice, updateNote, changeDepartureTime, setBuyer, dismissQr, generateQr } from '../../types';
|
||||||
import { getLunchChoiceName } from './enums';
|
import { getLunchChoiceName } from './enums';
|
||||||
import FallingLeaves, { LEAF_PRESETS, LEAF_COLOR_THEMES } from './FallingLeaves';
|
// import FallingLeaves, { LEAF_PRESETS, LEAF_COLOR_THEMES } from './FallingLeaves';
|
||||||
import './FallingLeaves.scss';
|
// import './FallingLeaves.scss';
|
||||||
|
|
||||||
const EVENT_CONNECT = "connect"
|
const EVENT_CONNECT = "connect"
|
||||||
|
|
||||||
@@ -58,6 +61,7 @@ const EASTER_EGG_DEFAULT_DURATION = 0.75;
|
|||||||
function App() {
|
function App() {
|
||||||
const auth = useAuth();
|
const auth = useAuth();
|
||||||
const settings = useSettings();
|
const settings = useSettings();
|
||||||
|
const navigate = useNavigate();
|
||||||
const [easterEgg, _] = useEasterEgg(auth);
|
const [easterEgg, _] = useEasterEgg(auth);
|
||||||
const [isConnected, setIsConnected] = useState<boolean>(false);
|
const [isConnected, setIsConnected] = useState<boolean>(false);
|
||||||
const [data, setData] = useState<ClientData>();
|
const [data, setData] = useState<ClientData>();
|
||||||
@@ -74,6 +78,8 @@ function App() {
|
|||||||
const [dayIndex, setDayIndex] = useState<number>();
|
const [dayIndex, setDayIndex] = useState<number>();
|
||||||
const [loadingPizzaDay, setLoadingPizzaDay] = useState<boolean>(false);
|
const [loadingPizzaDay, setLoadingPizzaDay] = useState<boolean>(false);
|
||||||
const [noteModalOpen, setNoteModalOpen] = useState<boolean>(false);
|
const [noteModalOpen, setNoteModalOpen] = useState<boolean>(false);
|
||||||
|
const [dismissQrId, setDismissQrId] = useState<string | null>(null);
|
||||||
|
const [payForAllLocationKey, setPayForAllLocationKey] = useState<LunchChoice | null>(null);
|
||||||
const [eggImage, setEggImage] = useState<Blob>();
|
const [eggImage, setEggImage] = useState<Blob>();
|
||||||
const eggRef = useRef<HTMLImageElement>(null);
|
const eggRef = useRef<HTMLImageElement>(null);
|
||||||
// Prazvláštní workaround, aby socket.io listener viděl aktuální hodnotu
|
// Prazvláštní workaround, aby socket.io listener viděl aktuální hodnotu
|
||||||
@@ -124,33 +130,74 @@ function App() {
|
|||||||
});
|
});
|
||||||
socket.on(EVENT_MESSAGE, (newData: ClientData) => {
|
socket.on(EVENT_MESSAGE, (newData: ClientData) => {
|
||||||
// console.log("Přijata nová data ze socketu", newData);
|
// console.log("Přijata nová data ze socketu", newData);
|
||||||
|
if (newData.slot === MealSlot.EXTRA) return;
|
||||||
// Aktualizujeme pouze, pokud jsme dostali data pro den, který máme aktuálně zobrazený
|
// Aktualizujeme pouze, pokud jsme dostali data pro den, který máme aktuálně zobrazený
|
||||||
if (dayIndexRef.current == null || newData.dayIndex === dayIndexRef.current) {
|
if (dayIndexRef.current == null || newData.dayIndex === dayIndexRef.current) {
|
||||||
setData(newData);
|
setData(newData);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
socket.on(EVENT_PENDING_QR, (pendingQr: PendingQr) => {
|
||||||
|
setData(prev => prev ? { ...prev, pendingQrs: [...(prev.pendingQrs ?? []), pendingQr] } : prev);
|
||||||
|
});
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
socket.off(EVENT_CONNECT);
|
socket.off(EVENT_CONNECT);
|
||||||
socket.off(EVENT_DISCONNECT);
|
socket.off(EVENT_DISCONNECT);
|
||||||
socket.off(EVENT_MESSAGE);
|
socket.off(EVENT_MESSAGE);
|
||||||
|
socket.off(EVENT_PENDING_QR);
|
||||||
}
|
}
|
||||||
}, [socket]);
|
}, [socket]);
|
||||||
|
|
||||||
|
// Připojení do osobní socket místnosti po přihlášení
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!auth?.login) {
|
if (auth?.login) {
|
||||||
|
socket.emit('join', auth.login);
|
||||||
|
}
|
||||||
|
}, [auth?.login, socket]);
|
||||||
|
|
||||||
|
// Po znovupřipojení socketu znovu vstoupit do místnosti a obnovit data
|
||||||
|
useEffect(() => {
|
||||||
|
const onReconnect = () => {
|
||||||
|
if (auth?.login) socket.emit('join', auth.login);
|
||||||
|
getData({ query: { dayIndex: dayIndexRef.current } }).then(response => {
|
||||||
|
if (response.data) {
|
||||||
|
setData(response.data);
|
||||||
|
setFood(response.data.menus);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
socket.io.on('reconnect', onReconnect);
|
||||||
|
return () => { socket.io.off('reconnect', onReconnect); };
|
||||||
|
}, [socket, auth?.login]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!auth?.login || !data?.choices) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// TODO tohle občas náhodně nezafunguje, nutno přepsat, viz https://medium.com/@teh_builder/ref-objects-inside-useeffect-hooks-eb7c15198780
|
// Pre-fill form refs from existing choices
|
||||||
// TODO nutno opravit
|
let foundKey: LunchChoice | undefined;
|
||||||
// if (data?.choices && choiceRef.current) {
|
let foundChoice: UserLunchChoice | undefined;
|
||||||
// for (let entry of Object.entries(data.choices)) {
|
for (const key of Object.keys(data.choices)) {
|
||||||
// if (entry[1].includes(auth.login)) {
|
const locationKey = key as LunchChoice;
|
||||||
// const value = entry[0] as any as number; // TODO tohle je absurdní
|
const locationChoices = data.choices[locationKey];
|
||||||
// choiceRef.current.value = Object.values(Locations)[value];
|
if (locationChoices && auth.login in locationChoices) {
|
||||||
// }
|
foundKey = locationKey;
|
||||||
// }
|
foundChoice = locationChoices[auth.login];
|
||||||
// }
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (foundKey && choiceRef.current) {
|
||||||
|
choiceRef.current.value = foundKey;
|
||||||
|
const restaurantKey = Object.keys(Restaurant).indexOf(foundKey);
|
||||||
|
if (restaurantKey > -1 && food) {
|
||||||
|
const restaurant = Object.keys(Restaurant)[restaurantKey] as Restaurant;
|
||||||
|
setFoodChoiceList(food[restaurant]?.food);
|
||||||
|
setClosed(food[restaurant]?.closed ?? false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (foundChoice?.departureTime && departureChoiceRef.current) {
|
||||||
|
departureChoiceRef.current.value = foundChoice.departureTime;
|
||||||
|
}
|
||||||
}, [auth, auth?.login, data?.choices])
|
}, [auth, auth?.login, data?.choices])
|
||||||
|
|
||||||
// Reference na mojí objednávku
|
// Reference na mojí objednávku
|
||||||
@@ -161,6 +208,11 @@ function App() {
|
|||||||
}
|
}
|
||||||
}, [auth?.login, data?.pizzaDay?.orders])
|
}, [auth?.login, data?.pizzaDay?.orders])
|
||||||
|
|
||||||
|
// Kontrola, zda má uživatel vybranou volbu PIZZA
|
||||||
|
const userHasPizzaChoice = useMemo(() => {
|
||||||
|
return auth?.login ? data?.choices?.PIZZA?.[auth.login] != null : false;
|
||||||
|
}, [data?.choices?.PIZZA, auth?.login]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (choiceRef?.current?.value && choiceRef.current.value !== "") {
|
if (choiceRef?.current?.value && choiceRef.current.value !== "") {
|
||||||
const locationKey = choiceRef.current.value as LunchChoice;
|
const locationKey = choiceRef.current.value as LunchChoice;
|
||||||
@@ -212,22 +264,103 @@ function App() {
|
|||||||
}
|
}
|
||||||
}, [auth?.login, easterEgg?.duration, easterEgg?.url, eggImage]);
|
}, [auth?.login, easterEgg?.duration, easterEgg?.url, eggImage]);
|
||||||
|
|
||||||
|
// Pomocná funkce pro kontrolu a potvrzení změny volby při existujícím Pizza day
|
||||||
|
const checkPizzaDayBeforeChange = async (newLocationKey: LunchChoice): Promise<boolean> => {
|
||||||
|
if (!auth?.login || !data) return false;
|
||||||
|
|
||||||
|
// Kontrola, zda uživatel má vybranou PIZZA a mění na něco jiného
|
||||||
|
const hasPizzaChoice = data.choices?.PIZZA?.[auth.login] != null;
|
||||||
|
const isCreator = data.pizzaDay?.creator === auth.login;
|
||||||
|
const isPizzaDayCreated = data.pizzaDay?.state === PizzaDayState.CREATED;
|
||||||
|
|
||||||
|
// Pokud není vybraná PIZZA nebo přepínáme na PIZZA, není potřeba kontrolovat
|
||||||
|
if (!hasPizzaChoice || newLocationKey === LunchChoice.PIZZA) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pokud uživatel není zakladatel Pizza day, není potřeba dialogu
|
||||||
|
if (!isCreator || !data?.pizzaDay) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uživatel je zakladatel Pizza day a mění volbu z PIZZA
|
||||||
|
if (!isPizzaDayCreated) {
|
||||||
|
// Pizza day není ve stavu CREATED, nelze změnit volbu
|
||||||
|
alert(`Nelze změnit volbu. Pizza day je ve stavu "${data.pizzaDay.state}" a musí být nejprve dokončen.`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pizza day je CREATED, zobrazit potvrzovací dialog
|
||||||
|
const confirmed = window.confirm(
|
||||||
|
'Jsi zakladatel aktivního Pizza day. Změna volby smaže celý Pizza day včetně všech objednávek. Pokračovat?'
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!confirmed) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uživatel potvrdil, smazat Pizza day
|
||||||
|
try {
|
||||||
|
await deletePizzaDay();
|
||||||
|
return true;
|
||||||
|
} catch (error: any) {
|
||||||
|
alert(`Chyba při mazání Pizza day: ${error.message || error}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const doAddClickFoodChoice = async (location: LunchChoice, foodIndex?: number) => {
|
const doAddClickFoodChoice = async (location: LunchChoice, foodIndex?: number) => {
|
||||||
if (document.getSelection()?.type !== 'Range') { // pouze pokud se nejedná o výběr textu
|
if (document.getSelection()?.type !== 'Range') { // pouze pokud se nejedná o výběr textu
|
||||||
if (auth?.login) {
|
if (canChangeChoice && auth?.login) {
|
||||||
|
// Kontrola Pizza day před změnou volby
|
||||||
|
const canProceed = await checkPizzaDayBeforeChange(location);
|
||||||
|
if (!canProceed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
await addChoice({ body: { locationKey: location, foodIndex, dayIndex } });
|
await addChoice({ body: { locationKey: location, foodIndex, dayIndex } });
|
||||||
|
await tryAutoSelectDepartureTime();
|
||||||
|
} catch (error: any) {
|
||||||
|
alert(`Chyba při změně volby: ${error.message || error}`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const doAddChoice = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
const doAddChoice = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
||||||
const locationKey = event.target.value as LunchChoice;
|
const locationKey = event.target.value as LunchChoice;
|
||||||
if (auth?.login) {
|
if (canChangeChoice && auth?.login) {
|
||||||
|
// Kontrola Pizza day před změnou volby
|
||||||
|
const canProceed = await checkPizzaDayBeforeChange(locationKey);
|
||||||
|
if (!canProceed) {
|
||||||
|
// Uživatel zrušil akci nebo došlo k chybě, reset výběru zpět na PIZZA
|
||||||
|
if (choiceRef.current) {
|
||||||
|
choiceRef.current.value = LunchChoice.PIZZA;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
await addChoice({ body: { locationKey, dayIndex } });
|
await addChoice({ body: { locationKey, dayIndex } });
|
||||||
if (foodChoiceRef.current?.value) {
|
if (foodChoiceRef.current?.value) {
|
||||||
foodChoiceRef.current.value = "";
|
foodChoiceRef.current.value = "";
|
||||||
}
|
}
|
||||||
choiceRef.current?.blur();
|
choiceRef.current?.blur();
|
||||||
|
// Automatický výběr času odchodu pouze pro restaurace s menu
|
||||||
|
if (Object.keys(Restaurant).includes(locationKey)) {
|
||||||
|
await tryAutoSelectDepartureTime();
|
||||||
|
}
|
||||||
|
} catch (error: any) {
|
||||||
|
alert(`Chyba při změně volby: ${error.message || error}`);
|
||||||
|
// Reset výběru zpět
|
||||||
|
const hasPizzaChoice = data?.choices?.PIZZA?.[auth.login] != null;
|
||||||
|
if (choiceRef.current && hasPizzaChoice) {
|
||||||
|
choiceRef.current.value = LunchChoice.PIZZA;
|
||||||
|
} else if (choiceRef.current) {
|
||||||
|
choiceRef.current.value = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -242,6 +375,7 @@ function App() {
|
|||||||
const locationKey = choiceRef.current.value as LunchChoice;
|
const locationKey = choiceRef.current.value as LunchChoice;
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
await addChoice({ body: { locationKey, foodIndex: Number(event.target.value), dayIndex } });
|
await addChoice({ body: { locationKey, foodIndex: Number(event.target.value), dayIndex } });
|
||||||
|
await tryAutoSelectDepartureTime();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -284,34 +418,88 @@ function App() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const markAsBuyer = async () => {
|
||||||
|
if (auth?.login) {
|
||||||
|
await setBuyer();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleCreatePizzaDay = async () => {
|
||||||
|
if (!window.confirm('Opravdu chcete založit Pizza day?')) return;
|
||||||
|
setLoadingPizzaDay(true);
|
||||||
|
await createPizzaDay().then(() => setLoadingPizzaDay(false));
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleDeletePizzaDay = async () => {
|
||||||
|
if (!window.confirm('Opravdu chcete smazat Pizza day? Budou smazány i všechny dosud zadané objednávky.')) return;
|
||||||
|
await deletePizzaDay();
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleLockPizzaDay = async () => {
|
||||||
|
if (!window.confirm('Opravdu chcete uzamknout objednávky? Po uzamčení nebude možné přidávat ani odebírat objednávky.')) return;
|
||||||
|
await lockPizzaDay();
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleUnlockPizzaDay = async () => {
|
||||||
|
if (!window.confirm('Opravdu chcete odemknout objednávky? Uživatelé budou moci opět upravovat své objednávky.')) return;
|
||||||
|
await unlockPizzaDay();
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleFinishOrder = async () => {
|
||||||
|
if (!window.confirm('Opravdu chcete označit objednávky jako objednané? Objednávky zůstanou zamčeny.')) return;
|
||||||
|
await finishOrder();
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleReturnToLocked = async () => {
|
||||||
|
if (!window.confirm('Opravdu chcete vrátit stav zpět do "uzamčeno" (před objednáním)?')) return;
|
||||||
|
await lockPizzaDay();
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleFinishDelivery = async () => {
|
||||||
|
if (!window.confirm(`Opravdu chcete označit pizzy jako doručené?${settings?.bankAccount && settings?.holderName ? ' Uživatelům bude vygenerován QR kód pro platbu.' : ''}`)) return;
|
||||||
|
await finishDelivery({ body: { bankAccount: settings?.bankAccount, bankAccountHolder: settings?.holderName } });
|
||||||
|
}
|
||||||
|
|
||||||
const pizzaSuggestions = useMemo(() => {
|
const pizzaSuggestions = useMemo(() => {
|
||||||
if (!data?.pizzaList) {
|
if (!data?.pizzaList && !data?.salatList) {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
const suggestions: SelectSearchOption[] = [];
|
const suggestions: SelectSearchOption[] = [];
|
||||||
data.pizzaList.forEach((pizza, index) => {
|
data.pizzaList?.forEach((pizza, index) => {
|
||||||
const group: SelectSearchOption = { name: pizza.name, type: "group", items: [] }
|
const group: SelectSearchOption = { name: pizza.name, type: "group", items: [] }
|
||||||
pizza.sizes.forEach((size, sizeIndex) => {
|
pizza.sizes.forEach((size, sizeIndex) => {
|
||||||
const name = `${size.size} (${size.price} Kč)`;
|
const name = `${size.size} (${size.price / 100} Kč)`;
|
||||||
const value = `${index}|${sizeIndex}`;
|
const value = `pizza|${index}|${sizeIndex}`;
|
||||||
group.items?.push({ name, value });
|
group.items?.push({ name, value });
|
||||||
})
|
})
|
||||||
suggestions.push(group);
|
suggestions.push(group);
|
||||||
})
|
});
|
||||||
|
if (data.salatList?.length) {
|
||||||
|
const salatGroup: SelectSearchOption = { name: "Saláty", type: "group", items: [] }
|
||||||
|
data.salatList.forEach((salat, index) => {
|
||||||
|
salatGroup.items?.push({ name: `${salat.name} (${salat.price / 100} Kč)`, value: `salat|${index}` });
|
||||||
|
});
|
||||||
|
suggestions.push(salatGroup);
|
||||||
|
}
|
||||||
return suggestions;
|
return suggestions;
|
||||||
}, [data?.pizzaList]);
|
}, [data?.pizzaList, data?.salatList]);
|
||||||
|
|
||||||
const handlePizzaChange = async (value: SelectedOptionValue | SelectedOptionValue[]) => {
|
const handlePizzaChange = async (value: SelectedOptionValue | SelectedOptionValue[]) => {
|
||||||
if (auth?.login && data?.pizzaList) {
|
if (auth?.login) {
|
||||||
if (typeof value !== 'string') {
|
if (typeof value !== 'string') {
|
||||||
throw Error('Nepodporovaný typ hodnoty');
|
throw new TypeError('Nepodporovaný typ hodnoty: ' + typeof value);
|
||||||
}
|
}
|
||||||
const s = value.split('|');
|
const s = value.split('|');
|
||||||
const pizzaIndex = Number.parseInt(s[0]);
|
if (s[0] === 'salat') {
|
||||||
const pizzaSizeIndex = Number.parseInt(s[1]);
|
const salatIndex = Number.parseInt(s[1]);
|
||||||
|
await addPizza({ body: { salatIndex } });
|
||||||
|
} else {
|
||||||
|
const pizzaIndex = Number.parseInt(s[1]);
|
||||||
|
const pizzaSizeIndex = Number.parseInt(s[2]);
|
||||||
await addPizza({ body: { pizzaIndex, pizzaSizeIndex } });
|
await addPizza({ body: { pizzaIndex, pizzaSizeIndex } });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const handlePizzaDelete = async (pizzaOrder: PizzaVariant) => {
|
const handlePizzaDelete = async (pizzaOrder: PizzaVariant) => {
|
||||||
await removePizza({ body: { pizzaOrder } });
|
await removePizza({ body: { pizzaOrder } });
|
||||||
@@ -325,36 +513,22 @@ function App() {
|
|||||||
updatePizzaDayNote({ body: { note: pizzaPoznamkaRef.current?.value } });
|
updatePizzaDayNote({ body: { note: pizzaPoznamkaRef.current?.value } });
|
||||||
}
|
}
|
||||||
|
|
||||||
// const addToCart = async () => {
|
|
||||||
// TODO aktuálně nefunkční - nedokážeme poslat PHPSESSIONID cookie
|
|
||||||
// if (data?.pizzaDay?.orders) {
|
|
||||||
// for (const order of data?.pizzaDay?.orders) {
|
|
||||||
// for (const pizzaOrder of order.pizzaList) {
|
|
||||||
// const url = 'https://www.pizzachefie.cz/pridat.html';
|
|
||||||
// const payload = new URLSearchParams();
|
|
||||||
// payload.append('varId', pizzaOrder.varId.toString());
|
|
||||||
// await fetch(url, {
|
|
||||||
// method: "POST",
|
|
||||||
// mode: "no-cors",
|
|
||||||
// cache: "no-cache",
|
|
||||||
// credentials: "same-origin",
|
|
||||||
// headers: {
|
|
||||||
// 'Content-Type': 'application/x-www-form-urlencoded',
|
|
||||||
// },
|
|
||||||
// body: payload,
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // TODO otevřít košík v nové záložce
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
const handleChangeDepartureTime = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
const handleChangeDepartureTime = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
||||||
if (foodChoiceList?.length && choiceRef.current?.value) {
|
if (foodChoiceList?.length && choiceRef.current?.value) {
|
||||||
await changeDepartureTime({ body: { time: event.target.value as DepartureTime, dayIndex } });
|
await changeDepartureTime({ body: { time: event.target.value as DepartureTime, dayIndex } });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Automaticky nastaví preferovaný čas odchodu 10:45, pokud tento čas ještě nenastal (nebo jde o budoucí den)
|
||||||
|
const tryAutoSelectDepartureTime = async () => {
|
||||||
|
const preferredTime = "10:45" as DepartureTime;
|
||||||
|
const isToday = dayIndex === data?.todayDayIndex;
|
||||||
|
if ((!isToday || isInTheFuture(preferredTime)) && departureChoiceRef.current) {
|
||||||
|
departureChoiceRef.current.value = preferredTime;
|
||||||
|
await changeDepartureTime({ body: { time: preferredTime, dayIndex } });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const handleDayChange = async (dayIndex: number) => {
|
const handleDayChange = async (dayIndex: number) => {
|
||||||
setDayIndex(dayIndex);
|
setDayIndex(dayIndex);
|
||||||
dayIndexRef.current = dayIndex;
|
dayIndexRef.current = dayIndex;
|
||||||
@@ -372,41 +546,60 @@ function App() {
|
|||||||
const renderFoodTable = (location: Restaurant, menu: RestaurantDayMenu) => {
|
const renderFoodTable = (location: Restaurant, menu: RestaurantDayMenu) => {
|
||||||
let content;
|
let content;
|
||||||
if (menu?.closed) {
|
if (menu?.closed) {
|
||||||
content = <h3>Zavřeno</h3>
|
content = <div className="restaurant-closed">Zavřeno</div>
|
||||||
} else if (menu?.food?.length && menu.food.length > 0) {
|
} else if (menu?.food?.length && menu.food.length > 0) {
|
||||||
const hideSoups = settings?.hideSoups;
|
const hideSoups = settings?.hideSoups;
|
||||||
content = <Table striped bordered hover>
|
content = <Table className="food-table">
|
||||||
<tbody style={{ cursor: 'pointer' }}>
|
<tbody style={{ cursor: canChangeChoice ? 'pointer' : 'default' }}>
|
||||||
{menu.food.map((f: Food, index: number) =>
|
{menu.food.map((f: Food, index: number) =>
|
||||||
(!hideSoups || !f.isSoup) &&
|
(!hideSoups || !f.isSoup) &&
|
||||||
<tr key={f.name} onClick={() => doAddClickFoodChoice(location, index)}>
|
<tr key={f.name} onClick={() => doAddClickFoodChoice(location, index)}>
|
||||||
<td>{f.amount}</td>
|
|
||||||
<td>
|
<td>
|
||||||
|
<div className="food-name">
|
||||||
{f.name}
|
{f.name}
|
||||||
{f.allergens && f.allergens.length > 0 && (
|
{f.allergens && f.allergens.length > 0 && (
|
||||||
<> ({f.allergens.map((a, idx) => (
|
<span className="food-allergens">
|
||||||
|
{' '}({f.allergens.map((a, idx) => (
|
||||||
<span key={a}>
|
<span key={a}>
|
||||||
<span title={ALLERGENS[a]} style={{ cursor: 'help', textDecoration: 'underline' }} onClick={e => {
|
<span className="allergen-link" title={ALLERGENS[a]} onClick={e => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
window.open(LINK_ALLERGENS, '_blank');
|
window.open(LINK_ALLERGENS, '_blank');
|
||||||
}}>{a}</span>
|
}}>{a}</span>
|
||||||
{idx < f.allergens!.length - 1 && ','}
|
{idx < f.allergens!.length - 1 && ', '}
|
||||||
|
</span>
|
||||||
|
))})
|
||||||
</span>
|
</span>
|
||||||
))})</>
|
|
||||||
)}
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="food-meta">
|
||||||
|
{f.amount && f.amount !== '-' && <span className="food-amount">{f.amount}</span>}
|
||||||
|
<span className="food-price">{f.price}</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>{f.price}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
)}
|
)}
|
||||||
</tbody>
|
</tbody>
|
||||||
</Table>
|
</Table>
|
||||||
} else {
|
} else {
|
||||||
content = <h3>Chyba načtení dat</h3>
|
content = <div className="restaurant-error">Chyba načtení dat</div>
|
||||||
}
|
}
|
||||||
return <Col md={12} lg={3} className='mt-3'>
|
return <Col md={6} lg={3} className='mt-3'>
|
||||||
<h3 style={{ cursor: 'pointer' }} onClick={() => doAddClickFoodChoice(location)}>{getLunchChoiceName(location)}</h3>
|
<div className="restaurant-card">
|
||||||
{menu?.lastUpdate && <small>Poslední aktualizace: {getHumanDateTime(new Date(menu.lastUpdate))}</small>}
|
<div className="restaurant-header" style={{ cursor: canChangeChoice ? 'pointer' : 'default' }} onClick={() => doAddClickFoodChoice(location)}>
|
||||||
|
<div className="restaurant-header-content">
|
||||||
|
<h3>
|
||||||
|
{getLunchChoiceName(location)}
|
||||||
|
</h3>
|
||||||
|
{menu?.lastUpdate && <small>Aktualizace: {getHumanDateTime(new Date(menu.lastUpdate))}</small>}
|
||||||
|
</div>
|
||||||
|
{menu?.warnings && menu.warnings.length > 0 && (
|
||||||
|
<span className="restaurant-warning" title={menu.warnings.join('\n')}>
|
||||||
|
<FontAwesomeIcon icon={faTriangleExclamation} />
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
{content}
|
{content}
|
||||||
|
</div>
|
||||||
</Col>
|
</Col>
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -446,43 +639,37 @@ function App() {
|
|||||||
return (
|
return (
|
||||||
<div className="app-container">
|
<div className="app-container">
|
||||||
{easterEgg && eggImage && <img ref={eggRef} alt='' src={URL.createObjectURL(eggImage)} style={{ position: 'absolute', ...EASTER_EGG_STYLE, ...style, animationDuration: `${duration ?? EASTER_EGG_DEFAULT_DURATION}s` }} />}
|
{easterEgg && eggImage && <img ref={eggRef} alt='' src={URL.createObjectURL(eggImage)} style={{ position: 'absolute', ...EASTER_EGG_STYLE, ...style, animationDuration: `${duration ?? EASTER_EGG_DEFAULT_DURATION}s` }} />}
|
||||||
<Header />
|
<Header choices={data?.choices} dayIndex={dayIndex} />
|
||||||
<div className='wrapper'>
|
<div className='wrapper'>
|
||||||
{data.isWeekend ? <h4>Užívejte víkend :)</h4> : <>
|
{data.todayDayIndex != null && data.todayDayIndex > 4 &&
|
||||||
<Alert variant={'primary'}>
|
<Alert variant="info" className="mb-3">
|
||||||
{/* <img alt="" src='hat.png' style={{ position: "absolute", width: "70px", rotate: "-45deg", left: -40, top: -58 }} />
|
Zobrazujete uplynulý týden
|
||||||
<img alt="" src='snowman.png' style={{ position: "absolute", height: "110px", right: 10, top: 5 }} /> */}
|
|
||||||
Poslední změny:
|
|
||||||
<ul>
|
|
||||||
<li>Zobrazení alergenu při najetí myší a proklik na seznam alergenů</li>
|
|
||||||
<li>Přesun přenačtení menu do samostatného dialogu</li>
|
|
||||||
<li>Podzimní atmosféra</li>
|
|
||||||
</ul>
|
|
||||||
</Alert>
|
</Alert>
|
||||||
|
}
|
||||||
|
<>
|
||||||
{dayIndex != null &&
|
{dayIndex != null &&
|
||||||
<div className='day-navigator'>
|
<div className='day-navigator'>
|
||||||
<span title='Předchozí den'>
|
<span title='Předchozí den'>
|
||||||
<FontAwesomeIcon icon={faChevronLeft} style={{ cursor: "pointer", visibility: dayIndex > 0 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex - 1)} />
|
<FontAwesomeIcon icon={faChevronLeft} style={{ cursor: "pointer", visibility: dayIndex > 0 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex - 1)} />
|
||||||
</span>
|
</span>
|
||||||
<h1 className='title' style={{ color: dayIndex === data.todayDayIndex ? 'black' : 'gray' }}>{data.date}</h1>
|
<h1 className={`title ${dayIndex !== data.todayDayIndex ? 'text-muted' : ''}`}>{data.date}</h1>
|
||||||
<span title="Následující den">
|
<span title="Následující den">
|
||||||
<FontAwesomeIcon icon={faChevronRight} style={{ cursor: "pointer", visibility: dayIndex < 4 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex + 1)} />
|
<FontAwesomeIcon icon={faChevronRight} style={{ cursor: "pointer", visibility: dayIndex < 4 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex + 1)} />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<Row className='food-tables'>
|
<Row className='food-tables'>
|
||||||
{/* TODO zjednodušit, stačí iterovat klíče typu Restaurant */}
|
{Object.keys(Restaurant).map(key => {
|
||||||
{food['SLADOVNICKA'] && renderFoodTable('SLADOVNICKA', food['SLADOVNICKA'])}
|
const locationKey = key as Restaurant;
|
||||||
{food['TECHTOWER'] && renderFoodTable('TECHTOWER', food['TECHTOWER'])}
|
return food[locationKey] && renderFoodTable(locationKey, food[locationKey]);
|
||||||
{food['ZASTAVKAUMICHALA'] && renderFoodTable('ZASTAVKAUMICHALA', food['ZASTAVKAUMICHALA'])}
|
})}
|
||||||
{food['SENKSERIKOVA'] && renderFoodTable('SENKSERIKOVA', food['SENKSERIKOVA'])}
|
|
||||||
</Row>
|
</Row>
|
||||||
<div className='content-wrapper'>
|
<div className='content-wrapper'>
|
||||||
<div className='content'>
|
<div className='content'>
|
||||||
{canChangeChoice && <>
|
{canChangeChoice && <div className="choice-section fade-in">
|
||||||
<p>{`Jak to ${dayIndex == null || dayIndex === data.todayDayIndex ? 'dnes' : 'tento den'} vidíš s obědem?`}</p>
|
<p>{`Jak to ${dayIndex == null || dayIndex === data.todayDayIndex ? 'dnes' : 'tento den'} vidíš s obědem?`}</p>
|
||||||
<Form.Select ref={choiceRef} onChange={doAddChoice}>
|
<Form.Select ref={choiceRef} onChange={doAddChoice}>
|
||||||
<option></option>
|
<option value="">Vyber možnost...</option>
|
||||||
{Object.entries(LunchChoice)
|
{Object.entries(LunchChoice)
|
||||||
.filter(entry => {
|
.filter(entry => {
|
||||||
const locationKey = entry[0] as Restaurant;
|
const locationKey = entry[0] as Restaurant;
|
||||||
@@ -492,56 +679,86 @@ function App() {
|
|||||||
</Form.Select>
|
</Form.Select>
|
||||||
<small>Je možné vybrat jen jednu možnost. Výběr jiné odstraní předchozí.</small>
|
<small>Je možné vybrat jen jednu možnost. Výběr jiné odstraní předchozí.</small>
|
||||||
{foodChoiceList && !closed && <>
|
{foodChoiceList && !closed && <>
|
||||||
<p style={{ marginTop: "10px" }}>Na co dobrého? <small>(nepovinné)</small></p>
|
<p className="mt-3">Na co dobrého?</p>
|
||||||
<Form.Select ref={foodChoiceRef} onChange={doAddFoodChoice}>
|
<Form.Select ref={foodChoiceRef} onChange={doAddFoodChoice}>
|
||||||
<option></option>
|
<option value="">Vyber jídlo...</option>
|
||||||
{foodChoiceList.map((food, index) => <option key={food.name} value={index}>{food.name}</option>)}
|
{foodChoiceList.map((food, index) => <option key={food.name} value={index}>{food.name}</option>)}
|
||||||
</Form.Select>
|
</Form.Select>
|
||||||
</>}
|
</>}
|
||||||
{foodChoiceList && !closed && <>
|
{foodChoiceList && !closed && <>
|
||||||
<p style={{ marginTop: "10px" }}>V kolik hodin preferuješ odchod?</p>
|
<p className="mt-3">V kolik hodin preferuješ odchod?</p>
|
||||||
<Form.Select ref={departureChoiceRef} onChange={handleChangeDepartureTime}>
|
<Form.Select ref={departureChoiceRef} onChange={handleChangeDepartureTime}>
|
||||||
<option></option>
|
<option value="">Vyber čas...</option>
|
||||||
{Object.values(DepartureTime)
|
{Object.values(DepartureTime)
|
||||||
.filter(time => isInTheFuture(time))
|
.filter(time => dayIndex !== data.todayDayIndex || isInTheFuture(time))
|
||||||
.map(time => <option key={time} value={time}>{time}</option>)}
|
.map(time => <option key={time} value={time}>{time}</option>)}
|
||||||
</Form.Select>
|
</Form.Select>
|
||||||
</>}
|
</>}
|
||||||
</>}
|
</div>}
|
||||||
{Object.keys(data.choices).length > 0 ?
|
{Object.keys(data.choices).length > 0 ?
|
||||||
<Table bordered className='mt-5'>
|
<Table className='choices-table mt-4 fade-in'>
|
||||||
<tbody>
|
<tbody>
|
||||||
{Object.keys(data.choices).map(key => {
|
{Object.keys(data.choices).map(key => {
|
||||||
const locationKey = key as LunchChoice;
|
const locationKey = key as LunchChoice;
|
||||||
const locationName = getLunchChoiceName(locationKey);
|
const locationName = getLunchChoiceName(locationKey);
|
||||||
const loginObject = data.choices[locationKey];
|
const loginObject = data.choices[locationKey];
|
||||||
if (!loginObject) {
|
if (!loginObject) {
|
||||||
return;
|
return null;
|
||||||
}
|
}
|
||||||
const locationLoginList = Object.entries(loginObject);
|
const locationLoginList = Object.entries(loginObject);
|
||||||
const locationPickCount = locationLoginList.length
|
const locationPickCount = locationLoginList.length
|
||||||
return (
|
return (
|
||||||
<tr key={key}>
|
<tr key={key}>
|
||||||
{(locationPickCount ?? 0) > 1 ? (
|
<td>
|
||||||
<td>{locationName} ({locationPickCount})</td>
|
{locationName}
|
||||||
) : (
|
{(locationPickCount ?? 0) > 1 && <span className="ms-1">({locationPickCount})</span>}
|
||||||
<td>{locationName}</td>)}
|
{locationPickCount >= 2 && auth.login && loginObject[auth.login] !== undefined
|
||||||
|
&& locationKey !== LunchChoice.PIZZA && locationKey !== LunchChoice.NEOBEDVAM && locationKey !== LunchChoice.ROZHODUJI
|
||||||
|
&& settings?.bankAccount && settings?.holderName && (
|
||||||
|
<span title='Zaplatit za všechny a vygenerovat QR kódy ostatním' className="ms-2">
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faMoneyBillTransfer}
|
||||||
|
onClick={() => setPayForAllLocationKey(locationKey)}
|
||||||
|
className='action-icon'
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
<td className='p-0'>
|
<td className='p-0'>
|
||||||
<Table>
|
<Table className="nested-table">
|
||||||
<tbody>
|
<tbody>
|
||||||
{locationLoginList.map((entry: [string, UserLunchChoice], index) => {
|
{locationLoginList.map((entry: [string, UserLunchChoice]) => {
|
||||||
const login = entry[0];
|
const login = entry[0];
|
||||||
const userPayload = entry[1];
|
const userPayload = entry[1];
|
||||||
const userChoices = userPayload?.selectedFoods;
|
const userChoices = userPayload?.selectedFoods;
|
||||||
const trusted = userPayload?.trusted || false;
|
const trusted = userPayload?.trusted || false;
|
||||||
|
const isBuyer = userPayload?.isBuyer || false;
|
||||||
return <tr key={entry[0]}>
|
return <tr key={entry[0]}>
|
||||||
<td>
|
<td>
|
||||||
|
<div className="user-row">
|
||||||
|
<div className="user-info">
|
||||||
{trusted && <span className='trusted-icon' title='Uživatel ověřený doménovým přihlášením'>
|
{trusted && <span className='trusted-icon' title='Uživatel ověřený doménovým přihlášením'>
|
||||||
<FontAwesomeIcon icon={faCircleCheck} style={{ cursor: "help" }} />
|
<FontAwesomeIcon icon={faCircleCheck} style={{ cursor: "help" }} />
|
||||||
</span>}
|
</span>}
|
||||||
{login}
|
<strong>{login}</strong>
|
||||||
{userPayload.departureTime && <small> ({userPayload.departureTime})</small>}
|
{userPayload.departureTime && <small className="ms-2" style={{ color: 'var(--luncher-text-muted)' }}>({userPayload.departureTime})</small>}
|
||||||
{userPayload.note && <span style={{ fontSize: 'small' }}> ({userPayload.note})</span>}
|
{userPayload.note && <span className="ms-2" style={{ fontSize: 'small', color: 'var(--luncher-text-secondary)' }}>({userPayload.note})</span>}
|
||||||
|
</div>
|
||||||
|
<div className="user-actions">
|
||||||
|
{login === auth.login && canChangeChoice && locationKey === LunchChoice.OBJEDNAVAM && <span title='Označit/odznačit se jako objednávající'>
|
||||||
|
<FontAwesomeIcon onClick={() => {
|
||||||
|
markAsBuyer();
|
||||||
|
}} icon={faBasketShopping} className={isBuyer ? 'buyer-icon' : 'action-icon'} style={{ cursor: 'pointer' }} />
|
||||||
|
</span>}
|
||||||
|
{login === auth.login && locationKey === LunchChoice.OBJEDNAVAM && <span title='Přejít na stránku objednávek'>
|
||||||
|
<FontAwesomeIcon onClick={() => navigate('/objednani')} icon={faArrowUpRightFromSquare} className='action-icon' style={{ cursor: 'pointer' }} />
|
||||||
|
</span>}
|
||||||
|
{login !== auth.login && locationKey === LunchChoice.OBJEDNAVAM && isBuyer && <span title='Objednávající'>
|
||||||
|
<FontAwesomeIcon onClick={() => {
|
||||||
|
copyNote(userPayload.note!);
|
||||||
|
}} icon={faBasketShopping} className='buyer-icon' />
|
||||||
|
</span>}
|
||||||
{login !== auth.login && canChangeChoice && userPayload?.note?.length && <span title='Převzít poznámku'>
|
{login !== auth.login && canChangeChoice && userPayload?.note?.length && <span title='Převzít poznámku'>
|
||||||
<FontAwesomeIcon onClick={() => {
|
<FontAwesomeIcon onClick={() => {
|
||||||
copyNote(userPayload.note!);
|
copyNote(userPayload.note!);
|
||||||
@@ -557,24 +774,26 @@ function App() {
|
|||||||
doRemoveChoices(key as LunchChoice);
|
doRemoveChoices(key as LunchChoice);
|
||||||
}} className='action-icon' icon={faTrashCan} />
|
}} className='action-icon' icon={faTrashCan} />
|
||||||
</span>}
|
</span>}
|
||||||
</td>
|
</div>
|
||||||
{userChoices?.length && food ? <td>
|
</div>
|
||||||
<ul>
|
{userChoices && userChoices.length > 0 && food && (
|
||||||
{userChoices?.map(foodIndex => {
|
<div className="food-choices">
|
||||||
|
{userChoices.map(foodIndex => {
|
||||||
const restaurantKey = key as Restaurant;
|
const restaurantKey = key as Restaurant;
|
||||||
const foodName = food[restaurantKey]?.food?.[foodIndex].name;
|
const foodName = food[restaurantKey]?.food?.[foodIndex].name;
|
||||||
return <li key={foodIndex}>
|
return <div key={foodIndex} className="food-choice-item">
|
||||||
{foodName}
|
<span className="food-choice-name">{foodName}</span>
|
||||||
{login === auth.login && canChangeChoice &&
|
{login === auth.login && canChangeChoice &&
|
||||||
<span title={`Odstranit ${foodName}`}>
|
<span title={`Odstranit ${foodName}`}>
|
||||||
<FontAwesomeIcon onClick={() => {
|
<FontAwesomeIcon onClick={() => {
|
||||||
doRemoveFoodChoice(restaurantKey, foodIndex);
|
doRemoveFoodChoice(restaurantKey, foodIndex);
|
||||||
}} className='action-icon' icon={faTrashCan} />
|
}} className='action-icon' icon={faTrashCan} />
|
||||||
</span>}
|
</span>}
|
||||||
</li>
|
</div>
|
||||||
})}
|
})}
|
||||||
</ul>
|
</div>
|
||||||
</td> : null}
|
)}
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
@@ -586,137 +805,179 @@ function App() {
|
|||||||
)}
|
)}
|
||||||
</tbody>
|
</tbody>
|
||||||
</Table>
|
</Table>
|
||||||
: <div className='mt-5'><i>Zatím nikdo nehlasoval...</i></div>
|
: <div className='no-votes mt-4'>Zatím nikdo nehlasoval...</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
{dayIndex === data.todayDayIndex &&
|
{dayIndex === data.todayDayIndex && userHasPizzaChoice &&
|
||||||
<div className='mt-5'>
|
<div className='pizza-section fade-in'>
|
||||||
{!data.pizzaDay &&
|
{!data.pizzaDay &&
|
||||||
<div style={{ textAlign: 'center' }}>
|
<>
|
||||||
|
<h3>Pizza Day</h3>
|
||||||
<p>Pro dnešní den není aktuálně založen Pizza day.</p>
|
<p>Pro dnešní den není aktuálně založen Pizza day.</p>
|
||||||
{loadingPizzaDay ?
|
{loadingPizzaDay ?
|
||||||
<span>
|
<span style={{ color: 'var(--luncher-primary)' }}>
|
||||||
<FontAwesomeIcon icon={faGear} className='fa-spin' /> Zjišťujeme dostupné pizzy
|
<FontAwesomeIcon icon={faGear} className='fa-spin me-2' /> Zjišťujeme dostupné pizzy
|
||||||
</span>
|
</span>
|
||||||
:
|
:
|
||||||
<>
|
<div>
|
||||||
<Button onClick={async () => {
|
<Button onClick={handleCreatePizzaDay}>Založit Pizza day</Button>
|
||||||
setLoadingPizzaDay(true);
|
<Button variant="outline-primary" onClick={doJdemeObed}>Jdeme na oběd!</Button>
|
||||||
await createPizzaDay().then(() => setLoadingPizzaDay(false));
|
|
||||||
}}>Založit Pizza day</Button>
|
|
||||||
<Button onClick={doJdemeObed} style={{ marginLeft: "14px" }}>Jdeme na oběd !</Button>
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
</>
|
||||||
|
}
|
||||||
{data.pizzaDay &&
|
{data.pizzaDay &&
|
||||||
<div>
|
<>
|
||||||
<div style={{ textAlign: 'center' }}>
|
<h3>Pizza Day</h3>
|
||||||
<h3>Pizza day</h3>
|
|
||||||
{
|
{
|
||||||
data.pizzaDay.state === PizzaDayState.CREATED &&
|
data.pizzaDay.state === PizzaDayState.CREATED &&
|
||||||
<div>
|
<>
|
||||||
<p>
|
<p>
|
||||||
Pizza Day je založen a spravován uživatelem {data.pizzaDay.creator}.<br />
|
Pizza Day je založen a spravován uživatelem <strong>{data.pizzaDay.creator}</strong>.<br />
|
||||||
Můžete upravovat své objednávky.
|
Můžete upravovat své objednávky.
|
||||||
</p>
|
</p>
|
||||||
{
|
{
|
||||||
data.pizzaDay.creator === auth.login &&
|
data.pizzaDay.creator === auth.login &&
|
||||||
<>
|
<div className="mb-4">
|
||||||
<Button className='danger mb-3' title="Smaže kompletně pizza day, včetně dosud zadaných objednávek." onClick={async () => {
|
<Button variant="danger" title="Smaže kompletně pizza day, včetně dosud zadaných objednávek." onClick={handleDeletePizzaDay}>Smazat Pizza day</Button>
|
||||||
await deletePizzaDay();
|
<Button title={noOrders ? "Nelze uzamknout - neexistuje žádná objednávka" : "Zamezí přidávat/odebírat objednávky. Použij před samotným objednáním, aby již nemohlo docházet ke změnám."} disabled={noOrders} onClick={handleLockPizzaDay}>Uzamknout</Button>
|
||||||
}}>Smazat Pizza day</Button>
|
|
||||||
<Button className='mb-3' style={{ marginLeft: '20px' }} title={noOrders ? "Nelze uzamknout - neexistuje žádná objednávka" : "Zamezí přidávat/odebírat objednávky. Použij před samotným objednáním, aby již nemohlo docházet ke změnám."} disabled={noOrders} onClick={async () => {
|
|
||||||
await lockPizzaDay();
|
|
||||||
}}>Uzamknout</Button>
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
</>
|
||||||
|
}
|
||||||
{
|
{
|
||||||
data.pizzaDay.state === PizzaDayState.LOCKED &&
|
data.pizzaDay.state === PizzaDayState.LOCKED &&
|
||||||
<div>
|
|
||||||
<p>Objednávky jsou uzamčeny uživatelem {data.pizzaDay.creator}</p>
|
|
||||||
{data.pizzaDay.creator === auth.login &&
|
|
||||||
<>
|
<>
|
||||||
<Button className='danger mb-3' title="Umožní znovu editovat objednávky." onClick={async () => {
|
<p>Objednávky jsou uzamčeny uživatelem <strong>{data.pizzaDay.creator}</strong></p>
|
||||||
await unlockPizzaDay();
|
{data.pizzaDay.creator === auth.login &&
|
||||||
}}>Odemknout</Button>
|
<div className="mb-4">
|
||||||
<Button className='danger mb-3' style={{ marginLeft: '20px' }} title={noOrders ? "Nelze objednat - neexistuje žádná objednávka" : "Použij po objednání. Objednávky zůstanou zamčeny."} disabled={noOrders} onClick={async () => {
|
<Button variant="secondary" title="Umožní znovu editovat objednávky." onClick={handleUnlockPizzaDay}>Odemknout</Button>
|
||||||
await finishOrder();
|
<Button title={noOrders ? "Nelze objednat - neexistuje žádná objednávka" : "Použij po objednání. Objednávky zůstanou zamčeny."} disabled={noOrders} onClick={handleFinishOrder}>Objednáno</Button>
|
||||||
}}>Objednáno</Button>
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
</>
|
||||||
|
}
|
||||||
{
|
{
|
||||||
data.pizzaDay.state === PizzaDayState.ORDERED &&
|
data.pizzaDay.state === PizzaDayState.ORDERED &&
|
||||||
<div>
|
<>
|
||||||
<p>Pizzy byly objednány uživatelem {data.pizzaDay.creator}</p>
|
<p>Pizzy byly objednány uživatelem <strong>{data.pizzaDay.creator}</strong></p>
|
||||||
{data.pizzaDay.creator === auth.login &&
|
{data.pizzaDay.creator === auth.login &&
|
||||||
<div>
|
<div className="mb-4">
|
||||||
<Button className='danger mb-3' title="Vrátí stav do předchozího kroku (před objednáním)." onClick={async () => {
|
<Button variant="secondary" title="Vrátí stav do předchozího kroku (před objednáním)." onClick={handleReturnToLocked}>Vrátit do "uzamčeno"</Button>
|
||||||
await lockPizzaDay();
|
<Button title="Nastaví stav na 'Doručeno' - koncový stav." onClick={handleFinishDelivery}>Doručeno</Button>
|
||||||
}}>Vrátit do "uzamčeno"</Button>
|
|
||||||
<Button className='danger mb-3' style={{ marginLeft: '20px' }} title="Nastaví stav na 'Doručeno' - koncový stav." onClick={async () => {
|
|
||||||
await finishDelivery({ body: { bankAccount: settings?.bankAccount, bankAccountHolder: settings?.holderName } });
|
|
||||||
}}>Doručeno</Button>
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</>
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
data.pizzaDay.state === PizzaDayState.DELIVERED &&
|
data.pizzaDay.state === PizzaDayState.DELIVERED &&
|
||||||
<div>
|
<p>
|
||||||
<p>{`Pizzy byly doručeny.${myOrder?.hasQr ? ` Objednávku můžete uživateli ${data.pizzaDay.creator} uhradit pomocí QR kódu níže.` : ''}`}</p>
|
Pizzy byly doručeny.
|
||||||
</div>
|
{myOrder?.hasQr ? ` Objednávku můžete uživateli ${data.pizzaDay.creator} uhradit pomocí QR kódu níže.` : ''}
|
||||||
|
</p>
|
||||||
}
|
}
|
||||||
</div>
|
|
||||||
{data.pizzaDay.state === PizzaDayState.CREATED &&
|
{data.pizzaDay.state === PizzaDayState.CREATED &&
|
||||||
<div style={{ textAlign: 'center' }}>
|
<div className="pizza-order-form">
|
||||||
<SelectSearch
|
<SelectSearch
|
||||||
search={true}
|
search={true}
|
||||||
options={pizzaSuggestions}
|
options={pizzaSuggestions}
|
||||||
placeholder='Vyhledat pizzu...'
|
placeholder='Vyhledat pizzu nebo salát...'
|
||||||
onChange={handlePizzaChange}
|
onChange={handlePizzaChange}
|
||||||
onBlur={_ => { }}
|
onBlur={_ => { }}
|
||||||
onFocus={_ => { }}
|
onFocus={_ => { }}
|
||||||
/>
|
/>
|
||||||
Poznámka: <input ref={pizzaPoznamkaRef} className='mt-3' type="text" onKeyDown={event => {
|
<div className="d-flex align-items-center gap-2">
|
||||||
|
<label style={{ color: 'var(--luncher-text-secondary)' }}>Poznámka:</label>
|
||||||
|
<input ref={pizzaPoznamkaRef} type="text" placeholder="Např. bez cibule" onKeyDown={event => {
|
||||||
if (event.key === 'Enter') {
|
if (event.key === 'Enter') {
|
||||||
handlePizzaPoznamkaChange();
|
handlePizzaPoznamkaChange();
|
||||||
}
|
}
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
}} />
|
}} />
|
||||||
<Button
|
<Button
|
||||||
style={{ marginLeft: '20px' }}
|
|
||||||
disabled={!myOrder?.pizzaList?.length}
|
disabled={!myOrder?.pizzaList?.length}
|
||||||
onClick={handlePizzaPoznamkaChange}>
|
onClick={handlePizzaPoznamkaChange}>
|
||||||
Uložit
|
Uložit
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
<PizzaOrderList state={data.pizzaDay.state!} orders={data.pizzaDay.orders!} onDelete={handlePizzaDelete} creator={data.pizzaDay.creator!} />
|
<PizzaOrderList state={data.pizzaDay.state!} orders={data.pizzaDay.orders!} onDelete={handlePizzaDelete} creator={data.pizzaDay.creator!} />
|
||||||
{
|
{
|
||||||
data.pizzaDay.state === PizzaDayState.DELIVERED && myOrder?.hasQr ?
|
data.pizzaDay.state === PizzaDayState.DELIVERED && myOrder?.hasQr && (() => {
|
||||||
|
const pizzaQr = data.pendingQrs?.find(qr => qr.creator === data.pizzaDay?.creator);
|
||||||
|
return pizzaQr ? (
|
||||||
<div className='qr-code'>
|
<div className='qr-code'>
|
||||||
<h3>QR platba</h3>
|
<h3>QR platba</h3>
|
||||||
<img src={`/api/qr?login=${auth.login}`} alt='QR kód' />
|
<img src={`/api/qr?login=${auth.login}&id=${pizzaQr.id}`} alt='QR kód' />
|
||||||
</div> : null
|
</div>
|
||||||
|
) : null;
|
||||||
|
})()
|
||||||
|
}
|
||||||
|
</>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
{data.pendingQrs && data.pendingQrs.length > 0 &&
|
||||||
|
<div className='pizza-section fade-in mt-4'>
|
||||||
|
<h3>Nevyřízené platby</h3>
|
||||||
|
<p>Máte neuhrazené platby.</p>
|
||||||
|
{data.pendingQrs.map(qr => (
|
||||||
|
<div key={qr.id} className='qr-code mb-3'>
|
||||||
|
<p>
|
||||||
|
<strong>{formatDateString(qr.date)}</strong> — {qr.creator} ({qr.totalPrice / 100} Kč)
|
||||||
|
{qr.purpose && <><br /><span className="text-muted">{qr.purpose}</span></>}
|
||||||
|
</p>
|
||||||
|
<img src={`/api/qr?login=${auth.login}&id=${qr.id}`} alt='QR kód' />
|
||||||
|
<div className='mt-2'>
|
||||||
|
<Button variant="success" onClick={() => setDismissQrId(qr.id)}>
|
||||||
|
Zaplatil jsem
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
|
</>
|
||||||
</div>
|
</div>
|
||||||
</> || "Jejda, něco se nám nepovedlo :("}
|
{/* <FallingLeaves
|
||||||
</div>
|
|
||||||
<FallingLeaves
|
|
||||||
numLeaves={LEAF_PRESETS.NORMAL}
|
numLeaves={LEAF_PRESETS.NORMAL}
|
||||||
leafVariants={LEAF_COLOR_THEMES.AUTUMN}
|
leafVariants={LEAF_COLOR_THEMES.AUTUMN}
|
||||||
/>
|
/> */}
|
||||||
<Footer />
|
<Footer />
|
||||||
<NoteModal isOpen={noteModalOpen} onClose={() => setNoteModalOpen(false)} onSave={saveNote} />
|
<NoteModal isOpen={noteModalOpen} onClose={() => setNoteModalOpen(false)} onSave={saveNote} />
|
||||||
|
<ConfirmModal
|
||||||
|
isOpen={dismissQrId !== null}
|
||||||
|
title="Potvrzení platby"
|
||||||
|
message="Opravdu jste zaplatili? QR kód bude odstraněn."
|
||||||
|
confirmLabel="Zaplatil jsem"
|
||||||
|
confirmVariant="success"
|
||||||
|
onClose={() => setDismissQrId(null)}
|
||||||
|
onConfirm={async () => {
|
||||||
|
if (!dismissQrId) return;
|
||||||
|
const id = dismissQrId;
|
||||||
|
setDismissQrId(null);
|
||||||
|
await dismissQr({ body: { id } });
|
||||||
|
const response = await getData({ query: { dayIndex } });
|
||||||
|
if (response.data) {
|
||||||
|
setData(response.data);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
{payForAllLocationKey && data && (
|
||||||
|
<PayForAllModal
|
||||||
|
isOpen
|
||||||
|
onClose={() => setPayForAllLocationKey(null)}
|
||||||
|
locationKey={payForAllLocationKey}
|
||||||
|
locationName={getLunchChoiceName(payForAllLocationKey)}
|
||||||
|
locationChoices={data.choices[payForAllLocationKey as keyof typeof data.choices] as LocationLunchChoicesMap}
|
||||||
|
menu={food?.[payForAllLocationKey as Restaurant]}
|
||||||
|
payerLogin={auth.login ?? ''}
|
||||||
|
bankAccount={settings?.bankAccount ?? ''}
|
||||||
|
bankAccountHolder={settings?.holderName ?? ''}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,28 @@
|
|||||||
import { Routes, Route } from "react-router-dom";
|
import { Routes, Route } from "react-router-dom";
|
||||||
import { ProvideSettings } from "./context/settings";
|
import { ProvideSettings } from "./context/settings";
|
||||||
// import Snowfall from "react-snowfall";
|
// import Snowfall from "react-snowfall";
|
||||||
|
import { SnowOverlay } from 'react-snow-overlay';
|
||||||
import { ToastContainer } from "react-toastify";
|
import { ToastContainer } from "react-toastify";
|
||||||
import { SocketContext, socket } from "./context/socket";
|
import { SocketContext, socket } from "./context/socket";
|
||||||
import StatsPage from "./pages/StatsPage";
|
import StatsPage from "./pages/StatsPage";
|
||||||
|
import OrderGroupsPage from "./pages/OrderGroupsPage";
|
||||||
import App from "./App";
|
import App from "./App";
|
||||||
|
|
||||||
export const STATS_URL = '/stats';
|
export const STATS_URL = '/stats';
|
||||||
|
export const OBJEDNANI_URL = '/objednani';
|
||||||
|
|
||||||
export default function AppRoutes() {
|
export default function AppRoutes() {
|
||||||
return (
|
return (
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path={STATS_URL} element={<StatsPage />} />
|
<Route path={STATS_URL} element={<StatsPage />} />
|
||||||
|
<Route path={OBJEDNANI_URL} element={
|
||||||
|
<ProvideSettings>
|
||||||
|
<SocketContext.Provider value={socket}>
|
||||||
|
<OrderGroupsPage />
|
||||||
|
<ToastContainer />
|
||||||
|
</SocketContext.Provider>
|
||||||
|
</ProvideSettings>
|
||||||
|
} />
|
||||||
<Route path="/" element={
|
<Route path="/" element={
|
||||||
<ProvideSettings>
|
<ProvideSettings>
|
||||||
<SocketContext.Provider value={socket}>
|
<SocketContext.Provider value={socket}>
|
||||||
@@ -22,6 +33,7 @@ export default function AppRoutes() {
|
|||||||
width: '100vw',
|
width: '100vw',
|
||||||
height: '100vh'
|
height: '100vh'
|
||||||
}} /> */}
|
}} /> */}
|
||||||
|
<SnowOverlay color={'rgba(240, 240, 240, 0.9)'} disabledOnSingleCpuDevices={true} />
|
||||||
<App />
|
<App />
|
||||||
</>
|
</>
|
||||||
<ToastContainer />
|
<ToastContainer />
|
||||||
|
|||||||
+82
-6
@@ -1,13 +1,89 @@
|
|||||||
.login {
|
.login-page {
|
||||||
height: 100%;
|
min-height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
align-items: center;
|
||||||
text-align: center;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
background: var(--luncher-bg);
|
||||||
|
padding: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-inner {
|
.login-card {
|
||||||
|
background: var(--luncher-bg-card);
|
||||||
|
border-radius: var(--luncher-radius-xl);
|
||||||
|
box-shadow: var(--luncher-shadow-lg);
|
||||||
|
padding: 48px;
|
||||||
|
max-width: 420px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid var(--luncher-border-light);
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-logo {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--luncher-text);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
letter-spacing: -0.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-subtitle {
|
||||||
|
color: var(--luncher-text-secondary);
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form label {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--luncher-text);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form .hint {
|
||||||
|
font-size: 0.85rem;
|
||||||
|
color: var(--luncher-text-muted);
|
||||||
|
margin-top: 8px;
|
||||||
|
text-align: left;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form input[type="text"] {
|
||||||
|
width: 100%;
|
||||||
|
padding: 14px 18px;
|
||||||
|
font-size: 1rem;
|
||||||
|
border: 2px solid var(--luncher-border);
|
||||||
|
border-radius: var(--luncher-radius-sm);
|
||||||
|
background: var(--luncher-bg);
|
||||||
|
color: var(--luncher-text);
|
||||||
|
transition: var(--luncher-transition);
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form input[type="text"]:hover {
|
||||||
|
border-color: var(--luncher-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form input[type="text"]:focus {
|
||||||
|
border-color: var(--luncher-primary);
|
||||||
|
box-shadow: 0 0 0 3px var(--luncher-primary-light);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form input[type="text"]::placeholder {
|
||||||
|
color: var(--luncher-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-form .btn {
|
||||||
|
width: 100%;
|
||||||
|
padding: 14px 24px;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
+25
-11
@@ -26,7 +26,7 @@ export default function Login() {
|
|||||||
}, [auth]);
|
}, [auth]);
|
||||||
|
|
||||||
const doLogin = useCallback(async () => {
|
const doLogin = useCallback(async () => {
|
||||||
const length = loginRef?.current?.value.length && loginRef.current.value.replace(/\s/g, '').length
|
const length = loginRef?.current?.value.length && loginRef.current.value.replaceAll(/\s/g, '').length
|
||||||
if (length) {
|
if (length) {
|
||||||
const response = await login({ body: { login: loginRef.current?.value } });
|
const response = await login({ body: { login: loginRef.current?.value } });
|
||||||
if (response.data) {
|
if (response.data) {
|
||||||
@@ -36,21 +36,35 @@ export default function Login() {
|
|||||||
}, [auth]);
|
}, [auth]);
|
||||||
|
|
||||||
if (!auth?.login) {
|
if (!auth?.login) {
|
||||||
return <div className='login'>
|
return (
|
||||||
<h1>Luncher</h1>
|
<div className='login-page'>
|
||||||
<h4 style={{ marginBottom: "50px" }}>Aplikace pro profesionální management obědů</h4>
|
<div className='login-card'>
|
||||||
<div className='login-inner'>
|
<h1 className='login-logo'>Luncher</h1>
|
||||||
<p style={{ fontSize: "12px", marginTop: "10px" }}>
|
<p className='login-subtitle'>Aplikace pro profesionální management obědů</p>
|
||||||
Zobrazované jméno by mělo být vaše jméno nebo přezdívka, pod kterou vás kolegové dokáží snadno identifikovat. Jméno je možné kdykoli změnit.
|
<div className='login-form'>
|
||||||
</p>
|
<div>
|
||||||
Zobrazované jméno: <input style={{ marginTop: "10px" }} ref={loginRef} type='text' onKeyDown={event => {
|
<label htmlFor="login-input">Zobrazované jméno</label>
|
||||||
|
<input
|
||||||
|
id="login-input"
|
||||||
|
ref={loginRef}
|
||||||
|
type='text'
|
||||||
|
placeholder="Např. Jan Novák"
|
||||||
|
onKeyDown={event => {
|
||||||
if (event.key === 'Enter') {
|
if (event.key === 'Enter') {
|
||||||
doLogin()
|
doLogin()
|
||||||
}
|
}
|
||||||
}} />
|
}}
|
||||||
<Button onClick={doLogin} style={{ marginTop: "20px" }}>Uložit</Button>
|
/>
|
||||||
|
<p className='hint'>
|
||||||
|
Zadejte jméno nebo přezdívku, pod kterou vás kolegové snadno identifikují.
|
||||||
|
Jméno je možné kdykoli změnit.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Button onClick={doLogin}>Pokračovat</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return <div>Neplatný stav</div>
|
return <div>Neplatný stav</div>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -75,14 +75,14 @@ export const getDayOfWeekIndex = (date: Date) => {
|
|||||||
|
|
||||||
/** Vrátí první pracovní den v týdnu předaného data. */
|
/** Vrátí první pracovní den v týdnu předaného data. */
|
||||||
export function getFirstWorkDayOfWeek(date: Date) {
|
export function getFirstWorkDayOfWeek(date: Date) {
|
||||||
const firstDay = new Date(date.getTime());
|
const firstDay = new Date(date);
|
||||||
firstDay.setDate(date.getDate() - getDayOfWeekIndex(date));
|
firstDay.setDate(date.getDate() - getDayOfWeekIndex(date));
|
||||||
return firstDay;
|
return firstDay;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Vrátí poslední pracovní den v týdnu předaného data. */
|
/** Vrátí poslední pracovní den v týdnu předaného data. */
|
||||||
export function getLastWorkDayOfWeek(date: Date) {
|
export function getLastWorkDayOfWeek(date: Date) {
|
||||||
const lastDay = new Date(date.getTime());
|
const lastDay = new Date(date);
|
||||||
lastDay.setDate(date.getDate() + (4 - getDayOfWeekIndex(date)));
|
lastDay.setDate(date.getDate() + (4 - getDayOfWeekIndex(date)));
|
||||||
return lastDay;
|
return lastDay;
|
||||||
}
|
}
|
||||||
@@ -104,3 +104,9 @@ export function getHumanDate(date: Date) {
|
|||||||
let currentYear = date.getFullYear();
|
let currentYear = date.getFullYear();
|
||||||
return `${currentDay}.${currentMonth}.${currentYear}`;
|
return `${currentDay}.${currentMonth}.${currentYear}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Převede datum ve formátu YYYY-MM-DD na DD.MM.YYYY */
|
||||||
|
export function formatDateString(dateString: string): string {
|
||||||
|
const [year, month, day] = dateString.split('-');
|
||||||
|
return `${day}.${month}.${year}`;
|
||||||
|
}
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
import { Navbar } from "react-bootstrap";
|
|
||||||
|
|
||||||
export default function Footer() {
|
export default function Footer() {
|
||||||
return <Navbar className="text-light" variant='dark' expand="lg" style={{
|
return (
|
||||||
display: "flex",
|
<footer className="footer">
|
||||||
justifyContent: "center",
|
<span>
|
||||||
marginTop: "auto", // Pushne footer na spodek
|
Zdroj. kódy dostupné na{' '}
|
||||||
flexShrink: 0 // Zabrání zmenšování při malém obsahu
|
<a href="https://gitea.melancholik.eu/mates/Luncher" target="_blank" rel="noopener noreferrer">
|
||||||
}}>
|
Gitea
|
||||||
<span>🄯 Žádná práva nevyhrazena. TODO a zdrojové kódy dostupné <a href="https://gitea.melancholik.eu/mates/Luncher">zde</a>.</span>
|
</a>
|
||||||
</Navbar >
|
</span>
|
||||||
|
</footer>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
@@ -1,16 +1,32 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { Navbar, Nav, NavDropdown } from "react-bootstrap";
|
import { Navbar, Nav, NavDropdown, Modal, Button } from "react-bootstrap";
|
||||||
import { useAuth } from "../context/auth";
|
import { useAuth } from "../context/auth";
|
||||||
import SettingsModal from "./modals/SettingsModal";
|
import SettingsModal from "./modals/SettingsModal";
|
||||||
import { useSettings } from "../context/settings";
|
import { useSettings, ThemePreference } from "../context/settings";
|
||||||
|
import HuePicker from "./HuePicker";
|
||||||
import FeaturesVotingModal from "./modals/FeaturesVotingModal";
|
import FeaturesVotingModal from "./modals/FeaturesVotingModal";
|
||||||
import PizzaCalculatorModal from "./modals/PizzaCalculatorModal";
|
import PizzaCalculatorModal from "./modals/PizzaCalculatorModal";
|
||||||
import RefreshMenuModal from "./modals/RefreshMenuModal";
|
import RefreshMenuModal from "./modals/RefreshMenuModal";
|
||||||
|
import GenerateQrModal from "./modals/GenerateQrModal";
|
||||||
|
import GenerateMockDataModal from "./modals/GenerateMockDataModal";
|
||||||
|
import ClearMockDataModal from "./modals/ClearMockDataModal";
|
||||||
import { useNavigate } from "react-router";
|
import { useNavigate } from "react-router";
|
||||||
import { STATS_URL } from "../AppRoutes";
|
import { STATS_URL, OBJEDNANI_URL } from "../AppRoutes";
|
||||||
import { FeatureRequest, getVotes, updateVote } from "../../../types";
|
import { FeatureRequest, getVotes, updateVote, LunchChoices, getChangelogs } from "../../../types";
|
||||||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import { faSun, faMoon } from "@fortawesome/free-solid-svg-icons";
|
||||||
|
import { formatDateString } from "../Utils";
|
||||||
|
|
||||||
export default function Header() {
|
const LAST_SEEN_CHANGELOG_KEY = "lastChangelogDate";
|
||||||
|
|
||||||
|
const IS_DEV = process.env.NODE_ENV === 'development';
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
choices?: LunchChoices;
|
||||||
|
dayIndex?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function Header({ choices, dayIndex }: Props) {
|
||||||
const auth = useAuth();
|
const auth = useAuth();
|
||||||
const settings = useSettings();
|
const settings = useSettings();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
@@ -18,8 +34,15 @@ export default function Header() {
|
|||||||
const [votingModalOpen, setVotingModalOpen] = useState<boolean>(false);
|
const [votingModalOpen, setVotingModalOpen] = useState<boolean>(false);
|
||||||
const [pizzaModalOpen, setPizzaModalOpen] = useState<boolean>(false);
|
const [pizzaModalOpen, setPizzaModalOpen] = useState<boolean>(false);
|
||||||
const [refreshMenuModalOpen, setRefreshMenuModalOpen] = useState<boolean>(false);
|
const [refreshMenuModalOpen, setRefreshMenuModalOpen] = useState<boolean>(false);
|
||||||
|
const [changelogModalOpen, setChangelogModalOpen] = useState<boolean>(false);
|
||||||
|
const [changelogEntries, setChangelogEntries] = useState<Record<string, string[]>>({});
|
||||||
|
const [qrModalOpen, setQrModalOpen] = useState<boolean>(false);
|
||||||
|
const [generateMockModalOpen, setGenerateMockModalOpen] = useState<boolean>(false);
|
||||||
|
const [clearMockModalOpen, setClearMockModalOpen] = useState<boolean>(false);
|
||||||
const [featureVotes, setFeatureVotes] = useState<FeatureRequest[] | undefined>([]);
|
const [featureVotes, setFeatureVotes] = useState<FeatureRequest[] | undefined>([]);
|
||||||
|
|
||||||
|
const effectiveDark = settings?.effectiveDark ?? false;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
getVotes().then(response => {
|
getVotes().then(response => {
|
||||||
@@ -28,6 +51,19 @@ export default function Header() {
|
|||||||
}
|
}
|
||||||
}, [auth?.login]);
|
}, [auth?.login]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!auth?.login) return;
|
||||||
|
const lastSeen = localStorage.getItem(LAST_SEEN_CHANGELOG_KEY) ?? undefined;
|
||||||
|
getChangelogs({ query: lastSeen ? { since: lastSeen } : {} }).then(response => {
|
||||||
|
const entries = response.data;
|
||||||
|
if (!entries || Object.keys(entries).length === 0) return;
|
||||||
|
setChangelogEntries(entries);
|
||||||
|
setChangelogModalOpen(true);
|
||||||
|
const newestDate = Object.keys(entries).sort((a, b) => b.localeCompare(a))[0];
|
||||||
|
localStorage.setItem(LAST_SEEN_CHANGELOG_KEY, newestDate);
|
||||||
|
});
|
||||||
|
}, [auth?.login]);
|
||||||
|
|
||||||
const closeSettingsModal = () => {
|
const closeSettingsModal = () => {
|
||||||
setSettingsModalOpen(false);
|
setSettingsModalOpen(false);
|
||||||
}
|
}
|
||||||
@@ -44,6 +80,23 @@ export default function Header() {
|
|||||||
setRefreshMenuModalOpen(false);
|
setRefreshMenuModalOpen(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const closeQrModal = () => {
|
||||||
|
setQrModalOpen(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleQrMenuClick = () => {
|
||||||
|
if (!settings?.bankAccount || !settings?.holderName) {
|
||||||
|
alert('Pro generování QR kódů je nutné mít v nastavení vyplněné číslo účtu a jméno držitele účtu.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setQrModalOpen(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
const toggleTheme = () => {
|
||||||
|
const newTheme: ThemePreference = effectiveDark ? 'light' : 'dark';
|
||||||
|
settings?.setThemePreference(newTheme);
|
||||||
|
}
|
||||||
|
|
||||||
const isValidInteger = (str: string) => {
|
const isValidInteger = (str: string) => {
|
||||||
str = str.trim();
|
str = str.trim();
|
||||||
if (!str) {
|
if (!str) {
|
||||||
@@ -54,19 +107,19 @@ export default function Header() {
|
|||||||
return n !== Infinity && String(n) === str && n >= 0;
|
return n !== Infinity && String(n) === str && n >= 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const saveSettings = (bankAccountNumber?: string, bankAccountHolderName?: string, hideSoupsOption?: boolean) => {
|
const saveSettings = (bankAccountNumber?: string, bankAccountHolderName?: string, hideSoupsOption?: boolean, themePreference?: ThemePreference) => {
|
||||||
if (bankAccountNumber) {
|
if (bankAccountNumber) {
|
||||||
try {
|
try {
|
||||||
// Validace kódu banky
|
// Validace kódu banky
|
||||||
if (bankAccountNumber.indexOf('/') < 0) {
|
if (!bankAccountNumber.includes('/')) {
|
||||||
throw Error("Číslo účtu neobsahuje lomítko/kód banky")
|
throw new Error("Číslo účtu neobsahuje lomítko/kód banky")
|
||||||
}
|
}
|
||||||
const split = bankAccountNumber.split("/");
|
const split = bankAccountNumber.split("/");
|
||||||
if (split[1].length !== 4) {
|
if (split[1].length !== 4) {
|
||||||
throw Error("Kód banky musí být 4 číslice")
|
throw new Error("Kód banky musí být 4 číslice")
|
||||||
}
|
}
|
||||||
if (!isValidInteger(split[1])) {
|
if (!isValidInteger(split[1])) {
|
||||||
throw Error("Kód banky není číslo")
|
throw new Error("Kód banky není číslo")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validace čísla a předčíslí
|
// Validace čísla a předčíslí
|
||||||
@@ -76,7 +129,7 @@ export default function Header() {
|
|||||||
cislo = cislo.replace('-', '');
|
cislo = cislo.replace('-', '');
|
||||||
}
|
}
|
||||||
if (!isValidInteger(cislo)) {
|
if (!isValidInteger(cislo)) {
|
||||||
throw Error("Předčíslí nebo číslo účtu neobsahuje pouze číslice")
|
throw new Error("Předčíslí nebo číslo účtu neobsahuje pouze číslice")
|
||||||
}
|
}
|
||||||
if (cislo.length < 16) {
|
if (cislo.length < 16) {
|
||||||
cislo = cislo.padStart(16, '0');
|
cislo = cislo.padStart(16, '0');
|
||||||
@@ -89,7 +142,7 @@ export default function Header() {
|
|||||||
sum += Number.parseInt(char) * weight
|
sum += Number.parseInt(char) * weight
|
||||||
}
|
}
|
||||||
if (sum % 11 !== 0) {
|
if (sum % 11 !== 0) {
|
||||||
throw Error("Číslo účtu je neplatné")
|
throw new Error("Číslo účtu je neplatné")
|
||||||
}
|
}
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
alert(e.message)
|
alert(e.message)
|
||||||
@@ -99,6 +152,9 @@ export default function Header() {
|
|||||||
settings?.setBankAccountNumber(bankAccountNumber);
|
settings?.setBankAccountNumber(bankAccountNumber);
|
||||||
settings?.setBankAccountHolderName(bankAccountHolderName);
|
settings?.setBankAccountHolderName(bankAccountHolderName);
|
||||||
settings?.setHideSoupsOption(hideSoupsOption);
|
settings?.setHideSoupsOption(hideSoupsOption);
|
||||||
|
if (themePreference) {
|
||||||
|
settings?.setThemePreference(themePreference);
|
||||||
|
}
|
||||||
closeSettingsModal();
|
closeSettingsModal();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -118,12 +174,45 @@ export default function Header() {
|
|||||||
<Navbar.Toggle aria-controls="basic-navbar-nav" />
|
<Navbar.Toggle aria-controls="basic-navbar-nav" />
|
||||||
<Navbar.Collapse id="basic-navbar-nav">
|
<Navbar.Collapse id="basic-navbar-nav">
|
||||||
<Nav className="nav">
|
<Nav className="nav">
|
||||||
|
<button
|
||||||
|
className="theme-toggle"
|
||||||
|
onClick={toggleTheme}
|
||||||
|
title={effectiveDark ? 'Přepnout na světlý režim' : 'Přepnout na tmavý režim'}
|
||||||
|
aria-label="Přepnout světlý/tmavý režim"
|
||||||
|
>
|
||||||
|
<FontAwesomeIcon icon={effectiveDark ? faSun : faMoon} />
|
||||||
|
</button>
|
||||||
|
<HuePicker
|
||||||
|
accentHue={settings?.accentHue ?? 142}
|
||||||
|
isDark={effectiveDark}
|
||||||
|
onChange={hue => settings?.setAccentHue(hue)}
|
||||||
|
/>
|
||||||
<NavDropdown align="end" title={auth?.login} id="basic-nav-dropdown">
|
<NavDropdown align="end" title={auth?.login} id="basic-nav-dropdown">
|
||||||
<NavDropdown.Item onClick={() => setSettingsModalOpen(true)}>Nastavení</NavDropdown.Item>
|
<NavDropdown.Item onClick={() => setSettingsModalOpen(true)}>Nastavení</NavDropdown.Item>
|
||||||
<NavDropdown.Item onClick={() => setRefreshMenuModalOpen(true)}>Přenačtení menu</NavDropdown.Item>
|
<NavDropdown.Item onClick={() => setRefreshMenuModalOpen(true)}>Přenačtení menu</NavDropdown.Item>
|
||||||
<NavDropdown.Item onClick={() => setVotingModalOpen(true)}>Hlasovat o nových funkcích</NavDropdown.Item>
|
<NavDropdown.Item onClick={() => setVotingModalOpen(true)}>Hlasovat o nových funkcích</NavDropdown.Item>
|
||||||
<NavDropdown.Item onClick={() => setPizzaModalOpen(true)}>Pizza kalkulačka</NavDropdown.Item>
|
<NavDropdown.Item onClick={() => setPizzaModalOpen(true)}>Pizza kalkulačka</NavDropdown.Item>
|
||||||
|
<NavDropdown.Item onClick={handleQrMenuClick}>Generování QR kódů</NavDropdown.Item>
|
||||||
<NavDropdown.Item onClick={() => navigate(STATS_URL)}>Statistiky</NavDropdown.Item>
|
<NavDropdown.Item onClick={() => navigate(STATS_URL)}>Statistiky</NavDropdown.Item>
|
||||||
|
<NavDropdown.Item onClick={() => navigate(OBJEDNANI_URL)}>Objednání</NavDropdown.Item>
|
||||||
|
<NavDropdown.Item onClick={() => {
|
||||||
|
getChangelogs().then(response => {
|
||||||
|
const entries = response.data ?? {};
|
||||||
|
setChangelogEntries(entries);
|
||||||
|
setChangelogModalOpen(true);
|
||||||
|
const dates = Object.keys(entries).sort((a, b) => b.localeCompare(a));
|
||||||
|
if (dates.length > 0) {
|
||||||
|
localStorage.setItem(LAST_SEEN_CHANGELOG_KEY, dates[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}}>Novinky</NavDropdown.Item>
|
||||||
|
{IS_DEV && (
|
||||||
|
<>
|
||||||
|
<NavDropdown.Divider />
|
||||||
|
<NavDropdown.Item onClick={() => setGenerateMockModalOpen(true)}>🔧 Generovat mock data</NavDropdown.Item>
|
||||||
|
<NavDropdown.Item onClick={() => setClearMockModalOpen(true)}>🔧 Smazat data dne</NavDropdown.Item>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
<NavDropdown.Divider />
|
<NavDropdown.Divider />
|
||||||
<NavDropdown.Item onClick={auth?.logout}>Odhlásit se</NavDropdown.Item>
|
<NavDropdown.Item onClick={auth?.logout}>Odhlásit se</NavDropdown.Item>
|
||||||
</NavDropdown>
|
</NavDropdown>
|
||||||
@@ -133,5 +222,53 @@ export default function Header() {
|
|||||||
<RefreshMenuModal isOpen={refreshMenuModalOpen} onClose={closeRefreshMenuModal} />
|
<RefreshMenuModal isOpen={refreshMenuModalOpen} onClose={closeRefreshMenuModal} />
|
||||||
<FeaturesVotingModal isOpen={votingModalOpen} onClose={closeVotingModal} onChange={saveFeatureVote} initialValues={featureVotes} />
|
<FeaturesVotingModal isOpen={votingModalOpen} onClose={closeVotingModal} onChange={saveFeatureVote} initialValues={featureVotes} />
|
||||||
<PizzaCalculatorModal isOpen={pizzaModalOpen} onClose={closePizzaModal} />
|
<PizzaCalculatorModal isOpen={pizzaModalOpen} onClose={closePizzaModal} />
|
||||||
|
{choices && settings?.bankAccount && settings?.holderName && (
|
||||||
|
<GenerateQrModal
|
||||||
|
isOpen={qrModalOpen}
|
||||||
|
onClose={closeQrModal}
|
||||||
|
choices={choices}
|
||||||
|
bankAccount={settings.bankAccount}
|
||||||
|
bankAccountHolder={settings.holderName}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{IS_DEV && (
|
||||||
|
<>
|
||||||
|
<GenerateMockDataModal
|
||||||
|
isOpen={generateMockModalOpen}
|
||||||
|
onClose={() => setGenerateMockModalOpen(false)}
|
||||||
|
currentDayIndex={dayIndex}
|
||||||
|
/>
|
||||||
|
<ClearMockDataModal
|
||||||
|
isOpen={clearMockModalOpen}
|
||||||
|
onClose={() => setClearMockModalOpen(false)}
|
||||||
|
currentDayIndex={dayIndex}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
<Modal show={changelogModalOpen} onHide={() => setChangelogModalOpen(false)} size="lg">
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Novinky</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{Object.keys(changelogEntries).sort((a, b) => b.localeCompare(a)).map(date => (
|
||||||
|
<div key={date}>
|
||||||
|
<strong>{formatDateString(date)}</strong>
|
||||||
|
<ul>
|
||||||
|
{changelogEntries[date].map((item, index) => (
|
||||||
|
<li key={index}>{item}</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
{Object.keys(changelogEntries).length === 0 && (
|
||||||
|
<p>Žádné novinky.</p>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
<Button variant="secondary" onClick={() => setChangelogModalOpen(false)}>
|
||||||
|
Zavřít
|
||||||
|
</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
</Navbar>
|
</Navbar>
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,138 @@
|
|||||||
|
.hue-picker-dropdown {
|
||||||
|
.dropdown-toggle {
|
||||||
|
background: transparent !important;
|
||||||
|
border: none !important;
|
||||||
|
color: var(--luncher-navbar-text) !important;
|
||||||
|
padding: 8px 12px;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: var(--luncher-radius-sm);
|
||||||
|
transition: var(--luncher-transition);
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: rgba(255, 255, 255, 0.1) !important;
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hue-picker-panel {
|
||||||
|
padding: 0 !important;
|
||||||
|
min-width: 240px;
|
||||||
|
|
||||||
|
.hue-picker-inner {
|
||||||
|
padding: 14px 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hue-picker-label {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
color: var(--luncher-text-secondary);
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hue-slider {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
width: 100%;
|
||||||
|
height: 12px;
|
||||||
|
border-radius: 6px;
|
||||||
|
background: linear-gradient(
|
||||||
|
to right,
|
||||||
|
hsl(0 70% 50%), hsl(30 70% 50%), hsl(60 70% 50%), hsl(90 70% 50%),
|
||||||
|
hsl(120 70% 50%), hsl(150 70% 50%), hsl(180 70% 50%), hsl(210 70% 50%),
|
||||||
|
hsl(240 70% 50%), hsl(270 70% 50%), hsl(300 70% 50%), hsl(330 70% 50%), hsl(360 70% 50%)
|
||||||
|
);
|
||||||
|
outline: none;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-bottom: 14px;
|
||||||
|
|
||||||
|
&::-webkit-slider-thumb {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: white;
|
||||||
|
border: 2px solid rgba(0, 0, 0, 0.25);
|
||||||
|
cursor: pointer;
|
||||||
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
||||||
|
transition: transform 0.15s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
transform: scale(1.15);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&::-moz-range-thumb {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: white;
|
||||||
|
border: 2px solid rgba(0, 0, 0, 0.25);
|
||||||
|
cursor: pointer;
|
||||||
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hue-presets {
|
||||||
|
display: flex;
|
||||||
|
gap: 8px;
|
||||||
|
margin-bottom: 14px;
|
||||||
|
|
||||||
|
.hue-swatch {
|
||||||
|
width: 26px;
|
||||||
|
height: 26px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0;
|
||||||
|
transition: transform 0.15s ease, border-color 0.15s ease;
|
||||||
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
transform: scale(1.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
border-color: var(--luncher-text);
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hue-preview {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
padding-top: 4px;
|
||||||
|
border-top: 1px solid var(--luncher-border);
|
||||||
|
|
||||||
|
.hue-preview-chip {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
border-radius: var(--luncher-radius-sm);
|
||||||
|
flex-shrink: 0;
|
||||||
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
||||||
|
transition: background 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: var(--luncher-text-secondary);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
import { Dropdown } from 'react-bootstrap';
|
||||||
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||||||
|
import { faPalette } from '@fortawesome/free-solid-svg-icons';
|
||||||
|
import './HuePicker.scss';
|
||||||
|
|
||||||
|
const PRESETS = [
|
||||||
|
{ hue: 142, label: 'Zelená' },
|
||||||
|
{ hue: 217, label: 'Modrá' },
|
||||||
|
{ hue: 263, label: 'Fialová' },
|
||||||
|
{ hue: 0, label: 'Červená' },
|
||||||
|
{ hue: 28, label: 'Oranžová' },
|
||||||
|
{ hue: 340, label: 'Růžová' },
|
||||||
|
];
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
accentHue: number;
|
||||||
|
isDark: boolean;
|
||||||
|
onChange: (hue: number) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
function swatchColor(hue: number, isDark: boolean): string {
|
||||||
|
return `hsl(${hue} 70% ${isDark ? 55 : 38}%)`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function HuePicker({ accentHue, isDark, onChange }: Props) {
|
||||||
|
return (
|
||||||
|
<Dropdown align="end" autoClose="outside" className="hue-picker-dropdown">
|
||||||
|
<Dropdown.Toggle
|
||||||
|
as="button"
|
||||||
|
className="theme-toggle"
|
||||||
|
aria-label="Barva zvýraznění"
|
||||||
|
title="Barva zvýraznění"
|
||||||
|
>
|
||||||
|
<FontAwesomeIcon icon={faPalette} />
|
||||||
|
</Dropdown.Toggle>
|
||||||
|
<Dropdown.Menu className="hue-picker-panel">
|
||||||
|
<div className="hue-picker-inner">
|
||||||
|
<div className="hue-picker-label">Barva zvýraznění</div>
|
||||||
|
<input
|
||||||
|
type="range"
|
||||||
|
min={0}
|
||||||
|
max={360}
|
||||||
|
value={accentHue}
|
||||||
|
onChange={e => onChange(parseInt(e.target.value, 10))}
|
||||||
|
className="hue-slider"
|
||||||
|
aria-label="Odstín barvy zvýraznění"
|
||||||
|
/>
|
||||||
|
<div className="hue-presets">
|
||||||
|
{PRESETS.map(p => (
|
||||||
|
<button
|
||||||
|
key={p.hue}
|
||||||
|
className={`hue-swatch${accentHue === p.hue ? ' active' : ''}`}
|
||||||
|
style={{ background: swatchColor(p.hue, isDark) }}
|
||||||
|
title={p.label}
|
||||||
|
onClick={() => onChange(p.hue)}
|
||||||
|
aria-label={p.label}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<div className="hue-preview">
|
||||||
|
<div
|
||||||
|
className="hue-preview-chip"
|
||||||
|
style={{ background: swatchColor(accentHue, isDark) }}
|
||||||
|
/>
|
||||||
|
<span>Aktuální barva zvýraznění</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Dropdown.Menu>
|
||||||
|
</Dropdown>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -9,11 +9,13 @@ type Props = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Loader(props: Readonly<Props>) {
|
function Loader(props: Readonly<Props>) {
|
||||||
return <div className='loader'>
|
return (
|
||||||
<h1>{props.title ?? 'Prosím čekejte...'}</h1>
|
<div className='loader'>
|
||||||
<FontAwesomeIcon icon={props.icon} className={`loader-icon mb-3 ` + (props.animation ?? '')} />
|
<FontAwesomeIcon icon={props.icon} className={`loader-icon ${props.animation ?? ''}`} />
|
||||||
<p>{props.description}</p>
|
<h2 className='loader-title'>{props.title ?? 'Prosím čekejte...'}</h2>
|
||||||
|
<p className='loader-description'>{props.description}</p>
|
||||||
</div>
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Loader;
|
export default Loader;
|
||||||
|
|||||||
@@ -15,29 +15,43 @@ export default function PizzaOrderList({ state, orders, onDelete, creator }: Rea
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!orders?.length) {
|
if (!orders?.length) {
|
||||||
return <p className="mt-3"><i>Zatím žádné objednávky...</i></p>
|
return <p className="mt-4" style={{ color: 'var(--luncher-text-muted)', fontStyle: 'italic' }}>Zatím žádné objednávky...</p>
|
||||||
}
|
}
|
||||||
|
|
||||||
const total = orders.reduce((total, order) => total + order.totalPrice, 0);
|
const total = orders.reduce((total, order) => total + order.totalPrice, 0);
|
||||||
|
|
||||||
return <Table className="mt-3" striped bordered hover>
|
return (
|
||||||
<thead>
|
<div className="mt-4" style={{
|
||||||
|
background: 'var(--luncher-bg-card)',
|
||||||
|
borderRadius: 'var(--luncher-radius-lg)',
|
||||||
|
overflow: 'hidden',
|
||||||
|
border: '1px solid var(--luncher-border-light)',
|
||||||
|
boxShadow: 'var(--luncher-shadow)'
|
||||||
|
}}>
|
||||||
|
<Table className="mb-0" style={{ color: 'var(--luncher-text)' }}>
|
||||||
|
<thead style={{ background: 'var(--luncher-primary-light)' }}>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Jméno</th>
|
<th style={{ padding: '16px 20px', color: 'var(--luncher-primary)', fontWeight: 600, border: 'none' }}>Jméno</th>
|
||||||
<th>Objednávka</th>
|
<th style={{ padding: '16px 20px', color: 'var(--luncher-primary)', fontWeight: 600, border: 'none' }}>Objednávka</th>
|
||||||
<th>Poznámka</th>
|
<th style={{ padding: '16px 20px', color: 'var(--luncher-primary)', fontWeight: 600, border: 'none' }}>Poznámka</th>
|
||||||
<th>Příplatek</th>
|
<th style={{ padding: '16px 20px', color: 'var(--luncher-primary)', fontWeight: 600, border: 'none' }}>Příplatek</th>
|
||||||
<th>Cena</th>
|
<th style={{ padding: '16px 20px', color: 'var(--luncher-primary)', fontWeight: 600, border: 'none', textAlign: 'right' }}>Cena</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{orders.map(order => <tr key={order.customer}>
|
{orders.map(order => <tr key={order.customer} style={{ borderColor: 'var(--luncher-border-light)' }}>
|
||||||
<PizzaOrderRow creator={creator} state={state} order={order} onDelete={onDelete} onFeeModalSave={saveFees} />
|
<PizzaOrderRow creator={creator} state={state} order={order} onDelete={onDelete} onFeeModalSave={saveFees} />
|
||||||
</tr>)}
|
</tr>)}
|
||||||
<tr style={{ fontWeight: 'bold' }}>
|
<tr style={{
|
||||||
<td colSpan={4}>Celkem</td>
|
fontWeight: 700,
|
||||||
<td>{`${total} Kč`}</td>
|
background: 'var(--luncher-bg-hover)',
|
||||||
|
borderTop: '2px solid var(--luncher-border)'
|
||||||
|
}}>
|
||||||
|
<td colSpan={4} style={{ padding: '16px 20px', border: 'none' }}>Celkem</td>
|
||||||
|
<td style={{ padding: '16px 20px', border: 'none', textAlign: 'right', color: 'var(--luncher-primary)' }}>{`${total / 100} Kč`}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</Table>
|
</Table>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
@@ -26,7 +26,7 @@ export default function PizzaOrderRow({ creator, order, state, onDelete, onFeeMo
|
|||||||
<td>{order.customer}</td>
|
<td>{order.customer}</td>
|
||||||
<td>{order.pizzaList!.map<React.ReactNode>(pizzaOrder =>
|
<td>{order.pizzaList!.map<React.ReactNode>(pizzaOrder =>
|
||||||
<span key={pizzaOrder.name}>
|
<span key={pizzaOrder.name}>
|
||||||
{`${pizzaOrder.name}, ${pizzaOrder.size} (${pizzaOrder.price} Kč)`}
|
{`${pizzaOrder.name}, ${pizzaOrder.size} (${pizzaOrder.price / 100} Kč)`}
|
||||||
{auth?.login === order.customer && state === PizzaDayState.CREATED &&
|
{auth?.login === order.customer && state === PizzaDayState.CREATED &&
|
||||||
<span title='Odstranit'>
|
<span title='Odstranit'>
|
||||||
<FontAwesomeIcon onClick={() => {
|
<FontAwesomeIcon onClick={() => {
|
||||||
@@ -38,10 +38,10 @@ export default function PizzaOrderRow({ creator, order, state, onDelete, onFeeMo
|
|||||||
.reduce((prev, curr, index) => [prev, <br key={`br-${index}`} />, curr])}
|
.reduce((prev, curr, index) => [prev, <br key={`br-${index}`} />, curr])}
|
||||||
</td>
|
</td>
|
||||||
<td style={{ maxWidth: "200px" }}>{order.note ?? '-'}</td>
|
<td style={{ maxWidth: "200px" }}>{order.note ?? '-'}</td>
|
||||||
<td style={{ maxWidth: "200px" }}>{order.fee?.price ? `${order.fee.price} Kč${order.fee.text ? ` (${order.fee.text})` : ''}` : '-'}</td>
|
<td style={{ maxWidth: "200px" }}>{order.fee?.price ? `${order.fee.price / 100} Kč${order.fee.text ? ` (${order.fee.text})` : ''}` : '-'}</td>
|
||||||
<td>
|
<td>
|
||||||
{order.totalPrice} Kč{auth?.login === creator && state === PizzaDayState.CREATED && <span title='Nastavit příplatek'><FontAwesomeIcon onClick={() => { setIsFeeModalOpen(true) }} className='action-icon' icon={faMoneyBill1} /></span>}
|
{order.totalPrice / 100} Kč{auth?.login === creator && state === PizzaDayState.CREATED && <span title='Nastavit příplatek'><FontAwesomeIcon onClick={() => { setIsFeeModalOpen(true) }} className='action-icon' icon={faMoneyBill1} /></span>}
|
||||||
</td>
|
</td>
|
||||||
<PizzaAdditionalFeeModal customerName={order.customer} isOpen={isFeeModalOpen} onClose={() => setIsFeeModalOpen(false)} onSave={saveFees} initialValues={{ text: order.fee?.text, price: order.fee?.price?.toString() }} />
|
<PizzaAdditionalFeeModal customerName={order.customer} isOpen={isFeeModalOpen} onClose={() => setIsFeeModalOpen(false)} onSave={saveFees} initialValues={{ text: order.fee?.text, price: order.fee?.price != null ? String(order.fee.price / 100) : undefined }} />
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
import { useState } from "react";
|
||||||
|
import { Modal, Button, Alert } from "react-bootstrap";
|
||||||
|
import { clearMockData, DayIndex } from "../../../../types";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
currentDayIndex?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
const DAY_NAMES = ['Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek'];
|
||||||
|
|
||||||
|
/** Modální dialog pro smazání mock dat (pouze DEV). */
|
||||||
|
export default function ClearMockDataModal({ isOpen, onClose, currentDayIndex }: Readonly<Props>) {
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const [success, setSuccess] = useState(false);
|
||||||
|
|
||||||
|
const handleClear = async () => {
|
||||||
|
setError(null);
|
||||||
|
setLoading(true);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const body: any = {};
|
||||||
|
if (currentDayIndex !== undefined) {
|
||||||
|
body.dayIndex = currentDayIndex as DayIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await clearMockData({ body });
|
||||||
|
if (response.error) {
|
||||||
|
setError((response.error as any).error || 'Nastala chyba při mazání dat');
|
||||||
|
} else {
|
||||||
|
setSuccess(true);
|
||||||
|
setTimeout(() => {
|
||||||
|
onClose();
|
||||||
|
setSuccess(false);
|
||||||
|
}, 1500);
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba při mazání dat');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClose = () => {
|
||||||
|
setError(null);
|
||||||
|
setSuccess(false);
|
||||||
|
onClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
const dayName = currentDayIndex !== undefined ? DAY_NAMES[currentDayIndex] : 'aktuální den';
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={handleClose}>
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Smazat data</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{success ? (
|
||||||
|
<Alert variant="success">
|
||||||
|
Data byla úspěšně smazána!
|
||||||
|
</Alert>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<Alert variant="warning">
|
||||||
|
<strong>DEV režim</strong> - Tato funkce je dostupná pouze ve vývojovém prostředí.
|
||||||
|
</Alert>
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<Alert variant="danger" onClose={() => setError(null)} dismissible>
|
||||||
|
{error}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Opravdu chcete smazat všechny volby stravování pro <strong>{dayName}</strong>?
|
||||||
|
</p>
|
||||||
|
<p className="text-muted">
|
||||||
|
Tato akce je nevratná.
|
||||||
|
</p>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
{!success && (
|
||||||
|
<>
|
||||||
|
<Button variant="secondary" onClick={handleClose} disabled={loading}>
|
||||||
|
Ne, zrušit
|
||||||
|
</Button>
|
||||||
|
<Button variant="danger" onClick={handleClear} disabled={loading}>
|
||||||
|
{loading ? 'Mažu...' : 'Ano, smazat'}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{success && (
|
||||||
|
<Button variant="secondary" onClick={handleClose}>
|
||||||
|
Zavřít
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
import { Modal, Button } from "react-bootstrap";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
title: string;
|
||||||
|
message: string;
|
||||||
|
confirmLabel?: string;
|
||||||
|
confirmVariant?: string;
|
||||||
|
onConfirm: () => void;
|
||||||
|
onClose: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function ConfirmModal({ isOpen, title, message, confirmLabel = "Potvrdit", confirmVariant = "primary", onConfirm, onClose }: Readonly<Props>) {
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={onClose}>
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title>{title}</Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>{message}</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
<Button variant="secondary" onClick={onClose}>Zrušit</Button>
|
||||||
|
<Button variant={confirmVariant} onClick={onConfirm}>{confirmLabel}</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,197 @@
|
|||||||
|
import { useState, useEffect } from "react";
|
||||||
|
import { Modal, Button, Form, Table, Alert } from "react-bootstrap";
|
||||||
|
import { updateGroupFees, OrderGroup, OrderGroupMember } from "../../../../types";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
group: OrderGroup;
|
||||||
|
onSaved: (data: any) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
function parseHal(s: string): number {
|
||||||
|
const n = parseFloat(s.replace(',', '.'));
|
||||||
|
return isNaN(n) || n < 0 ? 0 : Math.round(n * 100);
|
||||||
|
}
|
||||||
|
|
||||||
|
function parsePercent(s: string): number {
|
||||||
|
const n = parseFloat(s.replace(',', '.'));
|
||||||
|
return isNaN(n) || n < 0 ? 0 : Math.round(n);
|
||||||
|
}
|
||||||
|
|
||||||
|
function computeMemberTotal(member: OrderGroupMember, feeShare: number, discountType: string, discountValue: number, memberCount: number): number {
|
||||||
|
const base = member.amount ?? 0;
|
||||||
|
const surcharge = member.surchargeAmount ?? 0;
|
||||||
|
const discount = discountType === 'percent'
|
||||||
|
? Math.round((base + surcharge) * discountValue / 100)
|
||||||
|
: Math.round(discountValue / memberCount);
|
||||||
|
return base + surcharge + feeShare - discount;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function EditGroupFeesModal({ isOpen, onClose, group, onSaved }: Readonly<Props>) {
|
||||||
|
const [fees, setFees] = useState('');
|
||||||
|
const [shipping, setShipping] = useState('');
|
||||||
|
const [tip, setTip] = useState('');
|
||||||
|
const [discountType, setDiscountType] = useState<'percent' | 'fixed'>('percent');
|
||||||
|
const [discountValue, setDiscountValue] = useState('');
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!isOpen) return;
|
||||||
|
setFees(group.fees ? String(group.fees / 100) : '');
|
||||||
|
setShipping(group.shipping ? String(group.shipping / 100) : '');
|
||||||
|
setTip(group.tip ? String(group.tip / 100) : '');
|
||||||
|
setDiscountType((group.discountType as 'percent' | 'fixed') ?? 'percent');
|
||||||
|
setDiscountValue(group.discountValue
|
||||||
|
? ((group.discountType as string) === 'fixed' ? String(group.discountValue / 100) : String(group.discountValue))
|
||||||
|
: '');
|
||||||
|
setError(null);
|
||||||
|
}, [isOpen, group]);
|
||||||
|
|
||||||
|
const memberEntries = Object.entries(group.members) as [string, OrderGroupMember][];
|
||||||
|
const memberCount = memberEntries.length;
|
||||||
|
|
||||||
|
const feesNum = parseHal(fees);
|
||||||
|
const shippingNum = parseHal(shipping);
|
||||||
|
const tipNum = parseHal(tip);
|
||||||
|
const discountNum = discountType === 'percent' ? parsePercent(discountValue) : parseHal(discountValue);
|
||||||
|
const totalFees = feesNum + shippingNum + tipNum;
|
||||||
|
const feeShare = memberCount > 0 ? Math.round(totalFees / memberCount) : 0;
|
||||||
|
|
||||||
|
const handleSave = async () => {
|
||||||
|
setError(null);
|
||||||
|
setLoading(true);
|
||||||
|
try {
|
||||||
|
const res = await updateGroupFees({
|
||||||
|
body: {
|
||||||
|
id: group.id,
|
||||||
|
fees: feesNum,
|
||||||
|
shipping: shippingNum,
|
||||||
|
tip: tipNum,
|
||||||
|
discountType: discountNum > 0 ? discountType : undefined,
|
||||||
|
discountValue: discountNum > 0 ? discountNum : undefined,
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (res.error) {
|
||||||
|
setError((res.error as any).error || 'Nastala chyba');
|
||||||
|
} else {
|
||||||
|
onSaved(res.data);
|
||||||
|
onClose();
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={onClose} size="lg">
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Poplatky skupiny — {group.name}</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{error && (
|
||||||
|
<Alert variant="danger" onClose={() => setError(null)} dismissible>{error}</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="d-flex gap-3 flex-wrap mb-3">
|
||||||
|
<Form.Group>
|
||||||
|
<Form.Label>Poplatky (Kč)</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
type="number" min={0} step={0.01}
|
||||||
|
value={fees} onChange={e => setFees(e.target.value)}
|
||||||
|
placeholder="0" style={{ width: 110 }}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group>
|
||||||
|
<Form.Label>Doprava (Kč)</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
type="number" min={0} step={0.01}
|
||||||
|
value={shipping} onChange={e => setShipping(e.target.value)}
|
||||||
|
placeholder="0" style={{ width: 110 }}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group>
|
||||||
|
<Form.Label>Spropitné (Kč)</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
type="number" min={0} step={0.01}
|
||||||
|
value={tip} onChange={e => setTip(e.target.value)}
|
||||||
|
placeholder="0" style={{ width: 110 }}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="d-flex gap-3 align-items-end flex-wrap mb-3">
|
||||||
|
<Form.Group>
|
||||||
|
<Form.Label>Sleva</Form.Label>
|
||||||
|
<div className="d-flex gap-2 align-items-center">
|
||||||
|
<Form.Select
|
||||||
|
value={discountType}
|
||||||
|
onChange={e => setDiscountType(e.target.value as 'percent' | 'fixed')}
|
||||||
|
style={{ width: 160 }}
|
||||||
|
>
|
||||||
|
<option value="percent">Procentuální (%)</option>
|
||||||
|
<option value="fixed">Pevná částka (Kč)</option>
|
||||||
|
</Form.Select>
|
||||||
|
<Form.Control
|
||||||
|
type="number" min={0} step={discountType === 'percent' ? 1 : 0.01}
|
||||||
|
value={discountValue} onChange={e => setDiscountValue(e.target.value)}
|
||||||
|
placeholder="0" style={{ width: 100 }}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<span className="text-muted">{discountType === 'percent' ? '%' : 'Kč'}</span>
|
||||||
|
</div>
|
||||||
|
</Form.Group>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
<h6>Náhled celkových částek ({memberCount} členů, {feeShare > 0 ? `poplatek ${feeShare / 100} Kč/os.` : 'bez poplatku'})</h6>
|
||||||
|
<Table size="sm" bordered>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Člen</th>
|
||||||
|
<th className="text-end">Základ</th>
|
||||||
|
<th className="text-end">Příplatek</th>
|
||||||
|
<th className="text-end">Poplatek</th>
|
||||||
|
<th className="text-end">Sleva</th>
|
||||||
|
<th className="text-end fw-bold">Celkem</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{memberEntries.map(([login, member]) => {
|
||||||
|
const base = member.amount ?? 0;
|
||||||
|
const surcharge = member.surchargeAmount ?? 0;
|
||||||
|
const discount = discountNum > 0
|
||||||
|
? (discountType === 'percent'
|
||||||
|
? Math.round((base + surcharge) * discountNum / 100)
|
||||||
|
: Math.round(discountNum / memberCount))
|
||||||
|
: 0;
|
||||||
|
const total = computeMemberTotal(member, feeShare, discountType, discountNum, memberCount);
|
||||||
|
return (
|
||||||
|
<tr key={login}>
|
||||||
|
<td><strong>{login}</strong></td>
|
||||||
|
<td className="text-end">{base > 0 ? `${base / 100} Kč` : '—'}</td>
|
||||||
|
<td className="text-end">{surcharge > 0 ? `${surcharge / 100} Kč` : '—'}</td>
|
||||||
|
<td className="text-end">{feeShare > 0 ? `${feeShare / 100} Kč` : '—'}</td>
|
||||||
|
<td className="text-end text-danger">{discount > 0 ? `-${discount / 100} Kč` : '—'}</td>
|
||||||
|
<td className="text-end fw-bold">{total > 0 ? `${total / 100} Kč` : '—'}</td>
|
||||||
|
</tr>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</tbody>
|
||||||
|
</Table>
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
<Button variant="secondary" onClick={onClose} disabled={loading}>Storno</Button>
|
||||||
|
<Button variant="primary" onClick={handleSave} disabled={loading}>
|
||||||
|
{loading ? 'Ukládám...' : 'Uložit'}
|
||||||
|
</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,140 @@
|
|||||||
|
import { useState } from "react";
|
||||||
|
import { Modal, Button, Form, Alert } from "react-bootstrap";
|
||||||
|
import { generateMockData, DayIndex } from "../../../../types";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
currentDayIndex?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
const DAY_NAMES = ['Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek'];
|
||||||
|
|
||||||
|
/** Modální dialog pro generování mock dat (pouze DEV). */
|
||||||
|
export default function GenerateMockDataModal({ isOpen, onClose, currentDayIndex }: Readonly<Props>) {
|
||||||
|
const [dayIndex, setDayIndex] = useState<number | undefined>(currentDayIndex);
|
||||||
|
const [count, setCount] = useState<string>('');
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const [success, setSuccess] = useState(false);
|
||||||
|
|
||||||
|
const handleGenerate = async () => {
|
||||||
|
setError(null);
|
||||||
|
setLoading(true);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const body: any = {};
|
||||||
|
if (dayIndex !== undefined) {
|
||||||
|
body.dayIndex = dayIndex as DayIndex;
|
||||||
|
}
|
||||||
|
if (count && count.trim() !== '') {
|
||||||
|
const countNum = parseInt(count, 10);
|
||||||
|
if (isNaN(countNum) || countNum < 1 || countNum > 100) {
|
||||||
|
setError('Počet musí být číslo mezi 1 a 100');
|
||||||
|
setLoading(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
body.count = countNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await generateMockData({ body });
|
||||||
|
if (response.error) {
|
||||||
|
setError((response.error as any).error || 'Nastala chyba při generování dat');
|
||||||
|
} else {
|
||||||
|
setSuccess(true);
|
||||||
|
setTimeout(() => {
|
||||||
|
onClose();
|
||||||
|
setSuccess(false);
|
||||||
|
setCount('');
|
||||||
|
}, 1500);
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba při generování dat');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClose = () => {
|
||||||
|
setError(null);
|
||||||
|
setSuccess(false);
|
||||||
|
setCount('');
|
||||||
|
onClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={handleClose}>
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Generovat mock data</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{success ? (
|
||||||
|
<Alert variant="success">
|
||||||
|
Mock data byla úspěšně vygenerována!
|
||||||
|
</Alert>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<Alert variant="warning">
|
||||||
|
<strong>DEV režim</strong> - Tato funkce je dostupná pouze ve vývojovém prostředí.
|
||||||
|
</Alert>
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<Alert variant="danger" onClose={() => setError(null)} dismissible>
|
||||||
|
{error}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Den</Form.Label>
|
||||||
|
<Form.Select
|
||||||
|
value={dayIndex ?? ''}
|
||||||
|
onChange={e => setDayIndex(e.target.value === '' ? undefined : parseInt(e.target.value, 10))}
|
||||||
|
>
|
||||||
|
<option value="">Aktuální den</option>
|
||||||
|
{DAY_NAMES.map((name, index) => (
|
||||||
|
<option key={index} value={index}>{name}</option>
|
||||||
|
))}
|
||||||
|
</Form.Select>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
Pokud není vybráno, použije se aktuální den.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Počet záznamů</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
type="number"
|
||||||
|
placeholder="Náhodný (5-20)"
|
||||||
|
value={count}
|
||||||
|
onChange={e => setCount(e.target.value)}
|
||||||
|
min={1}
|
||||||
|
max={100}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
Pokud není zadáno, vybere se náhodný počet 5-20.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
{!success && (
|
||||||
|
<>
|
||||||
|
<Button variant="secondary" onClick={handleClose} disabled={loading}>
|
||||||
|
Storno
|
||||||
|
</Button>
|
||||||
|
<Button variant="primary" onClick={handleGenerate} disabled={loading}>
|
||||||
|
{loading ? 'Generuji...' : 'Generovat'}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{success && (
|
||||||
|
<Button variant="secondary" onClick={handleClose}>
|
||||||
|
Zavřít
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,255 @@
|
|||||||
|
import { useState, useEffect, useCallback } from "react";
|
||||||
|
import { Modal, Button, Form, Table, Alert } from "react-bootstrap";
|
||||||
|
import { generateQr, LunchChoices, QrRecipient } from "../../../../types";
|
||||||
|
|
||||||
|
type UserEntry = {
|
||||||
|
login: string;
|
||||||
|
selected: boolean;
|
||||||
|
purpose: string;
|
||||||
|
amount: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
choices: LunchChoices;
|
||||||
|
bankAccount: string;
|
||||||
|
bankAccountHolder: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Modální dialog pro generování QR kódů pro platbu. */
|
||||||
|
export default function GenerateQrModal({ isOpen, onClose, choices, bankAccount, bankAccountHolder }: Readonly<Props>) {
|
||||||
|
const [users, setUsers] = useState<UserEntry[]>([]);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [success, setSuccess] = useState(false);
|
||||||
|
|
||||||
|
// Při otevření modálu načteme seznam uživatelů z choices
|
||||||
|
useEffect(() => {
|
||||||
|
if (isOpen && choices) {
|
||||||
|
const userLogins = new Set<string>();
|
||||||
|
// Projdeme všechny lokace a získáme unikátní loginy
|
||||||
|
Object.values(choices).forEach(locationChoices => {
|
||||||
|
if (locationChoices) {
|
||||||
|
Object.keys(locationChoices).forEach(login => {
|
||||||
|
userLogins.add(login);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// Vytvoříme seznam uživatelů
|
||||||
|
const userList: UserEntry[] = Array.from(userLogins)
|
||||||
|
.sort((a, b) => a.localeCompare(b, 'cs'))
|
||||||
|
.map(login => ({
|
||||||
|
login,
|
||||||
|
selected: false,
|
||||||
|
purpose: '',
|
||||||
|
amount: '',
|
||||||
|
}));
|
||||||
|
setUsers(userList);
|
||||||
|
setError(null);
|
||||||
|
setSuccess(false);
|
||||||
|
}
|
||||||
|
}, [isOpen, choices]);
|
||||||
|
|
||||||
|
const handleCheckboxChange = useCallback((login: string, checked: boolean) => {
|
||||||
|
setUsers(prev => prev.map(u =>
|
||||||
|
u.login === login ? { ...u, selected: checked } : u
|
||||||
|
));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handlePurposeChange = useCallback((login: string, value: string) => {
|
||||||
|
setUsers(prev => prev.map(u =>
|
||||||
|
u.login === login ? { ...u, purpose: value } : u
|
||||||
|
));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleAmountChange = useCallback((login: string, value: string) => {
|
||||||
|
// Povolíme pouze čísla, tečku a čárku
|
||||||
|
const sanitized = value.replace(/[^0-9.,]/g, '').replace(',', '.');
|
||||||
|
setUsers(prev => prev.map(u =>
|
||||||
|
u.login === login ? { ...u, amount: sanitized } : u
|
||||||
|
));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const validateAmount = (amountStr: string): number | null => {
|
||||||
|
if (!amountStr || amountStr.trim().length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const amount = parseFloat(amountStr);
|
||||||
|
if (isNaN(amount) || amount <= 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
// Max 2 desetinná místa
|
||||||
|
const parts = amountStr.split('.');
|
||||||
|
if (parts.length === 2 && parts[1].length > 2) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return Math.round(amount * 100) / 100; // Zaokrouhlíme na 2 desetinná místa
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleGenerate = async () => {
|
||||||
|
setError(null);
|
||||||
|
const selectedUsers = users.filter(u => u.selected);
|
||||||
|
|
||||||
|
if (selectedUsers.length === 0) {
|
||||||
|
setError("Nebyl vybrán žádný uživatel");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validace
|
||||||
|
const recipients: QrRecipient[] = [];
|
||||||
|
for (const user of selectedUsers) {
|
||||||
|
if (!user.purpose || user.purpose.trim().length === 0) {
|
||||||
|
setError(`Uživatel ${user.login} nemá vyplněný účel platby`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const amount = validateAmount(user.amount);
|
||||||
|
if (amount === null) {
|
||||||
|
setError(`Uživatel ${user.login} má neplatnou částku (musí být kladné číslo s max. 2 desetinnými místy)`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
recipients.push({
|
||||||
|
login: user.login,
|
||||||
|
purpose: user.purpose.trim(),
|
||||||
|
amount,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
setLoading(true);
|
||||||
|
try {
|
||||||
|
const response = await generateQr({
|
||||||
|
body: {
|
||||||
|
recipients,
|
||||||
|
bankAccount,
|
||||||
|
bankAccountHolder,
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (response.error) {
|
||||||
|
setError((response.error as any).error || 'Nastala chyba při generování QR kódů');
|
||||||
|
} else {
|
||||||
|
setSuccess(true);
|
||||||
|
// Po 2 sekundách zavřeme modal
|
||||||
|
setTimeout(() => {
|
||||||
|
onClose();
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba při generování QR kódů');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClose = () => {
|
||||||
|
setError(null);
|
||||||
|
setSuccess(false);
|
||||||
|
onClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectedCount = users.filter(u => u.selected).length;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={handleClose} size="lg">
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Generování QR kódů</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{success ? (
|
||||||
|
<Alert variant="success">
|
||||||
|
QR kódy byly úspěšně vygenerovány! Uživatelé je uvidí v sekci "Nevyřízené platby".
|
||||||
|
</Alert>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<p>
|
||||||
|
Vyberte uživatele, kterým chcete vygenerovat QR kód pro platbu.
|
||||||
|
QR kódy se uživatelům zobrazí v sekci "Nevyřízené platby".
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<Alert variant="danger" onClose={() => setError(null)} dismissible>
|
||||||
|
{error}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{users.length === 0 ? (
|
||||||
|
<Alert variant="info">
|
||||||
|
V tento den nemá žádný uživatel zvolenou možnost stravování.
|
||||||
|
</Alert>
|
||||||
|
) : (
|
||||||
|
<Table striped bordered hover responsive>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th style={{ width: '50px' }}></th>
|
||||||
|
<th>Uživatel</th>
|
||||||
|
<th>Účel platby</th>
|
||||||
|
<th style={{ width: '120px' }}>Částka (Kč)</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{users.map(user => (
|
||||||
|
<tr key={user.login} className={user.selected ? '' : 'text-muted'}>
|
||||||
|
<td className="text-center">
|
||||||
|
<Form.Check
|
||||||
|
type="checkbox"
|
||||||
|
checked={user.selected}
|
||||||
|
onChange={e => handleCheckboxChange(user.login, e.target.checked)}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
<td>{user.login}</td>
|
||||||
|
<td>
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
placeholder="např. Pizza prosciutto"
|
||||||
|
value={user.purpose}
|
||||||
|
onChange={e => handlePurposeChange(user.login, e.target.value)}
|
||||||
|
disabled={!user.selected}
|
||||||
|
size="sm"
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
placeholder="0.00"
|
||||||
|
value={user.amount}
|
||||||
|
onChange={e => handleAmountChange(user.login, e.target.value)}
|
||||||
|
disabled={!user.selected}
|
||||||
|
size="sm"
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
))}
|
||||||
|
</tbody>
|
||||||
|
</Table>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
{!success && (
|
||||||
|
<>
|
||||||
|
<span className="me-auto text-muted">
|
||||||
|
Vybráno: {selectedCount} / {users.length}
|
||||||
|
</span>
|
||||||
|
<Button variant="secondary" onClick={handleClose} disabled={loading}>
|
||||||
|
Storno
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="primary"
|
||||||
|
onClick={handleGenerate}
|
||||||
|
disabled={loading || selectedCount === 0}
|
||||||
|
>
|
||||||
|
{loading ? 'Generuji...' : 'Generovat'}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{success && (
|
||||||
|
<Button variant="secondary" onClick={handleClose}>
|
||||||
|
Zavřít
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,305 @@
|
|||||||
|
import { useState, useEffect, useCallback } from "react";
|
||||||
|
import { Modal, Button, Form, Table, Alert } from "react-bootstrap";
|
||||||
|
import { generateQr, LunchChoice, LocationLunchChoicesMap, RestaurantDayMenu, QrRecipient } from "../../../../types";
|
||||||
|
import { parsePriceCzk } from "../../utils/parsePrice";
|
||||||
|
|
||||||
|
type DinerEntry = {
|
||||||
|
login: string;
|
||||||
|
selectedFoods: number[];
|
||||||
|
baseAmount: number;
|
||||||
|
baseAmountParseFailed: boolean;
|
||||||
|
surchargeText: string;
|
||||||
|
surchargeAmount: string;
|
||||||
|
included: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
locationKey: LunchChoice;
|
||||||
|
locationName: string;
|
||||||
|
locationChoices: LocationLunchChoicesMap;
|
||||||
|
menu: RestaurantDayMenu | undefined;
|
||||||
|
payerLogin: string;
|
||||||
|
bankAccount: string;
|
||||||
|
bankAccountHolder: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
function sanitizeAmount(value: string): string {
|
||||||
|
return value.replace(/[^0-9.,]/g, '').replace(',', '.');
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseAmount(s: string): number | null {
|
||||||
|
if (!s || s.trim().length === 0) return null;
|
||||||
|
const n = parseFloat(s);
|
||||||
|
if (isNaN(n) || n < 0) return null;
|
||||||
|
return Math.round(n * 100);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function PayForAllModal({ isOpen, onClose, locationName, locationChoices, menu, payerLogin, bankAccount, bankAccountHolder }: Readonly<Props>) {
|
||||||
|
const [diners, setDiners] = useState<DinerEntry[]>([]);
|
||||||
|
const [tipTotal, setTipTotal] = useState('');
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [success, setSuccess] = useState(false);
|
||||||
|
|
||||||
|
const hasMenu = !!menu;
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!isOpen) return;
|
||||||
|
const entries: DinerEntry[] = Object.entries(locationChoices).map(([login, choice]) => {
|
||||||
|
const selectedFoods = choice.selectedFoods ?? [];
|
||||||
|
let baseAmount = 0;
|
||||||
|
let baseAmountParseFailed = false;
|
||||||
|
if (menu) {
|
||||||
|
for (const idx of selectedFoods) {
|
||||||
|
const priceKc = parsePriceCzk(menu.food?.[idx]?.price);
|
||||||
|
if (priceKc === null) {
|
||||||
|
baseAmountParseFailed = true;
|
||||||
|
} else {
|
||||||
|
baseAmount += Math.round(priceKc * 100);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
login,
|
||||||
|
selectedFoods,
|
||||||
|
baseAmount,
|
||||||
|
baseAmountParseFailed,
|
||||||
|
surchargeText: '',
|
||||||
|
surchargeAmount: '',
|
||||||
|
included: login !== payerLogin,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
setDiners(entries);
|
||||||
|
setTipTotal('');
|
||||||
|
setError(null);
|
||||||
|
setSuccess(false);
|
||||||
|
}, [isOpen, locationChoices, menu, payerLogin]);
|
||||||
|
|
||||||
|
const includedDiners = diners.filter(d => d.included && d.login !== payerLogin);
|
||||||
|
const tipPerPerson = (() => {
|
||||||
|
if (includedDiners.length === 0) return 0;
|
||||||
|
const tip = parseAmount(tipTotal);
|
||||||
|
if (tip === null || tip === 0) return 0;
|
||||||
|
const totalPeople = includedDiners.length + 1;
|
||||||
|
return Math.round(tip / totalPeople);
|
||||||
|
})();
|
||||||
|
const payerTipShare = (() => {
|
||||||
|
const tip = parseAmount(tipTotal);
|
||||||
|
if (!tip) return 0;
|
||||||
|
return tip - tipPerPerson * includedDiners.length;
|
||||||
|
})();
|
||||||
|
|
||||||
|
const getTotal = (d: DinerEntry): number => {
|
||||||
|
const surcharge = parseAmount(d.surchargeAmount) ?? 0;
|
||||||
|
const tip = d.login === payerLogin ? payerTipShare : tipPerPerson;
|
||||||
|
return d.baseAmount + surcharge + tip;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleInclude = useCallback((login: string, checked: boolean) => {
|
||||||
|
setDiners(prev => prev.map(d => d.login === login ? { ...d, included: checked } : d));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleSurchargeText = useCallback((login: string, value: string) => {
|
||||||
|
setDiners(prev => prev.map(d => d.login === login ? { ...d, surchargeText: value } : d));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleSurchargeAmount = useCallback((login: string, value: string) => {
|
||||||
|
setDiners(prev => prev.map(d => d.login === login ? { ...d, surchargeAmount: sanitizeAmount(value) } : d));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleGenerate = async () => {
|
||||||
|
setError(null);
|
||||||
|
const recipients: QrRecipient[] = [];
|
||||||
|
|
||||||
|
for (const d of diners) {
|
||||||
|
if (!d.included || d.login === payerLogin) continue;
|
||||||
|
const total = getTotal(d);
|
||||||
|
if (total <= 0) {
|
||||||
|
setError(`Celková částka pro ${d.login} musí být kladná`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const foods = d.selectedFoods.map(i => menu?.food?.[i]?.name).filter(Boolean).join(', ');
|
||||||
|
const purposeBase = `Oběd ${locationName}${foods ? ` — ${foods}` : ''}`;
|
||||||
|
recipients.push({
|
||||||
|
login: d.login,
|
||||||
|
purpose: purposeBase.substring(0, 60),
|
||||||
|
amount: total,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (recipients.length === 0) {
|
||||||
|
setError("Nebyl vybrán žádný příjemce");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setLoading(true);
|
||||||
|
try {
|
||||||
|
const response = await generateQr({
|
||||||
|
body: { recipients, bankAccount, bankAccountHolder },
|
||||||
|
});
|
||||||
|
if (response.error) {
|
||||||
|
setError((response.error as any).error || 'Nastala chyba při generování QR kódů');
|
||||||
|
} else {
|
||||||
|
setSuccess(true);
|
||||||
|
setTimeout(() => onClose(), 2000);
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba při generování QR kódů');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const anyParseFailed = diners.some(d => d.baseAmountParseFailed && d.included);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={onClose} size="lg">
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Zaplatit za všechny — {locationName}</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{success ? (
|
||||||
|
<Alert variant="success">
|
||||||
|
QR kódy byly úspěšně vygenerovány! Uživatelé je uvidí v sekci „Nevyřízené platby".
|
||||||
|
</Alert>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<p>Zaplatili jste za skupinu v restauraci. Nastavte příplatky a společné poplatky, poté vygenerujte QR kódy pro ostatní.</p>
|
||||||
|
|
||||||
|
{!hasMenu && (
|
||||||
|
<Alert variant="info">
|
||||||
|
Pro tuto skupinu nejsou k dispozici ceny jídel — vyplňte příplatky ručně.
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{anyParseFailed && (
|
||||||
|
<Alert variant="warning">
|
||||||
|
U některých jídel se nepodařilo načíst cenu — doplňte ji ručně v sloupci Příplatek.
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<Alert variant="danger" onClose={() => setError(null)} dismissible>
|
||||||
|
{error}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Table striped bordered hover responsive size="sm">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th style={{ width: 40 }}></th>
|
||||||
|
<th>Strávník</th>
|
||||||
|
<th>Jídla</th>
|
||||||
|
<th style={{ width: 220 }}>Příplatek</th>
|
||||||
|
<th style={{ width: 90 }}>Poplatek</th>
|
||||||
|
<th style={{ width: 90 }}>Celkem</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{diners.map(d => {
|
||||||
|
const isPayer = d.login === payerLogin;
|
||||||
|
const foodNames = d.selectedFoods.map(i => menu?.food?.[i]?.name).filter(Boolean).join(', ');
|
||||||
|
const total = getTotal(d);
|
||||||
|
return (
|
||||||
|
<tr key={d.login} className={!d.included && !isPayer ? 'text-muted' : ''}>
|
||||||
|
<td className="text-center">
|
||||||
|
{isPayer ? (
|
||||||
|
<small className="text-muted">plátce</small>
|
||||||
|
) : (
|
||||||
|
<Form.Check
|
||||||
|
type="checkbox"
|
||||||
|
checked={d.included}
|
||||||
|
onChange={e => handleInclude(d.login, e.target.checked)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td><strong>{d.login}</strong></td>
|
||||||
|
<td>
|
||||||
|
<small>
|
||||||
|
{foodNames || <span className="text-muted">—</span>}
|
||||||
|
{hasMenu && d.baseAmount > 0 && <span className="text-muted"> ({d.baseAmount / 100} Kč)</span>}
|
||||||
|
{d.baseAmountParseFailed && <span className="text-warning"> ⚠</span>}
|
||||||
|
</small>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<div className="d-flex gap-1">
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
placeholder="popis"
|
||||||
|
value={d.surchargeText}
|
||||||
|
onChange={e => handleSurchargeText(d.login, e.target.value)}
|
||||||
|
disabled={!isPayer && !d.included}
|
||||||
|
size="sm"
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
placeholder="Kč"
|
||||||
|
value={d.surchargeAmount}
|
||||||
|
onChange={e => handleSurchargeAmount(d.login, e.target.value)}
|
||||||
|
disabled={!isPayer && !d.included}
|
||||||
|
size="sm"
|
||||||
|
style={{ width: 70 }}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="text-end">
|
||||||
|
{(() => { const s = isPayer ? payerTipShare : tipPerPerson; return s > 0 ? `${s / 100} Kč` : '—'; })()}
|
||||||
|
</td>
|
||||||
|
<td className="text-end fw-bold">
|
||||||
|
{`${total / 100} Kč`}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</tbody>
|
||||||
|
</Table>
|
||||||
|
|
||||||
|
<div className="d-flex align-items-center gap-2 mt-2">
|
||||||
|
<label className="mb-0 text-nowrap">Poplatky celkem (Kč):</label>
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
placeholder="0"
|
||||||
|
value={tipTotal}
|
||||||
|
onChange={e => setTipTotal(sanitizeAmount(e.target.value))}
|
||||||
|
size="sm"
|
||||||
|
style={{ width: 100 }}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<small className="text-muted">
|
||||||
|
{includedDiners.length > 0 && tipPerPerson > 0
|
||||||
|
? `(${tipPerPerson / 100} Kč / osoba)`
|
||||||
|
: ''}
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
{!success && (
|
||||||
|
<>
|
||||||
|
<span className="me-auto text-muted">
|
||||||
|
Příjemci: {includedDiners.length}
|
||||||
|
</span>
|
||||||
|
<Button variant="secondary" onClick={onClose} disabled={loading}>
|
||||||
|
Storno
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="primary"
|
||||||
|
onClick={handleGenerate}
|
||||||
|
disabled={loading || includedDiners.length === 0}
|
||||||
|
>
|
||||||
|
{loading ? 'Generuji...' : 'Vygenerovat QR'}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{success && (
|
||||||
|
<Button variant="secondary" onClick={onClose}>Zavřít</Button>
|
||||||
|
)}
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,222 @@
|
|||||||
|
import { useState, useEffect } from "react";
|
||||||
|
import { Modal, Button, Form, Table, Alert } from "react-bootstrap";
|
||||||
|
import { generateQr, OrderGroup, OrderGroupMember, QrRecipient } from "../../../../types";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
onSuccess?: () => void;
|
||||||
|
group: OrderGroup;
|
||||||
|
payerLogin: string;
|
||||||
|
bankAccount: string;
|
||||||
|
bankAccountHolder: string;
|
||||||
|
groupId?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type DinerEntry = {
|
||||||
|
login: string;
|
||||||
|
member: OrderGroupMember;
|
||||||
|
included: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function PayForGroupModal({ isOpen, onClose, onSuccess, group, payerLogin, bankAccount, bankAccountHolder, groupId }: Readonly<Props>) {
|
||||||
|
const [diners, setDiners] = useState<DinerEntry[]>([]);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [success, setSuccess] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!isOpen) return;
|
||||||
|
const entries: DinerEntry[] = (Object.entries(group.members) as [string, OrderGroupMember][]).map(([login, member]) => ({
|
||||||
|
login,
|
||||||
|
member,
|
||||||
|
included: login !== payerLogin,
|
||||||
|
}));
|
||||||
|
setDiners(entries);
|
||||||
|
setError(null);
|
||||||
|
setSuccess(false);
|
||||||
|
}, [isOpen, group, payerLogin]);
|
||||||
|
|
||||||
|
const memberCount = diners.length;
|
||||||
|
const fees = group.fees ?? 0;
|
||||||
|
const shipping = group.shipping ?? 0;
|
||||||
|
const tip = group.tip ?? 0;
|
||||||
|
const totalFees = fees + shipping + tip;
|
||||||
|
const feeShare = memberCount > 0 ? Math.round(totalFees / memberCount) : 0;
|
||||||
|
|
||||||
|
const getMemberTotal = (entry: DinerEntry): number => {
|
||||||
|
const base = entry.member.amount ?? 0;
|
||||||
|
const surcharge = entry.member.surchargeAmount ?? 0;
|
||||||
|
const discountType = group.discountType;
|
||||||
|
const discountValue = group.discountValue ?? 0;
|
||||||
|
const discount = discountValue > 0
|
||||||
|
? (discountType === 'percent'
|
||||||
|
? Math.round((base + surcharge) * discountValue / 100)
|
||||||
|
: Math.round(discountValue / memberCount))
|
||||||
|
: 0;
|
||||||
|
return base + surcharge + feeShare - discount;
|
||||||
|
};
|
||||||
|
|
||||||
|
const includedNonPayers = diners.filter(d => d.included && d.login !== payerLogin);
|
||||||
|
|
||||||
|
const handleInclude = (login: string, checked: boolean) => {
|
||||||
|
setDiners(prev => prev.map(d => d.login === login ? { ...d, included: checked } : d));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleGenerate = async () => {
|
||||||
|
setError(null);
|
||||||
|
const recipients: QrRecipient[] = [];
|
||||||
|
|
||||||
|
for (const d of diners) {
|
||||||
|
if (!d.included || d.login === payerLogin) continue;
|
||||||
|
const total = getMemberTotal(d);
|
||||||
|
if (total <= 0) {
|
||||||
|
setError(`Celková částka pro ${d.login} musí být kladná`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const note = d.member.note?.trim();
|
||||||
|
recipients.push({
|
||||||
|
login: d.login,
|
||||||
|
purpose: note ? note.replace(/[^\x00-\xff*]/g, '').replace(/\*/g, '').substring(0, 60) : `Objednávka ${group.name}`.substring(0, 60),
|
||||||
|
amount: total,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (recipients.length === 0) {
|
||||||
|
setError("Nebyl vybrán žádný příjemce");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setLoading(true);
|
||||||
|
try {
|
||||||
|
const response = await generateQr({
|
||||||
|
body: { recipients, bankAccount, bankAccountHolder, ...(groupId ? { groupId } : {}) },
|
||||||
|
});
|
||||||
|
if (response.error) {
|
||||||
|
setError((response.error as any).error || 'Nastala chyba při generování QR kódů');
|
||||||
|
} else {
|
||||||
|
setSuccess(true);
|
||||||
|
onSuccess?.();
|
||||||
|
setTimeout(() => onClose(), 2000);
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba při generování QR kódů');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const hasFees = totalFees > 0;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={onClose} size="lg">
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Generovat QR — {group.name}</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{success ? (
|
||||||
|
<Alert variant="success">
|
||||||
|
QR kódy byly úspěšně vygenerovány! Uživatelé je uvidí v sekci „Nevyřízené platby".
|
||||||
|
</Alert>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<p>Zaplatili jste za skupinu. Vyberte, komu vygenerovat QR kód k úhradě.</p>
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<Alert variant="danger" onClose={() => setError(null)} dismissible>
|
||||||
|
{error}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{hasFees && (
|
||||||
|
<div className="d-flex gap-3 mb-2 text-muted" style={{ fontSize: '0.9em' }}>
|
||||||
|
{fees > 0 && <span>Poplatky: <strong>{fees / 100} Kč</strong></span>}
|
||||||
|
{shipping > 0 && <span>Doprava: <strong>{shipping / 100} Kč</strong></span>}
|
||||||
|
{tip > 0 && <span>Spropitné: <strong>{tip / 100} Kč</strong></span>}
|
||||||
|
<span>→ {feeShare / 100} Kč/os.</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{group.discountValue != null && group.discountValue > 0 && (
|
||||||
|
<div className="mb-2 text-success" style={{ fontSize: '0.9em' }}>
|
||||||
|
Sleva: {group.discountType === 'percent' ? `${group.discountValue}%` : `${group.discountValue / 100} Kč`}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Table striped bordered hover responsive size="sm">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th style={{ width: 40 }}></th>
|
||||||
|
<th>Člen</th>
|
||||||
|
<th style={{ width: 90 }} className="text-end">Základ</th>
|
||||||
|
<th style={{ width: 90 }} className="text-end">Příplatek</th>
|
||||||
|
{hasFees && <th style={{ width: 90 }} className="text-end">Poplatek</th>}
|
||||||
|
<th style={{ width: 90 }} className="text-end fw-bold">Celkem</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{diners.map(d => {
|
||||||
|
const isPayer = d.login === payerLogin;
|
||||||
|
const total = getMemberTotal(d);
|
||||||
|
const surcharge = d.member.surchargeAmount ?? 0;
|
||||||
|
return (
|
||||||
|
<tr key={d.login} className={!d.included && !isPayer ? 'text-muted' : ''}>
|
||||||
|
<td className="text-center">
|
||||||
|
{isPayer ? (
|
||||||
|
<small className="text-muted">plátce</small>
|
||||||
|
) : (
|
||||||
|
<Form.Check
|
||||||
|
type="checkbox"
|
||||||
|
checked={d.included}
|
||||||
|
onChange={e => handleInclude(d.login, e.target.checked)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<strong>{d.login}</strong>
|
||||||
|
{d.member.surchargeText && (
|
||||||
|
<small className="text-muted ms-1">({d.member.surchargeText})</small>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td className="text-end">
|
||||||
|
{(d.member.amount ?? 0) > 0 ? `${d.member.amount! / 100} Kč` : <span className="text-muted">—</span>}
|
||||||
|
</td>
|
||||||
|
<td className="text-end">
|
||||||
|
{surcharge > 0 ? `${surcharge / 100} Kč` : <span className="text-muted">—</span>}
|
||||||
|
</td>
|
||||||
|
{hasFees && (
|
||||||
|
<td className="text-end">
|
||||||
|
{feeShare > 0 ? `${feeShare / 100} Kč` : '—'}
|
||||||
|
</td>
|
||||||
|
)}
|
||||||
|
<td className="text-end fw-bold">
|
||||||
|
{total > 0 ? `${total / 100} Kč` : <span className="text-muted">—</span>}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</tbody>
|
||||||
|
</Table>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
{!success && (
|
||||||
|
<>
|
||||||
|
<span className="me-auto text-muted">Příjemci: {includedNonPayers.length}</span>
|
||||||
|
<Button variant="secondary" onClick={onClose} disabled={loading}>Storno</Button>
|
||||||
|
<Button
|
||||||
|
variant="primary"
|
||||||
|
onClick={handleGenerate}
|
||||||
|
disabled={loading || includedNonPayers.length === 0}
|
||||||
|
>
|
||||||
|
{loading ? 'Generuji...' : 'Vygenerovat QR'}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{success && (
|
||||||
|
<Button variant="secondary" onClick={onClose}>Zavřít</Button>
|
||||||
|
)}
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -15,12 +15,12 @@ export default function PizzaAdditionalFeeModal({ customerName, isOpen, onClose,
|
|||||||
const priceRef = useRef<HTMLInputElement>(null);
|
const priceRef = useRef<HTMLInputElement>(null);
|
||||||
|
|
||||||
const doSubmit = () => {
|
const doSubmit = () => {
|
||||||
onSave(customerName, textRef.current?.value, parseInt(priceRef.current?.value ?? "0"));
|
onSave(customerName, textRef.current?.value, Math.round(Number.parseFloat(priceRef.current?.value ?? "0") * 100));
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
const handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
||||||
if (e.key === 'Enter') {
|
if (e.key === 'Enter') {
|
||||||
onSave(customerName, textRef.current?.value, parseInt(priceRef.current?.value ?? "0"));
|
onSave(customerName, textRef.current?.value, Math.round(Number.parseFloat(priceRef.current?.value ?? "0") * 100));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,13 +36,13 @@ export default function PizzaCalculatorModal({ isOpen, onClose }: Readonly<Props
|
|||||||
|
|
||||||
// 1. pizza
|
// 1. pizza
|
||||||
if (diameter1Ref.current?.value) {
|
if (diameter1Ref.current?.value) {
|
||||||
const diameter1 = parseInt(diameter1Ref.current?.value);
|
const diameter1 = Number.parseInt(diameter1Ref.current?.value);
|
||||||
r.pizza1 ??= {};
|
r.pizza1 ??= {};
|
||||||
if (diameter1 && diameter1 > 0) {
|
if (diameter1 && diameter1 > 0) {
|
||||||
r.pizza1.diameter = diameter1;
|
r.pizza1.diameter = diameter1;
|
||||||
r.pizza1.area = Math.PI * Math.pow(diameter1 / 2, 2);
|
r.pizza1.area = Math.PI * Math.pow(diameter1 / 2, 2);
|
||||||
if (price1Ref.current?.value) {
|
if (price1Ref.current?.value) {
|
||||||
const price1 = parseInt(price1Ref.current?.value);
|
const price1 = Number.parseInt(price1Ref.current?.value);
|
||||||
if (price1) {
|
if (price1) {
|
||||||
r.pizza1.pricePerM = price1 / r.pizza1.area;
|
r.pizza1.pricePerM = price1 / r.pizza1.area;
|
||||||
} else {
|
} else {
|
||||||
@@ -56,13 +56,13 @@ export default function PizzaCalculatorModal({ isOpen, onClose }: Readonly<Props
|
|||||||
|
|
||||||
// 2. pizza
|
// 2. pizza
|
||||||
if (diameter2Ref.current?.value) {
|
if (diameter2Ref.current?.value) {
|
||||||
const diameter2 = parseInt(diameter2Ref.current?.value);
|
const diameter2 = Number.parseInt(diameter2Ref.current?.value);
|
||||||
r.pizza2 ??= {};
|
r.pizza2 ??= {};
|
||||||
if (diameter2 && diameter2 > 0) {
|
if (diameter2 && diameter2 > 0) {
|
||||||
r.pizza2.diameter = diameter2;
|
r.pizza2.diameter = diameter2;
|
||||||
r.pizza2.area = Math.PI * Math.pow(diameter2 / 2, 2);
|
r.pizza2.area = Math.PI * Math.pow(diameter2 / 2, 2);
|
||||||
if (price2Ref.current?.value) {
|
if (price2Ref.current?.value) {
|
||||||
const price2 = parseInt(price2Ref.current?.value);
|
const price2 = Number.parseInt(price2Ref.current?.value);
|
||||||
if (price2) {
|
if (price2) {
|
||||||
r.pizza2.pricePerM = price2 / r.pizza2.area;
|
r.pizza2.pricePerM = price2 / r.pizza2.area;
|
||||||
} else {
|
} else {
|
||||||
@@ -77,8 +77,8 @@ export default function PizzaCalculatorModal({ isOpen, onClose }: Readonly<Props
|
|||||||
// Srovnání
|
// Srovnání
|
||||||
if (r.pizza1?.pricePerM && r.pizza2?.pricePerM && r.pizza1.diameter && r.pizza2.diameter) {
|
if (r.pizza1?.pricePerM && r.pizza2?.pricePerM && r.pizza1.diameter && r.pizza2.diameter) {
|
||||||
r.choice = r.pizza1.pricePerM < r.pizza2.pricePerM ? 1 : 2;
|
r.choice = r.pizza1.pricePerM < r.pizza2.pricePerM ? 1 : 2;
|
||||||
const bigger = r.pizza1.pricePerM > r.pizza2.pricePerM ? r.pizza1.pricePerM : r.pizza2.pricePerM;
|
const bigger = Math.max(r.pizza1.pricePerM, r.pizza2.pricePerM);
|
||||||
const smaller = r.pizza1.pricePerM < r.pizza2.pricePerM ? r.pizza1.pricePerM : r.pizza2.pricePerM;
|
const smaller = Math.min(r.pizza1.pricePerM, r.pizza2.pricePerM);
|
||||||
r.ratio = (bigger / smaller) - 1;
|
r.ratio = (bigger / smaller) - 1;
|
||||||
r.diameterDiff = Math.abs(r.pizza1.diameter - r.pizza2.diameter);
|
r.diameterDiff = Math.abs(r.pizza1.diameter - r.pizza2.diameter);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { useRef, useState } from "react";
|
import { useRef, useState } from "react";
|
||||||
import { Modal, Button, Alert } from "react-bootstrap";
|
import { Modal, Button, Alert, Form } from "react-bootstrap";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
isOpen: boolean;
|
isOpen: boolean;
|
||||||
@@ -30,7 +30,6 @@ export default function RefreshMenuModal({ isOpen, onClose }: Readonly<Props>) {
|
|||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
setRefreshMessage({ type: 'success', text: 'Uspesny fetch' });
|
setRefreshMessage({ type: 'success', text: 'Uspesny fetch' });
|
||||||
if (refreshPassRef.current) {
|
if (refreshPassRef.current) {
|
||||||
// Clean hesla xd
|
|
||||||
refreshPassRef.current.value = '';
|
refreshPassRef.current.value = '';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -50,7 +49,7 @@ export default function RefreshMenuModal({ isOpen, onClose }: Readonly<Props>) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal show={isOpen} onHide={handleClose} size="lg">
|
<Modal show={isOpen} onHide={handleClose}>
|
||||||
<Modal.Header closeButton>
|
<Modal.Header closeButton>
|
||||||
<Modal.Title><h2>Přenačtení menu</h2></Modal.Title>
|
<Modal.Title><h2>Přenačtení menu</h2></Modal.Title>
|
||||||
</Modal.Header>
|
</Modal.Header>
|
||||||
@@ -63,36 +62,29 @@ export default function RefreshMenuModal({ isOpen, onClose }: Readonly<Props>) {
|
|||||||
</Alert>
|
</Alert>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="mb-3">
|
<Form.Group className="mb-3">
|
||||||
Heslo: <input
|
<Form.Label>Heslo</Form.Label>
|
||||||
|
<Form.Control
|
||||||
ref={refreshPassRef}
|
ref={refreshPassRef}
|
||||||
type="password"
|
type="password"
|
||||||
placeholder="Zadejte heslo"
|
placeholder="Zadejte heslo"
|
||||||
className="form-control d-inline-block"
|
|
||||||
style={{ width: 'auto', marginLeft: '10px' }}
|
|
||||||
onKeyDown={e => e.stopPropagation()}
|
onKeyDown={e => e.stopPropagation()}
|
||||||
/>
|
/>
|
||||||
</div>
|
</Form.Group>
|
||||||
|
|
||||||
<div className="mb-3">
|
<Form.Group className="mb-3">
|
||||||
Typ refreshe: <select
|
<Form.Label>Typ refreshe</Form.Label>
|
||||||
ref={refreshTypeRef}
|
<Form.Select ref={refreshTypeRef} defaultValue="week">
|
||||||
className="form-select d-inline-block"
|
|
||||||
style={{ width: 'auto', marginLeft: '10px' }}
|
|
||||||
defaultValue="week"
|
|
||||||
>
|
|
||||||
<option value="week">Týden</option>
|
<option value="week">Týden</option>
|
||||||
<option value="day">Den</option>
|
<option value="day">Den</option>
|
||||||
</select>
|
</Form.Select>
|
||||||
</div>
|
</Form.Group>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
variant="info"
|
|
||||||
onClick={handleRefresh}
|
onClick={handleRefresh}
|
||||||
disabled={refreshLoading}
|
disabled={refreshLoading}
|
||||||
className="mb-3"
|
|
||||||
>
|
>
|
||||||
{refreshLoading ? 'Refreshing...' : 'Refresh'}
|
{refreshLoading ? 'Načítám...' : 'Obnovit menu'}
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Body>
|
</Modal.Body>
|
||||||
<Modal.Footer>
|
<Modal.Footer>
|
||||||
|
|||||||
@@ -1,42 +1,238 @@
|
|||||||
import { useRef } from "react";
|
import { useEffect, useRef, useState } from "react";
|
||||||
import { Modal, Button } from "react-bootstrap"
|
import { Modal, Button, Form } from "react-bootstrap"
|
||||||
import { useSettings } from "../../context/settings";
|
import { useSettings, ThemePreference } from "../../context/settings";
|
||||||
|
import { NotificationSettings, UdalostEnum, getNotificationSettings, updateNotificationSettings } from "../../../../types";
|
||||||
|
import { useAuth } from "../../context/auth";
|
||||||
|
import { subscribeToPush, unsubscribeFromPush } from "../../hooks/usePushReminder";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
isOpen: boolean,
|
isOpen: boolean,
|
||||||
onClose: () => void,
|
onClose: () => void,
|
||||||
onSave: (bankAccountNumber?: string, bankAccountHolderName?: string, hideSoupsOption?: boolean) => void,
|
onSave: (bankAccountNumber?: string, bankAccountHolderName?: string, hideSoupsOption?: boolean, themePreference?: ThemePreference) => void,
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Modální dialog pro uživatelská nastavení. */
|
/** Modální dialog pro uživatelská nastavení. */
|
||||||
export default function SettingsModal({ isOpen, onClose, onSave }: Readonly<Props>) {
|
export default function SettingsModal({ isOpen, onClose, onSave }: Readonly<Props>) {
|
||||||
|
const auth = useAuth();
|
||||||
const settings = useSettings();
|
const settings = useSettings();
|
||||||
const bankAccountRef = useRef<HTMLInputElement>(null);
|
const bankAccountRef = useRef<HTMLInputElement>(null);
|
||||||
const nameRef = useRef<HTMLInputElement>(null);
|
const nameRef = useRef<HTMLInputElement>(null);
|
||||||
const hideSoupsRef = useRef<HTMLInputElement>(null);
|
const hideSoupsRef = useRef<HTMLInputElement>(null);
|
||||||
|
const themeRef = useRef<HTMLSelectElement>(null);
|
||||||
|
|
||||||
return <Modal show={isOpen} onHide={onClose} size="lg">
|
const reminderTimeRef = useRef<HTMLInputElement>(null);
|
||||||
|
const ntfyTopicRef = useRef<HTMLInputElement>(null);
|
||||||
|
const discordWebhookRef = useRef<HTMLInputElement>(null);
|
||||||
|
const teamsWebhookRef = useRef<HTMLInputElement>(null);
|
||||||
|
const [notifSettings, setNotifSettings] = useState<NotificationSettings>({});
|
||||||
|
const [enabledEvents, setEnabledEvents] = useState<UdalostEnum[]>([]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isOpen && auth?.login) {
|
||||||
|
getNotificationSettings().then(response => {
|
||||||
|
if (response.data) {
|
||||||
|
setNotifSettings(response.data);
|
||||||
|
setEnabledEvents(response.data.enabledEvents ?? []);
|
||||||
|
}
|
||||||
|
}).catch(() => {});
|
||||||
|
}
|
||||||
|
}, [isOpen, auth?.login]);
|
||||||
|
|
||||||
|
const toggleEvent = (event: UdalostEnum) => {
|
||||||
|
setEnabledEvents(prev =>
|
||||||
|
prev.includes(event) ? prev.filter(e => e !== event) : [...prev, event]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSave = async () => {
|
||||||
|
const newReminderTime = reminderTimeRef.current?.value || undefined;
|
||||||
|
const oldReminderTime = notifSettings.reminderTime;
|
||||||
|
|
||||||
|
// Uložení notifikačních nastavení na server
|
||||||
|
await updateNotificationSettings({
|
||||||
|
body: {
|
||||||
|
ntfyTopic: ntfyTopicRef.current?.value || undefined,
|
||||||
|
discordWebhookUrl: discordWebhookRef.current?.value || undefined,
|
||||||
|
teamsWebhookUrl: teamsWebhookRef.current?.value || undefined,
|
||||||
|
enabledEvents,
|
||||||
|
reminderTime: newReminderTime,
|
||||||
|
}
|
||||||
|
}).catch(() => {});
|
||||||
|
|
||||||
|
// Správa push subscription pro připomínky
|
||||||
|
if (newReminderTime && newReminderTime !== oldReminderTime) {
|
||||||
|
subscribeToPush(newReminderTime);
|
||||||
|
} else if (!newReminderTime && oldReminderTime) {
|
||||||
|
unsubscribeFromPush();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uložení ostatních nastavení (localStorage)
|
||||||
|
onSave(
|
||||||
|
bankAccountRef.current?.value,
|
||||||
|
nameRef.current?.value,
|
||||||
|
hideSoupsRef.current?.checked,
|
||||||
|
themeRef.current?.value as ThemePreference,
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={onClose} size="lg">
|
||||||
<Modal.Header closeButton>
|
<Modal.Header closeButton>
|
||||||
<Modal.Title><h2>Nastavení</h2></Modal.Title>
|
<Modal.Title><h2>Nastavení</h2></Modal.Title>
|
||||||
</Modal.Header>
|
</Modal.Header>
|
||||||
<Modal.Body>
|
<Modal.Body>
|
||||||
<h4>Obecné</h4>
|
<h4>Vzhled</h4>
|
||||||
<span title="V nabídkách nebudou zobrazovány polévky. Tato funkce je experimentální, a zejména u TechTower bývá často problém polévky spolehlivě rozeznat. V případě využití této funkce průběžně nahlašujte stále se zobrazující polévky." style={{ "cursor": "help" }}>
|
<Form.Group className="mb-3">
|
||||||
<input ref={hideSoupsRef} type="checkbox" defaultChecked={settings?.hideSoups} /> Skrýt polévky
|
<Form.Label>Barevný motiv</Form.Label>
|
||||||
</span>
|
<Form.Select ref={themeRef} defaultValue={settings?.themePreference}>
|
||||||
|
<option value="system">Podle systému</option>
|
||||||
|
<option value="light">Světlý</option>
|
||||||
|
<option value="dark">Tmavý</option>
|
||||||
|
</Form.Select>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
|
<h4>Obecné</h4>
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Check
|
||||||
|
id="hideSoupsCheckbox"
|
||||||
|
ref={hideSoupsRef}
|
||||||
|
type="checkbox"
|
||||||
|
label="Skrýt polévky"
|
||||||
|
defaultChecked={settings?.hideSoups}
|
||||||
|
title="V nabídkách nebudou zobrazovány polévky. Tato funkce je experimentální."
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
Experimentální funkce - zejména u TechTower bývá problém polévky spolehlivě rozeznat.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<h4>Notifikace</h4>
|
||||||
|
<p>
|
||||||
|
Nastavením notifikací budete dostávat upozornění o událostech (např. "Jdeme na oběd") přímo do vámi zvoleného komunikačního kanálu.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Připomínka výběru oběda</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
ref={reminderTimeRef}
|
||||||
|
type="time"
|
||||||
|
defaultValue={notifSettings.reminderTime ?? ''}
|
||||||
|
key={notifSettings.reminderTime ?? 'reminder-empty'}
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
V zadaný čas vám přijde push notifikace, pokud nemáte zvolenou možnost stravování. Nechte prázdné pro vypnutí.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>ntfy téma (topic)</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
ref={ntfyTopicRef}
|
||||||
|
type="text"
|
||||||
|
placeholder="moje-tema"
|
||||||
|
defaultValue={notifSettings.ntfyTopic}
|
||||||
|
key={notifSettings.ntfyTopic ?? 'ntfy-empty'}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
Téma pro ntfy push notifikace. Nechte prázdné pro vypnutí.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Discord webhook URL</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
ref={discordWebhookRef}
|
||||||
|
type="text"
|
||||||
|
placeholder="https://discord.com/api/webhooks/..."
|
||||||
|
defaultValue={notifSettings.discordWebhookUrl}
|
||||||
|
key={notifSettings.discordWebhookUrl ?? 'discord-empty'}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
URL webhooku Discord kanálu. Nechte prázdné pro vypnutí.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>MS Teams webhook URL</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
ref={teamsWebhookRef}
|
||||||
|
type="text"
|
||||||
|
placeholder="https://outlook.office.com/webhook/..."
|
||||||
|
defaultValue={notifSettings.teamsWebhookUrl}
|
||||||
|
key={notifSettings.teamsWebhookUrl ?? 'teams-empty'}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
URL webhooku MS Teams kanálu. Nechte prázdné pro vypnutí.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Události k odběru</Form.Label>
|
||||||
|
{Object.values(UdalostEnum).map(event => (
|
||||||
|
<Form.Check
|
||||||
|
key={event}
|
||||||
|
id={`notif-event-${event}`}
|
||||||
|
type="checkbox"
|
||||||
|
label={event}
|
||||||
|
checked={enabledEvents.includes(event)}
|
||||||
|
onChange={() => toggleEvent(event)}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
Zvolte události, o kterých chcete být notifikováni. Notifikace jsou odesílány pouze uživatelům se stejnou zvolenou lokalitou.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
<h4>Bankovní účet</h4>
|
<h4>Bankovní účet</h4>
|
||||||
<p>Nastavením čísla účtu umožníte automatické generování QR kódů pro úhradu za vámi provedené objednávky v rámci Pizza day.<br />Pokud vaše číslo účtu neobsahuje předčíslí, je možné ho zcela vynechat.<br /><br />Číslo účtu není ukládáno na serveru, posílá se na něj pouze za účelem vygenerování QR kódů.</p>
|
<p>
|
||||||
Číslo účtu: <input className="mb-3" ref={bankAccountRef} type="text" placeholder="123456-1234567890/1234" defaultValue={settings?.bankAccount} onKeyDown={e => e.stopPropagation()} /> <br />
|
Nastavením čísla účtu umožníte automatické generování QR kódů pro úhradu za vámi provedené objednávky v rámci Pizza day.
|
||||||
Název příjemce (jméno majitele účtu): <input ref={nameRef} type="text" placeholder="Jan Novák" defaultValue={settings?.holderName} onKeyDown={e => e.stopPropagation()} />
|
</p>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Číslo účtu</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
ref={bankAccountRef}
|
||||||
|
type="text"
|
||||||
|
placeholder="123456-1234567890/1234"
|
||||||
|
defaultValue={settings?.bankAccount}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
Pokud vaše číslo účtu neobsahuje předčíslí, je možné ho zcela vynechat.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Název příjemce</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
ref={nameRef}
|
||||||
|
type="text"
|
||||||
|
placeholder="Jan Novák"
|
||||||
|
defaultValue={settings?.holderName}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
<Form.Text className="text-muted">
|
||||||
|
Jméno majitele účtu pro QR platbu.
|
||||||
|
</Form.Text>
|
||||||
|
</Form.Group>
|
||||||
</Modal.Body>
|
</Modal.Body>
|
||||||
<Modal.Footer>
|
<Modal.Footer>
|
||||||
<Button variant="secondary" onClick={onClose}>
|
<Button variant="secondary" onClick={onClose}>
|
||||||
Storno
|
Storno
|
||||||
</Button>
|
</Button>
|
||||||
<Button variant="primary" onClick={() => onSave(bankAccountRef.current?.value, nameRef.current?.value, hideSoupsRef.current?.checked)}>
|
<Button onClick={handleSave}>
|
||||||
Uložit
|
Uložit
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Footer>
|
</Modal.Footer>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
import { useState } from "react";
|
||||||
|
import { Modal, Button, Form, ListGroup, Alert } from "react-bootstrap";
|
||||||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import { faTrashCan } from "@fortawesome/free-regular-svg-icons";
|
||||||
|
import { addStore, deleteStore } from "../../../../types";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
stores: string[];
|
||||||
|
onStoresChanged: (stores: string[]) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function StoreAdminModal({ isOpen, onClose, stores, onStoresChanged }: Readonly<Props>) {
|
||||||
|
const [newName, setNewName] = useState('');
|
||||||
|
const [heslo, setHeslo] = useState('');
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const handleAdd = async () => {
|
||||||
|
if (!newName.trim()) return;
|
||||||
|
setError(null);
|
||||||
|
setLoading(true);
|
||||||
|
try {
|
||||||
|
const res = await addStore({ body: { name: newName.trim(), heslo } });
|
||||||
|
if (res.error) {
|
||||||
|
setError((res.error as any).error || 'Nastala chyba');
|
||||||
|
} else if (res.data) {
|
||||||
|
onStoresChanged(res.data as string[]);
|
||||||
|
setNewName('');
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleRemove = async (name: string) => {
|
||||||
|
setError(null);
|
||||||
|
setLoading(true);
|
||||||
|
try {
|
||||||
|
const res = await deleteStore({ body: { name, heslo } });
|
||||||
|
if (res.error) {
|
||||||
|
setError((res.error as any).error || 'Nastala chyba');
|
||||||
|
} else if (res.data) {
|
||||||
|
onStoresChanged(res.data as string[]);
|
||||||
|
}
|
||||||
|
} catch (e: any) {
|
||||||
|
setError(e.message || 'Nastala chyba');
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={onClose}>
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Správa obchodů</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
{error && (
|
||||||
|
<Alert variant="danger" onClose={() => setError(null)} dismissible>
|
||||||
|
{error}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Form.Group className="mb-3">
|
||||||
|
<Form.Label>Admin heslo</Form.Label>
|
||||||
|
<Form.Control
|
||||||
|
type="password"
|
||||||
|
placeholder="Heslo"
|
||||||
|
value={heslo}
|
||||||
|
onChange={e => setHeslo(e.target.value)}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
<h6>Přidat obchod</h6>
|
||||||
|
<div className="d-flex gap-2 mb-3">
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
placeholder="Název obchodu"
|
||||||
|
value={newName}
|
||||||
|
onChange={e => setNewName(e.target.value)}
|
||||||
|
onKeyDown={e => { e.stopPropagation(); if (e.key === 'Enter') handleAdd(); }}
|
||||||
|
/>
|
||||||
|
<Button variant="primary" onClick={handleAdd} disabled={loading || !newName.trim() || !heslo}>
|
||||||
|
Přidat
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h6>Aktuální seznam</h6>
|
||||||
|
{stores.length === 0 ? (
|
||||||
|
<p className="text-muted">Žádné obchody v seznamu</p>
|
||||||
|
) : (
|
||||||
|
<ListGroup>
|
||||||
|
{stores.map(s => (
|
||||||
|
<ListGroup.Item key={s} className="d-flex justify-content-between align-items-center">
|
||||||
|
{s}
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faTrashCan}
|
||||||
|
className="action-icon"
|
||||||
|
title="Odebrat"
|
||||||
|
onClick={() => handleRemove(s)}
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
/>
|
||||||
|
</ListGroup.Item>
|
||||||
|
))}
|
||||||
|
</ListGroup>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
<Button variant="secondary" onClick={onClose}>Zavřít</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -55,7 +55,7 @@ function useProvideAuth(): AuthContextProps {
|
|||||||
setLoginName(undefined);
|
setLoginName(undefined);
|
||||||
setTrusted(undefined);
|
setTrusted(undefined);
|
||||||
if (trusted && logoutUrl?.length) {
|
if (trusted && logoutUrl?.length) {
|
||||||
window.location.replace(logoutUrl);
|
globalThis.location.replace(logoutUrl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,14 +3,24 @@ import React, { ReactNode, useContext, useEffect, useState } from "react"
|
|||||||
const BANK_ACCOUNT_NUMBER_KEY = 'bank_account_number';
|
const BANK_ACCOUNT_NUMBER_KEY = 'bank_account_number';
|
||||||
const BANK_ACCOUNT_HOLDER_KEY = 'bank_account_holder_name';
|
const BANK_ACCOUNT_HOLDER_KEY = 'bank_account_holder_name';
|
||||||
const HIDE_SOUPS_KEY = 'hide_soups';
|
const HIDE_SOUPS_KEY = 'hide_soups';
|
||||||
|
const THEME_KEY = 'theme_preference';
|
||||||
|
const ACCENT_HUE_KEY = 'accent_hue';
|
||||||
|
const LEGACY_COLOR_THEME_KEY = 'color_theme';
|
||||||
|
|
||||||
|
export type ThemePreference = 'system' | 'light' | 'dark';
|
||||||
|
|
||||||
export type SettingsContextProps = {
|
export type SettingsContextProps = {
|
||||||
bankAccount?: string,
|
bankAccount?: string,
|
||||||
holderName?: string,
|
holderName?: string,
|
||||||
hideSoups?: boolean,
|
hideSoups?: boolean,
|
||||||
|
themePreference: ThemePreference,
|
||||||
|
accentHue: number,
|
||||||
|
effectiveDark: boolean,
|
||||||
setBankAccountNumber: (accountNumber?: string) => void,
|
setBankAccountNumber: (accountNumber?: string) => void,
|
||||||
setBankAccountHolderName: (holderName?: string) => void,
|
setBankAccountHolderName: (holderName?: string) => void,
|
||||||
setHideSoupsOption: (hideSoups?: boolean) => void,
|
setHideSoupsOption: (hideSoups?: boolean) => void,
|
||||||
|
setThemePreference: (theme: ThemePreference) => void,
|
||||||
|
setAccentHue: (hue: number) => void,
|
||||||
}
|
}
|
||||||
|
|
||||||
type ContextProps = {
|
type ContextProps = {
|
||||||
@@ -28,10 +38,86 @@ export const useSettings = () => {
|
|||||||
return useContext(settingsContext);
|
return useContext(settingsContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getInitialTheme(): ThemePreference {
|
||||||
|
try {
|
||||||
|
const saved = localStorage.getItem(THEME_KEY) as ThemePreference | null;
|
||||||
|
if (saved && ['system', 'light', 'dark'].includes(saved)) {
|
||||||
|
return saved;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
// localStorage nedostupný
|
||||||
|
}
|
||||||
|
return 'system';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getInitialAccentHue(): number {
|
||||||
|
try {
|
||||||
|
const saved = localStorage.getItem(ACCENT_HUE_KEY);
|
||||||
|
if (saved !== null) {
|
||||||
|
const n = parseInt(saved, 10);
|
||||||
|
if (!isNaN(n) && n >= 0 && n <= 360) return n;
|
||||||
|
}
|
||||||
|
// Migrace ze starého string formátu (green/blue/purple)
|
||||||
|
const old = localStorage.getItem(LEGACY_COLOR_THEME_KEY);
|
||||||
|
if (old === 'blue') return 217;
|
||||||
|
if (old === 'purple') return 263;
|
||||||
|
} catch {
|
||||||
|
// localStorage nedostupný
|
||||||
|
}
|
||||||
|
return 142;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Převod HSL na relativní jas dle WCAG (pro výpočet kontrastu s bílým textem)
|
||||||
|
function hslToRelativeLuminance(h: number, s: number, l: number): number {
|
||||||
|
const sn = s / 100, ln = l / 100;
|
||||||
|
const a = sn * Math.min(ln, 1 - ln);
|
||||||
|
const ch = (n: number) => {
|
||||||
|
const k = (n + h / 30) % 12;
|
||||||
|
return ln - a * Math.max(Math.min(k - 3, 9 - k, 1), -1);
|
||||||
|
};
|
||||||
|
const toLinear = (c: number) => c <= 0.04045 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
|
||||||
|
return 0.2126 * toLinear(ch(0)) + 0.7152 * toLinear(ch(8)) + 0.0722 * toLinear(ch(4));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Najde nejnižší světlost, při které má barva dostatečný kontrast s bílým textem (WCAG AA 4.5:1)
|
||||||
|
function adjustedL(hue: number, sat: number, targetL: number): number {
|
||||||
|
let l = targetL;
|
||||||
|
while (l >= 5) {
|
||||||
|
const lum = hslToRelativeLuminance(hue, sat, l);
|
||||||
|
if (1.05 / (lum + 0.05) >= 4.5) return l;
|
||||||
|
l -= 1;
|
||||||
|
}
|
||||||
|
return l;
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyAccentColors(hue: number, isDark: boolean): void {
|
||||||
|
const sat = 70;
|
||||||
|
const baseL = adjustedL(hue, sat, isDark ? 55 : 38);
|
||||||
|
const hoverL = isDark ? Math.min(baseL + 10, 80) : Math.max(baseL - 10, 10);
|
||||||
|
const root = document.documentElement;
|
||||||
|
root.style.setProperty('--luncher-primary', `hsl(${hue} ${sat}% ${baseL}%)`);
|
||||||
|
root.style.setProperty('--luncher-primary-hover', `hsl(${hue} ${sat}% ${hoverL}%)`);
|
||||||
|
root.style.setProperty('--luncher-primary-light', isDark
|
||||||
|
? `hsl(${hue} 60% 12%)`
|
||||||
|
: `hsl(${hue} 60% 92%)`);
|
||||||
|
root.style.setProperty('--luncher-action-icon', `hsl(${hue} ${sat}% ${baseL}%)`);
|
||||||
|
root.style.setProperty('--luncher-success', `hsl(${hue} ${sat}% ${baseL}%)`);
|
||||||
|
}
|
||||||
|
|
||||||
function useProvideSettings(): SettingsContextProps {
|
function useProvideSettings(): SettingsContextProps {
|
||||||
const [bankAccount, setBankAccount] = useState<string | undefined>();
|
const [bankAccount, setBankAccount] = useState<string | undefined>();
|
||||||
const [holderName, setHolderName] = useState<string | undefined>();
|
const [holderName, setHolderName] = useState<string | undefined>();
|
||||||
const [hideSoups, setHideSoups] = useState<boolean | undefined>();
|
const [hideSoups, setHideSoups] = useState<boolean | undefined>();
|
||||||
|
const [themePreference, setTheme] = useState<ThemePreference>(getInitialTheme);
|
||||||
|
const [accentHue, setHue] = useState<number>(getInitialAccentHue);
|
||||||
|
const [effectiveDark, setEffectiveDark] = useState<boolean>(() => {
|
||||||
|
try {
|
||||||
|
const pref = localStorage.getItem(THEME_KEY) as ThemePreference | null;
|
||||||
|
if (pref === 'dark') return true;
|
||||||
|
if (pref === 'light') return false;
|
||||||
|
} catch { /* noop */ }
|
||||||
|
return window.matchMedia?.('(prefers-color-scheme: dark)').matches ?? false;
|
||||||
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const accountNumber = localStorage.getItem(BANK_ACCOUNT_NUMBER_KEY);
|
const accountNumber = localStorage.getItem(BANK_ACCOUNT_NUMBER_KEY);
|
||||||
@@ -72,6 +158,32 @@ function useProvideSettings(): SettingsContextProps {
|
|||||||
}
|
}
|
||||||
}, [hideSoups]);
|
}, [hideSoups]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
localStorage.setItem(THEME_KEY, themePreference);
|
||||||
|
}, [themePreference]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const applyTheme = (dark: boolean) => {
|
||||||
|
document.documentElement.setAttribute('data-bs-theme', dark ? 'dark' : 'light');
|
||||||
|
setEffectiveDark(dark);
|
||||||
|
};
|
||||||
|
if (themePreference === 'system') {
|
||||||
|
const mq = window.matchMedia('(prefers-color-scheme: dark)');
|
||||||
|
applyTheme(mq.matches);
|
||||||
|
const handler = (e: MediaQueryListEvent) => applyTheme(e.matches);
|
||||||
|
mq.addEventListener('change', handler);
|
||||||
|
return () => mq.removeEventListener('change', handler);
|
||||||
|
} else {
|
||||||
|
applyTheme(themePreference === 'dark');
|
||||||
|
}
|
||||||
|
}, [themePreference]);
|
||||||
|
|
||||||
|
// Aplikuje accent barvy při změně hue nebo přepnutí světlý/tmavý
|
||||||
|
useEffect(() => {
|
||||||
|
localStorage.setItem(ACCENT_HUE_KEY, String(accentHue));
|
||||||
|
applyAccentColors(accentHue, effectiveDark);
|
||||||
|
}, [accentHue, effectiveDark]);
|
||||||
|
|
||||||
function setBankAccountNumber(bankAccount?: string) {
|
function setBankAccountNumber(bankAccount?: string) {
|
||||||
setBankAccount(bankAccount);
|
setBankAccount(bankAccount);
|
||||||
}
|
}
|
||||||
@@ -84,12 +196,25 @@ function useProvideSettings(): SettingsContextProps {
|
|||||||
setHideSoups(hideSoups);
|
setHideSoups(hideSoups);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setThemePreference(theme: ThemePreference) {
|
||||||
|
setTheme(theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
function setAccentHue(hue: number) {
|
||||||
|
setHue(hue);
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
bankAccount,
|
bankAccount,
|
||||||
holderName,
|
holderName,
|
||||||
hideSoups,
|
hideSoups,
|
||||||
|
themePreference,
|
||||||
|
accentHue,
|
||||||
|
effectiveDark,
|
||||||
setBankAccountNumber,
|
setBankAccountNumber,
|
||||||
setBankAccountHolderName,
|
setBankAccountHolderName,
|
||||||
setHideSoupsOption,
|
setHideSoupsOption,
|
||||||
|
setThemePreference,
|
||||||
|
setAccentHue,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,14 +7,28 @@ if (process.env.NODE_ENV === 'development') {
|
|||||||
socketUrl = `http://localhost:3001`;
|
socketUrl = `http://localhost:3001`;
|
||||||
socketPath = undefined;
|
socketPath = undefined;
|
||||||
} else {
|
} else {
|
||||||
socketUrl = `${window.location.host}`;
|
socketUrl = `${globalThis.location.host}`;
|
||||||
socketPath = `${window.location.pathname}socket.io`;
|
socketPath = '/socket.io';
|
||||||
}
|
}
|
||||||
|
|
||||||
export const socket = socketio.connect(socketUrl, { path: socketPath, transports: ["websocket"] });
|
export const socket = socketio.connect(socketUrl, { path: socketPath, transports: ["websocket"] });
|
||||||
export const SocketContext = React.createContext();
|
export const SocketContext = React.createContext();
|
||||||
|
|
||||||
|
// Prohlížeče throttlují setTimeout v neaktivních tabech, což zdržuje automatické
|
||||||
|
// znovupřipojení socket.io. Po návratu do tabu nebo focusu okna se připojíme hned.
|
||||||
|
document.addEventListener('visibilitychange', () => {
|
||||||
|
if (document.visibilityState === 'visible' && !socket.connected) {
|
||||||
|
socket.connect();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
window.addEventListener('focus', () => {
|
||||||
|
if (!socket.connected) {
|
||||||
|
socket.connect();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Konstanty websocket eventů, musí odpovídat těm na serveru!
|
// Konstanty websocket eventů, musí odpovídat těm na serveru!
|
||||||
export const EVENT_CONNECT = 'connect';
|
export const EVENT_CONNECT = 'connect';
|
||||||
export const EVENT_DISCONNECT = 'disconnect';
|
export const EVENT_DISCONNECT = 'disconnect';
|
||||||
export const EVENT_MESSAGE = 'message';
|
export const EVENT_MESSAGE = 'message';
|
||||||
|
export const EVENT_PENDING_QR = 'pendingQr';
|
||||||
|
|||||||
@@ -0,0 +1,108 @@
|
|||||||
|
import { getToken } from '../Utils';
|
||||||
|
|
||||||
|
/** Převede base64url VAPID klíč na Uint8Array pro PushManager. */
|
||||||
|
function urlBase64ToUint8Array(base64String: string): Uint8Array {
|
||||||
|
const padding = '='.repeat((4 - (base64String.length % 4)) % 4);
|
||||||
|
const base64 = (base64String + padding).replace(/-/g, '+').replace(/_/g, '/');
|
||||||
|
const rawData = atob(base64);
|
||||||
|
const outputArray = new Uint8Array(rawData.length);
|
||||||
|
for (let i = 0; i < rawData.length; ++i) {
|
||||||
|
outputArray[i] = rawData.charCodeAt(i);
|
||||||
|
}
|
||||||
|
return outputArray;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Helper pro autorizované API volání na push endpointy. */
|
||||||
|
async function pushApiFetch(path: string, options: RequestInit = {}): Promise<Response> {
|
||||||
|
const token = getToken();
|
||||||
|
return fetch(`/api/notifications/push${path}`, {
|
||||||
|
...options,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
...(token ? { Authorization: `Bearer ${token}` } : {}),
|
||||||
|
...options.headers,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Zaregistruje service worker, přihlásí se k push notifikacím
|
||||||
|
* a odešle subscription na server.
|
||||||
|
*/
|
||||||
|
export async function subscribeToPush(reminderTime: string): Promise<boolean> {
|
||||||
|
if (!('serviceWorker' in navigator) || !('PushManager' in window)) {
|
||||||
|
console.warn('Push notifikace nejsou v tomto prohlížeči podporovány');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Registrace service workeru
|
||||||
|
const registration = await navigator.serviceWorker.register('/sw.js');
|
||||||
|
await navigator.serviceWorker.ready;
|
||||||
|
|
||||||
|
// Vyžádání oprávnění
|
||||||
|
const permission = await Notification.requestPermission();
|
||||||
|
if (permission !== 'granted') {
|
||||||
|
console.warn('Push notifikace: oprávnění zamítnuto');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Získání VAPID veřejného klíče ze serveru
|
||||||
|
const vapidResponse = await pushApiFetch('/vapidKey');
|
||||||
|
if (!vapidResponse.ok) {
|
||||||
|
console.error('Push notifikace: nepodařilo se získat VAPID klíč');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const { key: vapidPublicKey } = await vapidResponse.json();
|
||||||
|
|
||||||
|
// Přihlášení k push
|
||||||
|
const subscription = await registration.pushManager.subscribe({
|
||||||
|
userVisibleOnly: true,
|
||||||
|
applicationServerKey: urlBase64ToUint8Array(vapidPublicKey) as BufferSource,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Odeslání subscription na server
|
||||||
|
const response = await pushApiFetch('/subscribe', {
|
||||||
|
method: 'POST',
|
||||||
|
body: JSON.stringify({
|
||||||
|
subscription: subscription.toJSON(),
|
||||||
|
reminderTime,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
console.error('Push notifikace: nepodařilo se odeslat subscription na server');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('Push notifikace: úspěšně přihlášeno k připomínkám v', reminderTime);
|
||||||
|
return true;
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Push notifikace: chyba při registraci', error);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Odhlásí se z push notifikací a informuje server.
|
||||||
|
*/
|
||||||
|
export async function unsubscribeFromPush(): Promise<void> {
|
||||||
|
if (!('serviceWorker' in navigator)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const registration = await navigator.serviceWorker.getRegistration('/sw.js');
|
||||||
|
if (registration) {
|
||||||
|
const subscription = await registration.pushManager.getSubscription();
|
||||||
|
if (subscription) {
|
||||||
|
await subscription.unsubscribe();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
await pushApiFetch('/unsubscribe', { method: 'POST' });
|
||||||
|
console.log('Push notifikace: úspěšně odhlášeno z připomínek');
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Push notifikace: chyba při odhlášení', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
+19
-1
@@ -7,14 +7,32 @@ body,
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||||
sans-serif;
|
sans-serif;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||||
monospace;
|
monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Smooth scrolling */
|
||||||
|
html {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Better focus styles */
|
||||||
|
:focus-visible {
|
||||||
|
outline: 2px solid var(--luncher-primary);
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Selection color */
|
||||||
|
::selection {
|
||||||
|
background: var(--luncher-primary-light);
|
||||||
|
color: var(--luncher-primary);
|
||||||
|
}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ client.setConfig({
|
|||||||
// Interceptor na vyhození toasteru při chybě
|
// Interceptor na vyhození toasteru při chybě
|
||||||
client.interceptors.response.use(async response => {
|
client.interceptors.response.use(async response => {
|
||||||
// TODO opravit - login je zatím výjimka, voláme ho "naprázdno" abychom zjistili, zda nás nepřihlásily trusted headers
|
// TODO opravit - login je zatím výjimka, voláme ho "naprázdno" abychom zjistili, zda nás nepřihlásily trusted headers
|
||||||
if (!response.ok && response.url.indexOf("/login") == -1) {
|
if (!response.ok && !response.url.includes("/login")) {
|
||||||
const json = await response.json();
|
const json = await response.json();
|
||||||
toast.error(json.error, { theme: "colored" });
|
toast.error(json.error, { theme: "colored" });
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,611 @@
|
|||||||
|
import { useContext, useEffect, useState } from 'react';
|
||||||
|
import { Alert, Badge, Button, Card, Form, Modal, OverlayTrigger, Table, Tooltip } from 'react-bootstrap';
|
||||||
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||||||
|
import { faTrashCan } from '@fortawesome/free-regular-svg-icons';
|
||||||
|
import { faBasketShopping, faCircleCheck, faGear, faLock, faLockOpen, faSearch, faUserPlus } from '@fortawesome/free-solid-svg-icons';
|
||||||
|
import {
|
||||||
|
ClientData, GroupState, MealSlot, OrderGroup, OrderGroupMember,
|
||||||
|
getData, createGroup, deleteGroup, addGroupMember, removeGroupMember, updateGroupMember, setGroupState, updateGroupTimes,
|
||||||
|
} from '../../../types';
|
||||||
|
import { EVENT_MESSAGE, SocketContext } from '../context/socket';
|
||||||
|
import { useAuth } from '../context/auth';
|
||||||
|
import { useSettings } from '../context/settings';
|
||||||
|
import Login from '../Login';
|
||||||
|
import Header from '../components/Header';
|
||||||
|
import Footer from '../components/Footer';
|
||||||
|
import Loader from '../components/Loader';
|
||||||
|
import StoreAdminModal from '../components/modals/StoreAdminModal';
|
||||||
|
import PayForGroupModal from '../components/modals/PayForGroupModal';
|
||||||
|
import EditGroupFeesModal from '../components/modals/EditGroupFeesModal';
|
||||||
|
|
||||||
|
const SLOT = MealSlot.EXTRA;
|
||||||
|
const TIME_REGEX = /^([01]\d|2[0-3]):[0-5]\d$/;
|
||||||
|
|
||||||
|
function stateBadge(state: GroupState) {
|
||||||
|
const map: Record<GroupState, { bg: string; label: string }> = {
|
||||||
|
[GroupState.OPEN]: { bg: 'success', label: 'Otevřeno' },
|
||||||
|
[GroupState.LOCKED]: { bg: 'warning', label: 'Uzamčeno' },
|
||||||
|
[GroupState.ORDERED]: { bg: 'secondary', label: 'Objednáno' },
|
||||||
|
};
|
||||||
|
const { bg, label } = map[state] ?? { bg: 'light', label: state };
|
||||||
|
return <Badge bg={bg}>{label}</Badge>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function OrderGroupsPage() {
|
||||||
|
const auth = useAuth();
|
||||||
|
const settings = useSettings();
|
||||||
|
const socket = useContext(SocketContext);
|
||||||
|
const [data, setData] = useState<ClientData | undefined>();
|
||||||
|
const [failure, setFailure] = useState(false);
|
||||||
|
const [newGroupName, setNewGroupName] = useState('');
|
||||||
|
const [creating, setCreating] = useState(false);
|
||||||
|
const [adminModalOpen, setAdminModalOpen] = useState(false);
|
||||||
|
const [editAmounts, setEditAmounts] = useState<Record<string, string>>({});
|
||||||
|
const [editNotes, setEditNotes] = useState<Record<string, string>>({});
|
||||||
|
const [editSurcharges, setEditSurcharges] = useState<Record<string, { text: string; amount: string }>>({});
|
||||||
|
const [editTimes, setEditTimes] = useState<Record<string, { orderedAt: string; deliveryAt: string }>>({});
|
||||||
|
const [payModal, setPayModal] = useState<OrderGroup | null>(null);
|
||||||
|
const [feesModal, setFeesModal] = useState<OrderGroup | null>(null);
|
||||||
|
const [confirmOrderGroup, setConfirmOrderGroup] = useState<OrderGroup | null>(null);
|
||||||
|
const [pageError, setPageError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const fetchData = async () => {
|
||||||
|
try {
|
||||||
|
const r = await getData({ query: { slot: SLOT } });
|
||||||
|
if (r.data) setData(r.data);
|
||||||
|
} catch {
|
||||||
|
setFailure(true);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!auth?.login) return;
|
||||||
|
fetchData();
|
||||||
|
}, [auth?.login]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
socket.on(EVENT_MESSAGE, (newData: ClientData) => {
|
||||||
|
if (newData.slot === SLOT) setData(prev => ({
|
||||||
|
...newData,
|
||||||
|
stores: newData.stores ?? prev?.stores,
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
return () => { socket.off(EVENT_MESSAGE); };
|
||||||
|
}, [socket]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const onReconnect = () => fetchData();
|
||||||
|
socket.io.on('reconnect', onReconnect);
|
||||||
|
return () => { socket.io.off('reconnect', onReconnect); };
|
||||||
|
}, [socket]);
|
||||||
|
|
||||||
|
const refresh = async (fn: () => Promise<any>): Promise<boolean> => {
|
||||||
|
setPageError(null);
|
||||||
|
const result = await fn();
|
||||||
|
if (result?.error) {
|
||||||
|
setPageError((result.error as any).error || 'Nastala chyba');
|
||||||
|
await fetchData();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (result?.data) {
|
||||||
|
setData(result.data);
|
||||||
|
socket.emit?.('message', result.data as ClientData);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCreate = async () => {
|
||||||
|
if (!newGroupName || !auth?.login) return;
|
||||||
|
setCreating(true);
|
||||||
|
const ok = await refresh(() => createGroup({ body: { name: newGroupName } }));
|
||||||
|
if (ok) setNewGroupName('');
|
||||||
|
setCreating(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleJoin = (groupId: string) =>
|
||||||
|
refresh(() => addGroupMember({ body: { id: groupId } }));
|
||||||
|
|
||||||
|
const handleToggleLock = (group: OrderGroup) => {
|
||||||
|
const next = group.state === GroupState.OPEN ? GroupState.LOCKED : GroupState.OPEN;
|
||||||
|
return refresh(() => setGroupState({ body: { id: group.id, state: next } }));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleConfirmOrdered = async (group: OrderGroup) => {
|
||||||
|
setConfirmOrderGroup(null);
|
||||||
|
await refresh(() => setGroupState({ body: { id: group.id, state: GroupState.ORDERED } }));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleRevertOrdered = (group: OrderGroup) =>
|
||||||
|
refresh(() => setGroupState({ body: { id: group.id, state: GroupState.LOCKED } }));
|
||||||
|
|
||||||
|
const handleDelete = (groupId: string) =>
|
||||||
|
refresh(() => deleteGroup({ body: { id: groupId } }));
|
||||||
|
|
||||||
|
const handleSaveAmount = async (groupId: string, login: string) => {
|
||||||
|
const key = `${groupId}:${login}`;
|
||||||
|
const raw = editAmounts[key];
|
||||||
|
const n = parseFloat(raw ?? '');
|
||||||
|
if (!raw || isNaN(n) || n < 0) {
|
||||||
|
setPageError('Zadejte platnou kladnou částku');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const ok = await refresh(() => updateGroupMember({ body: { id: groupId, login, amount: Math.round(n * 100) } }));
|
||||||
|
if (ok) setEditAmounts(prev => { const next = { ...prev }; delete next[key]; return next; });
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSaveNote = async (groupId: string, login: string) => {
|
||||||
|
const key = `${groupId}:${login}`;
|
||||||
|
const note = editNotes[key] ?? '';
|
||||||
|
const ok = await refresh(() => updateGroupMember({ body: { id: groupId, login, note } }));
|
||||||
|
if (ok) setEditNotes(prev => { const next = { ...prev }; delete next[key]; return next; });
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSaveSurcharge = async (groupId: string, login: string) => {
|
||||||
|
const key = `${groupId}:${login}`;
|
||||||
|
const surchargeText = editSurcharges[key]?.text ?? '';
|
||||||
|
const rawAmount = editSurcharges[key]?.amount ?? '';
|
||||||
|
const surchargeAmount = rawAmount === '' ? 0 : parseFloat(rawAmount.replace(',', '.'));
|
||||||
|
if (rawAmount !== '' && (isNaN(surchargeAmount) || surchargeAmount < 0)) {
|
||||||
|
setPageError('Zadejte platnou výši příplatku');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const ok = await refresh(() => updateGroupMember({ body: { id: groupId, login, surchargeText, surchargeAmount: rawAmount === '' ? 0 : Math.round(surchargeAmount * 100) } }));
|
||||||
|
if (ok) setEditSurcharges(prev => { const next = { ...prev }; delete next[key]; return next; });
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSaveTimes = async (group: OrderGroup) => {
|
||||||
|
const times = editTimes[group.id];
|
||||||
|
if (!times) return;
|
||||||
|
const { orderedAt, deliveryAt } = times;
|
||||||
|
if (orderedAt && !TIME_REGEX.test(orderedAt)) {
|
||||||
|
setPageError('Čas objednání musí být ve formátu HH:MM');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (deliveryAt && !TIME_REGEX.test(deliveryAt)) {
|
||||||
|
setPageError('Čas doručení musí být ve formátu HH:MM');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const ok = await refresh(() => updateGroupTimes({ body: { id: group.id, orderedAt, deliveryAt } }));
|
||||||
|
if (ok) setEditTimes(prev => { const next = { ...prev }; delete next[group.id]; return next; });
|
||||||
|
};
|
||||||
|
|
||||||
|
const canEditMember = (group: OrderGroup, targetLogin: string) => {
|
||||||
|
if (group.state === GroupState.ORDERED) return false;
|
||||||
|
if (auth?.login === group.creatorLogin) return true;
|
||||||
|
if (auth?.login === targetLogin && group.state === GroupState.OPEN) return true;
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
const canManageMembers = (group: OrderGroup) => {
|
||||||
|
if (group.state === GroupState.ORDERED) return false;
|
||||||
|
if (auth?.login === group.creatorLogin) return true;
|
||||||
|
return group.state === GroupState.OPEN;
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!auth?.login) return <Login />;
|
||||||
|
|
||||||
|
if (failure) return (
|
||||||
|
<Loader icon={faSearch} description="Nepodařilo se načíst data" animation="fa-beat" />
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!data) return (
|
||||||
|
<Loader icon={faSearch} description="Načítám..." animation="fa-bounce" />
|
||||||
|
);
|
||||||
|
|
||||||
|
const stores = data.stores ?? [];
|
||||||
|
const groups = data.groups ?? [];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="app-container">
|
||||||
|
<Header choices={data.choices} />
|
||||||
|
<div className="wrapper">
|
||||||
|
<div className="d-flex align-items-center justify-content-between mb-1">
|
||||||
|
<h1 className="title mb-0">Objednání</h1>
|
||||||
|
<Button variant="outline-secondary" size="sm" onClick={() => setAdminModalOpen(true)} title="Správa obchodů">
|
||||||
|
<FontAwesomeIcon icon={faGear} />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
<p style={{ color: 'var(--luncher-text-muted)' }}>Skupinové objednávky z obchodů a restaurací</p>
|
||||||
|
|
||||||
|
{pageError && (
|
||||||
|
<Alert variant="danger" dismissible onClose={() => setPageError(null)} className="mt-2">
|
||||||
|
{pageError}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="content-wrapper">
|
||||||
|
<div className="content" style={{ maxWidth: 1200 }}>
|
||||||
|
{/* Vytvoření nové skupiny */}
|
||||||
|
<div className="choice-section fade-in mb-4">
|
||||||
|
<h5>Vytvořit skupinu</h5>
|
||||||
|
{stores.length === 0 ? (
|
||||||
|
<p className="text-muted">
|
||||||
|
Nejsou přidány žádné obchody.{' '}
|
||||||
|
<Button variant="link" size="sm" className="p-0" onClick={() => setAdminModalOpen(true)}>
|
||||||
|
Přidat obchod
|
||||||
|
</Button>
|
||||||
|
</p>
|
||||||
|
) : (
|
||||||
|
<div className="d-flex gap-2 align-items-end flex-wrap">
|
||||||
|
<Form.Select
|
||||||
|
value={newGroupName}
|
||||||
|
onChange={e => setNewGroupName(e.target.value)}
|
||||||
|
style={{ maxWidth: 260 }}
|
||||||
|
>
|
||||||
|
<option value="">— vyberte obchod —</option>
|
||||||
|
{stores.map(s => <option key={s} value={s}>{s}</option>)}
|
||||||
|
</Form.Select>
|
||||||
|
<Button variant="primary" onClick={handleCreate} disabled={creating || !newGroupName}>
|
||||||
|
Vytvořit skupinu
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Seznam skupin */}
|
||||||
|
{groups.length === 0 && (
|
||||||
|
<p className="text-muted fade-in">Zatím žádné skupiny pro dnešní den.</p>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{groups.map(group => {
|
||||||
|
const login = auth!.login ?? '';
|
||||||
|
const isCreator = login === group.creatorLogin;
|
||||||
|
const isMember = login in group.members;
|
||||||
|
const isOrdered = group.state === GroupState.ORDERED;
|
||||||
|
const isLocked = group.state === GroupState.LOCKED;
|
||||||
|
const memberEntries = Object.entries(group.members) as [string, OrderGroupMember][];
|
||||||
|
const memberCount = memberEntries.length;
|
||||||
|
const editingTimes = group.id in editTimes;
|
||||||
|
|
||||||
|
const totalFees = (group.fees ?? 0) + (group.shipping ?? 0) + (group.tip ?? 0);
|
||||||
|
const feeShare = memberCount > 0 ? Math.round(totalFees / memberCount) : 0;
|
||||||
|
const getMemberTotal = (m: OrderGroupMember) => {
|
||||||
|
const base = m.amount ?? 0;
|
||||||
|
const surcharge = m.surchargeAmount ?? 0;
|
||||||
|
const dv = group.discountValue ?? 0;
|
||||||
|
const discount = dv > 0
|
||||||
|
? (group.discountType === 'percent'
|
||||||
|
? Math.round((base + surcharge) * dv / 100)
|
||||||
|
: Math.round(dv / memberCount))
|
||||||
|
: 0;
|
||||||
|
return base + surcharge + feeShare - discount;
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card key={group.id} className="mb-3 fade-in">
|
||||||
|
<Card.Header className="d-flex justify-content-between align-items-center">
|
||||||
|
<div className="d-flex align-items-center gap-2">
|
||||||
|
<strong>{group.name}</strong>
|
||||||
|
{stateBadge(group.state)}
|
||||||
|
<small className="text-muted">zakladatel: {group.creatorLogin}</small>
|
||||||
|
</div>
|
||||||
|
<div className="d-flex gap-2">
|
||||||
|
{isCreator && !isOrdered && (
|
||||||
|
<>
|
||||||
|
<Button variant="outline-info" size="sm" onClick={() => setFeesModal(group)} title="Upravit poplatky a slevu">
|
||||||
|
Poplatky
|
||||||
|
</Button>
|
||||||
|
<Button variant="outline-secondary" size="sm" onClick={() => handleToggleLock(group)} title={isLocked ? 'Odemknout' : 'Uzamknout'}>
|
||||||
|
<FontAwesomeIcon icon={isLocked ? faLockOpen : faLock} />
|
||||||
|
</Button>
|
||||||
|
{isLocked && (
|
||||||
|
<Button variant="outline-primary" size="sm" onClick={() => setConfirmOrderGroup(group)}>
|
||||||
|
Objednáno
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
<Button variant="outline-danger" size="sm" onClick={() => handleDelete(group.id)} title="Smazat skupinu">
|
||||||
|
<FontAwesomeIcon icon={faTrashCan} />
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{isCreator && isOrdered && (
|
||||||
|
<>
|
||||||
|
{settings?.bankAccount && settings?.holderName && !group.qrGenerated && (
|
||||||
|
<Button variant="primary" size="sm" onClick={() => setPayModal(group)}>
|
||||||
|
<FontAwesomeIcon icon={faBasketShopping} className="me-1" />
|
||||||
|
Generovat QR
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
<Button variant="outline-warning" size="sm" onClick={() => handleRevertOrdered(group)} title="Vrátit na Uzamčeno (smaže QR kódy)">
|
||||||
|
<FontAwesomeIcon icon={faLockOpen} />
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{!isMember && !isOrdered && !isLocked && (
|
||||||
|
<Button variant="outline-success" size="sm" onClick={() => handleJoin(group.id)}>
|
||||||
|
<FontAwesomeIcon icon={faUserPlus} className="me-1" />
|
||||||
|
Přidat se
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</Card.Header>
|
||||||
|
<Card.Body className="p-0">
|
||||||
|
<Table className="mb-0" size="sm">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Člen</th>
|
||||||
|
<th style={{ width: 180 }}>Částka (bez slev)</th>
|
||||||
|
<th style={{ width: 220 }}>Příplatek</th>
|
||||||
|
<th>Poznámka</th>
|
||||||
|
<th style={{ width: 160 }}>Celkem (s poplatky)</th>
|
||||||
|
<th style={{ width: 40 }}></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{memberEntries.map(([memberLogin, member]) => {
|
||||||
|
const key = `${group.id}:${memberLogin}`;
|
||||||
|
const editingAmount = key in editAmounts;
|
||||||
|
const editingNote = key in editNotes;
|
||||||
|
const editingSurcharge = key in editSurcharges;
|
||||||
|
const canEdit = canEditMember(group, memberLogin);
|
||||||
|
const memberTotal = getMemberTotal(member);
|
||||||
|
return (
|
||||||
|
<tr key={memberLogin}>
|
||||||
|
<td>
|
||||||
|
<span className="user-info">
|
||||||
|
<strong>{memberLogin}</strong>
|
||||||
|
{memberLogin === group.creatorLogin && (
|
||||||
|
<OverlayTrigger placement="top" overlay={<Tooltip>Zakladatel / objednávající</Tooltip>}>
|
||||||
|
<span className="ms-1"><FontAwesomeIcon icon={faBasketShopping} className="buyer-icon" /></span>
|
||||||
|
</OverlayTrigger>
|
||||||
|
)}
|
||||||
|
{member.paid && (
|
||||||
|
<OverlayTrigger placement="top" overlay={<Tooltip>Zaplaceno</Tooltip>}>
|
||||||
|
<span className="ms-1"><FontAwesomeIcon icon={faCircleCheck} className="text-success" /></span>
|
||||||
|
</OverlayTrigger>
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{canEdit && editingAmount ? (
|
||||||
|
<div className="d-flex gap-1">
|
||||||
|
<Form.Control
|
||||||
|
type="number"
|
||||||
|
size="sm"
|
||||||
|
value={editAmounts[key]}
|
||||||
|
onChange={e => setEditAmounts(prev => ({ ...prev, [key]: e.target.value }))}
|
||||||
|
onKeyDown={e => { e.stopPropagation(); if (e.key === 'Enter') handleSaveAmount(group.id, memberLogin); if (e.key === 'Escape') setEditAmounts(prev => { const n = { ...prev }; delete n[key]; return n; }); }}
|
||||||
|
style={{ width: 95 }}
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
<Button size="sm" variant="outline-success" onClick={() => handleSaveAmount(group.id, memberLogin)}>✓</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<span
|
||||||
|
style={{ cursor: canEdit ? 'pointer' : undefined }}
|
||||||
|
onClick={() => canEdit && setEditAmounts(prev => ({ ...prev, [key]: member.amount != null ? String(member.amount / 100) : '' }))}
|
||||||
|
title={canEdit ? 'Klikněte pro úpravu' : undefined}
|
||||||
|
>
|
||||||
|
{member.amount != null ? `${member.amount / 100} Kč` : <span className="text-muted">—</span>}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{canEdit && editingSurcharge ? (
|
||||||
|
<div className="d-flex gap-1">
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
size="sm"
|
||||||
|
placeholder="popis"
|
||||||
|
value={editSurcharges[key]?.text ?? ''}
|
||||||
|
onChange={e => setEditSurcharges(prev => ({ ...prev, [key]: { ...prev[key], text: e.target.value } }))}
|
||||||
|
onKeyDown={e => { e.stopPropagation(); if (e.key === 'Enter') handleSaveSurcharge(group.id, memberLogin); if (e.key === 'Escape') setEditSurcharges(prev => { const n = { ...prev }; delete n[key]; return n; }); }}
|
||||||
|
style={{ width: 80 }}
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
<Form.Control
|
||||||
|
type="number"
|
||||||
|
size="sm"
|
||||||
|
placeholder="Kč"
|
||||||
|
value={editSurcharges[key]?.amount ?? ''}
|
||||||
|
onChange={e => setEditSurcharges(prev => ({ ...prev, [key]: { ...prev[key], amount: e.target.value } }))}
|
||||||
|
onKeyDown={e => { e.stopPropagation(); if (e.key === 'Enter') handleSaveSurcharge(group.id, memberLogin); if (e.key === 'Escape') setEditSurcharges(prev => { const n = { ...prev }; delete n[key]; return n; }); }}
|
||||||
|
style={{ width: 60 }}
|
||||||
|
/>
|
||||||
|
<Button size="sm" variant="outline-success" onClick={() => handleSaveSurcharge(group.id, memberLogin)}>✓</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<span
|
||||||
|
style={{ cursor: canEdit ? 'pointer' : undefined }}
|
||||||
|
onClick={() => canEdit && setEditSurcharges(prev => ({ ...prev, [key]: { text: member.surchargeText ?? '', amount: member.surchargeAmount != null ? String(member.surchargeAmount / 100) : '' } }))}
|
||||||
|
title={canEdit ? 'Klikněte pro úpravu příplatku' : undefined}
|
||||||
|
>
|
||||||
|
{member.surchargeAmount != null && member.surchargeAmount > 0 ? (
|
||||||
|
<small>{member.surchargeText ? `${member.surchargeText}: ` : ''}<strong>{member.surchargeAmount / 100} Kč</strong></small>
|
||||||
|
) : (
|
||||||
|
<small className="text-muted">—</small>
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{canEdit && editingNote ? (
|
||||||
|
<div className="d-flex gap-1">
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
size="sm"
|
||||||
|
value={editNotes[key]}
|
||||||
|
onChange={e => setEditNotes(prev => ({ ...prev, [key]: e.target.value }))}
|
||||||
|
onKeyDown={e => { e.stopPropagation(); if (e.key === 'Enter') handleSaveNote(group.id, memberLogin); if (e.key === 'Escape') setEditNotes(prev => { const n = { ...prev }; delete n[key]; return n; }); }}
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
<Button size="sm" variant="outline-success" onClick={() => handleSaveNote(group.id, memberLogin)}>✓</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<span
|
||||||
|
style={{ cursor: canEdit ? 'pointer' : undefined }}
|
||||||
|
onClick={() => canEdit && setEditNotes(prev => ({ ...prev, [key]: member.note ?? '' }))}
|
||||||
|
title={canEdit ? 'Klikněte pro úpravu poznámky' : undefined}
|
||||||
|
>
|
||||||
|
<small className="text-muted">{member.note || '—'}</small>
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td className="text-end">
|
||||||
|
<small className={memberTotal > 0 ? 'fw-bold' : 'text-muted'}>
|
||||||
|
{memberTotal > 0 ? `${memberTotal / 100} Kč` : '—'}
|
||||||
|
</small>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<div className="d-flex gap-1 justify-content-end">
|
||||||
|
{canManageMembers(group) && (isCreator || memberLogin === login) && (memberLogin !== group.creatorLogin) && (
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faTrashCan}
|
||||||
|
className="action-icon"
|
||||||
|
title={memberLogin === login ? 'Odhlásit se' : 'Odebrat z skupiny'}
|
||||||
|
onClick={() => refresh(() => removeGroupMember({ body: { id: group.id, login: memberLogin } }))}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</tbody>
|
||||||
|
{(() => {
|
||||||
|
const sumBase = memberEntries.reduce((sum, [, m]) => sum + (m.amount ?? 0) + (m.surchargeAmount ?? 0), 0);
|
||||||
|
const dv = group.discountValue ?? 0;
|
||||||
|
const totalDiscount = dv > 0
|
||||||
|
? (group.discountType === 'percent' ? Math.round(sumBase * dv / 100) : dv)
|
||||||
|
: 0;
|
||||||
|
const groupTotal = sumBase + totalFees - totalDiscount;
|
||||||
|
return groupTotal > 0 ? (
|
||||||
|
<tfoot>
|
||||||
|
<tr style={{ fontWeight: 700, borderTop: '2px solid var(--luncher-border)' }}>
|
||||||
|
<td colSpan={4} className="text-end" style={{ fontSize: '0.9em' }}>Celkem za skupinu:</td>
|
||||||
|
<td className="text-end">{groupTotal / 100} Kč</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
|
) : null;
|
||||||
|
})()}
|
||||||
|
</Table>
|
||||||
|
|
||||||
|
{/* Souhrn poplatků a slevy */}
|
||||||
|
{(totalFees > 0 || (group.discountValue != null && group.discountValue > 0)) && (
|
||||||
|
<div className="px-3 py-2 border-top d-flex gap-3 flex-wrap" style={{ fontSize: '0.85em', color: 'var(--luncher-text-muted)' }}>
|
||||||
|
{group.fees != null && group.fees > 0 && <span>Poplatky: <strong>{group.fees / 100} Kč</strong></span>}
|
||||||
|
{group.shipping != null && group.shipping > 0 && <span>Doprava: <strong>{group.shipping / 100} Kč</strong></span>}
|
||||||
|
{group.tip != null && group.tip > 0 && <span>Spropitné: <strong>{group.tip / 100} Kč</strong></span>}
|
||||||
|
{feeShare > 0 && <span>→ <strong>{feeShare / 100} Kč</strong>/os.</span>}
|
||||||
|
{group.discountValue != null && group.discountValue > 0 && (
|
||||||
|
<span className="text-success">
|
||||||
|
Sleva: <strong>{group.discountType === 'percent' ? `${group.discountValue}%` : `${group.discountValue / 100} Kč`}</strong>
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Časy objednání a doručení */}
|
||||||
|
{isOrdered && (
|
||||||
|
<div className="px-3 py-2 border-top">
|
||||||
|
{isCreator && editingTimes ? (
|
||||||
|
<div className="d-flex align-items-center gap-3 flex-wrap">
|
||||||
|
<div className="d-flex align-items-center gap-1">
|
||||||
|
<small className="text-muted text-nowrap">Objednáno v:</small>
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
size="sm"
|
||||||
|
placeholder="HH:MM"
|
||||||
|
value={editTimes[group.id]?.orderedAt ?? ''}
|
||||||
|
onChange={e => setEditTimes(prev => ({ ...prev, [group.id]: { ...prev[group.id], orderedAt: e.target.value } }))}
|
||||||
|
onKeyDown={e => { e.stopPropagation(); if (e.key === 'Enter') handleSaveTimes(group); }}
|
||||||
|
style={{ width: 75 }}
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="d-flex align-items-center gap-1">
|
||||||
|
<small className="text-muted text-nowrap">Doručení v:</small>
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
size="sm"
|
||||||
|
placeholder="HH:MM"
|
||||||
|
value={editTimes[group.id]?.deliveryAt ?? ''}
|
||||||
|
onChange={e => setEditTimes(prev => ({ ...prev, [group.id]: { ...prev[group.id], deliveryAt: e.target.value } }))}
|
||||||
|
onKeyDown={e => { e.stopPropagation(); if (e.key === 'Enter') handleSaveTimes(group); }}
|
||||||
|
style={{ width: 75 }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<Button size="sm" variant="outline-success" onClick={() => handleSaveTimes(group)}>Uložit</Button>
|
||||||
|
<Button size="sm" variant="outline-secondary" onClick={() => setEditTimes(prev => { const n = { ...prev }; delete n[group.id]; return n; })}>Zrušit</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div
|
||||||
|
className="d-flex align-items-center gap-3 flex-wrap"
|
||||||
|
style={{ cursor: isCreator ? 'pointer' : undefined }}
|
||||||
|
onClick={() => isCreator && setEditTimes(prev => ({ ...prev, [group.id]: { orderedAt: group.orderedAt ?? '', deliveryAt: group.deliveryAt ?? '' } }))}
|
||||||
|
title={isCreator ? 'Klikněte pro úpravu časů' : undefined}
|
||||||
|
>
|
||||||
|
<small className="text-muted">
|
||||||
|
Objednáno v: <strong>{group.orderedAt ?? '—'}</strong>
|
||||||
|
</small>
|
||||||
|
<small className="text-muted">
|
||||||
|
Doručení v: <strong>{group.deliveryAt ?? '—'}</strong>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Card.Body>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Footer />
|
||||||
|
|
||||||
|
{/* Potvrzovací dialog pro přechod do stavu Objednáno */}
|
||||||
|
<Modal show={!!confirmOrderGroup} onHide={() => setConfirmOrderGroup(null)} centered>
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title>Potvrdit objednání</Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
Opravdu chcete označit skupinu <strong>{confirmOrderGroup?.name}</strong> jako objednanou?
|
||||||
|
Tato akce uzavře skupinu a zaznamená čas objednání.
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
<Button variant="secondary" onClick={() => setConfirmOrderGroup(null)}>Zrušit</Button>
|
||||||
|
<Button variant="primary" onClick={() => confirmOrderGroup && handleConfirmOrdered(confirmOrderGroup)}>
|
||||||
|
Objednáno
|
||||||
|
</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
|
||||||
|
<StoreAdminModal
|
||||||
|
isOpen={adminModalOpen}
|
||||||
|
onClose={() => setAdminModalOpen(false)}
|
||||||
|
stores={stores}
|
||||||
|
onStoresChanged={updated => setData(prev => prev ? { ...prev, stores: updated } : prev)}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{payModal && settings?.bankAccount && settings?.holderName && (
|
||||||
|
<PayForGroupModal
|
||||||
|
isOpen={!!payModal}
|
||||||
|
onClose={() => setPayModal(null)}
|
||||||
|
onSuccess={fetchData}
|
||||||
|
group={payModal}
|
||||||
|
groupId={payModal.id}
|
||||||
|
payerLogin={auth.login}
|
||||||
|
bankAccount={settings.bankAccount}
|
||||||
|
bankAccountHolder={settings.holderName}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{feesModal && (
|
||||||
|
<EditGroupFeesModal
|
||||||
|
isOpen={!!feesModal}
|
||||||
|
onClose={() => setFeesModal(null)}
|
||||||
|
group={feesModal}
|
||||||
|
onSaved={newData => {
|
||||||
|
if (newData) {
|
||||||
|
setData(newData);
|
||||||
|
socket.emit?.('message', newData as ClientData);
|
||||||
|
}
|
||||||
|
setFeesModal(null);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -2,15 +2,154 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 20px;
|
padding: 32px 24px;
|
||||||
|
min-height: calc(100vh - 140px);
|
||||||
|
background: var(--luncher-bg);
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--luncher-text);
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
.week-navigator {
|
.week-navigator {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: xx-large;
|
gap: 24px;
|
||||||
|
margin-bottom: 32px;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
color: var(--luncher-text-secondary);
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: var(--luncher-bg-card);
|
||||||
|
box-shadow: var(--luncher-shadow-sm);
|
||||||
|
transition: var(--luncher-transition);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--luncher-primary);
|
||||||
|
background: var(--luncher-primary-light);
|
||||||
|
transform: scale(1.05);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.date-range {
|
.date-range {
|
||||||
margin: 5px 20px;
|
margin: 0;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--luncher-text);
|
||||||
|
min-width: 280px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Chart container
|
||||||
|
.recharts-wrapper {
|
||||||
|
background: var(--luncher-bg-card);
|
||||||
|
border-radius: var(--luncher-radius-lg);
|
||||||
|
box-shadow: var(--luncher-shadow);
|
||||||
|
padding: 24px;
|
||||||
|
border: 1px solid var(--luncher-border-light);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Chart text styling
|
||||||
|
.recharts-cartesian-axis-tick-value {
|
||||||
|
fill: var(--luncher-text-secondary);
|
||||||
|
font-size: 0.85rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recharts-legend-item-text {
|
||||||
|
color: var(--luncher-text) !important;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recharts-tooltip-wrapper {
|
||||||
|
.recharts-default-tooltip {
|
||||||
|
background: var(--luncher-bg-card) !important;
|
||||||
|
border: 1px solid var(--luncher-border) !important;
|
||||||
|
border-radius: var(--luncher-radius-sm) !important;
|
||||||
|
box-shadow: var(--luncher-shadow-lg) !important;
|
||||||
|
|
||||||
|
.recharts-tooltip-label {
|
||||||
|
color: var(--luncher-text) !important;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recharts-tooltip-item {
|
||||||
|
color: var(--luncher-text-secondary) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.recharts-cartesian-grid-horizontal line,
|
||||||
|
.recharts-cartesian-grid-vertical line {
|
||||||
|
stroke: var(--luncher-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.voting-stats-section {
|
||||||
|
margin-top: 48px;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 800px;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--luncher-text);
|
||||||
|
margin-bottom: 16px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.voting-stats-table {
|
||||||
|
width: 100%;
|
||||||
|
background: var(--luncher-bg-card);
|
||||||
|
border-radius: var(--luncher-radius-lg);
|
||||||
|
box-shadow: var(--luncher-shadow);
|
||||||
|
border: 1px solid var(--luncher-border-light);
|
||||||
|
overflow: hidden;
|
||||||
|
border-collapse: collapse;
|
||||||
|
|
||||||
|
th {
|
||||||
|
background: var(--luncher-primary);
|
||||||
|
color: #ffffff;
|
||||||
|
padding: 12px 20px;
|
||||||
|
text-align: left;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
text-align: center;
|
||||||
|
width: 120px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
padding: 12px 20px;
|
||||||
|
border-bottom: 1px solid var(--luncher-border-light);
|
||||||
|
color: var(--luncher-text);
|
||||||
|
font-size: 0.9rem;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--luncher-primary);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody tr {
|
||||||
|
transition: var(--luncher-transition);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: var(--luncher-bg-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child td {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
import { useCallback, useEffect, useState } from "react";
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
||||||
import Footer from "../components/Footer";
|
import Footer from "../components/Footer";
|
||||||
import Header from "../components/Header";
|
import Header from "../components/Header";
|
||||||
import { useAuth } from "../context/auth";
|
import { useAuth } from "../context/auth";
|
||||||
import Login from "../Login";
|
import Login from "../Login";
|
||||||
import { formatDate, getFirstWorkDayOfWeek, getHumanDate, getLastWorkDayOfWeek } from "../Utils";
|
import { formatDate, getFirstWorkDayOfWeek, getHumanDate, getLastWorkDayOfWeek } from "../Utils";
|
||||||
import { WeeklyStats, LunchChoice, getStats } from "../../../types";
|
import { WeeklyStats, LunchChoice, VotingStats, FeatureRequest, getStats, getVotingStats } from "../../../types";
|
||||||
import Loader from "../components/Loader";
|
import Loader from "../components/Loader";
|
||||||
import { faChevronLeft, faChevronRight, faGear } from "@fortawesome/free-solid-svg-icons";
|
import { faChevronLeft, faChevronRight, faGear } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { Legend, Line, LineChart, Tooltip, XAxis, YAxis } from "recharts";
|
import { Legend, Line, LineChart, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
@@ -17,22 +17,22 @@ const CHART_HEIGHT = 700;
|
|||||||
const STROKE_WIDTH = 2.5;
|
const STROKE_WIDTH = 2.5;
|
||||||
|
|
||||||
const COLORS = [
|
const COLORS = [
|
||||||
// Komentáře jsou kvůli vizualizaci barev ve VS Code
|
'#ff1493',
|
||||||
'#ff1493', // #ff1493
|
'#1e90ff',
|
||||||
'#1e90ff', // #1e90ff
|
'#c5a700',
|
||||||
'#c5a700', // #c5a700
|
'#006400',
|
||||||
'#006400', // #006400
|
'#b300ff',
|
||||||
'#b300ff', // #b300ff
|
'#ff4500',
|
||||||
'#ff4500', // #ff4500
|
'#bc8f8f',
|
||||||
'#bc8f8f', // #bc8f8f
|
'#00ff00',
|
||||||
'#00ff00', // #00ff00
|
'#7c7c7c',
|
||||||
'#7c7c7c', // #7c7c7c
|
|
||||||
]
|
]
|
||||||
|
|
||||||
export default function StatsPage() {
|
export default function StatsPage() {
|
||||||
const auth = useAuth();
|
const auth = useAuth();
|
||||||
const [dateRange, setDateRange] = useState<Date[]>();
|
const [dateRange, setDateRange] = useState<Date[]>();
|
||||||
const [data, setData] = useState<WeeklyStats>();
|
const [data, setData] = useState<WeeklyStats>();
|
||||||
|
const [votingStats, setVotingStats] = useState<VotingStats>();
|
||||||
|
|
||||||
// Prvotní nastavení aktuálního týdne
|
// Prvotní nastavení aktuálního týdne
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -49,6 +49,19 @@ export default function StatsPage() {
|
|||||||
}
|
}
|
||||||
}, [dateRange]);
|
}, [dateRange]);
|
||||||
|
|
||||||
|
// Načtení statistik hlasování
|
||||||
|
useEffect(() => {
|
||||||
|
getVotingStats().then(response => {
|
||||||
|
setVotingStats(response.data);
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const sortedVotingStats = useMemo(() => {
|
||||||
|
if (!votingStats) return [];
|
||||||
|
return Object.entries(votingStats)
|
||||||
|
.sort((a, b) => (b[1] as number) - (a[1] as number));
|
||||||
|
}, [votingStats]);
|
||||||
|
|
||||||
const renderLine = (location: LunchChoice) => {
|
const renderLine = (location: LunchChoice) => {
|
||||||
const index = Object.values(LunchChoice).indexOf(location);
|
const index = Object.values(LunchChoice).indexOf(location);
|
||||||
return <Line key={location} name={getLunchChoiceName(location)} type="monotone" dataKey={data => data.locations[location] ?? 0} stroke={COLORS[index]} strokeWidth={STROKE_WIDTH} />
|
return <Line key={location} name={getLunchChoiceName(location)} type="monotone" dataKey={data => data.locations[location] ?? 0} stroke={COLORS[index]} strokeWidth={STROKE_WIDTH} />
|
||||||
@@ -74,13 +87,20 @@ export default function StatsPage() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const isCurrentOrFutureWeek = useMemo(() => {
|
||||||
|
if (!dateRange) return true;
|
||||||
|
const currentWeekEnd = getLastWorkDayOfWeek(new Date());
|
||||||
|
currentWeekEnd.setHours(23, 59, 59, 999);
|
||||||
|
return dateRange[1] >= currentWeekEnd;
|
||||||
|
}, [dateRange]);
|
||||||
|
|
||||||
const handleKeyDown = useCallback((e: any) => {
|
const handleKeyDown = useCallback((e: any) => {
|
||||||
if (e.keyCode === 37) {
|
if (e.keyCode === 37) {
|
||||||
handlePreviousWeek();
|
handlePreviousWeek();
|
||||||
} else if (e.keyCode === 39) {
|
} else if (e.keyCode === 39 && !isCurrentOrFutureWeek) {
|
||||||
handleNextWeek()
|
handleNextWeek()
|
||||||
}
|
}
|
||||||
}, [dateRange]);
|
}, [dateRange, isCurrentOrFutureWeek]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
document.addEventListener('keydown', handleKeyDown);
|
document.addEventListener('keydown', handleKeyDown);
|
||||||
@@ -112,7 +132,7 @@ export default function StatsPage() {
|
|||||||
</span>
|
</span>
|
||||||
<h2 className="date-range">{getHumanDate(dateRange[0])} - {getHumanDate(dateRange[1])}</h2>
|
<h2 className="date-range">{getHumanDate(dateRange[0])} - {getHumanDate(dateRange[1])}</h2>
|
||||||
<span title="Následující týden">
|
<span title="Následující týden">
|
||||||
<FontAwesomeIcon icon={faChevronRight} style={{ cursor: "pointer" }} onClick={handleNextWeek} />
|
<FontAwesomeIcon icon={faChevronRight} style={{ cursor: "pointer", visibility: isCurrentOrFutureWeek ? "hidden" : "visible" }} onClick={handleNextWeek} />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<LineChart width={CHART_WIDTH} height={CHART_HEIGHT} data={data}>
|
<LineChart width={CHART_WIDTH} height={CHART_HEIGHT} data={data}>
|
||||||
@@ -122,6 +142,27 @@ export default function StatsPage() {
|
|||||||
<Tooltip />
|
<Tooltip />
|
||||||
<Legend />
|
<Legend />
|
||||||
</LineChart>
|
</LineChart>
|
||||||
|
{sortedVotingStats.length > 0 && (
|
||||||
|
<div className="voting-stats-section">
|
||||||
|
<h2>Hlasování o funkcích</h2>
|
||||||
|
<table className="voting-stats-table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Funkce</th>
|
||||||
|
<th>Počet hlasů</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{sortedVotingStats.map(([feature, count]) => (
|
||||||
|
<tr key={feature}>
|
||||||
|
<td>{FeatureRequest[feature as keyof typeof FeatureRequest] ?? feature}</td>
|
||||||
|
<td>{count as number}</td>
|
||||||
|
</tr>
|
||||||
|
))}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
/**
|
||||||
|
* Parsuje cenu ve formátu "135 Kč", "135,50 Kč" nebo "135.50 Kč" na číslo.
|
||||||
|
* Vrátí null při selhání.
|
||||||
|
*/
|
||||||
|
export function parsePriceCzk(raw: string | undefined): number | null {
|
||||||
|
if (!raw) return null;
|
||||||
|
const m = raw.replace(',', '.').match(/(\d+(?:\.\d+)?)/);
|
||||||
|
if (!m) return null;
|
||||||
|
const n = parseFloat(m[1]);
|
||||||
|
return Number.isFinite(n) ? n : null;
|
||||||
|
}
|
||||||
@@ -8,6 +8,7 @@ export default defineConfig({
|
|||||||
plugins: [react(), viteTsconfigPaths()],
|
plugins: [react(), viteTsconfigPaths()],
|
||||||
server: {
|
server: {
|
||||||
open: true,
|
open: true,
|
||||||
|
host: '0.0.0.0',
|
||||||
port: 3000,
|
port: 3000,
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': 'http://localhost:3001',
|
'/api': 'http://localhost:3001',
|
||||||
|
|||||||
+608
-603
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
|||||||
|
node_modules/
|
||||||
|
playwright-report/
|
||||||
|
test-results/
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"name": "@luncher/e2e",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"test": "playwright test",
|
||||||
|
"test:ui": "playwright test --ui",
|
||||||
|
"test:debug": "playwright test --debug",
|
||||||
|
"report": "playwright show-report"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@playwright/test": "^1.50.0",
|
||||||
|
"@types/node": "^22.0.0",
|
||||||
|
"typescript": "^5.9.3"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
import { defineConfig, devices } from '@playwright/test';
|
||||||
|
import path from 'path';
|
||||||
|
|
||||||
|
// Use 127.0.0.1 explicitly — on Node.js 18+/Windows, `localhost` may resolve to ::1
|
||||||
|
// (IPv6) while the HTTP server only binds to 0.0.0.0 (IPv4), causing the webServer
|
||||||
|
// readiness poll to time out even though the server is listening.
|
||||||
|
// Port 3099 avoids conflicts with locally running Docker containers on 3001-3003.
|
||||||
|
// Override with E2E_PORT env var if needed.
|
||||||
|
const E2E_PORT = process.env.E2E_PORT ?? '3099';
|
||||||
|
const BASE_URL = process.env.E2E_BASE_URL ?? `http://127.0.0.1:${E2E_PORT}`;
|
||||||
|
|
||||||
|
// Server env vars injected for local runs. In CI these are set at the step level.
|
||||||
|
const serverEnv: Record<string, string> = {
|
||||||
|
NODE_ENV: 'test',
|
||||||
|
MOCK_DATA: 'true',
|
||||||
|
STORAGE: process.env.STORAGE ?? 'json',
|
||||||
|
JWT_SECRET: process.env.JWT_SECRET ?? 'e2e-test-secret-min-32-chars-aaaa',
|
||||||
|
HTTP_REMOTE_USER_ENABLED: 'true',
|
||||||
|
HTTP_REMOTE_USER_HEADER_NAME: 'remote-user',
|
||||||
|
HTTP_REMOTE_TRUSTED_IPS: process.env.HTTP_REMOTE_TRUSTED_IPS ?? '127.0.0.1,::1,::ffff:127.0.0.1',
|
||||||
|
PORT: E2E_PORT,
|
||||||
|
};
|
||||||
|
if (process.env.REDIS_HOST) {
|
||||||
|
serverEnv.REDIS_HOST = process.env.REDIS_HOST;
|
||||||
|
serverEnv.REDIS_PORT = process.env.REDIS_PORT ?? '6379';
|
||||||
|
}
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
testDir: './tests',
|
||||||
|
timeout: 30_000,
|
||||||
|
retries: process.env.CI ? 1 : 0,
|
||||||
|
workers: 1,
|
||||||
|
reporter: [['list'], ['html', { open: 'never' }]],
|
||||||
|
use: {
|
||||||
|
baseURL: BASE_URL,
|
||||||
|
// Default: every test authenticates as e2e-user via trusted header.
|
||||||
|
// Tests that need the real login form should override this in their own context.
|
||||||
|
extraHTTPHeaders: {
|
||||||
|
'remote-user': 'e2e-user',
|
||||||
|
},
|
||||||
|
trace: 'retain-on-failure',
|
||||||
|
video: 'retain-on-failure',
|
||||||
|
},
|
||||||
|
projects: [
|
||||||
|
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
|
||||||
|
{ name: 'firefox', use: { ...devices['Desktop Firefox'] } },
|
||||||
|
],
|
||||||
|
// Pre-built server must be started before tests. In CI the step does this
|
||||||
|
// explicitly. Locally: build types+server+client, cp -r client/dist server/public,
|
||||||
|
// then `cd e2e && yarn test` OR let webServer below do it if reuseExistingServer=true
|
||||||
|
// is set and the server is already running.
|
||||||
|
webServer: {
|
||||||
|
command: 'node dist/server/src/index.js',
|
||||||
|
cwd: path.resolve(__dirname, '../server'),
|
||||||
|
// Poll a dedicated health endpoint — polling '/' can stall in Express 5 when
|
||||||
|
// server/public/ doesn't exist in the working directory (no finalhandler match).
|
||||||
|
url: `http://127.0.0.1:${E2E_PORT}/api/health`,
|
||||||
|
timeout: 15_000,
|
||||||
|
reuseExistingServer: !process.env.CI,
|
||||||
|
env: serverEnv,
|
||||||
|
stdout: 'pipe',
|
||||||
|
stderr: 'pipe',
|
||||||
|
},
|
||||||
|
});
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
import { Page, APIRequestContext } from '@playwright/test';
|
||||||
|
|
||||||
|
/** Přihlásí uživatele přes POST /api/login a uloží JWT do localStorage. */
|
||||||
|
export async function loginViaApi(page: Page, login: string): Promise<void> {
|
||||||
|
const response = await page.request.post('/api/login', {
|
||||||
|
headers: { 'Content-Type': 'application/json', 'remote-user': login },
|
||||||
|
data: {},
|
||||||
|
});
|
||||||
|
const token = await response.json() as string;
|
||||||
|
await page.goto('/');
|
||||||
|
await page.evaluate((t) => localStorage.setItem('token', t), token);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Vyčistí stav dne pro zadaný dayIndex (0=pondělí…4=pátek) přes dev API.
|
||||||
|
* /api/dev/* vyžaduje JWT – nejdřív získáme token přes /api/login.
|
||||||
|
*/
|
||||||
|
export async function clearDay(request: APIRequestContext, dayIndex = 4): Promise<void> {
|
||||||
|
const loginResp = await request.post('/api/login', { data: {} });
|
||||||
|
const token = await loginResp.json() as string;
|
||||||
|
await request.post('/api/dev/clear', {
|
||||||
|
headers: { Authorization: `Bearer ${token}` },
|
||||||
|
data: { dayIndex },
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
|
||||||
|
// Tento test záměrně NEPOUŽÍVÁ trusted-header – testuje reálný login formulář.
|
||||||
|
test.use({ extraHTTPHeaders: {} });
|
||||||
|
|
||||||
|
test('uživatel se přihlásí formulářem a uvidí obsah aplikace', async ({ page }) => {
|
||||||
|
// Server běží s HTTP_REMOTE_USER_ENABLED=true, takže POST /api/login vždy vyžaduje
|
||||||
|
// hlavičku remote-user. Zachytíme požadavky z formuláře (mají tělo s polem login)
|
||||||
|
// a přidáme hlavičku; požadavek auto-loginu (bez těla) projde bez hlavičky a selže,
|
||||||
|
// čímž formulář zůstane viditelný.
|
||||||
|
await page.route('**/api/login', async (route) => {
|
||||||
|
const body = route.request().postData();
|
||||||
|
let login: string | undefined;
|
||||||
|
try { login = body ? JSON.parse(body)?.login : undefined; } catch {}
|
||||||
|
await route.continue({
|
||||||
|
headers: login
|
||||||
|
? { ...route.request().headers(), 'remote-user': login }
|
||||||
|
: route.request().headers(),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
await page.goto('/');
|
||||||
|
|
||||||
|
// Formulář musí být viditelný – auto-login selhal (nepřišla hlavička)
|
||||||
|
const loginInput = page.locator('#login-input');
|
||||||
|
await expect(loginInput).toBeVisible({ timeout: 10_000 });
|
||||||
|
|
||||||
|
// Vyplnění loginu a odeslání Enterem
|
||||||
|
await loginInput.fill('testuser');
|
||||||
|
await loginInput.press('Enter');
|
||||||
|
|
||||||
|
// Po přihlášení musí zmizet login formulář
|
||||||
|
await expect(loginInput).not.toBeVisible({ timeout: 10_000 });
|
||||||
|
|
||||||
|
// JWT musí být uloženo v localStorage jako 3-dílný token
|
||||||
|
const token = await page.evaluate(() => localStorage.getItem('token'));
|
||||||
|
expect(token).toBeTruthy();
|
||||||
|
expect((token as string).split('.')).toHaveLength(3);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('trusted-header přihlášení proběhne automaticky bez formuláře', async ({ page, context }) => {
|
||||||
|
// Obnoví trusted header (přepíše prázdný extraHTTPHeaders z test.use výše)
|
||||||
|
await context.setExtraHTTPHeaders({ 'remote-user': 'e2e-auto-user' });
|
||||||
|
await page.goto('/');
|
||||||
|
|
||||||
|
// Login formulář by se neměl nikdy zobrazit, nebo se ihned schová
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
const loginInput = page.locator('#login-input');
|
||||||
|
await expect(loginInput).not.toBeVisible({ timeout: 5_000 });
|
||||||
|
});
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
import { clearDay } from './helpers';
|
||||||
|
|
||||||
|
test.beforeEach(async ({ page, request }) => {
|
||||||
|
// Vyčistíme volby dne, aby testy neovlivnily navzájem
|
||||||
|
await clearDay(request);
|
||||||
|
await page.goto('/');
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
// Počkáme, až se zobrazí volba stravování
|
||||||
|
await expect(page.locator('.choice-section select').first()).toBeVisible({ timeout: 10_000 });
|
||||||
|
});
|
||||||
|
|
||||||
|
test('výběr restaurace zobrazí seznam jídel', async ({ page }) => {
|
||||||
|
const locationSelect = page.locator('.choice-section select').first();
|
||||||
|
|
||||||
|
// Vybereme Sladovnickou – mock menu existuje
|
||||||
|
await locationSelect.selectOption('SLADOVNICKA');
|
||||||
|
|
||||||
|
// Po výběru restaurace se zobrazí druhý select s jídly
|
||||||
|
const foodSelect = page.locator('.choice-section select').nth(1);
|
||||||
|
await expect(foodSelect).toBeVisible({ timeout: 5_000 });
|
||||||
|
|
||||||
|
// Select musí obsahovat alespoň 2 možnosti (empty + ≥1 jídlo)
|
||||||
|
const options = foodSelect.locator('option');
|
||||||
|
expect(await options.count()).toBeGreaterThan(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('výběr jídla se uloží a přetrvá po reload', async ({ page }) => {
|
||||||
|
const locationSelect = page.locator('.choice-section select').first();
|
||||||
|
await locationSelect.selectOption('SLADOVNICKA');
|
||||||
|
|
||||||
|
const foodSelect = page.locator('.choice-section select').nth(1);
|
||||||
|
await expect(foodSelect).toBeVisible({ timeout: 5_000 });
|
||||||
|
|
||||||
|
// Vybereme první nenulovou možnost
|
||||||
|
const options = await foodSelect.locator('option:not([value=""])').all();
|
||||||
|
if (options.length === 0) {
|
||||||
|
test.skip(); // Mock data nejsou dostupná pro tuto restauraci
|
||||||
|
}
|
||||||
|
const firstValue = await options[0].getAttribute('value');
|
||||||
|
await foodSelect.selectOption({ value: firstValue! });
|
||||||
|
|
||||||
|
// Počkáme, až se volba přenese na server
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
// Po reload musí volba přetrvat v tabulce choices
|
||||||
|
await page.reload();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
const choicesTable = page.locator('.choices-table');
|
||||||
|
await expect(choicesTable).toBeVisible({ timeout: 5_000 });
|
||||||
|
await expect(choicesTable.locator('text=Sladovnická')).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('přepnutí na NEOBEDVAM odstraní výběr restaurace', async ({ page }) => {
|
||||||
|
// Nejprve zvolíme restauraci
|
||||||
|
const locationSelect = page.locator('.choice-section select').first();
|
||||||
|
await locationSelect.selectOption('SLADOVNICKA');
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
// Přepneme na "Neobědvám"
|
||||||
|
await locationSelect.selectOption('NEOBEDVAM');
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
// Tabulka choices musí zobrazovat "Neobědvám"
|
||||||
|
const choicesTable = page.locator('.choices-table');
|
||||||
|
await expect(choicesTable).toBeVisible({ timeout: 5_000 });
|
||||||
|
await expect(choicesTable.locator('text=Neobědvám')).toBeVisible();
|
||||||
|
});
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
import { clearDay } from './helpers';
|
||||||
|
|
||||||
|
// Pizza day testy musí běžet sekvenčně (sdílejí stav mock dne)
|
||||||
|
test.describe.serial('pizza day životní cyklus', () => {
|
||||||
|
|
||||||
|
test.beforeEach(async ({ request }) => {
|
||||||
|
// Vyčistíme data mock dne před každým testem
|
||||||
|
await clearDay(request);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('zobrazí sekci Pizza Day bez aktivního dne', async ({ page }) => {
|
||||||
|
await page.goto('/');
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
// Sekce pizza-section se zobrazí jen pokud má uživatel zvolenou možnost "Pizza day"
|
||||||
|
await page.locator('select').selectOption({ label: 'Pizza day' });
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
const pizzaSection = page.locator('.pizza-section');
|
||||||
|
await expect(pizzaSection).toBeVisible({ timeout: 10_000 });
|
||||||
|
await expect(pizzaSection.locator('text=není aktuálně založen')).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('vytvoří, uzamkne a dokončí pizza day', async ({ page }) => {
|
||||||
|
// Tento test má více kroků a server při MOCK_DATA=true záměrně zpožďuje scraping pizz o 3s
|
||||||
|
test.setTimeout(60_000);
|
||||||
|
await page.goto('/');
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
// Sekce pizza-section se zobrazí jen pokud má uživatel zvolenou možnost "Pizza day"
|
||||||
|
await page.locator('select').selectOption({ label: 'Pizza day' });
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
// Přijmeme všechny window.confirm() dialogy v celém testu (vytvoření i doručení pizza dne)
|
||||||
|
page.on('dialog', dialog => dialog.accept());
|
||||||
|
|
||||||
|
// --- CREATED ---
|
||||||
|
const createBtn = page.locator('.pizza-section button', { hasText: 'Založit Pizza day' });
|
||||||
|
await expect(createBtn).toBeVisible({ timeout: 10_000 });
|
||||||
|
// Čekáme na odpověď API před reloadem – jinak by reload přerušil probíhající request
|
||||||
|
// Server s MOCK_DATA=true záměrně zpožďuje stahování pizz o 3s, proto velkorysý timeout
|
||||||
|
const createResponse = page.waitForResponse(
|
||||||
|
resp => resp.url().includes('/api/pizzaDay/create'),
|
||||||
|
{ timeout: 15_000 },
|
||||||
|
);
|
||||||
|
await createBtn.click();
|
||||||
|
await createResponse;
|
||||||
|
await page.reload();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
await expect(page.locator('.pizza-section')).toContainText('spravován uživatelem', { timeout: 5_000 });
|
||||||
|
|
||||||
|
// Přidáme pizzu přes API (obejde komplex SelectSearch)
|
||||||
|
const token = await page.evaluate(() => localStorage.getItem('token'));
|
||||||
|
const addResp = await page.request.post('/api/pizzaDay/add', {
|
||||||
|
headers: { 'Authorization': `Bearer ${token}`, 'Content-Type': 'application/json' },
|
||||||
|
data: { pizzaIndex: 0, pizzaSizeIndex: 0 },
|
||||||
|
});
|
||||||
|
expect(addResp.ok()).toBeTruthy();
|
||||||
|
|
||||||
|
// Reload – server aktualizoval data přes WebSocket, ale reload je jistější
|
||||||
|
await page.reload();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
// --- LOCK ---
|
||||||
|
const lockBtn = page.locator('.pizza-section button', { hasText: 'Uzamknout' });
|
||||||
|
await expect(lockBtn).toBeEnabled({ timeout: 5_000 });
|
||||||
|
await lockBtn.click();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
await expect(page.locator('.pizza-section')).toContainText('uzamčeny', { timeout: 5_000 });
|
||||||
|
|
||||||
|
// --- ORDERED ---
|
||||||
|
const orderBtn = page.locator('.pizza-section button', { hasText: 'Objednáno' });
|
||||||
|
await expect(orderBtn).toBeEnabled({ timeout: 5_000 });
|
||||||
|
await orderBtn.click();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
await expect(page.locator('.pizza-section')).toContainText('objednány', { timeout: 5_000 });
|
||||||
|
|
||||||
|
// --- DELIVERED ---
|
||||||
|
const deliverBtn = page.locator('.pizza-section button', { hasText: 'Doručeno' });
|
||||||
|
await expect(deliverBtn).toBeVisible({ timeout: 5_000 });
|
||||||
|
await deliverBtn.click();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
await expect(page.locator('.pizza-section')).toContainText('doručeny', { timeout: 5_000 });
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
|
||||||
|
test.beforeEach(async ({ page, request }) => {
|
||||||
|
// Naseedujeme 5 uživatelů pro dnešní den – GenerateQrModal pracuje se stávajícími choices
|
||||||
|
await request.post('/api/dev/generate', { data: { dayIndex: 4, count: 5 } });
|
||||||
|
|
||||||
|
// Přednastavíme bankovní účet v localStorage (SettingsContext čte z LS při inicializaci)
|
||||||
|
await page.goto('/');
|
||||||
|
await page.evaluate(() => {
|
||||||
|
localStorage.setItem('bank_account_number', '2400000000/2010');
|
||||||
|
localStorage.setItem('bank_account_holder_name', 'Test User');
|
||||||
|
});
|
||||||
|
// Reload tak, aby SettingsContext načetl nové hodnoty z localStorage
|
||||||
|
await page.reload();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Nastavení ukládají číslo účtu a jméno do localStorage', async ({ page }) => {
|
||||||
|
// Otevření nastavení
|
||||||
|
await page.locator('#basic-nav-dropdown').click();
|
||||||
|
await page.locator('text=Nastavení').click();
|
||||||
|
|
||||||
|
// Modal musí být viditelný
|
||||||
|
await expect(page.locator('.modal-title')).toContainText('Nastavení', { timeout: 5_000 });
|
||||||
|
|
||||||
|
// Změníme číslo účtu – pressSequentially zajistí spuštění React onChange na každý znak
|
||||||
|
// Číslo 1000000005 je platné (kontrolní součet mod 11 = 0), jinak by validace zamítla uložení
|
||||||
|
const accountInput = page.getByPlaceholder('123456-1234567890/1234');
|
||||||
|
await accountInput.click({ clickCount: 3 });
|
||||||
|
await accountInput.pressSequentially('1000000005/5500');
|
||||||
|
|
||||||
|
// Změníme jméno
|
||||||
|
const nameInput = page.getByPlaceholder('Jan Novák');
|
||||||
|
await nameInput.click({ clickCount: 3 });
|
||||||
|
await nameInput.pressSequentially('Nové Jméno');
|
||||||
|
|
||||||
|
// Uložíme a počkáme na zavření modalu
|
||||||
|
await page.locator('.modal-footer button', { hasText: 'Uložit' }).click();
|
||||||
|
await expect(page.locator('.modal')).not.toBeVisible({ timeout: 5_000 });
|
||||||
|
|
||||||
|
// Ověříme v localStorage
|
||||||
|
const bankAccount = await page.evaluate(() => localStorage.getItem('bank_account_number'));
|
||||||
|
const holderName = await page.evaluate(() => localStorage.getItem('bank_account_holder_name'));
|
||||||
|
expect(bankAccount).toBe('1000000005/5500');
|
||||||
|
expect(holderName).toBe('Nové Jméno');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('otevře modal Generování QR kódů pokud je nastaven účet', async ({ page }) => {
|
||||||
|
// Otevření dropdown menu
|
||||||
|
await page.locator('#basic-nav-dropdown').click();
|
||||||
|
await page.locator('text=Generování QR kódů').click();
|
||||||
|
|
||||||
|
// Modal se otevře
|
||||||
|
await expect(page.locator('.modal')).toBeVisible({ timeout: 5_000 });
|
||||||
|
// Modal musí obsahovat seznam uživatelů nebo prázdný stav
|
||||||
|
await expect(page.locator('.modal-body')).toBeVisible();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('upozorní pokud není nastaven bankovní účet', async ({ page }) => {
|
||||||
|
// Odebereme nastavení účtu
|
||||||
|
await page.evaluate(() => {
|
||||||
|
localStorage.removeItem('bank_account_number');
|
||||||
|
localStorage.removeItem('bank_account_holder_name');
|
||||||
|
});
|
||||||
|
await page.reload();
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
// Dialog místo modalu
|
||||||
|
page.on('dialog', async dialog => {
|
||||||
|
expect(dialog.message()).toContain('číslo účtu');
|
||||||
|
await dialog.accept();
|
||||||
|
});
|
||||||
|
|
||||||
|
await page.locator('#basic-nav-dropdown').click();
|
||||||
|
await page.locator('text=Generování QR kódů').click();
|
||||||
|
|
||||||
|
// Modal se NESMÍ otevřít
|
||||||
|
await expect(page.locator('.modal')).not.toBeVisible({ timeout: 3_000 });
|
||||||
|
});
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
|
||||||
|
test.beforeEach(async ({ page }) => {
|
||||||
|
// Trusted-header login runs automatically when Login mounts.
|
||||||
|
// networkidle zaručí, že fetch('/api/data') byl dokončen.
|
||||||
|
await page.goto('/');
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('zobrazí mock datum 10.01.2025', async ({ page }) => {
|
||||||
|
// MOCK_DATA=true pins today to 2025-01-10
|
||||||
|
await expect(page.locator('text=10.01')).toBeVisible({ timeout: 10_000 });
|
||||||
|
});
|
||||||
|
|
||||||
|
test('zobrazí čtyři restaurační karty z mock dat', async ({ page }) => {
|
||||||
|
// Každá restaurace je obalena v .restaurant-card
|
||||||
|
const cards = page.locator('.restaurant-card');
|
||||||
|
await expect(cards).toHaveCount(4, { timeout: 10_000 });
|
||||||
|
});
|
||||||
|
|
||||||
|
test('zobrazí alespoň jedno jídlo v menu každé restaurace', async ({ page }) => {
|
||||||
|
await expect(page.locator('.restaurant-card').first()).toBeVisible({ timeout: 10_000 });
|
||||||
|
|
||||||
|
// Každá karta musí mít aspoň jeden řádek v .food-table
|
||||||
|
const cards = page.locator('.restaurant-card');
|
||||||
|
const count = await cards.count();
|
||||||
|
for (let i = 0; i < count; i++) {
|
||||||
|
const card = cards.nth(i);
|
||||||
|
const rows = card.locator('.food-table tr');
|
||||||
|
expect(await rows.count()).toBeGreaterThan(0);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test('zobrazí volbu stravování před menu', async ({ page }) => {
|
||||||
|
// Sekce .choice-section obsahuje select pro výběr stravování
|
||||||
|
const choiceSection = page.locator('.choice-section');
|
||||||
|
await expect(choiceSection).toBeVisible({ timeout: 10_000 });
|
||||||
|
await expect(choiceSection.locator('select').first()).toBeVisible();
|
||||||
|
});
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "CommonJS",
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"strict": true,
|
||||||
|
"skipLibCheck": true
|
||||||
|
},
|
||||||
|
"include": ["**/*.ts"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||||
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@playwright/test@^1.50.0":
|
||||||
|
version "1.59.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.59.1.tgz#5c4d38eac84a61527af466602ae20277685a02d6"
|
||||||
|
integrity sha512-PG6q63nQg5c9rIi4/Z5lR5IVF7yU5MqmKaPOe0HSc0O2cX1fPi96sUQu5j7eo4gKCkB2AnNGoWt7y4/Xx3Kcqg==
|
||||||
|
dependencies:
|
||||||
|
playwright "1.59.1"
|
||||||
|
|
||||||
|
"@types/node@^22.0.0":
|
||||||
|
version "22.19.17"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.17.tgz#09c71fb34ba2510f8ac865361b1fcb9552b8a581"
|
||||||
|
integrity sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==
|
||||||
|
dependencies:
|
||||||
|
undici-types "~6.21.0"
|
||||||
|
|
||||||
|
fsevents@2.3.2:
|
||||||
|
version "2.3.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
|
||||||
|
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
||||||
|
|
||||||
|
playwright-core@1.59.1:
|
||||||
|
version "1.59.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.59.1.tgz#d8a2b28bcb8f2bd08ef3df93b02ae83c813244b2"
|
||||||
|
integrity sha512-HBV/RJg81z5BiiZ9yPzIiClYV/QMsDCKUyogwH9p3MCP6IYjUFu/MActgYAvK0oWyV9NlwM3GLBjADyWgydVyg==
|
||||||
|
|
||||||
|
playwright@1.59.1:
|
||||||
|
version "1.59.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.59.1.tgz#f7b0ca61637ae25264cec370df671bbe1f368a4a"
|
||||||
|
integrity sha512-C8oWjPR3F81yljW9o5OxcWzfh6avkVwDD2VYdwIGqTkl+OGFISgypqzfu7dOe4QNLL2aqcWBmI3PMtLIK233lw==
|
||||||
|
dependencies:
|
||||||
|
playwright-core "1.59.1"
|
||||||
|
optionalDependencies:
|
||||||
|
fsevents "2.3.2"
|
||||||
|
|
||||||
|
typescript@^5.9.3:
|
||||||
|
version "5.9.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f"
|
||||||
|
integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==
|
||||||
|
|
||||||
|
undici-types@~6.21.0:
|
||||||
|
version "6.21.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb"
|
||||||
|
integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==
|
||||||
+186
@@ -0,0 +1,186 @@
|
|||||||
|
# Kubernetes — Luncher HA
|
||||||
|
|
||||||
|
Manifesty pro nasazení Luncheru na Kubernetes s vysokou dostupností (3 repliky, Redis adapter pro Socket.io, WATCH/MULTI atomické zápisy, graceful shutdown).
|
||||||
|
|
||||||
|
## Prerekvizity
|
||||||
|
|
||||||
|
- kubectl nakonfigurovaný na cílový cluster
|
||||||
|
- `helm` nainstalovaný
|
||||||
|
- Redis Stack image přístupný z clusteru (`redis/redis-stack-server:7.2.0-v14`)
|
||||||
|
- Obraz `luncher:ha-test` načtený do clusteru (viz níže)
|
||||||
|
|
||||||
|
## Lokální kind cluster (testik) — setup
|
||||||
|
|
||||||
|
### 1. Smazat a znovu vytvořit cluster s port mappings
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
$env:KIND_EXPERIMENTAL_PROVIDER = "nerdctl"
|
||||||
|
# Přidat nerdctl do PATH (Rancher Desktop)
|
||||||
|
$env:PATH += ";$env:LOCALAPPDATA\Programs\Rancher Desktop\resources\resources\win32\bin"
|
||||||
|
|
||||||
|
kind delete cluster --name testik
|
||||||
|
kind create cluster --name testik --config k8s/kind/testik.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Sestavit a načíst obraz
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
docker build -t luncher:ha-test .
|
||||||
|
|
||||||
|
# Uložit a načíst přes nerdctl (kind + nerdctl provider)
|
||||||
|
nerdctl save luncher:ha-test -o luncher.tar
|
||||||
|
kind load image-archive luncher.tar --name testik
|
||||||
|
Remove-Item luncher.tar
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. Nainstalovat Traefik (rke2-traefik)
|
||||||
|
|
||||||
|
> **Prerekvizita (Rancher Desktop):** Pokud Rancher Desktop běží s `kubernetes.options.traefik=true`,
|
||||||
|
> host-switch.exe obsadí port 80 dříve než kind. Vypni traefik v k3s:
|
||||||
|
> ```powershell
|
||||||
|
> rdctl set --kubernetes.options.traefik=false
|
||||||
|
> ```
|
||||||
|
>
|
||||||
|
> **Prerekvizita — inotify limity:** Čtyř-uzlový kind cluster vyčerpá výchozí
|
||||||
|
> `fs.inotify.max_user_instances=128`. kube-proxy pak padá s „too many open files".
|
||||||
|
> Zvyš limit v rancher-desktop WSL2 (přežije restart WSL2, ale ne reboot — přidej do
|
||||||
|
> `/etc/sysctl.d/99-kind.conf` pro trvalost):
|
||||||
|
> ```powershell
|
||||||
|
> wsl -d rancher-desktop -- sysctl -w fs.inotify.max_user_instances=1280
|
||||||
|
> ```
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
# rke2-traefik je v rke2-charts, ne rancher-charts
|
||||||
|
helm repo add rke2-charts https://rke2-charts.rancher.io
|
||||||
|
helm repo update
|
||||||
|
|
||||||
|
# Nejdřív CRD chart, pak samotný chart
|
||||||
|
helm install traefik-crd rke2-charts/rke2-traefik-crd -n kube-system --create-namespace
|
||||||
|
helm install traefik rke2-charts/rke2-traefik -n kube-system `
|
||||||
|
--set "tolerations[0].key=node-role.kubernetes.io/control-plane" `
|
||||||
|
--set "tolerations[0].operator=Exists" `
|
||||||
|
--set "tolerations[0].effect=NoSchedule"
|
||||||
|
```
|
||||||
|
|
||||||
|
Ověř že Traefik DaemonSet běží na control-plane (má hostPort 80):
|
||||||
|
```powershell
|
||||||
|
kubectl get ds -n kube-system traefik-rke2-traefik
|
||||||
|
kubectl get pods -n kube-system -o wide | Select-String traefik
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Nainstalovat Reloader
|
||||||
|
|
||||||
|
[stakater/Reloader](https://github.com/stakater/Reloader) sleduje změny Secret a ConfigMap a automaticky spustí rolling restart Deploymentu — odpadá nutnost ručního `kubectl rollout restart` po rotaci `JWT_SECRET` nebo `ADMIN_PASSWORD`.
|
||||||
|
|
||||||
|
Manifest je vendorovaný ve verzi v1.4.16 (`k8s/base/reloader.yaml`). Nasadit do `default` namespace:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
kubectl apply -f k8s/base/reloader.yaml
|
||||||
|
kubectl rollout status deploy/reloader-reloader
|
||||||
|
```
|
||||||
|
|
||||||
|
Reloader běží cluster-wide díky `ClusterRoleBinding` — nepotřebuje žádnou konfiguraci per-namespace. Deployment Luncheru má anotaci `reloader.stakater.com/auto: "true"`, která říká Reloaderu, ať sleduje všechny Secrety a ConfigMapy odkazované přes `envFrom`.
|
||||||
|
|
||||||
|
### 5. Nasadit Luncher
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
# Namespace + Redis
|
||||||
|
kubectl apply -f k8s/base/namespace.yaml
|
||||||
|
kubectl apply -f k8s/base/redis-statefulset.yaml
|
||||||
|
kubectl apply -f k8s/base/redis-service.yaml
|
||||||
|
|
||||||
|
# Počkat na Redis
|
||||||
|
kubectl rollout status statefulset/redis -n luncher
|
||||||
|
|
||||||
|
# Server secret (nebo použít šablonu server-secret.yaml)
|
||||||
|
kubectl create secret generic luncher-secrets -n luncher `
|
||||||
|
--from-literal=JWT_SECRET=dev-secret-change-me `
|
||||||
|
--from-literal=ADMIN_PASSWORD=admin
|
||||||
|
|
||||||
|
# Server
|
||||||
|
kubectl apply -f k8s/base/server-configmap.yaml
|
||||||
|
kubectl apply -f k8s/base/server-deployment.yaml
|
||||||
|
kubectl apply -f k8s/base/server-service.yaml
|
||||||
|
kubectl apply -f k8s/base/server-pdb.yaml
|
||||||
|
kubectl apply -f k8s/base/ingressroute.yaml
|
||||||
|
|
||||||
|
# Počkat na server
|
||||||
|
kubectl rollout status deploy/luncher -n luncher
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testovací scénáře
|
||||||
|
|
||||||
|
### Baseline
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
kubectl get pods -n luncher -o wide
|
||||||
|
# Ověř: 3 pody na 3 různých worker uzlech, status Running
|
||||||
|
```
|
||||||
|
|
||||||
|
### Rolling update bez výpadku
|
||||||
|
|
||||||
|
V jednom terminálu posílej provoz:
|
||||||
|
```powershell
|
||||||
|
# Nainstaluj hey: go install github.com/rakyll/hey@latest
|
||||||
|
hey -z 60s -c 20 http://luncher.localhost/api/health
|
||||||
|
```
|
||||||
|
|
||||||
|
Ve druhém terminálu spusť rollout:
|
||||||
|
```powershell
|
||||||
|
kubectl rollout restart deploy/luncher -n luncher
|
||||||
|
```
|
||||||
|
|
||||||
|
**Kritérium: 0 non-2xx odpovědí, 0 connection errors.**
|
||||||
|
|
||||||
|
### Node drain
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
kubectl cordon testik-worker2
|
||||||
|
kubectl drain testik-worker2 --ignore-daemonsets --delete-emptydir-data
|
||||||
|
# PDB zabrání souběžnému drainu druhého nodu
|
||||||
|
kubectl get pods -n luncher -o wide # pody se přeplánují
|
||||||
|
kubectl uncordon testik-worker2
|
||||||
|
```
|
||||||
|
|
||||||
|
### Ověření Socket.io cross-pod
|
||||||
|
|
||||||
|
1. Otevři dvě záložky prohlížeče na `http://luncher.localhost`
|
||||||
|
2. Z jednoho podu vyvolej změnu:
|
||||||
|
```powershell
|
||||||
|
kubectl exec -it deploy/luncher -n luncher -- curl -s -X POST localhost:3001/api/...
|
||||||
|
```
|
||||||
|
3. Ověř, že druhá záložka (pravděpodobně jiný pod) obdrží WebSocket event
|
||||||
|
|
||||||
|
### Concurrent write test
|
||||||
|
|
||||||
|
1. Otevři stejnou Pizza day objednávku ve dvou záložkách
|
||||||
|
2. Simuluj souběžné odeslání (otevřít DevTools → síť → odeslat obě požadavky současně)
|
||||||
|
3. Ověř Redis: `kubectl exec -it redis-0 -n luncher -- redis-cli JSON.GET luncher:<datum>`
|
||||||
|
— oba zápisy musí být zachovány (WATCH/MULTI retry)
|
||||||
|
|
||||||
|
### Auto-rollout při změně Secret / ConfigMap
|
||||||
|
|
||||||
|
Reloader automaticky spustí rolling restart, kdykoli se změní `luncher-secrets` nebo `luncher-config`:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
# Příklad: rotace admin hesla
|
||||||
|
kubectl -n luncher patch secret luncher-secrets --type=merge `
|
||||||
|
-p '{"stringData":{"ADMIN_PASSWORD":"nove-heslo"}}'
|
||||||
|
|
||||||
|
# Reloader detekuje změnu resourceVersion a patchne pod template
|
||||||
|
kubectl rollout status deploy/luncher -n luncher
|
||||||
|
|
||||||
|
# Ověř anotaci přidanou Reloaderem na pod template
|
||||||
|
kubectl get deploy luncher -n luncher -o yaml | Select-String "STAKATER"
|
||||||
|
```
|
||||||
|
|
||||||
|
**Kritérium: pody se automaticky vyrolují bez ručního restartu. PDB zajistí, že alespoň jeden pod zůstane dostupný.**
|
||||||
|
|
||||||
|
## Pořadí aplikace manifestů
|
||||||
|
|
||||||
|
1. `reloader.yaml` (do `default` namespace — musí být před Deployment)
|
||||||
|
2. `namespace.yaml`
|
||||||
|
3. `redis-statefulset.yaml` + `redis-service.yaml`
|
||||||
|
4. `server-configmap.yaml` + `server-secret.yaml`
|
||||||
|
5. `server-deployment.yaml` + `server-service.yaml` + `server-pdb.yaml`
|
||||||
|
6. `ingressroute.yaml`
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
apiVersion: traefik.io/v1alpha1
|
||||||
|
kind: IngressRoute
|
||||||
|
metadata:
|
||||||
|
name: luncher
|
||||||
|
namespace: luncher
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: traefik
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- web
|
||||||
|
routes:
|
||||||
|
- match: Host(`luncher.localhost`)
|
||||||
|
kind: Rule
|
||||||
|
services:
|
||||||
|
- name: luncher
|
||||||
|
port: 3001
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: luncher
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: redis
|
||||||
|
namespace: luncher
|
||||||
|
spec:
|
||||||
|
clusterIP: None # headless — StatefulSet pod discovery
|
||||||
|
selector:
|
||||||
|
app: redis
|
||||||
|
ports:
|
||||||
|
- port: 6379
|
||||||
|
targetPort: 6379
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: StatefulSet
|
||||||
|
metadata:
|
||||||
|
name: redis
|
||||||
|
namespace: luncher
|
||||||
|
spec:
|
||||||
|
serviceName: redis
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: redis
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: redis
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: redis
|
||||||
|
# Redis Stack je nutný — aplikace používá JSON.GET / JSON.SET (modul RedisJSON)
|
||||||
|
image: redis/redis-stack-server:7.2.0-v14
|
||||||
|
ports:
|
||||||
|
- containerPort: 6379
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 128Mi
|
||||||
|
limits:
|
||||||
|
cpu: 500m
|
||||||
|
memory: 512Mi
|
||||||
|
volumeMounts:
|
||||||
|
- name: data
|
||||||
|
mountPath: /data
|
||||||
|
readinessProbe:
|
||||||
|
exec:
|
||||||
|
command: ["redis-cli", "ping"]
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 5
|
||||||
|
livenessProbe:
|
||||||
|
exec:
|
||||||
|
command: ["redis-cli", "ping"]
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 10
|
||||||
|
volumeClaimTemplates:
|
||||||
|
- metadata:
|
||||||
|
name: data
|
||||||
|
spec:
|
||||||
|
accessModes: ["ReadWriteOnce"]
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 1Gi
|
||||||
@@ -0,0 +1,184 @@
|
|||||||
|
# stakater/Reloader v1.4.16
|
||||||
|
# Zdroj: https://raw.githubusercontent.com/stakater/Reloader/v1.4.16/deployments/kubernetes/reloader.yaml
|
||||||
|
# Aktualizace: stáhnout novou verzi ze stejné URL a nahradit tento soubor.
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: reloader-reloader
|
||||||
|
namespace: default
|
||||||
|
---
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: Role
|
||||||
|
metadata:
|
||||||
|
name: reloader-reloader-metadata-role
|
||||||
|
namespace: default
|
||||||
|
rules:
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- configmaps
|
||||||
|
verbs:
|
||||||
|
- list
|
||||||
|
- get
|
||||||
|
- watch
|
||||||
|
- create
|
||||||
|
- update
|
||||||
|
---
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRole
|
||||||
|
metadata:
|
||||||
|
name: reloader-reloader-role
|
||||||
|
rules:
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- secrets
|
||||||
|
- configmaps
|
||||||
|
verbs:
|
||||||
|
- list
|
||||||
|
- get
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- apps
|
||||||
|
resources:
|
||||||
|
- deployments
|
||||||
|
- daemonsets
|
||||||
|
- statefulsets
|
||||||
|
verbs:
|
||||||
|
- list
|
||||||
|
- get
|
||||||
|
- update
|
||||||
|
- patch
|
||||||
|
- apiGroups:
|
||||||
|
- extensions
|
||||||
|
resources:
|
||||||
|
- deployments
|
||||||
|
- daemonsets
|
||||||
|
verbs:
|
||||||
|
- list
|
||||||
|
- get
|
||||||
|
- update
|
||||||
|
- patch
|
||||||
|
- apiGroups:
|
||||||
|
- batch
|
||||||
|
resources:
|
||||||
|
- cronjobs
|
||||||
|
verbs:
|
||||||
|
- list
|
||||||
|
- get
|
||||||
|
- apiGroups:
|
||||||
|
- batch
|
||||||
|
resources:
|
||||||
|
- jobs
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- list
|
||||||
|
- get
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- events
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- patch
|
||||||
|
---
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: RoleBinding
|
||||||
|
metadata:
|
||||||
|
name: reloader-reloader-metadata-rolebinding
|
||||||
|
namespace: default
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: Role
|
||||||
|
name: reloader-reloader-metadata-role
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: reloader-reloader
|
||||||
|
namespace: default
|
||||||
|
---
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRoleBinding
|
||||||
|
metadata:
|
||||||
|
name: reloader-reloader-role-binding
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: ClusterRole
|
||||||
|
name: reloader-reloader-role
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: reloader-reloader
|
||||||
|
namespace: default
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: reloader-reloader
|
||||||
|
namespace: default
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
revisionHistoryLimit: 2
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: reloader-reloader
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: reloader-reloader
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- env:
|
||||||
|
- name: GOMAXPROCS
|
||||||
|
valueFrom:
|
||||||
|
resourceFieldRef:
|
||||||
|
divisor: "1"
|
||||||
|
resource: limits.cpu
|
||||||
|
- name: GOMEMLIMIT
|
||||||
|
valueFrom:
|
||||||
|
resourceFieldRef:
|
||||||
|
divisor: "1"
|
||||||
|
resource: limits.memory
|
||||||
|
- name: RELOADER_NAMESPACE
|
||||||
|
valueFrom:
|
||||||
|
fieldRef:
|
||||||
|
fieldPath: metadata.namespace
|
||||||
|
- name: RELOADER_DEPLOYMENT_NAME
|
||||||
|
value: reloader-reloader
|
||||||
|
image: ghcr.io/stakater/reloader:v1.4.16
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
livenessProbe:
|
||||||
|
failureThreshold: 5
|
||||||
|
httpGet:
|
||||||
|
path: /live
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
timeoutSeconds: 5
|
||||||
|
name: reloader-reloader
|
||||||
|
ports:
|
||||||
|
- containerPort: 9090
|
||||||
|
name: http
|
||||||
|
readinessProbe:
|
||||||
|
failureThreshold: 5
|
||||||
|
httpGet:
|
||||||
|
path: /metrics
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
timeoutSeconds: 5
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: "1"
|
||||||
|
memory: 512Mi
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 512Mi
|
||||||
|
securityContext: {}
|
||||||
|
securityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
runAsUser: 65534
|
||||||
|
seccompProfile:
|
||||||
|
type: RuntimeDefault
|
||||||
|
serviceAccountName: reloader-reloader
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: luncher-config
|
||||||
|
namespace: luncher
|
||||||
|
data:
|
||||||
|
NODE_ENV: production
|
||||||
|
STORAGE: redis
|
||||||
|
REDIS_HOST: redis
|
||||||
|
REDIS_PORT: "6379"
|
||||||
|
PORT: "3001"
|
||||||
|
HOST: "0.0.0.0"
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: luncher
|
||||||
|
namespace: luncher
|
||||||
|
spec:
|
||||||
|
replicas: 3
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: luncher
|
||||||
|
strategy:
|
||||||
|
type: RollingUpdate
|
||||||
|
rollingUpdate:
|
||||||
|
maxSurge: 0 # nelze přidat extra pod — každý worker je obsazen
|
||||||
|
maxUnavailable: 1 # nejdřív smaž starý pod, pak naplánuj nový
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: luncher
|
||||||
|
annotations:
|
||||||
|
reloader.stakater.com/auto: "true"
|
||||||
|
spec:
|
||||||
|
terminationGracePeriodSeconds: 30
|
||||||
|
|
||||||
|
# Rozmístit každý pod na jiný worker uzel
|
||||||
|
affinity:
|
||||||
|
podAntiAffinity:
|
||||||
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- labelSelector:
|
||||||
|
matchLabels:
|
||||||
|
app: luncher
|
||||||
|
topologyKey: kubernetes.io/hostname
|
||||||
|
|
||||||
|
containers:
|
||||||
|
- name: luncher
|
||||||
|
image: luncher:ha-test
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
ports:
|
||||||
|
- containerPort: 3001
|
||||||
|
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: luncher-config
|
||||||
|
- secretRef:
|
||||||
|
name: luncher-secrets
|
||||||
|
|
||||||
|
env:
|
||||||
|
# POD_ID pro leader election scheduleru připomínek
|
||||||
|
- name: POD_ID
|
||||||
|
valueFrom:
|
||||||
|
fieldRef:
|
||||||
|
fieldPath: metadata.name
|
||||||
|
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 500m
|
||||||
|
memory: 512Mi
|
||||||
|
|
||||||
|
# Liveness — levná kontrola bez externích závislostí
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /api/health
|
||||||
|
port: 3001
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 10
|
||||||
|
failureThreshold: 3
|
||||||
|
|
||||||
|
# Readiness — kontroluje Redis; při shutdown vrací 503
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /api/health/ready
|
||||||
|
port: 3001
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 5
|
||||||
|
failureThreshold: 2
|
||||||
|
|
||||||
|
# preStop sleep: dá čas kube-proxy a Traefiku odebrat endpoint
|
||||||
|
# dřív než kontejner začne odmítat nová spojení
|
||||||
|
lifecycle:
|
||||||
|
preStop:
|
||||||
|
exec:
|
||||||
|
command: ["sleep", "5"]
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
apiVersion: policy/v1
|
||||||
|
kind: PodDisruptionBudget
|
||||||
|
metadata:
|
||||||
|
name: luncher-pdb
|
||||||
|
namespace: luncher
|
||||||
|
spec:
|
||||||
|
minAvailable: 2 # ze 3 replik, max 1 voluntary disruption najednou
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: luncher
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
# Šablona — hodnoty jsou zástupné symboly.
|
||||||
|
# Pro kind test vytvoř secret příkazem:
|
||||||
|
# kubectl create secret generic luncher-secrets -n luncher \
|
||||||
|
# --from-literal=JWT_SECRET=<your-secret> \
|
||||||
|
# --from-literal=ADMIN_PASSWORD=<your-password>
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: luncher-secrets
|
||||||
|
namespace: luncher
|
||||||
|
type: Opaque
|
||||||
|
stringData:
|
||||||
|
JWT_SECRET: CHANGE_ME
|
||||||
|
ADMIN_PASSWORD: CHANGE_ME
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: luncher
|
||||||
|
namespace: luncher
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: luncher
|
||||||
|
ports:
|
||||||
|
- port: 3001
|
||||||
|
targetPort: 3001
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
kind: Cluster
|
||||||
|
apiVersion: kind.x-k8s.io/v1alpha4
|
||||||
|
nodes:
|
||||||
|
- role: control-plane
|
||||||
|
# Mapuje porty na Windows localhost — luncher.localhost resolves to 127.0.0.1
|
||||||
|
# Traefik na control-plane podu poslouchá na těchto portech přes hostPort
|
||||||
|
extraPortMappings:
|
||||||
|
- containerPort: 80
|
||||||
|
hostPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
- containerPort: 443
|
||||||
|
hostPort: 443
|
||||||
|
protocol: TCP
|
||||||
|
- role: worker
|
||||||
|
- role: worker
|
||||||
|
- role: worker
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
# Spustí server a klienta v samostatných panelech jednoho okna Windows Terminalu.
|
||||||
|
# Vyžaduje Windows Terminal (wt.exe) — výchozí součást Windows 11.
|
||||||
|
|
||||||
|
$ErrorActionPreference = 'Stop'
|
||||||
|
$ScriptDir = $PSScriptRoot
|
||||||
|
|
||||||
|
Push-Location (Join-Path $ScriptDir 'types')
|
||||||
|
try { yarn openapi-ts } finally { Pop-Location }
|
||||||
|
|
||||||
|
if (-not (Get-Command wt.exe -ErrorAction SilentlyContinue)) {
|
||||||
|
Write-Error "wt.exe (Windows Terminal) nebyl nalezen. Nainstalujte z Microsoft Store nebo použijte run_dev.sh v WSL."
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
$serverDir = Join-Path $ScriptDir 'server'
|
||||||
|
$clientDir = Join-Path $ScriptDir 'client'
|
||||||
|
|
||||||
|
# wt splits on ';' before respecting quoting, so encode the compound server command to avoid it
|
||||||
|
$serverCmd = '$env:NODE_ENV = ''development''; yarn startReload'
|
||||||
|
$serverCmdB64 = [Convert]::ToBase64String([Text.Encoding]::Unicode.GetBytes($serverCmd))
|
||||||
|
|
||||||
|
wt -w 0 new-tab --title 'luncher-server' -d $serverDir pwsh -NoExit -EncodedCommand $serverCmdB64 `; `
|
||||||
|
split-pane -H --title 'luncher-client' -d $clientDir pwsh -NoExit -Command "yarn start"
|
||||||
@@ -38,3 +38,17 @@
|
|||||||
|
|
||||||
# Název důvěryhodné hlavičky obsahující login uživatele. Výchozí hodnota je 'remote-user'.
|
# Název důvěryhodné hlavičky obsahující login uživatele. Výchozí hodnota je 'remote-user'.
|
||||||
# HTTP_REMOTE_USER_HEADER_NAME=remote-user
|
# HTTP_REMOTE_USER_HEADER_NAME=remote-user
|
||||||
|
|
||||||
|
# VAPID klíče pro Web Push notifikace (připomínka výběru oběda).
|
||||||
|
# Vygenerovat pomocí: npx web-push generate-vapid-keys
|
||||||
|
# VAPID_PUBLIC_KEY=
|
||||||
|
# VAPID_PRIVATE_KEY=
|
||||||
|
# VAPID_SUBJECT=mailto:admin@example.com
|
||||||
|
|
||||||
|
# Heslo pro bypass rate limitu na endpointu /api/food/refresh (pro skripty/admin).
|
||||||
|
# Bez hesla může refresh volat každý přihlášený uživatel (podléhá rate limitu).
|
||||||
|
# REFRESH_BYPASS_PASSWORD=
|
||||||
|
|
||||||
|
# Admin heslo pro správu seznamu obchodů na stránce /objednani.
|
||||||
|
# Bez hesla nelze přidávat ani odebírat obchody ze seznamu (POST/DELETE na /api/stores vrátí 403).
|
||||||
|
# ADMIN_PASSWORD=
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
/dist
|
/dist
|
||||||
/resources/easterEggs
|
/resources/easterEggs
|
||||||
/src/gen
|
/src/gen
|
||||||
|
/coverage
|
||||||
.env.production
|
.env.production
|
||||||
.env.development
|
.env.development
|
||||||
.easter-eggs.json
|
.easter-eggs.json
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
[
|
||||||
|
"Zimní atmosféra",
|
||||||
|
"Skrytí podniku U Motlíků"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Přidání restaurace Zastávka u Michala"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Přidání restaurace Pivovarský šenk Šeříková"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Možnost výběru podniku/jídla kliknutím"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Stránka se statistikami nejoblíbenějších voleb"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Zobrazení počtu osob u každé volby"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Migrace na generované OpenApi"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Odebrání zimní atmosféry"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Možnost ručního přenačtení menu"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Parsování a zobrazení alergenů"
|
||||||
|
]
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
[
|
||||||
|
"Oddělení přenačtení menu do vlastního dialogu",
|
||||||
|
"Podzimní atmosféra"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Možnost převzetí poznámky ostatních uživatelů"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Zimní atmosféra"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Možnost označit se jako objednávající u volby \"Budu objednávat\""
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Podpora dark mode"
|
||||||
|
]
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[
|
||||||
|
"Redesign aplikace pomocí Claude Code",
|
||||||
|
"Zobrazení uplynulého týdne i o víkendu",
|
||||||
|
"Podpora Discord, ntfy a Teams notifikací (v Nastavení)",
|
||||||
|
"Trvalé zobrazení QR kódů do ručního zavření",
|
||||||
|
"Zobrazení nejvíce požadovaných funkcí (na stránce Statistiky)"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Zobrazení sekce Pizza day pouze při volbě \"Pizza day\""
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Možnost generování obecných QR kódů pro platby i mimo Pizza day (v uživatelském menu)"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Podpora push notifikací pro připomenutí výběru oběda (v nastavení)"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Oprava detekce zastaralého menu"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Automatické zobrazení dialogu s dosud nezobrazenými novinkami"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Automatický výběr výchozího času preferovaného odchodu"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Zobrazení nabídky salátů z Pizza Chefie"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Možnost úhrady celého účtu jednou osobou s rozesláním QR kódů ostatním (na Pizza day)"
|
||||||
|
]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"Skupinové objednávky s QR platbou — stránka /objednani (více skupin, každá z jiného obchodu, stavový automat open/locked/ordered)"
|
||||||
|
]
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user