Compare commits
75 Commits
feat/jdeme
...
feat/gener
| Author | SHA1 | Date | |
|---|---|---|---|
|
2e8774900f
|
|||
|
0179afca75
|
|||
| 8285dd2780 | |||
| 039d8457f3 | |||
|
091e25f446
|
|||
|
00b4a0cce2
|
|||
| 979c79e090 | |||
| d29c7863dd | |||
| 0781b84f11 | |||
|
e3d217822a
|
|||
|
ccfe9a9ae1
|
|||
|
7407a3d881
|
|||
|
8b139eba4e
|
|||
| 74eeef1de9 | |||
| fd67c0e646 | |||
| 60150889b0 | |||
| 9e0e842c2d | |||
| 86c50b315a | |||
| fe7d609b5f | |||
|
331a890cc5
|
|||
|
523bbbfb0f
|
|||
|
1acf9bf092
|
|||
|
81f67c8424
|
|||
|
c2a001b7e5
|
|||
|
670e45b805
|
|||
|
52769fc981
|
|||
|
0d90453c38
|
|||
|
a9709a944f
|
|||
|
593ffcf02b
|
|||
|
b4b62870e3
|
|||
|
480fe725f1
|
|||
| d2845f7d0f | |||
| 269f1994bc | |||
| 3dcda2028e | |||
| cfffd2b31d | |||
| 58bb5f4e7d | |||
| a3dfdb17e8 | |||
| 124fdce69d | |||
| ff20394b97 | |||
| a77a04bcdf | |||
|
42852805e0
|
|||
| d767730b19 | |||
| fa4f9903cb | |||
| cf8be8c64f | |||
| 4c2b08adf8 | |||
|
62cc82da9a
|
|||
|
40c113a4c8
|
|||
|
7681584d11
|
|||
| c670b4212a | |||
| 5fd90de3f8 | |||
| 49b8ab5c13 | |||
| 9a05ef1fe6 | |||
| 0bfea3765f | |||
| 962fbe2947 | |||
| d6d6ebb682 | |||
| 5bb7de58e7 | |||
| 739c7707e1 | |||
| d366882f6b | |||
| f09bc44d63 | |||
| f0d56f11aa | |||
| f74ec379c8 | |||
| c9fa710070 | |||
| e55ee7c11e | |||
| 55fd368663 | |||
| 61f13d2132 | |||
| d69e09afee | |||
| d144c55bf7 | |||
| 999a517404 | |||
| 68bafa808c | |||
| a34614c8db | |||
| f4e31cea36 | |||
| 8dda6b1014 | |||
| f9c7d647f7 | |||
| ca400638d1 | |||
| 0af78e72d9 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
node_modules
|
node_modules
|
||||||
|
types/gen
|
||||||
@@ -1,22 +1,30 @@
|
|||||||
variables:
|
variables:
|
||||||
- &node_image 'node:18-alpine3.18'
|
- &node_image "node:22-alpine"
|
||||||
- &branch 'master'
|
- &branch "master"
|
||||||
|
|
||||||
when:
|
when:
|
||||||
- event: push
|
- event: push
|
||||||
branch: *branch
|
branch: *branch
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Generate TypeScript types
|
||||||
|
image: *node_image
|
||||||
|
commands:
|
||||||
|
- cd types
|
||||||
|
- yarn install --frozen-lockfile
|
||||||
|
- yarn openapi-ts
|
||||||
- name: Install server dependencies
|
- name: Install server dependencies
|
||||||
image: *node_image
|
image: *node_image
|
||||||
commands:
|
commands:
|
||||||
- cd server
|
- cd server
|
||||||
- yarn install --frozen-lockfile
|
- yarn install --frozen-lockfile
|
||||||
|
depends_on: [Generate TypeScript types]
|
||||||
- name: Install client dependencies
|
- name: Install client dependencies
|
||||||
image: *node_image
|
image: *node_image
|
||||||
commands:
|
commands:
|
||||||
- cd client
|
- cd client
|
||||||
- yarn install --frozen-lockfile
|
- yarn install --frozen-lockfile
|
||||||
|
depends_on: [Generate TypeScript types]
|
||||||
- name: Build server
|
- name: Build server
|
||||||
depends_on: [Install server dependencies]
|
depends_on: [Install server dependencies]
|
||||||
image: *node_image
|
image: *node_image
|
||||||
|
|||||||
33
Dockerfile
33
Dockerfile
@@ -1,8 +1,18 @@
|
|||||||
|
ARG NODE_VERSION="node:22-alpine"
|
||||||
|
|
||||||
# Builder
|
# Builder
|
||||||
FROM node:18-alpine3.18 AS builder
|
FROM ${NODE_VERSION} AS builder
|
||||||
|
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
|
||||||
|
# Zkopírování závislostí - OpenAPI generátor
|
||||||
|
COPY types/package.json ./types/
|
||||||
|
COPY types/yarn.lock ./types/
|
||||||
|
COPY types/api.yml ./types/
|
||||||
|
COPY types/schemas ./types/schemas/
|
||||||
|
COPY types/paths ./types/paths/
|
||||||
|
COPY types/openapi-ts.config.ts ./types/
|
||||||
|
|
||||||
# Zkopírování závislostí - server
|
# Zkopírování závislostí - server
|
||||||
COPY server/package.json ./server/
|
COPY server/package.json ./server/
|
||||||
COPY server/yarn.lock ./server/
|
COPY server/yarn.lock ./server/
|
||||||
@@ -11,6 +21,10 @@ COPY server/yarn.lock ./server/
|
|||||||
COPY client/package.json ./client/
|
COPY client/package.json ./client/
|
||||||
COPY client/yarn.lock ./client/
|
COPY client/yarn.lock ./client/
|
||||||
|
|
||||||
|
# Instalace závislostí - OpenAPI generátor
|
||||||
|
WORKDIR /build/types
|
||||||
|
RUN yarn install --frozen-lockfile
|
||||||
|
|
||||||
# Instalace závislostí - server
|
# Instalace závislostí - server
|
||||||
WORKDIR /build/server
|
WORKDIR /build/server
|
||||||
RUN yarn install --frozen-lockfile
|
RUN yarn install --frozen-lockfile
|
||||||
@@ -34,7 +48,11 @@ COPY client/src ./client/src
|
|||||||
COPY client/public ./client/public
|
COPY client/public ./client/public
|
||||||
|
|
||||||
# Zkopírování společných typů
|
# Zkopírování společných typů
|
||||||
COPY types ./types/
|
COPY types/index.ts ./types/
|
||||||
|
|
||||||
|
# Vygenerování společných typů z OpenAPI
|
||||||
|
WORKDIR /build/types
|
||||||
|
RUN yarn openapi-ts
|
||||||
|
|
||||||
# Sestavení serveru
|
# Sestavení serveru
|
||||||
WORKDIR /build/server
|
WORKDIR /build/server
|
||||||
@@ -45,9 +63,12 @@ WORKDIR /build/client
|
|||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
# Runner
|
# Runner
|
||||||
FROM node:18-alpine3.18
|
FROM ${NODE_VERSION}
|
||||||
ENV LANG cs_CZ.UTF-8
|
|
||||||
ENV NODE_ENV production
|
RUN apk add --no-cache tzdata
|
||||||
|
ENV TZ=Europe/Prague \
|
||||||
|
LC_ALL=cs_CZ.UTF-8 \
|
||||||
|
NODE_ENV=production
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
@@ -59,7 +80,7 @@ COPY --from=builder /build/server/dist ./
|
|||||||
COPY --from=builder /build/client/dist ./public
|
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/src
|
COPY /server/.env.production ./server
|
||||||
|
|
||||||
# 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
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
FROM node:18-alpine3.18
|
ARG NODE_VERSION="node:22-alpine"
|
||||||
ENV LANG=cs_CZ.UTF-8
|
|
||||||
ENV NODE_ENV=production
|
FROM ${NODE_VERSION}
|
||||||
|
|
||||||
|
RUN apk add --no-cache tzdata
|
||||||
|
ENV TZ=Europe/Prague \
|
||||||
|
LC_ALL=cs_CZ.UTF-8 \
|
||||||
|
NODE_ENV=production
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -1,7 +1,9 @@
|
|||||||
# Luncher
|
# Luncher
|
||||||
Aplikace pro profesionální management obědů.
|
Aplikace pro profesionální management obědů.
|
||||||
|
|
||||||
Aplikace sestává ze dvou modulů + společných TypeScript definic (adresář `types`).
|
Aplikace sestává ze tří modulů.
|
||||||
|
- types
|
||||||
|
- OpenAPI definice společných typů, generované přes [openapi-ts](https://github.com/hey-api/openapi-ts)
|
||||||
- server
|
- server
|
||||||
- backend psaný v [node.js](https://nodejs.dev)
|
- backend psaný v [node.js](https://nodejs.dev)
|
||||||
- client
|
- client
|
||||||
@@ -10,19 +12,27 @@ Aplikace sestává ze dvou modulů + společných TypeScript definic (adresář
|
|||||||
## Spuštění pro vývoj
|
## Spuštění pro vývoj
|
||||||
### Závislosti
|
### Závislosti
|
||||||
#### Klient/server
|
#### Klient/server
|
||||||
- [Node.js 18.x](https://nodejs.dev)
|
- [Node.js 22.x (>= 22.11)](https://nodejs.dev)
|
||||||
- [Yarn 1.22.x (Classic)](https://classic.yarnpkg.com)
|
- [Yarn 1.22.x (Classic)](https://classic.yarnpkg.com)
|
||||||
|
|
||||||
### Spuštění na *nix platformách
|
### Spuštění na *nix platformách
|
||||||
- Nainstalovat závislosti viz předchozí bod
|
- Nainstalovat závislosti viz předchozí bod
|
||||||
- Zkopírovat `server/.env.template` do `server/.env.development` a upravit dle potřeby
|
- Zkopírovat `server/.env.template` do `server/.env.development` a upravit dle potřeby
|
||||||
- Spustit `./run_dev.sh`. Na jiných platformách se lze inspirovat jeho obsahem, postup by měl být víceméně stejný.
|
- Vygenerovat společné TypeScript typy
|
||||||
|
- `cd types && yarn install && yarn openapi-ts`
|
||||||
|
- Server
|
||||||
|
- `cd server && yarn install && export NODE_ENV=development && yarn startReload`
|
||||||
|
- Klient
|
||||||
|
- `cd client && yarn install && yarn start`
|
||||||
|
|
||||||
## Sestavení a spuštění produkční verze v Docker
|
## Sestavení a spuštění produkční verze v Docker
|
||||||
### Závislosti
|
### Závislosti
|
||||||
- [Docker](https://www.docker.com)
|
- [Docker](https://www.docker.com)
|
||||||
- [Docker Compose](https://docs.docker.com/compose)
|
- [Docker Compose](https://docs.docker.com/compose)
|
||||||
|
|
||||||
|
### Spuštění
|
||||||
|
- `docker compose up --build -d`
|
||||||
|
|
||||||
### Spuštení s traefik
|
### Spuštení s traefik
|
||||||
- `docker compose -f compose-traefik.yml up --build -d`
|
- `docker compose -f compose-traefik.yml up --build -d`
|
||||||
|
|
||||||
|
|||||||
@@ -6,33 +6,36 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"homepage": ".",
|
"homepage": ".",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
||||||
"@fortawesome/free-regular-svg-icons": "^6.4.0",
|
"@fortawesome/free-regular-svg-icons": "^7.1.0",
|
||||||
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
||||||
"@fortawesome/react-fontawesome": "^0.2.0",
|
"@fortawesome/react-fontawesome": "^3.1.0",
|
||||||
"@types/jest": "^29.5.12",
|
"@types/jest": "^30.0.0",
|
||||||
"@types/node": "^20.11.20",
|
"@types/node": "^24.10.0",
|
||||||
"@types/react": "^19.0.0",
|
"@types/react": "^19.2.2",
|
||||||
"@types/react-dom": "^19.0.0",
|
"@types/react-dom": "^19.2.2",
|
||||||
"@vitejs/plugin-react": "^4.3.4",
|
"@vitejs/plugin-react": "^5.1.0",
|
||||||
"bootstrap": "^5.2.3",
|
"bootstrap": "^5.3.8",
|
||||||
"react": "^19.0.0",
|
"react": "^19.2.0",
|
||||||
"react-bootstrap": "^2.7.2",
|
"react-bootstrap": "^2.10.10",
|
||||||
"react-dom": "^19.0.0",
|
"react-dom": "^19.2.0",
|
||||||
"react-jwt": "^1.2.0",
|
"react-jwt": "^1.3.0",
|
||||||
"react-modal": "^3.16.1",
|
"react-modal": "^3.16.3",
|
||||||
|
"react-router": "^7.9.5",
|
||||||
|
"react-router-dom": "^7.9.5",
|
||||||
"react-select-search": "^4.1.6",
|
"react-select-search": "^4.1.6",
|
||||||
"react-snowfall": "^2.2.0",
|
"react-snowfall": "^2.3.0",
|
||||||
"react-toastify": "^10.0.4",
|
"react-toastify": "^11.0.5",
|
||||||
"sass": "^1.80.6",
|
"recharts": "^3.4.1",
|
||||||
|
"sass": "^1.93.3",
|
||||||
"socket.io-client": "^4.6.1",
|
"socket.io-client": "^4.6.1",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.9.3",
|
||||||
"vite": "^6.0.3",
|
"vite": "^7.2.2",
|
||||||
"vite-tsconfig-paths": "^5.1.4"
|
"vite-tsconfig-paths": "^5.1.4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "yarn vite",
|
"start": "yarn vite",
|
||||||
"build": "yarn vite build"
|
"build": "tsc --noEmit && yarn vite build"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": [
|
"extends": [
|
||||||
@@ -53,6 +56,6 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
||||||
"prettier": "^3.2.5"
|
"prettier": "^3.6.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
22
client/public/leaf-brown.svg
Normal file
22
client/public/leaf-brown.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="100px" height="100px" viewBox="1 0 100 100" enable-background="new 1 0 100 100" xml:space="preserve">
|
||||||
|
<path fill="#8B4513" d="M31.5,77.2c0,0,2.6-1.9,3.4-2.8c0.8-0.9,2-2.5,2-2.5s-4.7-0.7-7.9-1.6c-3.2-0.9-9.7-3.7-9.7-3.7
|
||||||
|
s1.3-0.4,2.9-1.4c1.6-1.1,2-1.7,2-1.7s-4.7-1.3-7.5-2.4c-2.8-1-7.3-2.9-7.3-2.9s1.4-0.2,2.8-1.3c1.4-1.1,1.5-2.2,1.5-2.2
|
||||||
|
S9.4,53.3,7,51.9c-2.4-1.5-5.3-3.7-5.3-3.7s5.2-4,8.7-5.5c3.5-1.5,9.1-2.6,9.1-2.6s-0.9-1.5-2.1-2.6c-1.1-1.1-4.2-2.9-4.2-2.9
|
||||||
|
s5.6-1.9,8.3-2.5c2.7-0.6,8.2,0,8.2,0s-0.1-1.1-1.3-2.2c-1.2-1.1-2.7-2-2.7-2S33,25.4,37,24.4c4-1,10.8-0.6,10.8-0.6
|
||||||
|
S46.1,22.1,45,21c-1.1-1.1-2.7-2.3-2.7-2.3s5.4-0.4,9.1-0.4c3.7,0.1,9.5,1.1,9.5,1.1s-0.7-1-1.4-2.3c-0.8-1.3-1.5-2.6-1.5-2.6
|
||||||
|
s7.1,1.7,9.5,2.8c2.4,1,7.6,3.9,7.6,3.9s-0.1-1.8-1-3.5c-0.9-1.7-1.8-3-1.8-3s27.7,17.2,28.1,33.5c0.1,1.8-0.1,3.7-0.3,5.5
|
||||||
|
c-1.5-0.7-3.1-1.3-4.7-1.8c-2.3-6.3-4.3-9.9-6.4-12.6c-2.4-2.9-6.9-8-9.6-9.1c2.3,1.9,6.8,6.2,9.7,11.8c2.3,4.6,3,5.6,3.8,9.2
|
||||||
|
c-3.6-1.1-7.3-1.9-11-2.5c-0.7-0.1-1.4-0.2-2.1-0.3c-2-4.3-4.4-8.8-7.6-11.5c-3.7-3.2-8.3-6.7-11.1-7.5c2.6,1.5,8.7,6.8,11.8,10.9
|
||||||
|
c2.2,3,2.9,5.1,4,7.7c-5-0.6-9.9-0.9-14.9-1.1c-2-3.7-4.5-7.5-7.6-9.6c-3.4-2.4-7.6-5-10-5.5c2.3,1.1,7.9,5.1,10.8,8.3
|
||||||
|
c2.3,2.6,3,4.4,4.2,6.9c-11.1,0.4-22,1.7-32.8,3.6c9.4-0.8,18.9-1,28.3-0.6c-1.1,1.7-1.8,3-3.8,4.7c-2.6,2.2-7.5,4.5-9.5,4.9
|
||||||
|
c2,0.1,5.6-1.3,8.6-2.6c2.7-1.3,5.1-4.1,7.1-6.9c1.8,0.1,3.5,0.2,5.3,0.3c2.9,0.1,5.8,0.3,8.7,0.5c-1.4,3-2,5-4.6,8.1
|
||||||
|
c-3.1,3.6-9.1,8-11.6,9.2c2.7-0.4,7.2-3.3,10.8-5.9c3.3-2.4,6-6.8,8.1-11c2.7,0.3,5.4,0.6,8.1,1.1c2,0.3,3.9,0.7,5.9,1.2
|
||||||
|
c-1.9,4.1-2,4.6-5,8c-3.4,3.9-9.1,8.9-11.6,10.4c2.9-0.7,8.5-4.7,11.1-6.7c2.4-1.8,5.8-5.5,8.2-11.1c3,0.8,5.9,1.9,8.7,3.2
|
||||||
|
c-3.1,12.9-11.9,24.1-11.9,24.1s0.2-1.7-0.5-3.9c-0.8-2.2-1-2-1-2s-1.1,2.9-5,6.8c-3.9,3.9-8.9,5-8.9,5s0.7-1.1,0.8-2.4
|
||||||
|
c0.1-1.3-0.3-2-0.3-2s-2.6,1.9-5.3,3c-2.7,1.2-8.6,2.5-8.6,2.5s1.6-1.9,1.9-3c0.3-1-0.3-1.9-0.3-1.9s-3.9,1.5-7.5,1.5
|
||||||
|
c-3.6,0-7.7-1.5-7.7-1.5s1-0.5,1.7-1.8c0.8-1.3,0.2-1.9,0.2-1.9s-4.4,0.5-7.5,0.1C36.6,79.3,31.5,77.2,31.5,77.2z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
22
client/public/leaf-green.svg
Normal file
22
client/public/leaf-green.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="100px" height="100px" viewBox="1 0 100 100" enable-background="new 1 0 100 100" xml:space="preserve">
|
||||||
|
<path fill="#228B22" d="M31.5,77.2c0,0,2.6-1.9,3.4-2.8c0.8-0.9,2-2.5,2-2.5s-4.7-0.7-7.9-1.6c-3.2-0.9-9.7-3.7-9.7-3.7
|
||||||
|
s1.3-0.4,2.9-1.4c1.6-1.1,2-1.7,2-1.7s-4.7-1.3-7.5-2.4c-2.8-1-7.3-2.9-7.3-2.9s1.4-0.2,2.8-1.3c1.4-1.1,1.5-2.2,1.5-2.2
|
||||||
|
S9.4,53.3,7,51.9c-2.4-1.5-5.3-3.7-5.3-3.7s5.2-4,8.7-5.5c3.5-1.5,9.1-2.6,9.1-2.6s-0.9-1.5-2.1-2.6c-1.1-1.1-4.2-2.9-4.2-2.9
|
||||||
|
s5.6-1.9,8.3-2.5c2.7-0.6,8.2,0,8.2,0s-0.1-1.1-1.3-2.2c-1.2-1.1-2.7-2-2.7-2S33,25.4,37,24.4c4-1,10.8-0.6,10.8-0.6
|
||||||
|
S46.1,22.1,45,21c-1.1-1.1-2.7-2.3-2.7-2.3s5.4-0.4,9.1-0.4c3.7,0.1,9.5,1.1,9.5,1.1s-0.7-1-1.4-2.3c-0.8-1.3-1.5-2.6-1.5-2.6
|
||||||
|
s7.1,1.7,9.5,2.8c2.4,1,7.6,3.9,7.6,3.9s-0.1-1.8-1-3.5c-0.9-1.7-1.8-3-1.8-3s27.7,17.2,28.1,33.5c0.1,1.8-0.1,3.7-0.3,5.5
|
||||||
|
c-1.5-0.7-3.1-1.3-4.7-1.8c-2.3-6.3-4.3-9.9-6.4-12.6c-2.4-2.9-6.9-8-9.6-9.1c2.3,1.9,6.8,6.2,9.7,11.8c2.3,4.6,3,5.6,3.8,9.2
|
||||||
|
c-3.6-1.1-7.3-1.9-11-2.5c-0.7-0.1-1.4-0.2-2.1-0.3c-2-4.3-4.4-8.8-7.6-11.5c-3.7-3.2-8.3-6.7-11.1-7.5c2.6,1.5,8.7,6.8,11.8,10.9
|
||||||
|
c2.2,3,2.9,5.1,4,7.7c-5-0.6-9.9-0.9-14.9-1.1c-2-3.7-4.5-7.5-7.6-9.6c-3.4-2.4-7.6-5-10-5.5c2.3,1.1,7.9,5.1,10.8,8.3
|
||||||
|
c2.3,2.6,3,4.4,4.2,6.9c-11.1,0.4-22,1.7-32.8,3.6c9.4-0.8,18.9-1,28.3-0.6c-1.1,1.7-1.8,3-3.8,4.7c-2.6,2.2-7.5,4.5-9.5,4.9
|
||||||
|
c2,0.1,5.6-1.3,8.6-2.6c2.7-1.3,5.1-4.1,7.1-6.9c1.8,0.1,3.5,0.2,5.3,0.3c2.9,0.1,5.8,0.3,8.7,0.5c-1.4,3-2,5-4.6,8.1
|
||||||
|
c-3.1,3.6-9.1,8-11.6,9.2c2.7-0.4,7.2-3.3,10.8-5.9c3.3-2.4,6-6.8,8.1-11c2.7,0.3,5.4,0.6,8.1,1.1c2,0.3,3.9,0.7,5.9,1.2
|
||||||
|
c-1.9,4.1-2,4.6-5,8c-3.4,3.9-9.1,8.9-11.6,10.4c2.9-0.7,8.5-4.7,11.1-6.7c2.4-1.8,5.8-5.5,8.2-11.1c3,0.8,5.9,1.9,8.7,3.2
|
||||||
|
c-3.1,12.9-11.9,24.1-11.9,24.1s0.2-1.7-0.5-3.9c-0.8-2.2-1-2-1-2s-1.1,2.9-5,6.8c-3.9,3.9-8.9,5-8.9,5s0.7-1.1,0.8-2.4
|
||||||
|
c0.1-1.3-0.3-2-0.3-2s-2.6,1.9-5.3,3c-2.7,1.2-8.6,2.5-8.6,2.5s1.6-1.9,1.9-3c0.3-1-0.3-1.9-0.3-1.9s-3.9,1.5-7.5,1.5
|
||||||
|
c-3.6,0-7.7-1.5-7.7-1.5s1-0.5,1.7-1.8c0.8-1.3,0.2-1.9,0.2-1.9s-4.4,0.5-7.5,0.1C36.6,79.3,31.5,77.2,31.5,77.2z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
22
client/public/leaf-orange.svg
Normal file
22
client/public/leaf-orange.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="100px" height="100px" viewBox="1 0 100 100" enable-background="new 1 0 100 100" xml:space="preserve">
|
||||||
|
<path fill="#D2691E" d="M31.5,77.2c0,0,2.6-1.9,3.4-2.8c0.8-0.9,2-2.5,2-2.5s-4.7-0.7-7.9-1.6c-3.2-0.9-9.7-3.7-9.7-3.7
|
||||||
|
s1.3-0.4,2.9-1.4c1.6-1.1,2-1.7,2-1.7s-4.7-1.3-7.5-2.4c-2.8-1-7.3-2.9-7.3-2.9s1.4-0.2,2.8-1.3c1.4-1.1,1.5-2.2,1.5-2.2
|
||||||
|
S9.4,53.3,7,51.9c-2.4-1.5-5.3-3.7-5.3-3.7s5.2-4,8.7-5.5c3.5-1.5,9.1-2.6,9.1-2.6s-0.9-1.5-2.1-2.6c-1.1-1.1-4.2-2.9-4.2-2.9
|
||||||
|
s5.6-1.9,8.3-2.5c2.7-0.6,8.2,0,8.2,0s-0.1-1.1-1.3-2.2c-1.2-1.1-2.7-2-2.7-2S33,25.4,37,24.4c4-1,10.8-0.6,10.8-0.6
|
||||||
|
S46.1,22.1,45,21c-1.1-1.1-2.7-2.3-2.7-2.3s5.4-0.4,9.1-0.4c3.7,0.1,9.5,1.1,9.5,1.1s-0.7-1-1.4-2.3c-0.8-1.3-1.5-2.6-1.5-2.6
|
||||||
|
s7.1,1.7,9.5,2.8c2.4,1,7.6,3.9,7.6,3.9s-0.1-1.8-1-3.5c-0.9-1.7-1.8-3-1.8-3s27.7,17.2,28.1,33.5c0.1,1.8-0.1,3.7-0.3,5.5
|
||||||
|
c-1.5-0.7-3.1-1.3-4.7-1.8c-2.3-6.3-4.3-9.9-6.4-12.6c-2.4-2.9-6.9-8-9.6-9.1c2.3,1.9,6.8,6.2,9.7,11.8c2.3,4.6,3,5.6,3.8,9.2
|
||||||
|
c-3.6-1.1-7.3-1.9-11-2.5c-0.7-0.1-1.4-0.2-2.1-0.3c-2-4.3-4.4-8.8-7.6-11.5c-3.7-3.2-8.3-6.7-11.1-7.5c2.6,1.5,8.7,6.8,11.8,10.9
|
||||||
|
c2.2,3,2.9,5.1,4,7.7c-5-0.6-9.9-0.9-14.9-1.1c-2-3.7-4.5-7.5-7.6-9.6c-3.4-2.4-7.6-5-10-5.5c2.3,1.1,7.9,5.1,10.8,8.3
|
||||||
|
c2.3,2.6,3,4.4,4.2,6.9c-11.1,0.4-22,1.7-32.8,3.6c9.4-0.8,18.9-1,28.3-0.6c-1.1,1.7-1.8,3-3.8,4.7c-2.6,2.2-7.5,4.5-9.5,4.9
|
||||||
|
c2,0.1,5.6-1.3,8.6-2.6c2.7-1.3,5.1-4.1,7.1-6.9c1.8,0.1,3.5,0.2,5.3,0.3c2.9,0.1,5.8,0.3,8.7,0.5c-1.4,3-2,5-4.6,8.1
|
||||||
|
c-3.1,3.6-9.1,8-11.6,9.2c2.7-0.4,7.2-3.3,10.8-5.9c3.3-2.4,6-6.8,8.1-11c2.7,0.3,5.4,0.6,8.1,1.1c2,0.3,3.9,0.7,5.9,1.2
|
||||||
|
c-1.9,4.1-2,4.6-5,8c-3.4,3.9-9.1,8.9-11.6,10.4c2.9-0.7,8.5-4.7,11.1-6.7c2.4-1.8,5.8-5.5,8.2-11.1c3,0.8,5.9,1.9,8.7,3.2
|
||||||
|
c-3.1,12.9-11.9,24.1-11.9,24.1s0.2-1.7-0.5-3.9c-0.8-2.2-1-2-1-2s-1.1,2.9-5,6.8c-3.9,3.9-8.9,5-8.9,5s0.7-1.1,0.8-2.4
|
||||||
|
c0.1-1.3-0.3-2-0.3-2s-2.6,1.9-5.3,3c-2.7,1.2-8.6,2.5-8.6,2.5s1.6-1.9,1.9-3c0.3-1-0.3-1.9-0.3-1.9s-3.9,1.5-7.5,1.5
|
||||||
|
c-3.6,0-7.7-1.5-7.7-1.5s1-0.5,1.7-1.8c0.8-1.3,0.2-1.9,0.2-1.9s-4.4,0.5-7.5,0.1C36.6,79.3,31.5,77.2,31.5,77.2z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
22
client/public/leaf-red.svg
Normal file
22
client/public/leaf-red.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="100px" height="100px" viewBox="1 0 100 100" enable-background="new 1 0 100 100" xml:space="preserve">
|
||||||
|
<path fill="#B22222" d="M31.5,77.2c0,0,2.6-1.9,3.4-2.8c0.8-0.9,2-2.5,2-2.5s-4.7-0.7-7.9-1.6c-3.2-0.9-9.7-3.7-9.7-3.7
|
||||||
|
s1.3-0.4,2.9-1.4c1.6-1.1,2-1.7,2-1.7s-4.7-1.3-7.5-2.4c-2.8-1-7.3-2.9-7.3-2.9s1.4-0.2,2.8-1.3c1.4-1.1,1.5-2.2,1.5-2.2
|
||||||
|
S9.4,53.3,7,51.9c-2.4-1.5-5.3-3.7-5.3-3.7s5.2-4,8.7-5.5c3.5-1.5,9.1-2.6,9.1-2.6s-0.9-1.5-2.1-2.6c-1.1-1.1-4.2-2.9-4.2-2.9
|
||||||
|
s5.6-1.9,8.3-2.5c2.7-0.6,8.2,0,8.2,0s-0.1-1.1-1.3-2.2c-1.2-1.1-2.7-2-2.7-2S33,25.4,37,24.4c4-1,10.8-0.6,10.8-0.6
|
||||||
|
S46.1,22.1,45,21c-1.1-1.1-2.7-2.3-2.7-2.3s5.4-0.4,9.1-0.4c3.7,0.1,9.5,1.1,9.5,1.1s-0.7-1-1.4-2.3c-0.8-1.3-1.5-2.6-1.5-2.6
|
||||||
|
s7.1,1.7,9.5,2.8c2.4,1,7.6,3.9,7.6,3.9s-0.1-1.8-1-3.5c-0.9-1.7-1.8-3-1.8-3s27.7,17.2,28.1,33.5c0.1,1.8-0.1,3.7-0.3,5.5
|
||||||
|
c-1.5-0.7-3.1-1.3-4.7-1.8c-2.3-6.3-4.3-9.9-6.4-12.6c-2.4-2.9-6.9-8-9.6-9.1c2.3,1.9,6.8,6.2,9.7,11.8c2.3,4.6,3,5.6,3.8,9.2
|
||||||
|
c-3.6-1.1-7.3-1.9-11-2.5c-0.7-0.1-1.4-0.2-2.1-0.3c-2-4.3-4.4-8.8-7.6-11.5c-3.7-3.2-8.3-6.7-11.1-7.5c2.6,1.5,8.7,6.8,11.8,10.9
|
||||||
|
c2.2,3,2.9,5.1,4,7.7c-5-0.6-9.9-0.9-14.9-1.1c-2-3.7-4.5-7.5-7.6-9.6c-3.4-2.4-7.6-5-10-5.5c2.3,1.1,7.9,5.1,10.8,8.3
|
||||||
|
c2.3,2.6,3,4.4,4.2,6.9c-11.1,0.4-22,1.7-32.8,3.6c9.4-0.8,18.9-1,28.3-0.6c-1.1,1.7-1.8,3-3.8,4.7c-2.6,2.2-7.5,4.5-9.5,4.9
|
||||||
|
c2,0.1,5.6-1.3,8.6-2.6c2.7-1.3,5.1-4.1,7.1-6.9c1.8,0.1,3.5,0.2,5.3,0.3c2.9,0.1,5.8,0.3,8.7,0.5c-1.4,3-2,5-4.6,8.1
|
||||||
|
c-3.1,3.6-9.1,8-11.6,9.2c2.7-0.4,7.2-3.3,10.8-5.9c3.3-2.4,6-6.8,8.1-11c2.7,0.3,5.4,0.6,8.1,1.1c2,0.3,3.9,0.7,5.9,1.2
|
||||||
|
c-1.9,4.1-2,4.6-5,8c-3.4,3.9-9.1,8.9-11.6,10.4c2.9-0.7,8.5-4.7,11.1-6.7c2.4-1.8,5.8-5.5,8.2-11.1c3,0.8,5.9,1.9,8.7,3.2
|
||||||
|
c-3.1,12.9-11.9,24.1-11.9,24.1s0.2-1.7-0.5-3.9c-0.8-2.2-1-2-1-2s-1.1,2.9-5,6.8c-3.9,3.9-8.9,5-8.9,5s0.7-1.1,0.8-2.4
|
||||||
|
c0.1-1.3-0.3-2-0.3-2s-2.6,1.9-5.3,3c-2.7,1.2-8.6,2.5-8.6,2.5s1.6-1.9,1.9-3c0.3-1-0.3-1.9-0.3-1.9s-3.9,1.5-7.5,1.5
|
||||||
|
c-3.6,0-7.7-1.5-7.7-1.5s1-0.5,1.7-1.8c0.8-1.3,0.2-1.9,0.2-1.9s-4.4,0.5-7.5,0.1C36.6,79.3,31.5,77.2,31.5,77.2z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
22
client/public/leaf-yellow.svg
Normal file
22
client/public/leaf-yellow.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="100px" height="100px" viewBox="1 0 100 100" enable-background="new 1 0 100 100" xml:space="preserve">
|
||||||
|
<path fill="#FFD700" d="M31.5,77.2c0,0,2.6-1.9,3.4-2.8c0.8-0.9,2-2.5,2-2.5s-4.7-0.7-7.9-1.6c-3.2-0.9-9.7-3.7-9.7-3.7
|
||||||
|
s1.3-0.4,2.9-1.4c1.6-1.1,2-1.7,2-1.7s-4.7-1.3-7.5-2.4c-2.8-1-7.3-2.9-7.3-2.9s1.4-0.2,2.8-1.3c1.4-1.1,1.5-2.2,1.5-2.2
|
||||||
|
S9.4,53.3,7,51.9c-2.4-1.5-5.3-3.7-5.3-3.7s5.2-4,8.7-5.5c3.5-1.5,9.1-2.6,9.1-2.6s-0.9-1.5-2.1-2.6c-1.1-1.1-4.2-2.9-4.2-2.9
|
||||||
|
s5.6-1.9,8.3-2.5c2.7-0.6,8.2,0,8.2,0s-0.1-1.1-1.3-2.2c-1.2-1.1-2.7-2-2.7-2S33,25.4,37,24.4c4-1,10.8-0.6,10.8-0.6
|
||||||
|
S46.1,22.1,45,21c-1.1-1.1-2.7-2.3-2.7-2.3s5.4-0.4,9.1-0.4c3.7,0.1,9.5,1.1,9.5,1.1s-0.7-1-1.4-2.3c-0.8-1.3-1.5-2.6-1.5-2.6
|
||||||
|
s7.1,1.7,9.5,2.8c2.4,1,7.6,3.9,7.6,3.9s-0.1-1.8-1-3.5c-0.9-1.7-1.8-3-1.8-3s27.7,17.2,28.1,33.5c0.1,1.8-0.1,3.7-0.3,5.5
|
||||||
|
c-1.5-0.7-3.1-1.3-4.7-1.8c-2.3-6.3-4.3-9.9-6.4-12.6c-2.4-2.9-6.9-8-9.6-9.1c2.3,1.9,6.8,6.2,9.7,11.8c2.3,4.6,3,5.6,3.8,9.2
|
||||||
|
c-3.6-1.1-7.3-1.9-11-2.5c-0.7-0.1-1.4-0.2-2.1-0.3c-2-4.3-4.4-8.8-7.6-11.5c-3.7-3.2-8.3-6.7-11.1-7.5c2.6,1.5,8.7,6.8,11.8,10.9
|
||||||
|
c2.2,3,2.9,5.1,4,7.7c-5-0.6-9.9-0.9-14.9-1.1c-2-3.7-4.5-7.5-7.6-9.6c-3.4-2.4-7.6-5-10-5.5c2.3,1.1,7.9,5.1,10.8,8.3
|
||||||
|
c2.3,2.6,3,4.4,4.2,6.9c-11.1,0.4-22,1.7-32.8,3.6c9.4-0.8,18.9-1,28.3-0.6c-1.1,1.7-1.8,3-3.8,4.7c-2.6,2.2-7.5,4.5-9.5,4.9
|
||||||
|
c2,0.1,5.6-1.3,8.6-2.6c2.7-1.3,5.1-4.1,7.1-6.9c1.8,0.1,3.5,0.2,5.3,0.3c2.9,0.1,5.8,0.3,8.7,0.5c-1.4,3-2,5-4.6,8.1
|
||||||
|
c-3.1,3.6-9.1,8-11.6,9.2c2.7-0.4,7.2-3.3,10.8-5.9c3.3-2.4,6-6.8,8.1-11c2.7,0.3,5.4,0.6,8.1,1.1c2,0.3,3.9,0.7,5.9,1.2
|
||||||
|
c-1.9,4.1-2,4.6-5,8c-3.4,3.9-9.1,8.9-11.6,10.4c2.9-0.7,8.5-4.7,11.1-6.7c2.4-1.8,5.8-5.5,8.2-11.1c3,0.8,5.9,1.9,8.7,3.2
|
||||||
|
c-3.1,12.9-11.9,24.1-11.9,24.1s0.2-1.7-0.5-3.9c-0.8-2.2-1-2-1-2s-1.1,2.9-5,6.8c-3.9,3.9-8.9,5-8.9,5s0.7-1.1,0.8-2.4
|
||||||
|
c0.1-1.3-0.3-2-0.3-2s-2.6,1.9-5.3,3c-2.7,1.2-8.6,2.5-8.6,2.5s1.6-1.9,1.9-3c0.3-1-0.3-1.9-0.3-1.9s-3.9,1.5-7.5,1.5
|
||||||
|
c-3.6,0-7.7-1.5-7.7-1.5s1-0.5,1.7-1.8c0.8-1.3,0.2-1.9,0.2-1.9s-4.4,0.5-7.5,0.1C36.6,79.3,31.5,77.2,31.5,77.2z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
22
client/public/leaf.svg
Normal file
22
client/public/leaf.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="100px" height="100px" viewBox="1 0 100 100" enable-background="new 1 0 100 100" xml:space="preserve">
|
||||||
|
<path fill="#471C37" d="M31.5,77.2c0,0,2.6-1.9,3.4-2.8c0.8-0.9,2-2.5,2-2.5s-4.7-0.7-7.9-1.6c-3.2-0.9-9.7-3.7-9.7-3.7
|
||||||
|
s1.3-0.4,2.9-1.4c1.6-1.1,2-1.7,2-1.7s-4.7-1.3-7.5-2.4c-2.8-1-7.3-2.9-7.3-2.9s1.4-0.2,2.8-1.3c1.4-1.1,1.5-2.2,1.5-2.2
|
||||||
|
S9.4,53.3,7,51.9c-2.4-1.5-5.3-3.7-5.3-3.7s5.2-4,8.7-5.5c3.5-1.5,9.1-2.6,9.1-2.6s-0.9-1.5-2.1-2.6c-1.1-1.1-4.2-2.9-4.2-2.9
|
||||||
|
s5.6-1.9,8.3-2.5c2.7-0.6,8.2,0,8.2,0s-0.1-1.1-1.3-2.2c-1.2-1.1-2.7-2-2.7-2S33,25.4,37,24.4c4-1,10.8-0.6,10.8-0.6
|
||||||
|
S46.1,22.1,45,21c-1.1-1.1-2.7-2.3-2.7-2.3s5.4-0.4,9.1-0.4c3.7,0.1,9.5,1.1,9.5,1.1s-0.7-1-1.4-2.3c-0.8-1.3-1.5-2.6-1.5-2.6
|
||||||
|
s7.1,1.7,9.5,2.8c2.4,1,7.6,3.9,7.6,3.9s-0.1-1.8-1-3.5c-0.9-1.7-1.8-3-1.8-3s27.7,17.2,28.1,33.5c0.1,1.8-0.1,3.7-0.3,5.5
|
||||||
|
c-1.5-0.7-3.1-1.3-4.7-1.8c-2.3-6.3-4.3-9.9-6.4-12.6c-2.4-2.9-6.9-8-9.6-9.1c2.3,1.9,6.8,6.2,9.7,11.8c2.3,4.6,3,5.6,3.8,9.2
|
||||||
|
c-3.6-1.1-7.3-1.9-11-2.5c-0.7-0.1-1.4-0.2-2.1-0.3c-2-4.3-4.4-8.8-7.6-11.5c-3.7-3.2-8.3-6.7-11.1-7.5c2.6,1.5,8.7,6.8,11.8,10.9
|
||||||
|
c2.2,3,2.9,5.1,4,7.7c-5-0.6-9.9-0.9-14.9-1.1c-2-3.7-4.5-7.5-7.6-9.6c-3.4-2.4-7.6-5-10-5.5c2.3,1.1,7.9,5.1,10.8,8.3
|
||||||
|
c2.3,2.6,3,4.4,4.2,6.9c-11.1,0.4-22,1.7-32.8,3.6c9.4-0.8,18.9-1,28.3-0.6c-1.1,1.7-1.8,3-3.8,4.7c-2.6,2.2-7.5,4.5-9.5,4.9
|
||||||
|
c2,0.1,5.6-1.3,8.6-2.6c2.7-1.3,5.1-4.1,7.1-6.9c1.8,0.1,3.5,0.2,5.3,0.3c2.9,0.1,5.8,0.3,8.7,0.5c-1.4,3-2,5-4.6,8.1
|
||||||
|
c-3.1,3.6-9.1,8-11.6,9.2c2.7-0.4,7.2-3.3,10.8-5.9c3.3-2.4,6-6.8,8.1-11c2.7,0.3,5.4,0.6,8.1,1.1c2,0.3,3.9,0.7,5.9,1.2
|
||||||
|
c-1.9,4.1-2,4.6-5,8c-3.4,3.9-9.1,8.9-11.6,10.4c2.9-0.7,8.5-4.7,11.1-6.7c2.4-1.8,5.8-5.5,8.2-11.1c3,0.8,5.9,1.9,8.7,3.2
|
||||||
|
c-3.1,12.9-11.9,24.1-11.9,24.1s0.2-1.7-0.5-3.9c-0.8-2.2-1-2-1-2s-1.1,2.9-5,6.8c-3.9,3.9-8.9,5-8.9,5s0.7-1.1,0.8-2.4
|
||||||
|
c0.1-1.3-0.3-2-0.3-2s-2.6,1.9-5.3,3c-2.7,1.2-8.6,2.5-8.6,2.5s1.6-1.9,1.9-3c0.3-1-0.3-1.9-0.3-1.9s-3.9,1.5-7.5,1.5
|
||||||
|
c-3.6,0-7.7-1.5-7.7-1.5s1-0.5,1.7-1.8c0.8-1.3,0.2-1.9,0.2-1.9s-4.4,0.5-7.5,0.1C36.6,79.3,31.5,77.2,31.5,77.2z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -51,8 +51,24 @@
|
|||||||
font-size: 64px;
|
font-size: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Sticky footer layout */
|
||||||
|
html,
|
||||||
|
body,
|
||||||
|
#root {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-container {
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
flex: 1;
|
||||||
|
/* Zabere zbytek místa */
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
|||||||
@@ -1,28 +1,27 @@
|
|||||||
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, SocketContext } from './context/socket';
|
||||||
import { addPizza, createPizzaDay, deletePizzaDay, finishDelivery, finishOrder, lockPizzaDay, removePizza, unlockPizzaDay, updatePizzaDayNote } from './api/PizzaDayApi';
|
|
||||||
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';
|
||||||
import Header from './components/Header';
|
import Header from './components/Header';
|
||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||||
import PizzaOrderList from './components/PizzaOrderList';
|
import PizzaOrderList from './components/PizzaOrderList';
|
||||||
import SelectSearch, {SelectedOptionValue, SelectSearchOption} from 'react-select-search';
|
import SelectSearch, { SelectedOptionValue, SelectSearchOption } from 'react-select-search';
|
||||||
import 'react-select-search/style.css';
|
import 'react-select-search/style.css';
|
||||||
import './App.scss';
|
import './App.scss';
|
||||||
import { faCircleCheck, faNoteSticky, faTrashCan } 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 { ClientData, Restaurants, Food, Order, Locations, PizzaOrder, PizzaDayState, FoodChoices, DayMenu, DepartureTime, LocationKey } from '../../types';
|
|
||||||
import Footer from './components/Footer';
|
import Footer from './components/Footer';
|
||||||
import { faChainBroken, faChevronLeft, faChevronRight, faGear, faSatelliteDish, faSearch } from '@fortawesome/free-solid-svg-icons';
|
import { faChainBroken, faChevronLeft, faChevronRight, faGear, faSatelliteDish, faSearch } from '@fortawesome/free-solid-svg-icons';
|
||||||
import Loader from './components/Loader';
|
import Loader from './components/Loader';
|
||||||
import { getData, errorHandler, getQrUrl } from './api/Api';
|
import { getDayOfWeekIndex, getHumanDate, getHumanDateTime, getIsWeekend, isInTheFuture } from './Utils';
|
||||||
import { addChoice, removeChoices, removeChoice, changeDepartureTime, jdemeObed, updateNote } from './api/FoodApi';
|
|
||||||
import { getHumanDateTime, isInTheFuture } from './Utils';
|
|
||||||
import NoteModal from './components/modals/NoteModal';
|
import NoteModal from './components/modals/NoteModal';
|
||||||
import { useEasterEgg } from './context/eggs';
|
import { useEasterEgg } from './context/eggs';
|
||||||
import { getImage } from './api/EasterEggApi';
|
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 { getLunchChoiceName } from './enums';
|
||||||
|
import FallingLeaves, { LEAF_PRESETS, LEAF_COLOR_THEMES } from './FallingLeaves';
|
||||||
|
import './FallingLeaves.scss';
|
||||||
|
|
||||||
const EVENT_CONNECT = "connect"
|
const EVENT_CONNECT = "connect"
|
||||||
|
|
||||||
@@ -33,17 +32,37 @@ const EASTER_EGG_STYLE = {
|
|||||||
animationTimingFunction: "ease"
|
animationTimingFunction: "ease"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Mapování čísel alergenů na jejich názvy
|
||||||
|
const ALLERGENS: { [key: number]: string } = {
|
||||||
|
1: "Obiloviny obsahující lepek",
|
||||||
|
2: "Korýši a výrobky z nich",
|
||||||
|
3: "Vejce a výrobky z nich",
|
||||||
|
4: "Ryby a výrobky z nich",
|
||||||
|
5: "Arašidy a výrobky z nich",
|
||||||
|
6: "Sója a výrobky z nich",
|
||||||
|
7: "Mléko a výrobky z nich (včetně laktózy)",
|
||||||
|
8: "Skořápkové plody",
|
||||||
|
9: "Celer a výrobky z něj",
|
||||||
|
10: "Hořčice a výrobky z ní",
|
||||||
|
11: "Sezamová semena a výrobky z nich",
|
||||||
|
12: "Oxid siřičitý a siřičitany",
|
||||||
|
13: "Vlčí bob (Lupina) a výrobky z něj",
|
||||||
|
14: "Měkkýši a výrobky z nich"
|
||||||
|
}
|
||||||
|
|
||||||
|
const LINK_ALLERGENS = 'https://www.strava.cz/Strava/Napoveda/cz/Prilohy/alergeny.pdf';
|
||||||
|
|
||||||
// Výchozí doba trvání animace v sekundách, pokud není přetíženo v konfiguračním JSONu
|
// Výchozí doba trvání animace v sekundách, pokud není přetíženo v konfiguračním JSONu
|
||||||
const EASTER_EGG_DEFAULT_DURATION = 0.75;
|
const EASTER_EGG_DEFAULT_DURATION = 0.75;
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
const auth = useAuth();
|
const auth = useAuth();
|
||||||
const settings = useSettings();
|
const settings = useSettings();
|
||||||
const [easterEgg, easterEggLoading] = 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>();
|
||||||
const [food, setFood] = useState<{ [key in Restaurants]?: DayMenu }>();
|
const [food, setFood] = useState<RestaurantDayMenuMap>();
|
||||||
const [myOrder, setMyOrder] = useState<Order>();
|
const [myOrder, setMyOrder] = useState<PizzaOrder>();
|
||||||
const [foodChoiceList, setFoodChoiceList] = useState<Food[]>();
|
const [foodChoiceList, setFoodChoiceList] = useState<Food[]>();
|
||||||
const [closed, setClosed] = useState<boolean>(false);
|
const [closed, setClosed] = useState<boolean>(false);
|
||||||
const socket = useContext(SocketContext);
|
const socket = useContext(SocketContext);
|
||||||
@@ -52,7 +71,10 @@ function App() {
|
|||||||
const departureChoiceRef = useRef<HTMLSelectElement>(null);
|
const departureChoiceRef = useRef<HTMLSelectElement>(null);
|
||||||
const pizzaPoznamkaRef = useRef<HTMLInputElement>(null);
|
const pizzaPoznamkaRef = useRef<HTMLInputElement>(null);
|
||||||
const [failure, setFailure] = useState<boolean>(false);
|
const [failure, setFailure] = useState<boolean>(false);
|
||||||
const [dayIndex, setDayIndex] = useState<number>();
|
const [dayIndex, setDayIndex] = useState<number>(); // Index zobrazovaného dne
|
||||||
|
// TODO berka zde je nutné dořešit mocking pro testování
|
||||||
|
const [todayDayIndex, setTodayDayIndex] = useState<number>(getDayOfWeekIndex(new Date())); // Index dnešního dne
|
||||||
|
const [isTodayWeekend, setIsTodayWeekend] = useState<boolean>(getIsWeekend(new Date()));
|
||||||
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 [eggImage, setEggImage] = useState<Blob>();
|
const [eggImage, setEggImage] = useState<Blob>();
|
||||||
@@ -63,14 +85,18 @@ function App() {
|
|||||||
|
|
||||||
// Načtení dat po přihlášení
|
// Načtení dat po přihlášení
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!auth || !auth.login) {
|
if (!auth?.login) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
getData().then((data: ClientData) => {
|
getData().then(response => {
|
||||||
setData(data);
|
const data = response.data
|
||||||
setDayIndex(data.weekIndex);
|
if (data) {
|
||||||
dayIndexRef.current = data.weekIndex;
|
setData(data);
|
||||||
setFood(data.menus);
|
const dayIndex = getDayOfWeekIndex(new Date(data.date));
|
||||||
|
setDayIndex(dayIndex);
|
||||||
|
dayIndexRef.current = dayIndex;
|
||||||
|
setFood(data.menus);
|
||||||
|
}
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
setFailure(true);
|
setFailure(true);
|
||||||
})
|
})
|
||||||
@@ -78,12 +104,17 @@ function App() {
|
|||||||
|
|
||||||
// Přenačtení pro zvolený den
|
// Přenačtení pro zvolený den
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!auth || !auth.login) {
|
if (!auth?.login) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
getData(dayIndex).then((data: ClientData) => {
|
setTodayDayIndex(getDayOfWeekIndex(new Date()));
|
||||||
|
setIsTodayWeekend(getIsWeekend(new Date()));
|
||||||
|
getData({ query: { dayIndex: dayIndex } }).then(response => {
|
||||||
|
const data = response.data;
|
||||||
setData(data);
|
setData(data);
|
||||||
setFood(data.menus);
|
if (data) {
|
||||||
|
setFood(data.menus);
|
||||||
|
}
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
setFailure(true);
|
setFailure(true);
|
||||||
})
|
})
|
||||||
@@ -92,17 +123,15 @@ function App() {
|
|||||||
// Registrace socket eventů
|
// Registrace socket eventů
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
socket.on(EVENT_CONNECT, () => {
|
socket.on(EVENT_CONNECT, () => {
|
||||||
// console.log("Connected!");
|
|
||||||
setIsConnected(true);
|
setIsConnected(true);
|
||||||
});
|
});
|
||||||
socket.on(EVENT_DISCONNECT, () => {
|
socket.on(EVENT_DISCONNECT, () => {
|
||||||
// console.log("Disconnected!");
|
|
||||||
setIsConnected(false);
|
setIsConnected(false);
|
||||||
});
|
});
|
||||||
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);
|
||||||
// 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.weekIndex === dayIndexRef.current) {
|
if (dayIndexRef.current == null || getDayOfWeekIndex(new Date(newData.date)) === dayIndexRef.current) {
|
||||||
setData(newData);
|
setData(newData);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -115,7 +144,7 @@ function App() {
|
|||||||
}, [socket]);
|
}, [socket]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!auth || !auth.login) {
|
if (!auth?.login) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// TODO tohle občas náhodně nezafunguje, nutno přepsat, viz https://medium.com/@teh_builder/ref-objects-inside-useeffect-hooks-eb7c15198780
|
// TODO tohle občas náhodně nezafunguje, nutno přepsat, viz https://medium.com/@teh_builder/ref-objects-inside-useeffect-hooks-eb7c15198780
|
||||||
@@ -140,10 +169,10 @@ function App() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (choiceRef?.current?.value && choiceRef.current.value !== "") {
|
if (choiceRef?.current?.value && choiceRef.current.value !== "") {
|
||||||
const locationKey = choiceRef.current.value as LocationKey;
|
const locationKey = choiceRef.current.value as LunchChoice;
|
||||||
const restaurantKey = Object.keys(Restaurants).indexOf(locationKey);
|
const restaurantKey = Object.keys(Restaurant).indexOf(locationKey);
|
||||||
if (restaurantKey > -1 && food) {
|
if (restaurantKey > -1 && food) {
|
||||||
const restaurant = Object.values(Restaurants)[restaurantKey];
|
const restaurant = Object.keys(Restaurant)[restaurantKey] as Restaurant;
|
||||||
setFoodChoiceList(food[restaurant]?.food);
|
setFoodChoiceList(food[restaurant]?.food);
|
||||||
setClosed(food[restaurant]?.closed ?? false);
|
setClosed(food[restaurant]?.closed ?? false);
|
||||||
} else {
|
} else {
|
||||||
@@ -175,9 +204,9 @@ function App() {
|
|||||||
// Stažení a nastavení easter egg obrázku
|
// Stažení a nastavení easter egg obrázku
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (auth?.login && easterEgg?.url && !eggImage) {
|
if (auth?.login && easterEgg?.url && !eggImage) {
|
||||||
getImage(easterEgg.url).then(data => {
|
getEasterEggImage({ path: { url: easterEgg.url } }).then(response => {
|
||||||
if (data) {
|
if (response.data) {
|
||||||
setEggImage(data);
|
setEggImage(response.data);
|
||||||
// Smazání obrázku z DOMu po animaci
|
// Smazání obrázku z DOMu po animaci
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
if (eggRef?.current) {
|
if (eggRef?.current) {
|
||||||
@@ -189,41 +218,43 @@ function App() {
|
|||||||
}
|
}
|
||||||
}, [auth?.login, easterEgg?.duration, easterEgg?.url, eggImage]);
|
}, [auth?.login, easterEgg?.duration, easterEgg?.url, eggImage]);
|
||||||
|
|
||||||
const doAddClickFoodChoice = async (location: Locations, foodIndex?: number) => {
|
const doAddClickFoodChoice = async (location: LunchChoice, foodIndex?: number) => {
|
||||||
const locationKey = Object.keys(Locations).find(key => Locations[key as keyof typeof Locations] === location) as LocationKey;
|
if (document.getSelection()?.type !== 'Range') { // pouze pokud se nejedná o výběr textu
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
await errorHandler(() => addChoice(locationKey, foodIndex, dayIndex));
|
await addChoice({ body: { locationKey: location, foodIndex, dayIndex } });
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const doAddChoice = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
|
||||||
const locationKey = event.target.value as LocationKey;
|
|
||||||
if (auth?.login) {
|
|
||||||
await errorHandler(() => addChoice(locationKey, undefined, dayIndex));
|
|
||||||
if (foodChoiceRef.current?.value) {
|
|
||||||
foodChoiceRef.current.value = "";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const doJdemeObed = async (locationKey: LocationKey) => {
|
const doAddChoice = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
||||||
|
const locationKey = event.target.value as LunchChoice;
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
await jdemeObed(locationKey);
|
await addChoice({ body: { locationKey, dayIndex } });
|
||||||
|
if (foodChoiceRef.current?.value) {
|
||||||
|
foodChoiceRef.current.value = "";
|
||||||
|
}
|
||||||
|
choiceRef.current?.blur();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const doJdemeObed = async () => {
|
||||||
|
if (auth?.login) {
|
||||||
|
await jdemeObed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const doAddFoodChoice = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
const doAddFoodChoice = async (event: React.ChangeEvent<HTMLSelectElement>) => {
|
||||||
if (event.target.value && foodChoiceList?.length && choiceRef.current?.value) {
|
if (event.target.value && foodChoiceList?.length && choiceRef.current?.value) {
|
||||||
const locationKey = choiceRef.current.value as LocationKey;
|
const locationKey = choiceRef.current.value as LunchChoice;
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
await errorHandler(() => addChoice(locationKey, Number(event.target.value), dayIndex));
|
await addChoice({ body: { locationKey, foodIndex: Number(event.target.value), dayIndex } });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const doRemoveChoices = async (locationKey: LocationKey) => {
|
const doRemoveChoices = async (locationKey: LunchChoice) => {
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
await errorHandler(() => removeChoices(locationKey, dayIndex));
|
await removeChoices({ body: { locationKey, dayIndex } });
|
||||||
// Vyresetujeme výběr, aby bylo jasné pro který případně vybíráme jídlo
|
// Vyresetujeme výběr, aby bylo jasné pro který případně vybíráme jídlo
|
||||||
if (choiceRef?.current?.value) {
|
if (choiceRef?.current?.value) {
|
||||||
choiceRef.current.value = "";
|
choiceRef.current.value = "";
|
||||||
@@ -234,9 +265,9 @@ function App() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const doRemoveFoodChoice = async (locationKey: LocationKey, foodIndex: number) => {
|
const doRemoveFoodChoice = async (locationKey: LunchChoice, foodIndex: number) => {
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
await errorHandler(() => removeChoice(locationKey, foodIndex, dayIndex));
|
await removeChoice({ body: { locationKey, foodIndex, dayIndex } });
|
||||||
if (choiceRef?.current?.value) {
|
if (choiceRef?.current?.value) {
|
||||||
choiceRef.current.value = "";
|
choiceRef.current.value = "";
|
||||||
}
|
}
|
||||||
@@ -248,11 +279,17 @@ function App() {
|
|||||||
|
|
||||||
const saveNote = async (note?: string) => {
|
const saveNote = async (note?: string) => {
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
await errorHandler(() => updateNote(note, dayIndex));
|
await updateNote({ body: { note, dayIndex } });
|
||||||
setNoteModalOpen(false);
|
setNoteModalOpen(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const copyNote = async (note: string) => {
|
||||||
|
if (auth?.login && note) {
|
||||||
|
await updateNote({ body: { note, dayIndex } });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const pizzaSuggestions = useMemo(() => {
|
const pizzaSuggestions = useMemo(() => {
|
||||||
if (!data?.pizzaList) {
|
if (!data?.pizzaList) {
|
||||||
return [];
|
return [];
|
||||||
@@ -272,18 +309,18 @@ function App() {
|
|||||||
|
|
||||||
const handlePizzaChange = async (value: SelectedOptionValue | SelectedOptionValue[]) => {
|
const handlePizzaChange = async (value: SelectedOptionValue | SelectedOptionValue[]) => {
|
||||||
if (auth?.login && data?.pizzaList) {
|
if (auth?.login && data?.pizzaList) {
|
||||||
if (!(typeof value === 'string')) {
|
if (typeof value !== 'string') {
|
||||||
throw Error('Nepodporovaný typ hodnoty');
|
throw Error('Nepodporovaný typ hodnoty');
|
||||||
}
|
}
|
||||||
const s = value.split('|');
|
const s = value.split('|');
|
||||||
const pizzaIndex = Number.parseInt(s[0]);
|
const pizzaIndex = Number.parseInt(s[0]);
|
||||||
const pizzaSizeIndex = Number.parseInt(s[1]);
|
const pizzaSizeIndex = Number.parseInt(s[1]);
|
||||||
await addPizza(pizzaIndex, pizzaSizeIndex);
|
await addPizza({ body: { pizzaIndex, pizzaSizeIndex } });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const handlePizzaDelete = async (pizzaOrder: PizzaOrder) => {
|
const handlePizzaDelete = async (pizzaOrder: PizzaVariant) => {
|
||||||
await removePizza(pizzaOrder);
|
await removePizza({ body: { pizzaOrder } });
|
||||||
}
|
}
|
||||||
|
|
||||||
const handlePizzaPoznamkaChange = async () => {
|
const handlePizzaPoznamkaChange = async () => {
|
||||||
@@ -291,7 +328,7 @@ function App() {
|
|||||||
alert("Poznámka může mít maximálně 70 znaků");
|
alert("Poznámka může mít maximálně 70 znaků");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
updatePizzaDayNote(pizzaPoznamkaRef.current?.value);
|
updatePizzaDayNote({ body: { note: pizzaPoznamkaRef.current?.value } });
|
||||||
}
|
}
|
||||||
|
|
||||||
// const addToCart = async () => {
|
// const addToCart = async () => {
|
||||||
@@ -320,7 +357,7 @@ function App() {
|
|||||||
|
|
||||||
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(event.target.value, dayIndex);
|
await changeDepartureTime({ body: { time: event.target.value as DepartureTime, dayIndex } });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -338,18 +375,32 @@ function App() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const renderFoodTable = (location: Locations, menu: DayMenu) => {
|
const renderFoodTable = (location: Restaurant, menu: RestaurantDayMenu) => {
|
||||||
let content;
|
let content;
|
||||||
if (menu?.closed) {
|
if (menu?.closed) {
|
||||||
content = <h3>Zavřeno</h3>
|
content = <h3>Zavřeno</h3>
|
||||||
} else if (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 striped bordered hover>
|
||||||
<tbody style={{ cursor: 'pointer' }}>
|
<tbody style={{ cursor: 'pointer' }}>
|
||||||
{menu.food.filter(f => (hideSoups ? !f.isSoup : true)).map((f: any, index: number) =>
|
{menu.food.map((f: Food, index: number) =>
|
||||||
<tr key={index} onClick={() => doAddClickFoodChoice(location, hideSoups ? index + 1 : index)}>
|
(!hideSoups || !f.isSoup) &&
|
||||||
|
<tr key={f.name} onClick={() => doAddClickFoodChoice(location, index)}>
|
||||||
<td>{f.amount}</td>
|
<td>{f.amount}</td>
|
||||||
<td>{f.name}</td>
|
<td>
|
||||||
|
{f.name}
|
||||||
|
{f.allergens && f.allergens.length > 0 && (
|
||||||
|
<> ({f.allergens.map((a, idx) => (
|
||||||
|
<span key={a}>
|
||||||
|
<span title={ALLERGENS[a]} style={{ cursor: 'help', textDecoration: 'underline' }} onClick={e => {
|
||||||
|
e.stopPropagation();
|
||||||
|
window.open(LINK_ALLERGENS, '_blank');
|
||||||
|
}}>{a}</span>
|
||||||
|
{idx < f.allergens!.length - 1 && ','}
|
||||||
|
</span>
|
||||||
|
))})</>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
<td>{f.price}</td>
|
<td>{f.price}</td>
|
||||||
</tr>
|
</tr>
|
||||||
)}
|
)}
|
||||||
@@ -359,13 +410,13 @@ function App() {
|
|||||||
content = <h3>Chyba načtení dat</h3>
|
content = <h3>Chyba načtení dat</h3>
|
||||||
}
|
}
|
||||||
return <Col md={12} lg={3} className='mt-3'>
|
return <Col md={12} lg={3} className='mt-3'>
|
||||||
<h3 style={{ cursor: 'pointer' }} onClick={() => doAddClickFoodChoice(location, undefined)}>{location}</h3>
|
<h3 style={{ cursor: 'pointer' }} onClick={() => doAddClickFoodChoice(location)}>{getLunchChoiceName(location)}</h3>
|
||||||
{menu?.lastUpdate && <small>Poslední aktualizace: {getHumanDateTime(new Date(menu.lastUpdate))}</small>}
|
{menu?.lastUpdate && <small>Poslední aktualizace: {getHumanDateTime(new Date(menu.lastUpdate))}</small>}
|
||||||
{content}
|
{content}
|
||||||
</Col>
|
</Col>
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!auth || !auth.login) {
|
if (!auth?.login) {
|
||||||
return <Login />;
|
return <Login />;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -394,60 +445,63 @@ function App() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const noOrders = data?.pizzaDay?.orders?.length === 0;
|
const noOrders = data?.pizzaDay?.orders?.length === 0;
|
||||||
const canChangeChoice = dayIndex == null || data.todayWeekIndex == null || dayIndex >= data.todayWeekIndex;
|
const canChangeChoice = dayIndex == null || dayIndex >= todayDayIndex;
|
||||||
|
|
||||||
const { path, url, startOffset, endOffset, duration, ...style } = easterEgg || {};
|
const { path, url, startOffset, endOffset, duration, ...style } = easterEgg || {};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<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 dayIndex={dayIndex} />
|
||||||
<div className='wrapper'>
|
<div className='wrapper'>
|
||||||
{data.isWeekend ? <h4>Užívejte víkend :)</h4> : <>
|
{isTodayWeekend ? <h4>Užívejte víkend :)</h4> : <>
|
||||||
<Alert variant={'primary'}>
|
<Alert variant={'primary'}>
|
||||||
<img src='hat.png' style={{ position: "absolute", width: "70px", rotate: "-45deg", left: -40, top: -58 }} />
|
{/* <img alt="" src='hat.png' style={{ position: "absolute", width: "70px", rotate: "-45deg", left: -40, top: -58 }} />
|
||||||
<img src='snowman.png' style={{ position: "absolute", height: "110px", right: 10, top: 5 }} />
|
<img alt="" src='snowman.png' style={{ position: "absolute", height: "110px", right: 10, top: 5 }} /> */}
|
||||||
Poslední změny:
|
Poslední změny:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Přidání restaurací Zastávka u Michala a Pivovarský šenk Šeříková</li>
|
<li>Zobrazení alergenu při najetí myší a proklik na seznam alergenů</li>
|
||||||
<li>Možnost výběru restaurace a jídel kliknutím v tabulce</li>
|
<li>Přesun přenačtení menu do samostatného dialogu</li>
|
||||||
|
<li>Podzimní atmosféra</li>
|
||||||
</ul>
|
</ul>
|
||||||
</Alert>
|
</Alert>
|
||||||
{dayIndex != null &&
|
{dayIndex != null &&
|
||||||
<div className='day-navigator'>
|
<div className='day-navigator'>
|
||||||
<FontAwesomeIcon title="Předchozí den" icon={faChevronLeft} style={{ cursor: "pointer", visibility: dayIndex > 0 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex - 1)} />
|
<span title='Předchozí den'>
|
||||||
<h1 className='title' style={{ color: dayIndex === data.todayWeekIndex ? 'black' : 'gray' }}>{data.date}</h1>
|
<FontAwesomeIcon icon={faChevronLeft} style={{ cursor: "pointer", visibility: dayIndex > 0 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex - 1)} />
|
||||||
<FontAwesomeIcon title="Následující den" icon={faChevronRight} style={{ cursor: "pointer", visibility: dayIndex < 4 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex + 1)} />
|
</span>
|
||||||
|
<h1 className='title' style={{ color: dayIndex === todayDayIndex ? 'black' : 'gray' }}>{getHumanDate(new Date(data.date))}</h1>
|
||||||
|
<span title="Následující den">
|
||||||
|
<FontAwesomeIcon icon={faChevronRight} style={{ cursor: "pointer", visibility: dayIndex < 4 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex + 1)} />
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<Row className='food-tables'>
|
<Row className='food-tables'>
|
||||||
{food[Restaurants.SLADOVNICKA] && renderFoodTable(Locations.SLADOVNICKA, food[Restaurants.SLADOVNICKA])}
|
{/* TODO zjednodušit, stačí iterovat klíče typu Restaurant */}
|
||||||
{/* {food[Restaurants.UMOTLIKU] && renderFoodTable(food[Restaurants.UMOTLIKU])} */}
|
{food['SLADOVNICKA'] && renderFoodTable('SLADOVNICKA', food['SLADOVNICKA'])}
|
||||||
{food[Restaurants.TECHTOWER] && renderFoodTable(Locations.TECHTOWER, food[Restaurants.TECHTOWER])}
|
{food['TECHTOWER'] && renderFoodTable('TECHTOWER', food['TECHTOWER'])}
|
||||||
{food[Restaurants.ZASTAVKAUMICHALA] && renderFoodTable(Locations.ZASTAVKAUMICHALA, food[Restaurants.ZASTAVKAUMICHALA])}
|
{food['ZASTAVKAUMICHALA'] && renderFoodTable('ZASTAVKAUMICHALA', food['ZASTAVKAUMICHALA'])}
|
||||||
{food[Restaurants.SENKSERIKOVA] && renderFoodTable(Locations.SENKSERIKOVA, food[Restaurants.SENKSERIKOVA])}
|
{food['SENKSERIKOVA'] && renderFoodTable('SENKSERIKOVA', food['SENKSERIKOVA'])}
|
||||||
</Row>
|
</Row>
|
||||||
<div className='content-wrapper'>
|
<div className='content-wrapper'>
|
||||||
<div className='content'>
|
<div className='content'>
|
||||||
{canChangeChoice && <>
|
{canChangeChoice && <>
|
||||||
<p>{`Jak to ${dayIndex == null || dayIndex === data.todayWeekIndex ? 'dnes' : 'tento den'} vidíš s obědem?`}</p>
|
<p>{`Jak to ${dayIndex == null || dayIndex === todayDayIndex ? 'dnes' : 'tento den'} vidíš s obědem?`}</p>
|
||||||
<Form.Select ref={choiceRef} onChange={doAddChoice}>
|
<Form.Select ref={choiceRef} onChange={doAddChoice}>
|
||||||
<option></option>
|
<option></option>
|
||||||
{Object.entries(Locations)
|
{Object.entries(LunchChoice)
|
||||||
.filter(entry => {
|
.filter(entry => {
|
||||||
const locationKey = entry[0] as LocationKey;
|
const locationKey = entry[0] as Restaurant;
|
||||||
const restaurantKey = Object.keys(Restaurants).indexOf(locationKey);
|
return !food[locationKey]?.closed;
|
||||||
const v = Object.values(Restaurants)[restaurantKey];
|
|
||||||
return v == null || !food[v]?.closed;
|
|
||||||
})
|
})
|
||||||
.map(entry => <option key={entry[0]} value={entry[0]}>{entry[1]}</option>)}
|
.map(entry => <option key={entry[0]} value={entry[0]}>{getLunchChoiceName(entry[1])}</option>)}
|
||||||
</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 style={{ marginTop: "10px" }}>Na co dobrého? <small>(nepovinné)</small></p>
|
||||||
<Form.Select ref={foodChoiceRef} onChange={doAddFoodChoice}>
|
<Form.Select ref={foodChoiceRef} onChange={doAddFoodChoice}>
|
||||||
<option></option>
|
<option></option>
|
||||||
{foodChoiceList.map((food, index) => <option key={index} 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 && <>
|
||||||
@@ -455,8 +509,8 @@ function App() {
|
|||||||
<Form.Select ref={departureChoiceRef} onChange={handleChangeDepartureTime}>
|
<Form.Select ref={departureChoiceRef} onChange={handleChangeDepartureTime}>
|
||||||
<option></option>
|
<option></option>
|
||||||
{Object.values(DepartureTime)
|
{Object.values(DepartureTime)
|
||||||
.filter(time => isInTheFuture(time))
|
.filter(time => isInTheFuture(time))
|
||||||
.map(time => <option key={time} value={time}>{time}</option>)}
|
.map(time => <option key={time} value={time}>{time}</option>)}
|
||||||
</Form.Select>
|
</Form.Select>
|
||||||
</>}
|
</>}
|
||||||
</>}
|
</>}
|
||||||
@@ -464,52 +518,65 @@ function App() {
|
|||||||
<Table bordered className='mt-5'>
|
<Table bordered className='mt-5'>
|
||||||
<tbody>
|
<tbody>
|
||||||
{Object.keys(data.choices).map(key => {
|
{Object.keys(data.choices).map(key => {
|
||||||
const locationKey = key as LocationKey;
|
const locationKey = key as LunchChoice;
|
||||||
const locationName = Locations[locationKey];
|
const locationName = getLunchChoiceName(locationKey);
|
||||||
const loginObject = data.choices[locationKey];
|
const loginObject = data.choices[locationKey];
|
||||||
if (!loginObject) {
|
if (!loginObject) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const locationLoginList = Object.entries(loginObject);
|
const locationLoginList = Object.entries(loginObject);
|
||||||
const disabled = false;
|
const locationPickCount = locationLoginList.length
|
||||||
return (
|
return (
|
||||||
<tr key={key}>
|
<tr key={key}>
|
||||||
<td>{locationName}</td>
|
{(locationPickCount ?? 0) > 1 ? (
|
||||||
|
<td>{locationName} ({locationPickCount})</td>
|
||||||
|
) : (
|
||||||
|
<td>{locationName}</td>)}
|
||||||
<td className='p-0'>
|
<td className='p-0'>
|
||||||
<Table>
|
<Table>
|
||||||
<tbody>
|
<tbody>
|
||||||
{locationLoginList.map((entry: [string, FoodChoices], index) => {
|
{locationLoginList.map((entry: [string, UserLunchChoice], index) => {
|
||||||
const login = entry[0];
|
const login = entry[0];
|
||||||
const userPayload = entry[1];
|
const userPayload = entry[1];
|
||||||
const userChoices = userPayload?.options;
|
const userChoices = userPayload?.selectedFoods;
|
||||||
const trusted = userPayload?.trusted || false;
|
const trusted = userPayload?.trusted || false;
|
||||||
return <tr key={index}>
|
return <tr key={entry[0]}>
|
||||||
<td>
|
<td>
|
||||||
{trusted && <span className='trusted-icon'>
|
{trusted && <span className='trusted-icon' title='Uživatel ověřený doménovým přihlášením'>
|
||||||
<FontAwesomeIcon title='Uživatel ověřený doménovým přihlášením' icon={faCircleCheck} style={{ cursor: "help" }} />
|
<FontAwesomeIcon icon={faCircleCheck} style={{ cursor: "help" }} />
|
||||||
</span>}
|
</span>}
|
||||||
{login}
|
{login}
|
||||||
{userPayload.departureTime && <small> ({userPayload.departureTime})</small>}
|
{userPayload.departureTime && <small> ({userPayload.departureTime})</small>}
|
||||||
{userPayload.note && <small style={{ overflowWrap: 'anywhere' }}> ({userPayload.note})</small>}
|
{userPayload.note && <span style={{ fontSize: 'small' }}> ({userPayload.note})</span>}
|
||||||
{login === auth.login && canChangeChoice && <FontAwesomeIcon onClick={() => {
|
{login !== auth.login && canChangeChoice && userPayload?.note?.length && <span title='Převzít poznámku'>
|
||||||
|
<FontAwesomeIcon onClick={() => {
|
||||||
|
copyNote(userPayload.note!);
|
||||||
|
}} className='action-icon' icon={faComment} />
|
||||||
|
</span>}
|
||||||
|
{login === auth.login && canChangeChoice && <span title='Upravit poznámku'>
|
||||||
|
<FontAwesomeIcon onClick={() => {
|
||||||
setNoteModalOpen(true);
|
setNoteModalOpen(true);
|
||||||
}} title='Upravit poznámku' className='action-icon' icon={faNoteSticky} />}
|
}} className='action-icon' icon={faNoteSticky} />
|
||||||
{login === auth.login && canChangeChoice && <FontAwesomeIcon onClick={() => {
|
</span>}
|
||||||
doRemoveChoices(key as LocationKey);
|
{login === auth.login && canChangeChoice && <span title={`Odstranit volbu ${locationName}, včetně případných zvolených jídel`}>
|
||||||
}} title={`Odstranit volbu ${locationName}, včetně případných zvolených jídel`} className='action-icon' icon={faTrashCan} />}
|
<FontAwesomeIcon onClick={() => {
|
||||||
|
doRemoveChoices(key as LunchChoice);
|
||||||
|
}} className='action-icon' icon={faTrashCan} />
|
||||||
|
</span>}
|
||||||
</td>
|
</td>
|
||||||
{userChoices?.length && food ? <td>
|
{userChoices?.length && food ? <td>
|
||||||
<ul>
|
<ul>
|
||||||
{userChoices?.map(foodIndex => {
|
{userChoices?.map(foodIndex => {
|
||||||
// TODO narovnat, tohle je zbytečně složité
|
const restaurantKey = key as Restaurant;
|
||||||
const restaurantKey = Object.keys(Restaurants).indexOf(key);
|
const foodName = food[restaurantKey]?.food?.[foodIndex].name;
|
||||||
const restaurant = Object.values(Restaurants)[restaurantKey];
|
|
||||||
const foodName = food[restaurant]?.food[foodIndex].name;
|
|
||||||
return <li key={foodIndex}>
|
return <li key={foodIndex}>
|
||||||
{foodName}
|
{foodName}
|
||||||
{login === auth.login && canChangeChoice && <FontAwesomeIcon onClick={() => {
|
{login === auth.login && canChangeChoice &&
|
||||||
doRemoveFoodChoice(key as LocationKey, foodIndex);
|
<span title={`Odstranit ${foodName}`}>
|
||||||
}} title={`Odstranit ${foodName}`} className='action-icon' icon={faTrashCan} />}
|
<FontAwesomeIcon onClick={() => {
|
||||||
|
doRemoveFoodChoice(restaurantKey, foodIndex);
|
||||||
|
}} className='action-icon' icon={faTrashCan} />
|
||||||
|
</span>}
|
||||||
</li>
|
</li>
|
||||||
})}
|
})}
|
||||||
</ul>
|
</ul>
|
||||||
@@ -520,9 +587,6 @@ function App() {
|
|||||||
</tbody>
|
</tbody>
|
||||||
</Table>
|
</Table>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
|
||||||
<Button onClick={() => doJdemeObed(locationKey)} disabled={false}>Jdeme na oběd</Button>
|
|
||||||
</td>
|
|
||||||
</tr>)
|
</tr>)
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
@@ -531,7 +595,7 @@ function App() {
|
|||||||
: <div className='mt-5'><i>Zatím nikdo nehlasoval...</i></div>
|
: <div className='mt-5'><i>Zatím nikdo nehlasoval...</i></div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
{dayIndex === data.todayWeekIndex &&
|
{dayIndex === todayDayIndex &&
|
||||||
<div className='mt-5'>
|
<div className='mt-5'>
|
||||||
{!data.pizzaDay &&
|
{!data.pizzaDay &&
|
||||||
<div style={{ textAlign: 'center' }}>
|
<div style={{ textAlign: 'center' }}>
|
||||||
@@ -546,6 +610,7 @@ function App() {
|
|||||||
setLoadingPizzaDay(true);
|
setLoadingPizzaDay(true);
|
||||||
await createPizzaDay().then(() => setLoadingPizzaDay(false));
|
await createPizzaDay().then(() => setLoadingPizzaDay(false));
|
||||||
}}>Založit Pizza day</Button>
|
}}>Založit Pizza day</Button>
|
||||||
|
<Button onClick={doJdemeObed} style={{ marginLeft: "14px" }}>Jdeme na oběd !</Button>
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
@@ -583,9 +648,6 @@ function App() {
|
|||||||
<Button className='danger mb-3' title="Umožní znovu editovat objednávky." onClick={async () => {
|
<Button className='danger mb-3' title="Umožní znovu editovat objednávky." onClick={async () => {
|
||||||
await unlockPizzaDay();
|
await unlockPizzaDay();
|
||||||
}}>Odemknout</Button>
|
}}>Odemknout</Button>
|
||||||
{/* <Button className='danger mb-3' style={{ marginLeft: '20px' }} onClick={async () => {
|
|
||||||
await addToCart();
|
|
||||||
}}>Přidat vše do košíku</Button> */}
|
|
||||||
<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 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 () => {
|
||||||
await finishOrder();
|
await finishOrder();
|
||||||
}}>Objednáno</Button>
|
}}>Objednáno</Button>
|
||||||
@@ -603,7 +665,7 @@ function App() {
|
|||||||
await lockPizzaDay();
|
await lockPizzaDay();
|
||||||
}}>Vrátit do "uzamč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 () => {
|
<Button className='danger mb-3' style={{ marginLeft: '20px' }} title="Nastaví stav na 'Doručeno' - koncový stav." onClick={async () => {
|
||||||
await finishDelivery(settings?.bankAccount, settings?.holderName);
|
await finishDelivery({ body: { bankAccount: settings?.bankAccount, bankAccountHolder: settings?.holderName } });
|
||||||
}}>Doručeno</Button>
|
}}>Doručeno</Button>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
@@ -640,24 +702,28 @@ function App() {
|
|||||||
</Button>
|
</Button>
|
||||||
</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 ?
|
||||||
<div className='qr-code'>
|
<div className='qr-code'>
|
||||||
<h3>QR platba</h3>
|
<h3>QR platba</h3>
|
||||||
<img src={getQrUrl(auth.login)} alt='QR kód' />
|
<img src={`/api/qr?login=${auth.login}`} alt='QR kód' />
|
||||||
</div>
|
</div> : null
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</>}
|
</> || "Jejda, něco se nám nepovedlo :("}
|
||||||
</div>
|
</div>
|
||||||
|
<FallingLeaves
|
||||||
|
numLeaves={LEAF_PRESETS.NORMAL}
|
||||||
|
leafVariants={LEAF_COLOR_THEMES.AUTUMN}
|
||||||
|
/>
|
||||||
<Footer />
|
<Footer />
|
||||||
<NoteModal isOpen={noteModalOpen} onClose={() => setNoteModalOpen(false)} onSave={saveNote} />
|
<NoteModal isOpen={noteModalOpen} onClose={() => setNoteModalOpen(false)} onSave={saveNote} />
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
33
client/src/AppRoutes.tsx
Normal file
33
client/src/AppRoutes.tsx
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import { Routes, Route } from "react-router-dom";
|
||||||
|
import { ProvideSettings } from "./context/settings";
|
||||||
|
// import Snowfall from "react-snowfall";
|
||||||
|
import { ToastContainer } from "react-toastify";
|
||||||
|
import { SocketContext, socket } from "./context/socket";
|
||||||
|
import StatsPage from "./pages/StatsPage";
|
||||||
|
import App from "./App";
|
||||||
|
|
||||||
|
export const STATS_URL = '/stats';
|
||||||
|
|
||||||
|
export default function AppRoutes() {
|
||||||
|
return (
|
||||||
|
<Routes>
|
||||||
|
<Route path={STATS_URL} element={<StatsPage />} />
|
||||||
|
<Route path="/" element={
|
||||||
|
<ProvideSettings>
|
||||||
|
<SocketContext.Provider value={socket}>
|
||||||
|
<>
|
||||||
|
{/* <Snowfall style={{
|
||||||
|
zIndex: 2,
|
||||||
|
position: 'fixed',
|
||||||
|
width: '100vw',
|
||||||
|
height: '100vh'
|
||||||
|
}} /> */}
|
||||||
|
<App />
|
||||||
|
</>
|
||||||
|
<ToastContainer />
|
||||||
|
</SocketContext.Provider>
|
||||||
|
</ProvideSettings>
|
||||||
|
} />
|
||||||
|
</Routes>
|
||||||
|
);
|
||||||
|
}
|
||||||
31
client/src/FallingLeaves.scss
Normal file
31
client/src/FallingLeaves.scss
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
.falling-leaves {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaf-scene {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
transform-style: preserve-3d;
|
||||||
|
|
||||||
|
div {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
transform-style: preserve-3d;
|
||||||
|
backface-visibility: visible;
|
||||||
|
}
|
||||||
|
}
|
||||||
317
client/src/FallingLeaves.tsx
Normal file
317
client/src/FallingLeaves.tsx
Normal file
@@ -0,0 +1,317 @@
|
|||||||
|
import React, { useEffect, useRef, useCallback } from 'react';
|
||||||
|
|
||||||
|
// Různé barevné varianty listů
|
||||||
|
const LEAF_VARIANTS = [
|
||||||
|
'leaf.svg', // Původní tmavě hnědá
|
||||||
|
'leaf-orange.svg', // Oranžová
|
||||||
|
'leaf-yellow.svg', // Žlutá
|
||||||
|
'leaf-red.svg', // Červená
|
||||||
|
'leaf-brown.svg', // Světle hnědá
|
||||||
|
'leaf-green.svg', // Zelená
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
interface LeafData {
|
||||||
|
el: HTMLDivElement;
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
z: number;
|
||||||
|
rotation: {
|
||||||
|
axis: 'X' | 'Y' | 'Z';
|
||||||
|
value: number;
|
||||||
|
speed: number;
|
||||||
|
x: number;
|
||||||
|
};
|
||||||
|
xSpeedVariation: number;
|
||||||
|
ySpeed: number;
|
||||||
|
path: {
|
||||||
|
type: number;
|
||||||
|
start: number;
|
||||||
|
};
|
||||||
|
image: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface WindOptions {
|
||||||
|
magnitude: number;
|
||||||
|
maxSpeed: number;
|
||||||
|
duration: number;
|
||||||
|
start: number;
|
||||||
|
speed: (t: number, y: number) => number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface LeafSceneOptions {
|
||||||
|
numLeaves: number;
|
||||||
|
wind: WindOptions;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FallingLeavesProps {
|
||||||
|
/** Počet padających listů (výchozí: 20) */
|
||||||
|
numLeaves?: number;
|
||||||
|
/** CSS třída pro kontejner (výchozí: 'falling-leaves') */
|
||||||
|
className?: string;
|
||||||
|
/** Barevné varianty listů k použití (výchozí: všechny) */
|
||||||
|
leafVariants?: readonly string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
class LeafScene {
|
||||||
|
private viewport: HTMLElement;
|
||||||
|
private world: HTMLDivElement;
|
||||||
|
private leaves: LeafData[] = [];
|
||||||
|
private options: LeafSceneOptions;
|
||||||
|
private width: number;
|
||||||
|
private height: number;
|
||||||
|
private timer: number = 0;
|
||||||
|
private animationId: number | null = null;
|
||||||
|
private leafVariants: readonly string[];
|
||||||
|
|
||||||
|
constructor(el: HTMLElement, numLeaves: number = 20, leafVariants: readonly string[] = LEAF_VARIANTS) {
|
||||||
|
this.viewport = el;
|
||||||
|
this.world = document.createElement('div');
|
||||||
|
this.leafVariants = leafVariants;
|
||||||
|
|
||||||
|
this.options = {
|
||||||
|
numLeaves,
|
||||||
|
wind: {
|
||||||
|
magnitude: 1.2,
|
||||||
|
maxSpeed: 12,
|
||||||
|
duration: 300,
|
||||||
|
start: 0,
|
||||||
|
speed: () => 0
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
this.width = this.viewport.offsetWidth;
|
||||||
|
this.height = this.viewport.offsetHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
private resetLeaf = (leaf: LeafData): LeafData => {
|
||||||
|
// place leaf towards the top left
|
||||||
|
leaf.x = this.width * 2 - Math.random() * this.width * 1.75;
|
||||||
|
leaf.y = -10;
|
||||||
|
leaf.z = Math.random() * 200;
|
||||||
|
|
||||||
|
if (leaf.x > this.width) {
|
||||||
|
leaf.x = this.width + 10;
|
||||||
|
leaf.y = Math.random() * this.height / 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// at the start, the leaf can be anywhere
|
||||||
|
if (this.timer === 0) {
|
||||||
|
leaf.y = Math.random() * this.height;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Choose axis of rotation.
|
||||||
|
// If axis is not X, chose a random static x-rotation for greater variability
|
||||||
|
leaf.rotation.speed = Math.random() * 10;
|
||||||
|
const randomAxis = Math.random();
|
||||||
|
|
||||||
|
if (randomAxis > 0.5) {
|
||||||
|
leaf.rotation.axis = 'X';
|
||||||
|
} else if (randomAxis > 0.25) {
|
||||||
|
leaf.rotation.axis = 'Y';
|
||||||
|
leaf.rotation.x = Math.random() * 180 + 90;
|
||||||
|
} else {
|
||||||
|
leaf.rotation.axis = 'Z';
|
||||||
|
leaf.rotation.x = Math.random() * 360 - 180;
|
||||||
|
// looks weird if the rotation is too fast around this axis
|
||||||
|
leaf.rotation.speed = Math.random() * 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
// random speed
|
||||||
|
leaf.xSpeedVariation = Math.random() * 0.8 - 0.4;
|
||||||
|
leaf.ySpeed = Math.random() + 1.5;
|
||||||
|
|
||||||
|
// randomly select leaf color variant
|
||||||
|
const randomVariantIndex = Math.floor(Math.random() * this.leafVariants.length);
|
||||||
|
leaf.image = randomVariantIndex;
|
||||||
|
|
||||||
|
// apply the background image to the leaf element
|
||||||
|
const leafVariant = this.leafVariants[randomVariantIndex];
|
||||||
|
leaf.el.style.backgroundImage = `url(${leafVariant})`;
|
||||||
|
|
||||||
|
return leaf;
|
||||||
|
};
|
||||||
|
|
||||||
|
private updateLeaf = (leaf: LeafData): void => {
|
||||||
|
const leafWindSpeed = this.options.wind.speed(this.timer - this.options.wind.start, leaf.y);
|
||||||
|
|
||||||
|
const xSpeed = leafWindSpeed + leaf.xSpeedVariation;
|
||||||
|
leaf.x -= xSpeed;
|
||||||
|
leaf.y += leaf.ySpeed;
|
||||||
|
leaf.rotation.value += leaf.rotation.speed;
|
||||||
|
|
||||||
|
const transform = `translateX(${leaf.x}px) translateY(${leaf.y}px) translateZ(${leaf.z}px) rotate${leaf.rotation.axis}(${leaf.rotation.value}deg)${leaf.rotation.axis !== 'X' ? ` rotateX(${leaf.rotation.x}deg)` : ''
|
||||||
|
}`;
|
||||||
|
|
||||||
|
leaf.el.style.transform = transform;
|
||||||
|
|
||||||
|
// reset if out of view
|
||||||
|
if (leaf.x < -10 || leaf.y > this.height + 10) {
|
||||||
|
this.resetLeaf(leaf);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private updateWind = (): void => {
|
||||||
|
// wind follows a sine curve: asin(b*time + c) + a
|
||||||
|
// where a = wind magnitude as a function of leaf position, b = wind.duration, c = offset
|
||||||
|
// wind duration should be related to wind magnitude, e.g. higher windspeed means longer gust duration
|
||||||
|
|
||||||
|
if (this.timer === 0 || this.timer > (this.options.wind.start + this.options.wind.duration)) {
|
||||||
|
this.options.wind.magnitude = Math.random() * this.options.wind.maxSpeed;
|
||||||
|
this.options.wind.duration = this.options.wind.magnitude * 50 + (Math.random() * 20 - 10);
|
||||||
|
this.options.wind.start = this.timer;
|
||||||
|
|
||||||
|
const screenHeight = this.height;
|
||||||
|
|
||||||
|
this.options.wind.speed = function (t: number, y: number) {
|
||||||
|
// should go from full wind speed at the top, to 1/2 speed at the bottom, using leaf Y
|
||||||
|
const a = this.magnitude / 2 * (screenHeight - 2 * y / 3) / screenHeight;
|
||||||
|
return a * Math.sin(2 * Math.PI / this.duration * t + (3 * Math.PI / 2)) + a;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
public init = (): void => {
|
||||||
|
// Clear existing leaves
|
||||||
|
this.leaves = [];
|
||||||
|
this.world.innerHTML = '';
|
||||||
|
|
||||||
|
for (let i = 0; i < this.options.numLeaves; i++) {
|
||||||
|
const leaf: LeafData = {
|
||||||
|
el: document.createElement('div'),
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
z: 0,
|
||||||
|
rotation: {
|
||||||
|
axis: 'X',
|
||||||
|
value: 0,
|
||||||
|
speed: 0,
|
||||||
|
x: 0
|
||||||
|
},
|
||||||
|
xSpeedVariation: 0,
|
||||||
|
ySpeed: 0,
|
||||||
|
path: {
|
||||||
|
type: 1,
|
||||||
|
start: 0,
|
||||||
|
},
|
||||||
|
image: 1
|
||||||
|
};
|
||||||
|
|
||||||
|
this.resetLeaf(leaf);
|
||||||
|
this.leaves.push(leaf);
|
||||||
|
this.world.appendChild(leaf.el);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.world.className = 'leaf-scene';
|
||||||
|
this.viewport.appendChild(this.world);
|
||||||
|
|
||||||
|
// set perspective
|
||||||
|
this.world.style.perspective = "400px";
|
||||||
|
|
||||||
|
// reset window height/width on resize
|
||||||
|
const handleResize = (): void => {
|
||||||
|
this.width = this.viewport.offsetWidth;
|
||||||
|
this.height = this.viewport.offsetHeight;
|
||||||
|
};
|
||||||
|
|
||||||
|
window.addEventListener('resize', handleResize);
|
||||||
|
};
|
||||||
|
|
||||||
|
public render = (): void => {
|
||||||
|
this.updateWind();
|
||||||
|
|
||||||
|
for (let i = 0; i < this.leaves.length; i++) {
|
||||||
|
this.updateLeaf(this.leaves[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.timer++;
|
||||||
|
this.animationId = requestAnimationFrame(this.render);
|
||||||
|
};
|
||||||
|
|
||||||
|
public destroy = (): void => {
|
||||||
|
if (this.animationId) {
|
||||||
|
cancelAnimationFrame(this.animationId);
|
||||||
|
this.animationId = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.world && this.world.parentNode) {
|
||||||
|
this.world.parentNode.removeChild(this.world);
|
||||||
|
}
|
||||||
|
|
||||||
|
window.removeEventListener('resize', () => {
|
||||||
|
this.width = this.viewport.offsetWidth;
|
||||||
|
this.height = this.viewport.offsetHeight;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Komponenta pro zobrazení padajících listů na pozadí stránky
|
||||||
|
*
|
||||||
|
* @param numLeaves - Počet padajících listů (výchozí: 20)
|
||||||
|
* @param className - CSS třída pro kontejner (výchozí: 'falling-leaves')
|
||||||
|
* @param leafVariants - Barevné varianty listů k použití (výchozí: všechny)
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Základní použití s výchozím počtem listů
|
||||||
|
* <FallingLeaves />
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Použití s vlastním počtem listů
|
||||||
|
* <FallingLeaves numLeaves={50} />
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Použití s vlastní CSS třídou a pouze podzimními barvami
|
||||||
|
* <FallingLeaves
|
||||||
|
* numLeaves={15}
|
||||||
|
* className="autumn-leaves"
|
||||||
|
* leafVariants={['leaf-orange.svg', 'leaf-red.svg', 'leaf-yellow.svg']}
|
||||||
|
* />
|
||||||
|
*/
|
||||||
|
const FallingLeaves: React.FC<FallingLeavesProps> = ({
|
||||||
|
numLeaves = 20,
|
||||||
|
className = 'falling-leaves',
|
||||||
|
leafVariants = LEAF_VARIANTS
|
||||||
|
}) => {
|
||||||
|
const containerRef = useRef<HTMLDivElement>(null);
|
||||||
|
const leafSceneRef = useRef<LeafScene | null>(null);
|
||||||
|
|
||||||
|
const initializeLeafScene = useCallback(() => {
|
||||||
|
if (containerRef.current) {
|
||||||
|
leafSceneRef.current = new LeafScene(containerRef.current, numLeaves, leafVariants);
|
||||||
|
leafSceneRef.current.init();
|
||||||
|
leafSceneRef.current.render();
|
||||||
|
}
|
||||||
|
}, [numLeaves, leafVariants]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
initializeLeafScene();
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
if (leafSceneRef.current) {
|
||||||
|
leafSceneRef.current.destroy();
|
||||||
|
leafSceneRef.current = null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}, [initializeLeafScene]);
|
||||||
|
|
||||||
|
return <div ref={containerRef} className={className} />;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Přednastavení pro různé účely
|
||||||
|
export const LEAF_PRESETS = {
|
||||||
|
LIGHT: 10, // Lehký podzimní efekt
|
||||||
|
NORMAL: 20, // Standardní množství
|
||||||
|
HEAVY: 40, // Silný podzimní vítr
|
||||||
|
BLIZZARD: 80 // Hustý pád listí
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
// Přednastavené barevné kombinace
|
||||||
|
export const LEAF_COLOR_THEMES = {
|
||||||
|
ALL: LEAF_VARIANTS, // Všechny barvy
|
||||||
|
AUTUMN: ['leaf-orange.svg', 'leaf-red.svg', 'leaf-yellow.svg', 'leaf-brown.svg'] as const, // Podzimní barvy
|
||||||
|
WARM: ['leaf-orange.svg', 'leaf-red.svg', 'leaf-brown.svg'] as const, // Teplé barvy
|
||||||
|
CLASSIC: ['leaf.svg', 'leaf-brown.svg'] as const, // Klasické hnědé odstíny
|
||||||
|
BRIGHT: ['leaf-yellow.svg', 'leaf-orange.svg'] as const, // Světlé barvy
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
export default FallingLeaves;
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import React, { useCallback, useEffect, useRef } from 'react';
|
import React, { useCallback, useEffect, useRef } from 'react';
|
||||||
import { Button } from 'react-bootstrap';
|
import { Button } from 'react-bootstrap';
|
||||||
import { useAuth } from './context/auth';
|
import { useAuth } from './context/auth';
|
||||||
import { login } from './api/Api';
|
import { login } from '../../types';
|
||||||
import './Login.css';
|
import './Login.css';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -14,9 +14,10 @@ export default function Login() {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (auth && !auth.login) {
|
if (auth && !auth.login) {
|
||||||
// Vyzkoušíme přihlášení "naprázdno", pokud projde, přihlásili nás trusted headers
|
// Vyzkoušíme přihlášení "naprázdno", pokud projde, přihlásili nás trusted headers
|
||||||
login().then(token => {
|
login().then(response => {
|
||||||
|
const token = response.data;
|
||||||
if (token) {
|
if (token) {
|
||||||
auth?.setToken(token);
|
auth?.setToken(token as unknown as string); // TODO vyřešit, API definice je špatně, je to skutečně string
|
||||||
}
|
}
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
// nezajímá nás
|
// nezajímá nás
|
||||||
@@ -25,17 +26,16 @@ export default function Login() {
|
|||||||
}, [auth]);
|
}, [auth]);
|
||||||
|
|
||||||
const doLogin = useCallback(async () => {
|
const doLogin = useCallback(async () => {
|
||||||
const length = loginRef?.current?.value && loginRef?.current?.value.length && loginRef.current.value.replace(/\s/g, '').length
|
const length = loginRef?.current?.value.length && loginRef.current.value.replace(/\s/g, '').length
|
||||||
if (length) {
|
if (length) {
|
||||||
// TODO odchytávat cokoliv mimo 200
|
const response = await login({ body: { login: loginRef.current?.value } });
|
||||||
const token = await login(loginRef.current.value);
|
if (response.data) {
|
||||||
if (token) {
|
auth?.setToken(response.data as unknown as string); // TODO vyřešit
|
||||||
auth?.setToken(token);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [auth]);
|
}, [auth]);
|
||||||
|
|
||||||
if (!auth || !auth.login) {
|
if (!auth?.login) {
|
||||||
return <div className='login'>
|
return <div className='login'>
|
||||||
<h1>Luncher</h1>
|
<h1>Luncher</h1>
|
||||||
<h4 style={{ marginBottom: "50px" }}>Aplikace pro profesionální management obědů</h4>
|
<h4 style={{ marginBottom: "50px" }}>Aplikace pro profesionální management obědů</h4>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {DepartureTime} from "../../types";
|
import { DepartureTime } from "../../types";
|
||||||
|
|
||||||
const TOKEN_KEY = "token";
|
const TOKEN_KEY = "token";
|
||||||
|
|
||||||
@@ -16,8 +16,8 @@ export const storeToken = (token: string) => {
|
|||||||
*
|
*
|
||||||
* @returns token nebo null
|
* @returns token nebo null
|
||||||
*/
|
*/
|
||||||
export const getToken = (): string | null => {
|
export const getToken = (): string | undefined => {
|
||||||
return localStorage.getItem(TOKEN_KEY);
|
return localStorage.getItem(TOKEN_KEY) ?? undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -62,3 +62,51 @@ export function isInTheFuture(time: DepartureTime) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vrátí index dne v týdnu, kde pondělí=0, neděle=6
|
||||||
|
*
|
||||||
|
* @param date datum
|
||||||
|
* @returns index dne v týdnu
|
||||||
|
*/
|
||||||
|
export const getDayOfWeekIndex = (date: Date) => {
|
||||||
|
// https://stackoverflow.com/a/4467559
|
||||||
|
return (((date.getDay() - 1) % 7) + 7) % 7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Vrátí true, pokud je předané datum o víkendu. */
|
||||||
|
export function getIsWeekend(date: Date) {
|
||||||
|
const index = getDayOfWeekIndex(date);
|
||||||
|
return index == 5 || index == 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Vrátí první pracovní den v týdnu předaného data. */
|
||||||
|
export function getFirstWorkDayOfWeek(date: Date) {
|
||||||
|
const firstDay = new Date(date.getTime());
|
||||||
|
firstDay.setDate(date.getDate() - getDayOfWeekIndex(date));
|
||||||
|
return firstDay;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Vrátí poslední pracovní den v týdnu předaného data. */
|
||||||
|
export function getLastWorkDayOfWeek(date: Date) {
|
||||||
|
const lastDay = new Date(date.getTime());
|
||||||
|
lastDay.setDate(date.getDate() + (4 - getDayOfWeekIndex(date)));
|
||||||
|
return lastDay;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Vrátí datum v ISO formátu. */
|
||||||
|
export function formatDate(date: Date, format?: string) {
|
||||||
|
let day = String(date.getDate()).padStart(2, '0');
|
||||||
|
let month = String(date.getMonth() + 1).padStart(2, "0");
|
||||||
|
let year = String(date.getFullYear());
|
||||||
|
|
||||||
|
const f = format ?? 'YYYY-MM-DD';
|
||||||
|
return f.replace('DD', day).replace('MM', month).replace('YYYY', year);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Vrátí human-readable reprezentaci předaného data pro zobrazení. */
|
||||||
|
export function getHumanDate(date: Date) {
|
||||||
|
let currentDay = String(date.getDate()).padStart(2, '0');
|
||||||
|
let currentMonth = String(date.getMonth() + 1).padStart(2, "0");
|
||||||
|
let currentYear = date.getFullYear();
|
||||||
|
return `${currentDay}.${currentMonth}.${currentYear}`;
|
||||||
|
}
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
import { toast } from "react-toastify";
|
|
||||||
import { getToken } from "../Utils";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Wrapper pro volání API, u kterých chceme automaticky zobrazit toaster s chybou ze serveru.
|
|
||||||
*
|
|
||||||
* @param apiFunction volaná API funkce
|
|
||||||
*/
|
|
||||||
export function errorHandler<T>(apiFunction: () => Promise<T>): Promise<T> {
|
|
||||||
return new Promise<T>((resolve, reject) => {
|
|
||||||
apiFunction().then((result) => {
|
|
||||||
resolve(result);
|
|
||||||
}).catch(e => {
|
|
||||||
toast.error(e.message, { theme: "colored" });
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async function request<TResponse>(
|
|
||||||
url: string,
|
|
||||||
config: RequestInit = {}
|
|
||||||
): Promise<TResponse> {
|
|
||||||
config.headers = config?.headers ? new Headers(config.headers) : new Headers();
|
|
||||||
config.headers.set("Authorization", `Bearer ${getToken()}`);
|
|
||||||
try {
|
|
||||||
const response = await fetch(url, config);
|
|
||||||
if (!response.ok) {
|
|
||||||
// TODO tohle je blbě, jelikož automaticky očekáváme, že v případě chyby přijde vždy JSON, což není pravda
|
|
||||||
const json = await response.json();
|
|
||||||
// Vyhodíme samotnou hlášku z odpovědi, odchytí si jí errorHandler
|
|
||||||
throw new Error(json.error);
|
|
||||||
}
|
|
||||||
const contentType = response.headers.get("content-type");
|
|
||||||
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
||||||
return response.json() as TResponse;
|
|
||||||
} else {
|
|
||||||
return response.text() as TResponse;
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
return Promise.reject(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function blobRequest(
|
|
||||||
url: string,
|
|
||||||
config: RequestInit = {}
|
|
||||||
): Promise<Blob> {
|
|
||||||
config.headers = config?.headers ? new Headers(config.headers) : new Headers();
|
|
||||||
config.headers.set("Authorization", `Bearer ${getToken()}`);
|
|
||||||
try {
|
|
||||||
const response = await fetch(url, config);
|
|
||||||
if (!response.ok) {
|
|
||||||
const json = await response.json();
|
|
||||||
// Vyhodíme samotnou hlášku z odpovědi, odchytí si jí errorHandler
|
|
||||||
throw new Error(json.error);
|
|
||||||
}
|
|
||||||
return response.blob()
|
|
||||||
} catch (e) {
|
|
||||||
return Promise.reject(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export const api = {
|
|
||||||
get: <TResponse>(url: string) => request<TResponse>(url),
|
|
||||||
blobGet: (url: string) => blobRequest(url),
|
|
||||||
post: <TBody, TResponse>(url: string, body?: TBody) => request<TResponse>(url, { method: 'POST', body: JSON.stringify(body), headers: { 'Content-Type': 'application/json' } }),
|
|
||||||
}
|
|
||||||
|
|
||||||
export const getQrUrl = (login: string) => {
|
|
||||||
return `/api/qr?login=${login}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const getData = async (dayIndex?: number) => {
|
|
||||||
let url = '/api/data';
|
|
||||||
if (dayIndex != null) {
|
|
||||||
url += '?dayIndex=' + dayIndex;
|
|
||||||
}
|
|
||||||
return await api.get<any>(url);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const login = async (login?: string) => {
|
|
||||||
return await api.post<any, any>('/api/login', { login });
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
import { EasterEgg } from "../../../types";
|
|
||||||
import { api } from "./Api";
|
|
||||||
|
|
||||||
const EASTER_EGGS_API_PREFIX = '/api/easterEggs';
|
|
||||||
|
|
||||||
export const getEasterEgg = async (): Promise<EasterEgg | undefined> => {
|
|
||||||
return await api.get<EasterEgg>(`${EASTER_EGGS_API_PREFIX}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const getImage = async (url: string) => {
|
|
||||||
return await api.blobGet(`${EASTER_EGGS_API_PREFIX}/${url}`);
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
import {
|
|
||||||
AddChoiceRequest,
|
|
||||||
ChangeDepartureTimeRequest,
|
|
||||||
JdemeObedRequest,
|
|
||||||
LocationKey,
|
|
||||||
RemoveChoiceRequest,
|
|
||||||
RemoveChoicesRequest,
|
|
||||||
UpdateNoteRequest
|
|
||||||
} from "../../../types";
|
|
||||||
import { api } from "./Api";
|
|
||||||
|
|
||||||
const FOOD_API_PREFIX = '/api/food';
|
|
||||||
|
|
||||||
export const addChoice = async (locationKey: LocationKey, foodIndex?: number, dayIndex?: number) => {
|
|
||||||
return await api.post<AddChoiceRequest, void>(`${FOOD_API_PREFIX}/addChoice`, { locationKey, foodIndex, dayIndex });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const removeChoices = async (locationKey: LocationKey, dayIndex?: number) => {
|
|
||||||
return await api.post<RemoveChoicesRequest, void>(`${FOOD_API_PREFIX}/removeChoices`, { locationKey, dayIndex });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const removeChoice = async (locationKey: LocationKey, foodIndex: number, dayIndex?: number) => {
|
|
||||||
return await api.post<RemoveChoiceRequest, void>(`${FOOD_API_PREFIX}/removeChoice`, { locationKey, foodIndex, dayIndex });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const updateNote = async (note?: string, dayIndex?: number) => {
|
|
||||||
return await api.post<UpdateNoteRequest, void>(`${FOOD_API_PREFIX}/updateNote`, { note, dayIndex });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const changeDepartureTime = async (time: string, dayIndex?: number) => {
|
|
||||||
return await api.post<ChangeDepartureTimeRequest, void>(`${FOOD_API_PREFIX}/changeDepartureTime`, { time, dayIndex });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const jdemeObed = async (locationKey: LocationKey) => {
|
|
||||||
return await api.post<JdemeObedRequest, void>(`${FOOD_API_PREFIX}/jdemeObed`, { locationKey });
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
import { AddPizzaRequest, FinishDeliveryRequest, PizzaOrder, RemovePizzaRequest, UpdatePizzaDayNoteRequest, UpdatePizzaFeeRequest } from "../../../types";
|
|
||||||
import { api } from "./Api";
|
|
||||||
|
|
||||||
const PIZZADAY_API_PREFIX = '/api/pizzaDay';
|
|
||||||
|
|
||||||
export const createPizzaDay = async () => {
|
|
||||||
return await api.post<undefined, void>(`${PIZZADAY_API_PREFIX}/create`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const deletePizzaDay = async () => {
|
|
||||||
return await api.post<undefined, void>(`${PIZZADAY_API_PREFIX}/delete`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const lockPizzaDay = async () => {
|
|
||||||
return await api.post<undefined, void>(`${PIZZADAY_API_PREFIX}/lock`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const unlockPizzaDay = async () => {
|
|
||||||
return await api.post<undefined, void>(`${PIZZADAY_API_PREFIX}/unlock`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const finishOrder = async () => {
|
|
||||||
return await api.post<undefined, void>(`${PIZZADAY_API_PREFIX}/finishOrder`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const finishDelivery = async (bankAccount?: string, bankAccountHolder?: string) => {
|
|
||||||
return await api.post<FinishDeliveryRequest, void>(`${PIZZADAY_API_PREFIX}/finishDelivery`, { bankAccount, bankAccountHolder });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const addPizza = async (pizzaIndex: number, pizzaSizeIndex: number) => {
|
|
||||||
return await api.post<AddPizzaRequest, void>(`${PIZZADAY_API_PREFIX}/add`, { pizzaIndex, pizzaSizeIndex });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const removePizza = async (pizzaOrder: PizzaOrder) => {
|
|
||||||
return await api.post<RemovePizzaRequest, void>(`${PIZZADAY_API_PREFIX}/remove`, { pizzaOrder });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const updatePizzaDayNote = async (note?: string) => {
|
|
||||||
return await api.post<UpdatePizzaDayNoteRequest, void>(`${PIZZADAY_API_PREFIX}/updatePizzaDayNote`, { note });
|
|
||||||
}
|
|
||||||
|
|
||||||
export const updatePizzaFee = async (login: string, text?: string, price?: number) => {
|
|
||||||
return await api.post<UpdatePizzaFeeRequest, void>(`${PIZZADAY_API_PREFIX}/updatePizzaFee`, { login, text, price });
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
import { FeatureRequest, UpdateFeatureVoteRequest } from "../../../types";
|
|
||||||
import { api } from "./Api";
|
|
||||||
|
|
||||||
const VOTING_API_PREFIX = '/api/voting';
|
|
||||||
|
|
||||||
export const getFeatureVotes = async () => {
|
|
||||||
return await api.get<FeatureRequest[]>(`${VOTING_API_PREFIX}/getVotes`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const updateFeatureVote = async (option: FeatureRequest, active: boolean) => {
|
|
||||||
return await api.post<UpdateFeatureVoteRequest, void>(`${VOTING_API_PREFIX}/updateVote`, { option, active });
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
import { Navbar } from "react-bootstrap";
|
import { Navbar } from "react-bootstrap";
|
||||||
|
|
||||||
export default function Footer() {
|
export default function Footer() {
|
||||||
return <Navbar className="text-light" variant='dark' expand="lg" style={{ display: "flex", justifyContent: "center" }}>
|
return <Navbar className="text-light" variant='dark' expand="lg" style={{
|
||||||
|
display: "flex",
|
||||||
|
justifyContent: "center",
|
||||||
|
marginTop: "auto", // Pushne footer na spodek
|
||||||
|
flexShrink: 0 // Zabrání zmenšování při malém obsahu
|
||||||
|
}}>
|
||||||
<span>🄯 Žádná práva nevyhrazena. TODO a zdrojové kódy dostupné <a href="https://gitea.melancholik.eu/mates/Luncher">zde</a>.</span>
|
<span>🄯 Žádná práva nevyhrazena. TODO a zdrojové kódy dostupné <a href="https://gitea.melancholik.eu/mates/Luncher">zde</a>.</span>
|
||||||
</Navbar >
|
</Navbar >
|
||||||
}
|
}
|
||||||
@@ -4,24 +4,32 @@ import { useAuth } from "../context/auth";
|
|||||||
import SettingsModal from "./modals/SettingsModal";
|
import SettingsModal from "./modals/SettingsModal";
|
||||||
import { useSettings } from "../context/settings";
|
import { useSettings } from "../context/settings";
|
||||||
import FeaturesVotingModal from "./modals/FeaturesVotingModal";
|
import FeaturesVotingModal from "./modals/FeaturesVotingModal";
|
||||||
import { FeatureRequest } from "../../../types";
|
|
||||||
import { errorHandler } from "../api/Api";
|
|
||||||
import { getFeatureVotes, updateFeatureVote } from "../api/VotingApi";
|
|
||||||
import PizzaCalculatorModal from "./modals/PizzaCalculatorModal";
|
import PizzaCalculatorModal from "./modals/PizzaCalculatorModal";
|
||||||
|
import RefreshMenuModal from "./modals/RefreshMenuModal";
|
||||||
|
import GenerateQRModal from "./modals/GenerateQRModal";
|
||||||
|
import { useNavigate } from "react-router";
|
||||||
|
import { STATS_URL } from "../AppRoutes";
|
||||||
|
import { FeatureRequest, getVotes, updateVote } from "../../../types";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
dayIndex?: number;
|
||||||
|
}
|
||||||
|
|
||||||
export default function Header() {
|
export default function Header({ dayIndex }: Readonly<Props>) {
|
||||||
const auth = useAuth();
|
const auth = useAuth();
|
||||||
const settings = useSettings();
|
const settings = useSettings();
|
||||||
|
const navigate = useNavigate();
|
||||||
const [settingsModalOpen, setSettingsModalOpen] = useState<boolean>(false);
|
const [settingsModalOpen, setSettingsModalOpen] = useState<boolean>(false);
|
||||||
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 [featureVotes, setFeatureVotes] = useState<FeatureRequest[]>([]);
|
const [refreshMenuModalOpen, setRefreshMenuModalOpen] = useState<boolean>(false);
|
||||||
|
const [generateQRModalOpen, setGenerateQRModalOpen] = useState<boolean>(false);
|
||||||
|
const [featureVotes, setFeatureVotes] = useState<FeatureRequest[] | undefined>([]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
getFeatureVotes().then(votes => {
|
getVotes().then(response => {
|
||||||
setFeatureVotes(votes);
|
setFeatureVotes(response.data);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}, [auth?.login]);
|
}, [auth?.login]);
|
||||||
@@ -38,6 +46,14 @@ export default function Header() {
|
|||||||
setPizzaModalOpen(false);
|
setPizzaModalOpen(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const closeRefreshMenuModal = () => {
|
||||||
|
setRefreshMenuModalOpen(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
const closeGenerateQRModal = () => {
|
||||||
|
setGenerateQRModalOpen(false);
|
||||||
|
}
|
||||||
|
|
||||||
const isValidInteger = (str: string) => {
|
const isValidInteger = (str: string) => {
|
||||||
str = str.trim();
|
str = str.trim();
|
||||||
if (!str) {
|
if (!str) {
|
||||||
@@ -76,7 +92,7 @@ export default function Header() {
|
|||||||
cislo = cislo.padStart(16, '0');
|
cislo = cislo.padStart(16, '0');
|
||||||
}
|
}
|
||||||
let sum = 0;
|
let sum = 0;
|
||||||
for (var i = 0; i < cislo.length; i++) {
|
for (let i = 0; i < cislo.length; i++) {
|
||||||
const char = cislo.charAt(i);
|
const char = cislo.charAt(i);
|
||||||
const order = (cislo.length - 1) - i;
|
const order = (cislo.length - 1) - i;
|
||||||
const weight = (2 ** order) % 11;
|
const weight = (2 ** order) % 11;
|
||||||
@@ -97,8 +113,8 @@ export default function Header() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const saveFeatureVote = async (option: FeatureRequest, active: boolean) => {
|
const saveFeatureVote = async (option: FeatureRequest, active: boolean) => {
|
||||||
await errorHandler(() => updateFeatureVote(option, active));
|
await updateVote({ body: { option, active } });
|
||||||
const votes = [...featureVotes];
|
const votes = [...featureVotes || []];
|
||||||
if (active) {
|
if (active) {
|
||||||
votes.push(option);
|
votes.push(option);
|
||||||
} else {
|
} else {
|
||||||
@@ -108,20 +124,25 @@ export default function Header() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return <Navbar variant='dark' expand="lg">
|
return <Navbar variant='dark' expand="lg">
|
||||||
<Navbar.Brand>Luncher</Navbar.Brand>
|
<Navbar.Brand href="/">Luncher</Navbar.Brand>
|
||||||
<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">
|
||||||
<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={() => setGenerateQRModalOpen(true)}>Generování QR</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={() => navigate(STATS_URL)}>Statistiky</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>
|
||||||
</Nav>
|
</Nav>
|
||||||
</Navbar.Collapse>
|
</Navbar.Collapse>
|
||||||
<SettingsModal isOpen={settingsModalOpen} onClose={closeSettingsModal} onSave={saveSettings} />
|
<SettingsModal isOpen={settingsModalOpen} onClose={closeSettingsModal} onSave={saveSettings} />
|
||||||
|
<RefreshMenuModal isOpen={refreshMenuModalOpen} onClose={closeRefreshMenuModal} />
|
||||||
|
<GenerateQRModal isOpen={generateQRModalOpen} onClose={closeGenerateQRModal} dayIndex={dayIndex} bankAccount={settings?.bankAccount} bankAccountHolder={settings?.holderName} />
|
||||||
<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} />
|
||||||
</Navbar>
|
</Navbar>
|
||||||
|
|||||||
@@ -2,15 +2,15 @@ import { IconDefinition } from '@fortawesome/free-solid-svg-icons';
|
|||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
title?: String,
|
title?: string,
|
||||||
icon: IconDefinition,
|
icon: IconDefinition,
|
||||||
description: String,
|
description: string,
|
||||||
animation?: String,
|
animation?: string,
|
||||||
}
|
}
|
||||||
|
|
||||||
function Loader(props: Props) {
|
function Loader(props: Readonly<Props>) {
|
||||||
return <div className='loader'>
|
return <div className='loader'>
|
||||||
<h1>{props.title || 'Prosím čekejte...'}</h1>
|
<h1>{props.title ?? 'Prosím čekejte...'}</h1>
|
||||||
<FontAwesomeIcon icon={props.icon} className={`loader-icon mb-3 ` + (props.animation ?? '')} />
|
<FontAwesomeIcon icon={props.icon} className={`loader-icon mb-3 ` + (props.animation ?? '')} />
|
||||||
<p>{props.description}</p>
|
<p>{props.description}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,18 +1,17 @@
|
|||||||
import { Table } from "react-bootstrap";
|
import { Table } from "react-bootstrap";
|
||||||
import { Order, PizzaDayState, PizzaOrder } from "../../../types";
|
|
||||||
import PizzaOrderRow from "./PizzaOrderRow";
|
import PizzaOrderRow from "./PizzaOrderRow";
|
||||||
import { updatePizzaFee } from "../api/PizzaDayApi";
|
import { PizzaDayState, PizzaOrder, PizzaVariant, updatePizzaFee } from "../../../types";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
state: PizzaDayState,
|
state: PizzaDayState,
|
||||||
orders: Order[],
|
orders: PizzaOrder[],
|
||||||
onDelete: (pizzaOrder: PizzaOrder) => void,
|
onDelete: (pizzaOrder: PizzaVariant) => void,
|
||||||
creator: string,
|
creator: string,
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function PizzaOrderList({ state, orders, onDelete, creator }: Props) {
|
export default function PizzaOrderList({ state, orders, onDelete, creator }: Readonly<Props>) {
|
||||||
const saveFees = async (customer: string, text?: string, price?: number) => {
|
const saveFees = async (customer: string, text?: string, price?: number) => {
|
||||||
await updatePizzaFee(customer, text, price);
|
await updatePizzaFee({ body: { login: customer, text, price } });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!orders?.length) {
|
if (!orders?.length) {
|
||||||
@@ -21,26 +20,24 @@ export default function PizzaOrderList({ state, orders, onDelete, creator }: Pro
|
|||||||
|
|
||||||
const total = orders.reduce((total, order) => total + order.totalPrice, 0);
|
const total = orders.reduce((total, order) => total + order.totalPrice, 0);
|
||||||
|
|
||||||
return <>
|
return <Table className="mt-3" striped bordered hover>
|
||||||
<Table className="mt-3" striped bordered hover>
|
<thead>
|
||||||
<thead>
|
<tr>
|
||||||
<tr>
|
<th>Jméno</th>
|
||||||
<th>Jméno</th>
|
<th>Objednávka</th>
|
||||||
<th>Objednávka</th>
|
<th>Poznámka</th>
|
||||||
<th>Poznámka</th>
|
<th>Příplatek</th>
|
||||||
<th>Příplatek</th>
|
<th>Cena</th>
|
||||||
<th>Cena</th>
|
</tr>
|
||||||
</tr>
|
</thead>
|
||||||
</thead>
|
<tbody>
|
||||||
<tbody>
|
{orders.map(order => <tr key={order.customer}>
|
||||||
{orders.map(order => <tr key={order.customer}>
|
<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={{ fontWeight: 'bold' }}>
|
<td colSpan={4}>Celkem</td>
|
||||||
<td colSpan={4}>Celkem</td>
|
<td>{`${total} Kč`}</td>
|
||||||
<td>{`${total} Kč`}</td>
|
</tr>
|
||||||
</tr>
|
</tbody>
|
||||||
</tbody>
|
</Table>
|
||||||
</Table>
|
|
||||||
</>
|
|
||||||
}
|
}
|
||||||
@@ -2,44 +2,46 @@ import React, { useState } from "react";
|
|||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import { faMoneyBill1, faTrashCan } from "@fortawesome/free-regular-svg-icons";
|
import { faMoneyBill1, faTrashCan } from "@fortawesome/free-regular-svg-icons";
|
||||||
import { useAuth } from "../context/auth";
|
import { useAuth } from "../context/auth";
|
||||||
import { Order, PizzaDayState, PizzaOrder } from "../../../types";
|
|
||||||
import PizzaAdditionalFeeModal from "./modals/PizzaAdditionalFeeModal";
|
import PizzaAdditionalFeeModal from "./modals/PizzaAdditionalFeeModal";
|
||||||
|
import { PizzaDayState, PizzaOrder, PizzaVariant } from "../../../types";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
creator: string,
|
creator: string,
|
||||||
order: Order,
|
order: PizzaOrder,
|
||||||
state: PizzaDayState,
|
state: PizzaDayState,
|
||||||
onDelete: (order: PizzaOrder) => void,
|
onDelete: (order: PizzaVariant) => void,
|
||||||
onFeeModalSave: (customer: string, name?: string, price?: number) => void,
|
onFeeModalSave: (customer: string, name?: string, price?: number) => void,
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function PizzaOrderRow({ creator, order, state, onDelete, onFeeModalSave }: Props) {
|
export default function PizzaOrderRow({ creator, order, state, onDelete, onFeeModalSave }: Readonly<Props>) {
|
||||||
const auth = useAuth();
|
const auth = useAuth();
|
||||||
const [isFeeModalOpen, setFeeModalOpen] = useState<boolean>(false);
|
const [isFeeModalOpen, setIsFeeModalOpen] = useState<boolean>(false);
|
||||||
|
|
||||||
const saveFees = (customer: string, text?: string, price?: number) => {
|
const saveFees = (customer: string, text?: string, price?: number) => {
|
||||||
onFeeModalSave(customer, text, price);
|
onFeeModalSave(customer, text, price);
|
||||||
setFeeModalOpen(false);
|
setIsFeeModalOpen(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
return <>
|
return <>
|
||||||
<td>{order.customer}</td>
|
<td>{order.customer}</td>
|
||||||
<td>{order.pizzaList.map<React.ReactNode>((pizzaOrder, index) =>
|
<td>{order.pizzaList!.map<React.ReactNode>(pizzaOrder =>
|
||||||
<span key={index}>
|
<span key={pizzaOrder.name}>
|
||||||
{`${pizzaOrder.name}, ${pizzaOrder.size} (${pizzaOrder.price} Kč)`}
|
{`${pizzaOrder.name}, ${pizzaOrder.size} (${pizzaOrder.price} Kč)`}
|
||||||
{auth?.login === order.customer && state === PizzaDayState.CREATED &&
|
{auth?.login === order.customer && state === PizzaDayState.CREATED &&
|
||||||
<FontAwesomeIcon onClick={() => {
|
<span title='Odstranit'>
|
||||||
onDelete(pizzaOrder);
|
<FontAwesomeIcon onClick={() => {
|
||||||
}} title='Odstranit' className='action-icon' icon={faTrashCan} />
|
onDelete(pizzaOrder);
|
||||||
|
}} className='action-icon' icon={faTrashCan} />
|
||||||
|
</span>
|
||||||
}
|
}
|
||||||
</span>)
|
</span>)
|
||||||
.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} Kč${order.fee.text ? ` (${order.fee.text})` : ''}` : '-'}</td>
|
||||||
<td>
|
<td>
|
||||||
{order.totalPrice} Kč{auth?.login === creator && state === PizzaDayState.CREATED && <FontAwesomeIcon onClick={() => { setFeeModalOpen(true) }} title='Nastavit příplatek' className='action-icon' icon={faMoneyBill1} />}
|
{order.totalPrice} 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={() => setFeeModalOpen(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?.toString() }} />
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@ type Props = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Modální dialog pro hlasování o nových funkcích. */
|
/** Modální dialog pro hlasování o nových funkcích. */
|
||||||
export default function FeaturesVotingModal({ isOpen, onClose, onChange, initialValues }: Props) {
|
export default function FeaturesVotingModal({ isOpen, onClose, onChange, initialValues }: Readonly<Props>) {
|
||||||
|
|
||||||
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
onChange(e.currentTarget.value as FeatureRequest, e.currentTarget.checked);
|
onChange(e.currentTarget.value as FeatureRequest, e.currentTarget.checked);
|
||||||
@@ -31,7 +31,7 @@ export default function FeaturesVotingModal({ isOpen, onClose, onChange, initial
|
|||||||
label={FeatureRequest[key]}
|
label={FeatureRequest[key]}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
value={key}
|
value={key}
|
||||||
defaultChecked={initialValues && initialValues.includes(key as FeatureRequest)}
|
defaultChecked={initialValues?.includes(key as FeatureRequest)}
|
||||||
/>
|
/>
|
||||||
})}
|
})}
|
||||||
<p className="mt-3" style={{ fontSize: '12px' }}>Něco jiného? Dejte vědět.</p>
|
<p className="mt-3" style={{ fontSize: '12px' }}>Něco jiného? Dejte vědět.</p>
|
||||||
|
|||||||
176
client/src/components/modals/GenerateQRModal.tsx
Normal file
176
client/src/components/modals/GenerateQRModal.tsx
Normal file
@@ -0,0 +1,176 @@
|
|||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Modal, Button, Table, Form, Alert } from "react-bootstrap";
|
||||||
|
import { ClientData, generateQr, getData } from "../../../../types";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean,
|
||||||
|
onClose: () => void,
|
||||||
|
dayIndex?: number,
|
||||||
|
bankAccount?: string,
|
||||||
|
bankAccountHolder?: string,
|
||||||
|
}
|
||||||
|
|
||||||
|
type UserQRData = {
|
||||||
|
login: string;
|
||||||
|
selected: boolean;
|
||||||
|
note: string;
|
||||||
|
amount: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Modální dialog pro generování QR kódů. */
|
||||||
|
export default function GenerateQRModal({ isOpen, onClose, dayIndex, bankAccount, bankAccountHolder }: Readonly<Props>) {
|
||||||
|
const [users, setUsers] = useState<UserQRData[]>([]);
|
||||||
|
const [loading, setLoading] = useState<boolean>(false);
|
||||||
|
|
||||||
|
const isBankDataValid = bankAccount && bankAccountHolder;
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isOpen) {
|
||||||
|
setLoading(true);
|
||||||
|
getData({ query: { dayIndex } }).then(response => {
|
||||||
|
const data: ClientData = response.data;
|
||||||
|
const userList: UserQRData[] = [];
|
||||||
|
|
||||||
|
// Projdeme všechny volby stravování a získáme uživatele
|
||||||
|
if (data.choices) {
|
||||||
|
Object.entries(data.choices).forEach(([locationKey, locationUsers]) => {
|
||||||
|
Object.keys(locationUsers).forEach(login => {
|
||||||
|
// Přidáme uživatele pouze pokud tam ještě není
|
||||||
|
if (!userList.find(u => u.login === login)) {
|
||||||
|
userList.push({
|
||||||
|
login,
|
||||||
|
selected: false,
|
||||||
|
note: '',
|
||||||
|
amount: ''
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
setUsers(userList);
|
||||||
|
setLoading(false);
|
||||||
|
}).catch(() => {
|
||||||
|
setLoading(false);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [isOpen, dayIndex]);
|
||||||
|
|
||||||
|
const handleCheckboxChange = (login: string) => {
|
||||||
|
setUsers(users.map(u =>
|
||||||
|
u.login === login ? { ...u, selected: !u.selected } : u
|
||||||
|
));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleNoteChange = (login: string, note: string) => {
|
||||||
|
setUsers(users.map(u =>
|
||||||
|
u.login === login ? { ...u, note } : u
|
||||||
|
));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAmountChange = (login: string, amount: string) => {
|
||||||
|
setUsers(users.map(u =>
|
||||||
|
u.login === login ? { ...u, amount } : u
|
||||||
|
));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleGenerate = async () => {
|
||||||
|
const selectedUsers = users.filter(u => u.selected);
|
||||||
|
// TODO: Implementovat generování QR kódů
|
||||||
|
console.log('Generování QR pro:', selectedUsers);
|
||||||
|
alert('Funkce generování QR bude implementována');
|
||||||
|
await generateQr({
|
||||||
|
body: {
|
||||||
|
bankAccount: bankAccount!,
|
||||||
|
bankAccountHolder: bankAccountHolder!,
|
||||||
|
qrCodes: selectedUsers.map(u => ({
|
||||||
|
login: u.login,
|
||||||
|
des: u.note,
|
||||||
|
amount: Number.parseFloat(u.amount)
|
||||||
|
}))
|
||||||
|
},
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClose = () => {
|
||||||
|
setUsers([]);
|
||||||
|
onClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
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>
|
||||||
|
{!isBankDataValid && (
|
||||||
|
<Alert variant="warning">
|
||||||
|
<strong>Upozornění:</strong> Pro generování QR kódů je nutné mít v nastavení vyplněné číslo bankovního účtu a jméno majitele účtu.
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
{loading ? (
|
||||||
|
<p>Načítání uživatelů...</p>
|
||||||
|
) : users.length === 0 ? (
|
||||||
|
<p>Pro aktuální den nemá žádný uživatel vybranou volbu stravování.</p>
|
||||||
|
) : (
|
||||||
|
<Table striped bordered hover>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th style={{ width: '50px' }}></th>
|
||||||
|
<th>Uživatel</th>
|
||||||
|
<th>Poznámka</th>
|
||||||
|
<th style={{ width: '120px' }}>Částka (Kč)</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{users.map(user => (
|
||||||
|
<tr key={user.login}>
|
||||||
|
<td className="text-center">
|
||||||
|
<Form.Check
|
||||||
|
type="checkbox"
|
||||||
|
checked={user.selected}
|
||||||
|
onChange={() => handleCheckboxChange(user.login)}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
<td>{user.login}</td>
|
||||||
|
<td>
|
||||||
|
<Form.Control
|
||||||
|
type="text"
|
||||||
|
value={user.note}
|
||||||
|
onChange={(e) => handleNoteChange(user.login, e.target.value)}
|
||||||
|
placeholder="Poznámka"
|
||||||
|
disabled={!user.selected}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<Form.Control
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0"
|
||||||
|
value={user.amount}
|
||||||
|
onChange={(e) => handleAmountChange(user.login, e.target.value)}
|
||||||
|
placeholder="0.00"
|
||||||
|
disabled={!user.selected}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
))}
|
||||||
|
</tbody>
|
||||||
|
</Table>
|
||||||
|
)}
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
<Button variant="secondary" onClick={handleClose}>
|
||||||
|
Zavřít
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="primary"
|
||||||
|
onClick={handleGenerate}
|
||||||
|
disabled={users.filter(u => u.selected).length === 0 || !isBankDataValid}
|
||||||
|
>
|
||||||
|
Generovat
|
||||||
|
</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -8,7 +8,7 @@ type Props = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Modální dialog pro úpravu obecné poznámky. */
|
/** Modální dialog pro úpravu obecné poznámky. */
|
||||||
export default function NoteModal({ isOpen, onClose, onSave }: Props) {
|
export default function NoteModal({ isOpen, onClose, onSave }: Readonly<Props>) {
|
||||||
const note = useRef<HTMLInputElement>(null);
|
const note = useRef<HTMLInputElement>(null);
|
||||||
|
|
||||||
const save = () => {
|
const save = () => {
|
||||||
|
|||||||
@@ -10,17 +10,17 @@ type Props = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Modální dialog pro nastavení příplatků za pizzu. */
|
/** Modální dialog pro nastavení příplatků za pizzu. */
|
||||||
export default function PizzaAdditionalFeeModal({ customerName, isOpen, onClose, onSave, initialValues }: Props) {
|
export default function PizzaAdditionalFeeModal({ customerName, isOpen, onClose, onSave, initialValues }: Readonly<Props>) {
|
||||||
const textRef = useRef<HTMLInputElement>(null);
|
const textRef = useRef<HTMLInputElement>(null);
|
||||||
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, parseInt(priceRef.current?.value ?? "0"));
|
||||||
}
|
}
|
||||||
|
|
||||||
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, parseInt(priceRef.current?.value ?? "0"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ type Result = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Modální dialog pro výpočet výhodnosti pizzy. */
|
/** Modální dialog pro výpočet výhodnosti pizzy. */
|
||||||
export default function PizzaCalculatorModal({ isOpen, onClose }: Props) {
|
export default function PizzaCalculatorModal({ isOpen, onClose }: Readonly<Props>) {
|
||||||
const diameter1Ref = useRef<HTMLInputElement>(null);
|
const diameter1Ref = useRef<HTMLInputElement>(null);
|
||||||
const price1Ref = useRef<HTMLInputElement>(null);
|
const price1Ref = useRef<HTMLInputElement>(null);
|
||||||
const diameter2Ref = useRef<HTMLInputElement>(null);
|
const diameter2Ref = useRef<HTMLInputElement>(null);
|
||||||
@@ -37,9 +37,7 @@ export default function PizzaCalculatorModal({ isOpen, onClose }: Props) {
|
|||||||
// 1. pizza
|
// 1. pizza
|
||||||
if (diameter1Ref.current?.value) {
|
if (diameter1Ref.current?.value) {
|
||||||
const diameter1 = parseInt(diameter1Ref.current?.value);
|
const diameter1 = parseInt(diameter1Ref.current?.value);
|
||||||
if (!r.pizza1) {
|
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);
|
||||||
@@ -59,9 +57,7 @@ export default function PizzaCalculatorModal({ isOpen, onClose }: Props) {
|
|||||||
// 2. pizza
|
// 2. pizza
|
||||||
if (diameter2Ref.current?.value) {
|
if (diameter2Ref.current?.value) {
|
||||||
const diameter2 = parseInt(diameter2Ref.current?.value);
|
const diameter2 = parseInt(diameter2Ref.current?.value);
|
||||||
if (!r.pizza2) {
|
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);
|
||||||
|
|||||||
105
client/src/components/modals/RefreshMenuModal.tsx
Normal file
105
client/src/components/modals/RefreshMenuModal.tsx
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
import { useRef, useState } from "react";
|
||||||
|
import { Modal, Button, Alert } from "react-bootstrap";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
isOpen: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Modální dialog pro přenačtení menu z restaurací. */
|
||||||
|
export default function RefreshMenuModal({ isOpen, onClose }: Readonly<Props>) {
|
||||||
|
const refreshPassRef = useRef<HTMLInputElement>(null);
|
||||||
|
const refreshTypeRef = useRef<HTMLSelectElement>(null);
|
||||||
|
const [refreshLoading, setRefreshLoading] = useState(false);
|
||||||
|
const [refreshMessage, setRefreshMessage] = useState<{ type: 'success' | 'error', text: string } | null>(null);
|
||||||
|
|
||||||
|
const handleRefresh = async () => {
|
||||||
|
const password = refreshPassRef.current?.value;
|
||||||
|
const type = refreshTypeRef.current?.value;
|
||||||
|
if (!password || !type) {
|
||||||
|
setRefreshMessage({ type: 'error', text: 'Zadejte heslo a typ refresh.' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setRefreshLoading(true);
|
||||||
|
setRefreshMessage(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const res = await fetch(`/api/food/refresh?type=${type}&heslo=${encodeURIComponent(password)}`);
|
||||||
|
const data = await res.json();
|
||||||
|
if (res.ok) {
|
||||||
|
setRefreshMessage({ type: 'success', text: 'Uspesny fetch' });
|
||||||
|
if (refreshPassRef.current) {
|
||||||
|
// Clean hesla xd
|
||||||
|
refreshPassRef.current.value = '';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setRefreshMessage({ type: 'error', text: data.error || 'Chyba při obnovování jídelníčku.' });
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error refreshing menu:', error);
|
||||||
|
setRefreshMessage({ type: 'error', text: 'Chyba při obnovování jídelníčku.' });
|
||||||
|
} finally {
|
||||||
|
setRefreshLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClose = () => {
|
||||||
|
setRefreshMessage(null);
|
||||||
|
onClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal show={isOpen} onHide={handleClose} size="lg">
|
||||||
|
<Modal.Header closeButton>
|
||||||
|
<Modal.Title><h2>Přenačtení menu</h2></Modal.Title>
|
||||||
|
</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
<p>Ruční refresh dat z restaurací.</p>
|
||||||
|
|
||||||
|
{refreshMessage && (
|
||||||
|
<Alert variant={refreshMessage.type === 'success' ? 'success' : 'danger'}>
|
||||||
|
{refreshMessage.text}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="mb-3">
|
||||||
|
Heslo: <input
|
||||||
|
ref={refreshPassRef}
|
||||||
|
type="password"
|
||||||
|
placeholder="Zadejte heslo"
|
||||||
|
className="form-control d-inline-block"
|
||||||
|
style={{ width: 'auto', marginLeft: '10px' }}
|
||||||
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="mb-3">
|
||||||
|
Typ refreshe: <select
|
||||||
|
ref={refreshTypeRef}
|
||||||
|
className="form-select d-inline-block"
|
||||||
|
style={{ width: 'auto', marginLeft: '10px' }}
|
||||||
|
defaultValue="week"
|
||||||
|
>
|
||||||
|
<option value="week">Týden</option>
|
||||||
|
<option value="day">Den</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
variant="info"
|
||||||
|
onClick={handleRefresh}
|
||||||
|
disabled={refreshLoading}
|
||||||
|
className="mb-3"
|
||||||
|
>
|
||||||
|
{refreshLoading ? 'Refreshing...' : 'Refresh'}
|
||||||
|
</Button>
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer>
|
||||||
|
<Button variant="secondary" onClick={handleClose}>
|
||||||
|
Zavřít
|
||||||
|
</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@ type Props = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Modální dialog pro uživatelská nastavení. */
|
/** Modální dialog pro uživatelská nastavení. */
|
||||||
export default function SettingsModal({ isOpen, onClose, onSave }: Props) {
|
export default function SettingsModal({ isOpen, onClose, onSave }: Readonly<Props>) {
|
||||||
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);
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import React, { ReactNode, useContext, useState } from "react"
|
import React, { ReactNode, useContext, useEffect, useState } from "react"
|
||||||
import { useEffect } from "react"
|
|
||||||
import { useJwt } from "react-jwt";
|
import { useJwt } from "react-jwt";
|
||||||
import { deleteToken, getToken, storeToken } from "../Utils";
|
import { deleteToken, getToken, storeToken } from "../Utils";
|
||||||
|
|
||||||
@@ -16,7 +15,7 @@ type ContextProps = {
|
|||||||
|
|
||||||
const authContext = React.createContext<AuthContextProps | null>(null);
|
const authContext = React.createContext<AuthContextProps | null>(null);
|
||||||
|
|
||||||
export function ProvideAuth(props: ContextProps) {
|
export function ProvideAuth(props: Readonly<ContextProps>) {
|
||||||
const auth = useProvideAuth();
|
const auth = useProvideAuth();
|
||||||
return <authContext.Provider value={auth}>{props.children}</authContext.Provider>
|
return <authContext.Provider value={auth}>{props.children}</authContext.Provider>
|
||||||
}
|
}
|
||||||
@@ -28,8 +27,8 @@ export const useAuth = () => {
|
|||||||
function useProvideAuth(): AuthContextProps {
|
function useProvideAuth(): AuthContextProps {
|
||||||
const [loginName, setLoginName] = useState<string | undefined>();
|
const [loginName, setLoginName] = useState<string | undefined>();
|
||||||
const [trusted, setTrusted] = useState<boolean | undefined>();
|
const [trusted, setTrusted] = useState<boolean | undefined>();
|
||||||
const [token, setToken] = useState<string | null>(getToken());
|
const [token, setToken] = useState<string | undefined>(getToken());
|
||||||
const { decodedToken } = useJwt(token || '');
|
const { decodedToken } = useJwt(token ?? '');
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (token && token.length > 0) {
|
if (token && token.length > 0) {
|
||||||
@@ -52,7 +51,7 @@ function useProvideAuth(): AuthContextProps {
|
|||||||
function logout() {
|
function logout() {
|
||||||
const trusted = (decodedToken as any).trusted;
|
const trusted = (decodedToken as any).trusted;
|
||||||
const logoutUrl = (decodedToken as any).logoutUrl;
|
const logoutUrl = (decodedToken as any).logoutUrl;
|
||||||
setToken(null);
|
setToken(undefined);
|
||||||
setLoginName(undefined);
|
setLoginName(undefined);
|
||||||
setTrusted(undefined);
|
setTrusted(undefined);
|
||||||
if (trusted && logoutUrl?.length) {
|
if (trusted && logoutUrl?.length) {
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { getEasterEgg } from "../api/EasterEggApi";
|
|
||||||
import { AuthContextProps } from "./auth";
|
import { AuthContextProps } from "./auth";
|
||||||
import { EasterEgg } from "../../../types";
|
import { EasterEgg, getEasterEgg } from "../../../types";
|
||||||
|
|
||||||
export const useEasterEgg = (auth?: AuthContextProps | null): [EasterEgg | undefined, boolean] => {
|
export const useEasterEgg = (auth?: AuthContextProps | null): [EasterEgg | undefined, boolean] => {
|
||||||
const [result, setResult] = useState<EasterEgg | undefined>();
|
const [result, setResult] = useState<EasterEgg | undefined>();
|
||||||
@@ -11,7 +10,7 @@ export const useEasterEgg = (auth?: AuthContextProps | null): [EasterEgg | undef
|
|||||||
async function fetchEasterEgg() {
|
async function fetchEasterEgg() {
|
||||||
if (auth?.login) {
|
if (auth?.login) {
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
const egg = await getEasterEgg();
|
const egg = (await getEasterEgg())?.data;
|
||||||
setResult(egg);
|
setResult(egg);
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import React, { ReactNode, useContext, useState } from "react"
|
import React, { ReactNode, useContext, useEffect, useState } from "react"
|
||||||
import { useEffect } 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';
|
||||||
@@ -20,7 +19,7 @@ type ContextProps = {
|
|||||||
|
|
||||||
const settingsContext = React.createContext<SettingsContextProps | null>(null);
|
const settingsContext = React.createContext<SettingsContextProps | null>(null);
|
||||||
|
|
||||||
export function ProvideSettings(props: ContextProps) {
|
export function ProvideSettings(props: Readonly<ContextProps>) {
|
||||||
const settings = useProvideSettings();
|
const settings = useProvideSettings();
|
||||||
return <settingsContext.Provider value={settings}>{props.children}</settingsContext.Provider>
|
return <settingsContext.Provider value={settings}>{props.children}</settingsContext.Provider>
|
||||||
}
|
}
|
||||||
@@ -45,7 +44,7 @@ function useProvideSettings(): SettingsContextProps {
|
|||||||
}
|
}
|
||||||
const hideSoups = localStorage.getItem(HIDE_SOUPS_KEY);
|
const hideSoups = localStorage.getItem(HIDE_SOUPS_KEY);
|
||||||
if (hideSoups !== null) {
|
if (hideSoups !== null) {
|
||||||
setHideSoups(hideSoups === 'true' ? true : false);
|
setHideSoups(hideSoups === 'true');
|
||||||
}
|
}
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
|
|||||||
@@ -18,8 +18,3 @@ export const SocketContext = React.createContext();
|
|||||||
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_CONFIG = 'config';
|
|
||||||
// export const EVENT_TOASTER = 'toaster';
|
|
||||||
// export const EVENT_VOTING = 'voting';
|
|
||||||
// export const EVENT_VOTE_CONFIG = 'voteSettings';
|
|
||||||
// export const EVENT_ADMIN = 'admin';
|
|
||||||
|
|||||||
41
client/src/enums.ts
Normal file
41
client/src/enums.ts
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import { LunchChoice, Restaurant } from "../../types";
|
||||||
|
|
||||||
|
export function getRestaurantName(restaurant: Restaurant) {
|
||||||
|
switch (restaurant) {
|
||||||
|
case Restaurant.SLADOVNICKA:
|
||||||
|
return "Sladovnická";
|
||||||
|
case Restaurant.TECHTOWER:
|
||||||
|
return "TechTower";
|
||||||
|
case Restaurant.ZASTAVKAUMICHALA:
|
||||||
|
return "Zastávka u Michala";
|
||||||
|
case Restaurant.SENKSERIKOVA:
|
||||||
|
return "Šenk Šeříková";
|
||||||
|
default:
|
||||||
|
return restaurant;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getLunchChoiceName(location: LunchChoice) {
|
||||||
|
switch (location) {
|
||||||
|
case Restaurant.SLADOVNICKA:
|
||||||
|
return "Sladovnická";
|
||||||
|
case Restaurant.TECHTOWER:
|
||||||
|
return "TechTower";
|
||||||
|
case Restaurant.ZASTAVKAUMICHALA:
|
||||||
|
return "Zastávka u Michala";
|
||||||
|
case Restaurant.SENKSERIKOVA:
|
||||||
|
return "Šenk Šeříková";
|
||||||
|
case LunchChoice.SPSE:
|
||||||
|
return "SPŠE";
|
||||||
|
case LunchChoice.PIZZA:
|
||||||
|
return "Pizza day";
|
||||||
|
case LunchChoice.OBJEDNAVAM:
|
||||||
|
return "Budu objednávat";
|
||||||
|
case LunchChoice.NEOBEDVAM:
|
||||||
|
return "Mám vlastní/neobědvám";
|
||||||
|
case LunchChoice.ROZHODUJI:
|
||||||
|
return "Rozhoduji se";
|
||||||
|
default:
|
||||||
|
return location;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,33 +1,38 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import ReactDOM from 'react-dom/client';
|
import ReactDOM from 'react-dom/client';
|
||||||
import App from './App';
|
|
||||||
import { SocketContext, socket } from './context/socket';
|
|
||||||
import { ProvideAuth } from './context/auth';
|
import { ProvideAuth } from './context/auth';
|
||||||
import { ToastContainer } from 'react-toastify';
|
|
||||||
import { ProvideSettings } from './context/settings';
|
|
||||||
import 'react-toastify/dist/ReactToastify.css';
|
import 'react-toastify/dist/ReactToastify.css';
|
||||||
import './index.css';
|
import './index.css';
|
||||||
import Snowfall from 'react-snowfall';
|
import AppRoutes from './AppRoutes';
|
||||||
|
import { BrowserRouter } from 'react-router';
|
||||||
|
import { client } from '../../types/gen/client.gen';
|
||||||
|
import { getToken } from './Utils';
|
||||||
|
import { toast } from 'react-toastify';
|
||||||
|
|
||||||
|
client.setConfig({
|
||||||
|
auth: () => getToken(),
|
||||||
|
baseUrl: '/api', // openapi-ts si to z nějakého důvodu neumí převzít z api.yml
|
||||||
|
});
|
||||||
|
|
||||||
|
// Interceptor na vyhození toasteru při chybě
|
||||||
|
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
|
||||||
|
if (!response.ok && response.url.indexOf("/login") == -1) {
|
||||||
|
const json = await response.json();
|
||||||
|
toast.error(json.error, { theme: "colored" });
|
||||||
|
}
|
||||||
|
return response;
|
||||||
|
});
|
||||||
|
|
||||||
const root = ReactDOM.createRoot(
|
const root = ReactDOM.createRoot(
|
||||||
document.getElementById('root') as HTMLElement
|
document.getElementById('root') as HTMLElement
|
||||||
);
|
);
|
||||||
root.render(
|
root.render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
<ProvideAuth>
|
<BrowserRouter>
|
||||||
<ProvideSettings>
|
<ProvideAuth>
|
||||||
<SocketContext.Provider value={socket}>
|
<AppRoutes />
|
||||||
<>
|
</ProvideAuth>
|
||||||
<Snowfall style={{
|
</BrowserRouter>
|
||||||
zIndex: 2,
|
|
||||||
position: 'fixed',
|
|
||||||
width: '100vw',
|
|
||||||
height: '100vh'}} />
|
|
||||||
<App />
|
|
||||||
</>
|
|
||||||
<ToastContainer />
|
|
||||||
</SocketContext.Provider>
|
|
||||||
</ProvideSettings>
|
|
||||||
</ProvideAuth>
|
|
||||||
</React.StrictMode>
|
</React.StrictMode>
|
||||||
);
|
);
|
||||||
|
|||||||
16
client/src/pages/StatsPage.scss
Normal file
16
client/src/pages/StatsPage.scss
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
.stats-page {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 20px;
|
||||||
|
|
||||||
|
.week-navigator {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: xx-large;
|
||||||
|
|
||||||
|
.date-range {
|
||||||
|
margin: 5px 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
129
client/src/pages/StatsPage.tsx
Normal file
129
client/src/pages/StatsPage.tsx
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
import { useCallback, useEffect, useState } from "react";
|
||||||
|
import Footer from "../components/Footer";
|
||||||
|
import Header from "../components/Header";
|
||||||
|
import { useAuth } from "../context/auth";
|
||||||
|
import Login from "../Login";
|
||||||
|
import { formatDate, getFirstWorkDayOfWeek, getHumanDate, getLastWorkDayOfWeek } from "../Utils";
|
||||||
|
import { WeeklyStats, LunchChoice, getStats } from "../../../types";
|
||||||
|
import Loader from "../components/Loader";
|
||||||
|
import { faChevronLeft, faChevronRight, faGear } from "@fortawesome/free-solid-svg-icons";
|
||||||
|
import { Legend, Line, LineChart, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import { getLunchChoiceName } from "../enums";
|
||||||
|
import './StatsPage.scss';
|
||||||
|
|
||||||
|
const CHART_WIDTH = 1400;
|
||||||
|
const CHART_HEIGHT = 700;
|
||||||
|
const STROKE_WIDTH = 2.5;
|
||||||
|
|
||||||
|
const COLORS = [
|
||||||
|
// Komentáře jsou kvůli vizualizaci barev ve VS Code
|
||||||
|
'#ff1493', // #ff1493
|
||||||
|
'#1e90ff', // #1e90ff
|
||||||
|
'#c5a700', // #c5a700
|
||||||
|
'#006400', // #006400
|
||||||
|
'#b300ff', // #b300ff
|
||||||
|
'#ff4500', // #ff4500
|
||||||
|
'#bc8f8f', // #bc8f8f
|
||||||
|
'#00ff00', // #00ff00
|
||||||
|
'#7c7c7c', // #7c7c7c
|
||||||
|
]
|
||||||
|
|
||||||
|
export default function StatsPage() {
|
||||||
|
const auth = useAuth();
|
||||||
|
const [dateRange, setDateRange] = useState<Date[]>();
|
||||||
|
const [data, setData] = useState<WeeklyStats>();
|
||||||
|
|
||||||
|
// Prvotní nastavení aktuálního týdne
|
||||||
|
useEffect(() => {
|
||||||
|
const today = new Date();
|
||||||
|
setDateRange([getFirstWorkDayOfWeek(today), getLastWorkDayOfWeek(today)]);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Přenačtení pro zvolený týden
|
||||||
|
useEffect(() => {
|
||||||
|
if (dateRange) {
|
||||||
|
getStats({ query: { startDate: formatDate(dateRange[0]), endDate: formatDate(dateRange[1]) } }).then(response => {
|
||||||
|
setData(response.data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [dateRange]);
|
||||||
|
|
||||||
|
const renderLine = (location: LunchChoice) => {
|
||||||
|
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} />
|
||||||
|
}
|
||||||
|
|
||||||
|
const handlePreviousWeek = () => {
|
||||||
|
if (dateRange) {
|
||||||
|
const previousStartDate = new Date(dateRange[0]);
|
||||||
|
previousStartDate.setDate(previousStartDate.getDate() - 7);
|
||||||
|
const previousEndDate = new Date(previousStartDate);
|
||||||
|
previousEndDate.setDate(previousEndDate.getDate() + 4);
|
||||||
|
setDateRange([previousStartDate, previousEndDate]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleNextWeek = () => {
|
||||||
|
if (dateRange) {
|
||||||
|
const nextStartDate = new Date(dateRange[0]);
|
||||||
|
nextStartDate.setDate(nextStartDate.getDate() + 7);
|
||||||
|
const nextEndDate = new Date(nextStartDate);
|
||||||
|
nextEndDate.setDate(nextEndDate.getDate() + 4);
|
||||||
|
setDateRange([nextStartDate, nextEndDate]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback((e: any) => {
|
||||||
|
if (e.keyCode === 37) {
|
||||||
|
handlePreviousWeek();
|
||||||
|
} else if (e.keyCode === 39) {
|
||||||
|
handleNextWeek()
|
||||||
|
}
|
||||||
|
}, [dateRange]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
document.addEventListener('keydown', handleKeyDown);
|
||||||
|
return () => {
|
||||||
|
document.removeEventListener('keydown', handleKeyDown);
|
||||||
|
}
|
||||||
|
}, [handleKeyDown]);
|
||||||
|
|
||||||
|
if (!auth?.login) {
|
||||||
|
return <Login />;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!dateRange) {
|
||||||
|
return <Loader
|
||||||
|
icon={faGear}
|
||||||
|
description={'Načítám data...'}
|
||||||
|
animation={'fa-bounce'}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Header dayIndex={undefined} />
|
||||||
|
<div className="stats-page">
|
||||||
|
<h1>Statistiky</h1>
|
||||||
|
<div className="week-navigator">
|
||||||
|
<span title="Předchozí týden">
|
||||||
|
<FontAwesomeIcon icon={faChevronLeft} style={{ cursor: "pointer" }} onClick={handlePreviousWeek} />
|
||||||
|
</span>
|
||||||
|
<h2 className="date-range">{getHumanDate(dateRange[0])} - {getHumanDate(dateRange[1])}</h2>
|
||||||
|
<span title="Následující týden">
|
||||||
|
<FontAwesomeIcon icon={faChevronRight} style={{ cursor: "pointer" }} onClick={handleNextWeek} />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<LineChart width={CHART_WIDTH} height={CHART_HEIGHT} data={data}>
|
||||||
|
{Object.values(LunchChoice).map(location => renderLine(location))}
|
||||||
|
<XAxis dataKey="date" />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip />
|
||||||
|
<Legend />
|
||||||
|
</LineChart>
|
||||||
|
</div>
|
||||||
|
<Footer />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ESNext",
|
|
||||||
"lib": [
|
"lib": [
|
||||||
"dom",
|
"dom",
|
||||||
"dom.iterable",
|
"dom.iterable",
|
||||||
@@ -16,10 +15,12 @@
|
|||||||
"strict": true,
|
"strict": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
"module": "esnext",
|
"moduleResolution": "bundler",
|
||||||
"moduleResolution": "node",
|
"module": "ESNext",
|
||||||
|
"target": "ESNext",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
|
"allowImportingTsExtensions": true,
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
"jsx": "react-jsx"
|
"jsx": "react-jsx"
|
||||||
}
|
}
|
||||||
|
|||||||
1577
client/yarn.lock
1577
client/yarn.lock
File diff suppressed because it is too large
Load Diff
23
run_dev.sh
23
run_dev.sh
@@ -1,5 +1,18 @@
|
|||||||
export NODE_ENV=development
|
#!/bin/bash
|
||||||
yarn install
|
# Spustí server a klienta v samostatných panelech uvnitř stejného tmux okna.
|
||||||
cd server && yarn start &
|
# Pokud už daná tmux session existuje, pouze se k ní připojí.
|
||||||
cd client && yarn start &
|
|
||||||
wait
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||||
|
|
||||||
|
SESSION="luncher"
|
||||||
|
|
||||||
|
if ! tmux has-session -t $SESSION 2>/dev/null; then
|
||||||
|
cd types && yarn openapi-ts && cd ..
|
||||||
|
tmux new-session -d -s $SESSION
|
||||||
|
tmux send-keys -t $SESSION:0 "cd $SCRIPT_DIR" Enter
|
||||||
|
tmux split-window -v
|
||||||
|
tmux send-keys -t $SESSION:0.0 "cd server && export NODE_ENV=development && yarn startReload" Enter
|
||||||
|
tmux send-keys -t $SESSION:0.1 "cd client && yarn start" Enter
|
||||||
|
fi
|
||||||
|
|
||||||
|
tmux attach-session -t $SESSION
|
||||||
2
server/.gitignore
vendored
2
server/.gitignore
vendored
@@ -1,5 +1,7 @@
|
|||||||
|
/data
|
||||||
/dist
|
/dist
|
||||||
/resources/easterEggs
|
/resources/easterEggs
|
||||||
|
/src/gen
|
||||||
.env.production
|
.env.production
|
||||||
.env.development
|
.env.development
|
||||||
.easter-eggs.json
|
.easter-eggs.json
|
||||||
|
|||||||
@@ -11,28 +11,28 @@
|
|||||||
"test": "jest"
|
"test": "jest"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.23.0",
|
"@babel/core": "^7.28.5",
|
||||||
"@babel/preset-env": "^7.22.20",
|
"@babel/preset-env": "^7.28.5",
|
||||||
"@babel/preset-typescript": "^7.23.0",
|
"@babel/preset-typescript": "^7.28.5",
|
||||||
"@types/express": "^4.17.17",
|
"@types/express": "^5.0.5",
|
||||||
"@types/jest": "^29.5.14",
|
"@types/jest": "^30.0.0",
|
||||||
"@types/jsonwebtoken": "^9.0.6",
|
"@types/jsonwebtoken": "^9.0.10",
|
||||||
"@types/node": "^20.11.20",
|
"@types/node": "^24.10.0",
|
||||||
"@types/request-promise": "^4.1.48",
|
"@types/request-promise": "^4.1.48",
|
||||||
"babel-jest": "^29.7.0",
|
"babel-jest": "^30.2.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^30.2.0",
|
||||||
"nodemon": "^3.1.0",
|
"nodemon": "^3.1.10",
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"typescript": "^5.0.2"
|
"typescript": "^5.9.3"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.4.0",
|
"axios": "^1.13.2",
|
||||||
"cheerio": "^1.0.0-rc.12",
|
"cheerio": "^1.1.2",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"dotenv": "^16.4.5",
|
"dotenv": "^17.2.3",
|
||||||
"express": "^4.18.2",
|
"express": "^5.1.0",
|
||||||
"jsonwebtoken": "^9.0.0",
|
"jsonwebtoken": "^9.0.0",
|
||||||
"redis": "^4.6.7",
|
"redis": "^5.9.0",
|
||||||
"simple-json-db": "^2.0.0",
|
"simple-json-db": "^2.0.0",
|
||||||
"socket.io": "^4.6.1"
|
"socket.io": "^4.6.1"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,16 +49,16 @@ export async function downloadPizzy(mock: boolean): Promise<Pizza[]> {
|
|||||||
const $ = load(html);
|
const $ = load(html);
|
||||||
const links = $('.vypisproduktu > div > h4 > a');
|
const links = $('.vypisproduktu > div > h4 > a');
|
||||||
const urls = [];
|
const urls = [];
|
||||||
for (let i = 0; i < links.length; i++) {
|
for (const element of links) {
|
||||||
if (links[i].name === 'a' && links[i].attribs?.href) {
|
if (element.name === 'a' && element.attribs?.href) {
|
||||||
const pizzaUrl = links[i].attribs?.href;
|
const pizzaUrl = element.attribs?.href;
|
||||||
urls.push(buildPizzaUrl(pizzaUrl));
|
urls.push(buildPizzaUrl(pizzaUrl));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Scrapneme jednotlivé pizzy
|
// Scrapneme jednotlivé pizzy
|
||||||
const result: Pizza[] = [];
|
const result: Pizza[] = [];
|
||||||
for (let i = 0; i < urls.length; i++) {
|
for (const element of urls) {
|
||||||
const pizzaUrl = urls[i];
|
const pizzaUrl = element;
|
||||||
const pizzaHtml = await axios.get(pizzaUrl).then(res => res.data);
|
const pizzaHtml = await axios.get(pizzaUrl).then(res => res.data);
|
||||||
// Název
|
// Název
|
||||||
const name = $('.produkt > h2', pizzaHtml).first().text()
|
const name = $('.produkt > h2', pizzaHtml).first().text()
|
||||||
|
|||||||
@@ -9,12 +9,15 @@ import { generateToken, verify } from "./auth";
|
|||||||
import { InsufficientPermissions } from "./utils";
|
import { InsufficientPermissions } from "./utils";
|
||||||
import { initWebsocket } from "./websocket";
|
import { initWebsocket } from "./websocket";
|
||||||
import pizzaDayRoutes from "./routes/pizzaDayRoutes";
|
import pizzaDayRoutes from "./routes/pizzaDayRoutes";
|
||||||
import foodRoutes from "./routes/foodRoutes";
|
import foodRoutes, { refreshMetoda } from "./routes/foodRoutes";
|
||||||
import votingRoutes from "./routes/votingRoutes";
|
import votingRoutes from "./routes/votingRoutes";
|
||||||
import easterEggRoutes from "./routes/easterEggRoutes";
|
import easterEggRoutes from "./routes/easterEggRoutes";
|
||||||
|
import statsRoutes from "./routes/statsRoutes";
|
||||||
|
import debugRoutes from "./routes/debugRoutes";
|
||||||
|
import qrRoutes from "./routes/qrRoutes";
|
||||||
|
|
||||||
const ENVIRONMENT = process.env.NODE_ENV || 'production';
|
const ENVIRONMENT = process.env.NODE_ENV ?? 'production';
|
||||||
dotenv.config({ path: path.resolve(__dirname, `./.env.${ENVIRONMENT}`) });
|
dotenv.config({ path: path.resolve(__dirname, `../.env.${ENVIRONMENT}`) });
|
||||||
|
|
||||||
// Validace nastavení JWT tokenu - nemá bez něj smysl vůbec povolit server spustit
|
// Validace nastavení JWT tokenu - nemá bez něj smysl vůbec povolit server spustit
|
||||||
if (!process.env.JWT_SECRET) {
|
if (!process.env.JWT_SECRET) {
|
||||||
@@ -34,7 +37,7 @@ app.use(cors({
|
|||||||
|
|
||||||
// Zapínatelný login přes hlavičky - pokud je zapnutý nepovolí "basicauth"
|
// Zapínatelný login přes hlavičky - pokud je zapnutý nepovolí "basicauth"
|
||||||
const HTTP_REMOTE_USER_ENABLED = process.env.HTTP_REMOTE_USER_ENABLED === 'true' || false;
|
const HTTP_REMOTE_USER_ENABLED = process.env.HTTP_REMOTE_USER_ENABLED === 'true' || false;
|
||||||
const HTTP_REMOTE_USER_HEADER_NAME = process.env.HTTP_REMOTE_USER_HEADER_NAME || 'remote-user';
|
const HTTP_REMOTE_USER_HEADER_NAME = process.env.HTTP_REMOTE_USER_HEADER_NAME ?? 'remote-user';
|
||||||
if (HTTP_REMOTE_USER_ENABLED) {
|
if (HTTP_REMOTE_USER_ENABLED) {
|
||||||
if (!process.env.HTTP_REMOTE_TRUSTED_IPS) {
|
if (!process.env.HTTP_REMOTE_TRUSTED_IPS) {
|
||||||
throw new Error('Je zapnutý login z hlaviček, ale není nastaven rozsah adres ze kterých hlavička může přijít.');
|
throw new Error('Je zapnutý login z hlaviček, ale není nastaven rozsah adres ze kterých hlavička může přijít.');
|
||||||
@@ -53,6 +56,10 @@ app.get("/api/whoami", (req, res) => {
|
|||||||
if (!HTTP_REMOTE_USER_ENABLED) {
|
if (!HTTP_REMOTE_USER_ENABLED) {
|
||||||
res.status(403).json({ error: 'Není zapnuté přihlášení z hlaviček' });
|
res.status(403).json({ error: 'Není zapnuté přihlášení z hlaviček' });
|
||||||
}
|
}
|
||||||
|
if(process.env.ENABLE_HEADERS_LOGGING === 'yes'){
|
||||||
|
delete req.headers["cookie"]
|
||||||
|
console.log(req.headers)
|
||||||
|
}
|
||||||
res.send(req.header(HTTP_REMOTE_USER_HEADER_NAME));
|
res.send(req.header(HTTP_REMOTE_USER_HEADER_NAME));
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -60,11 +67,11 @@ app.post("/api/login", (req, res) => {
|
|||||||
if (HTTP_REMOTE_USER_ENABLED) { // je rovno app.enabled('trust proxy')
|
if (HTTP_REMOTE_USER_ENABLED) { // je rovno app.enabled('trust proxy')
|
||||||
// Autentizace pomocí trusted headers
|
// Autentizace pomocí trusted headers
|
||||||
const remoteUser = req.header(HTTP_REMOTE_USER_HEADER_NAME);
|
const remoteUser = req.header(HTTP_REMOTE_USER_HEADER_NAME);
|
||||||
const remoteName = req.header('remote-name');
|
//const remoteName = req.header('remote-name');
|
||||||
if (remoteUser && remoteUser.length > 0 && remoteName && remoteName.length > 0) {
|
if (remoteUser && remoteUser.length > 0 ) {
|
||||||
res.status(200).json(generateToken(Buffer.from(remoteName, 'latin1').toString(), true));
|
res.status(200).json(generateToken(Buffer.from(remoteUser, 'latin1').toString(), true));
|
||||||
} else {
|
} else {
|
||||||
throw Error("Tohle nema nastat nekdo neco dela spatne.");
|
throw Error("Je zapnuto přihlášení přes hlavičky, ale nepřišla hlavička nebo ??");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Klasická autentizace loginem
|
// Klasická autentizace loginem
|
||||||
@@ -78,7 +85,6 @@ app.post("/api/login", (req, res) => {
|
|||||||
|
|
||||||
// TODO dočasné řešení - QR se zobrazuje přes <img>, nemáme sem jak dostat token
|
// TODO dočasné řešení - QR se zobrazuje přes <img>, nemáme sem jak dostat token
|
||||||
app.get("/api/qr", (req, res) => {
|
app.get("/api/qr", (req, res) => {
|
||||||
// const login = getLogin(parseToken(req));
|
|
||||||
if (!req.query?.login) {
|
if (!req.query?.login) {
|
||||||
throw Error("Nebyl předán login");
|
throw Error("Nebyl předán login");
|
||||||
}
|
}
|
||||||
@@ -92,16 +98,24 @@ app.get("/api/qr", (req, res) => {
|
|||||||
|
|
||||||
// ----------------------------------------------------
|
// ----------------------------------------------------
|
||||||
|
|
||||||
|
// Přeskočení auth pro refresh dat xd
|
||||||
|
app.use("/api/food/refresh", refreshMetoda);
|
||||||
|
|
||||||
|
app.use("/api/debug", debugRoutes);
|
||||||
|
|
||||||
/** Middleware ověřující JWT token */
|
/** Middleware ověřující JWT token */
|
||||||
app.use("/api/", (req, res, next) => {
|
app.use("/api/", (req, res, next) => {
|
||||||
if (HTTP_REMOTE_USER_ENABLED) {
|
if (HTTP_REMOTE_USER_ENABLED) {
|
||||||
const userHeader = req.header(HTTP_REMOTE_USER_HEADER_NAME);
|
// Autentizace pomocí trusted headers
|
||||||
const nameHeader = req.header('remote-name');
|
const remoteUser = req.header(HTTP_REMOTE_USER_HEADER_NAME);
|
||||||
const emailHeader = req.header('remote-email');
|
if(process.env.ENABLE_HEADERS_LOGGING === 'yes'){
|
||||||
if (userHeader !== undefined && nameHeader !== undefined) {
|
delete req.headers["cookie"]
|
||||||
const remoteName = Buffer.from(nameHeader, 'latin1').toString();
|
console.log(req.headers)
|
||||||
if (ENVIRONMENT !== "production"){
|
}
|
||||||
console.log("Tvuj username, name a email: %s, %s, %s.", userHeader, remoteName, emailHeader);
|
if (remoteUser && remoteUser.length > 0) {
|
||||||
|
const remoteName = Buffer.from(remoteUser, 'latin1').toString();
|
||||||
|
if (ENVIRONMENT !== "production") {
|
||||||
|
console.log("Tvuj username: %s.", remoteName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -132,7 +146,11 @@ app.use("/api/pizzaDay", pizzaDayRoutes);
|
|||||||
app.use("/api/food", foodRoutes);
|
app.use("/api/food", foodRoutes);
|
||||||
app.use("/api/voting", votingRoutes);
|
app.use("/api/voting", votingRoutes);
|
||||||
app.use("/api/easterEggs", easterEggRoutes);
|
app.use("/api/easterEggs", easterEggRoutes);
|
||||||
app.use(express.static('public'))
|
app.use("/api/stats", statsRoutes);
|
||||||
|
app.use("/api/qr", qrRoutes);
|
||||||
|
|
||||||
|
app.use('/stats', express.static('public'));
|
||||||
|
app.use(express.static('public'));
|
||||||
|
|
||||||
// Middleware pro zpracování chyb
|
// Middleware pro zpracování chyb
|
||||||
app.use((err: any, req: any, res: any, next: any) => {
|
app.use((err: any, req: any, res: any, next: any) => {
|
||||||
@@ -144,8 +162,8 @@ app.use((err: any, req: any, res: any, next: any) => {
|
|||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
|
|
||||||
const PORT = process.env.PORT || 3001;
|
const PORT = process.env.PORT ?? 3001;
|
||||||
const HOST = process.env.HOST || '0.0.0.0';
|
const HOST = process.env.HOST ?? '0.0.0.0';
|
||||||
|
|
||||||
server.listen(PORT, () => {
|
server.listen(PORT, () => {
|
||||||
console.log(`Server listening on ${HOST}, port ${PORT}`);
|
console.log(`Server listening on ${HOST}, port ${PORT}`);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { getDayOfWeekIndex } from "./utils";
|
import { WeeklyStats, LunchChoice } from "../../types/gen/types.gen";
|
||||||
|
|
||||||
// Mockovací data pro podporované podniky, na jeden týden
|
// Mockovací data pro podporované podniky, na jeden týden
|
||||||
const MOCK_DATA = {
|
const MOCK_DATA = {
|
||||||
@@ -6,79 +6,31 @@ const MOCK_DATA = {
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
amount: "0,25l",
|
amount: "0,25l",
|
||||||
name: "Kulajda",
|
name: "Česnečka s uzeným masem a krutony",
|
||||||
price: "35\xA0Kč",
|
price: "35\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [1, 3, 7, 9]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "250g",
|
amount: "250g",
|
||||||
name: "Kuřecí křidélka s vařeným bramborem",
|
name: "Přírodní roštěná s jasmínovou rýží",
|
||||||
price: "135\xA0Kč",
|
price: "135\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 9, 10]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "150g",
|
amount: "150g",
|
||||||
name: "Hovězí hamburger s BBQ omáčkou a hranolky",
|
name: "Noky s kuřecím masem a sýrovou omáčkou",
|
||||||
price: "145\xA0Kč",
|
price: "145\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "150g",
|
amount: "150g",
|
||||||
name: "Frankfurtská hovězí pečeně s jasmínovou rýží",
|
name: "Kuřecí stehno pečené na Moravance s feferony, bramborový knedlík",
|
||||||
price: "135\xA0Kč",
|
|
||||||
isSoup: false,
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
amount: "0,25l",
|
|
||||||
name: "Hovězí vývar s kapáním",
|
|
||||||
price: "35\xA0Kč",
|
|
||||||
isSoup: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "200g",
|
|
||||||
name: "Smažený karbanátek s bramborovou kaší",
|
|
||||||
price: "135\xA0Kč",
|
|
||||||
isSoup: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "150g",
|
|
||||||
name: "Vepřová plec na smetaně s kynutým knedlíkem",
|
|
||||||
price: "135\xA0Kč",
|
|
||||||
isSoup: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "150g",
|
|
||||||
name: "Trhané kachní maso se zeleninovým kuskusem",
|
|
||||||
price: "135\xA0Kč",
|
|
||||||
isSoup: false,
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
amount: "0,25l",
|
|
||||||
name: "Zelná polévka s klobásou",
|
|
||||||
price: "35\xA0Kč",
|
|
||||||
isSoup: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "150g",
|
|
||||||
name: "Hovězí na česneku s bramborovým knedlíkem",
|
|
||||||
price: "135\xA0Kč",
|
|
||||||
isSoup: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "250g",
|
|
||||||
name: "Přírodní holandský řízek s bramborovou kaší, rajčatový salát",
|
|
||||||
price: "135\xA0Kč",
|
|
||||||
isSoup: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "350g",
|
|
||||||
name: "Bagel s vinnou klobásou, cibulový konfit, kysané zelí, slanina a hořčicová mayo, hranolky, curry omáčka",
|
|
||||||
price: "135\xA0Kč",
|
price: "135\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7, 9]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -87,50 +39,118 @@ const MOCK_DATA = {
|
|||||||
name: "Kuřecí vývar s nudlemi",
|
name: "Kuřecí vývar s nudlemi",
|
||||||
price: "35\xA0Kč",
|
price: "35\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [1, 3, 7, 9]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "150g",
|
amount: "200g",
|
||||||
name: "Kovbojské fazole s klobásou a chlebem",
|
name: "Hovězí maso v rajské omáčce s kynutým knedlíkem",
|
||||||
price: "125\xA0Kč",
|
|
||||||
isSoup: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "150g",
|
|
||||||
name: "Kuřecí rarášci s vařeným bramborem",
|
|
||||||
price: "135\xA0Kč",
|
price: "135\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "150g",
|
amount: "150g",
|
||||||
name: "Hovězí pečeně na slanině s jasmínovou rýží",
|
name: "Krůtí roláda se sušenými rajčaty , mozzarellou a bramborovou kaší",
|
||||||
price: "135\xA0Kč",
|
price: "135\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 7]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "150g",
|
||||||
|
name: "Telecí játra na grilu, restované brambory, tatarská omáčka , polníčkový salát",
|
||||||
|
price: "135\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [3, 7]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
amount: "0,25l",
|
amount: "0,25l",
|
||||||
name: "Dršťková polévka",
|
name: "Zeleninová polévka",
|
||||||
price: "35\xA0Kč",
|
price: "35\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [3, 9]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "150g",
|
amount: "150g",
|
||||||
name: "Tortilla s kuřecím masem, čedarem, zeleninou a papričkami jalapeňos",
|
name: "Smažené rybí filé s vařeným bramborem, tatarka",
|
||||||
price: "135\xA0Kč",
|
price: "135\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "150g",
|
amount: "250g",
|
||||||
name: "Segedínský guláš s kynutým knedlíkem",
|
name: "Vepřové výpečky se špenátem, bramborový knedlík 1,3,7",
|
||||||
price: "135\xA0Kč",
|
price: "135\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "350g",
|
||||||
|
name: "Kuřecí řízek \" Ondráš \" , kysané zelí",
|
||||||
|
price: "135\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [3, 7]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
amount: "0,25l",
|
||||||
|
name: "Hovězí vývar s játrovými knedlíčky",
|
||||||
|
price: "35\xA0Kč",
|
||||||
|
isSoup: true,
|
||||||
|
allergens: [1, 3]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "150g",
|
amount: "150g",
|
||||||
name: "Filet z krůtích prsou, omáčka z modrého sýra, pečené brambory",
|
name: "Merguez klobáska, bílé fazole na kyselo, sázené vejce a vídeňská cibulka",
|
||||||
|
price: "125\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [1, 3]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "150g",
|
||||||
|
name: "Kuřecí steak s liškovou omáčkou a opečený brambor",
|
||||||
|
price: "135\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [1, 7]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "150g",
|
||||||
|
name: "Kaťák – vepřové kostky s feferonou, cibulí, kečupem ,česnekem, smažené krokety",
|
||||||
|
price: "135\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [3, 7]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
amount: "0,25l",
|
||||||
|
name: "Čočková polévka",
|
||||||
|
price: "35\xA0Kč",
|
||||||
|
isSoup: true,
|
||||||
|
allergens: [9, 12]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "150g",
|
||||||
|
name: "Ovocné knedlíky s tvarohem",
|
||||||
|
price: "135\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "150g",
|
||||||
|
name: "Smažený vepřový řízek s bramborovým salátem",
|
||||||
|
price: "135\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7, 9, 10]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "150g",
|
||||||
|
name: "Znojemský hovězí guláš s jasmínovou rýží",
|
||||||
price: "145\xA0Kč",
|
price: "145\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 9]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
@@ -270,161 +290,185 @@ const MOCK_DATA = {
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Uzený vývar s kapustou",
|
name: "Batátový krém s chilli a kokosovým mlékem",
|
||||||
price: "40\xA0Kč",
|
price: "40\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [1, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Čočka na kyselo, opečená klobása, okurka, chléb",
|
name: "Kuřecí stehno na paprice, knedlík",
|
||||||
price: "130\xA0Kč",
|
price: "130\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Smažená brokolice, brambory, tatarská omáčka",
|
name: "Těstoviny se sušenými rajčaty a cuketou, parmezán",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Uzený vepřový bůček, bramborové pyré",
|
name: "Quesadilla s trhaným vepřovým masem, salát coleslaw, hranolky",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Kuřecí medailonky v sýrové omáčce, hranolky",
|
name: "Smažený kuřecí řízek v sezamové strouhance, vařené brambory, wasabi majonéza",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Slepičí s nudlemi",
|
name: "Ovarová",
|
||||||
price: "40\xA0Kč",
|
price: "40\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [1]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Zvěřinový guláš, knedlík",
|
name: "Zapečené těstoviny s uzeným masem, okurka",
|
||||||
price: "130\xA0Kč",
|
price: "130\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Čínské nudle se zeleninou a vejcem",
|
name: "Cheddarové kuličky s jalapeños, máslové brambory, tatarská omáčka",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Jitrnice/jelito, brambory, zelný salát s křenem, hořčice",
|
name: "Steak z krkovice s miso omáčkou, jasmínová rýže",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 6, 11]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Vídeňská roštěná se smaženou cibulkou, jasmínová rýže",
|
name: "Kuřecí supreme s bramborovo-mrkvovým pyré, restovaná cuketa",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [7]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Dýňový krém se smetanou",
|
name: "Hovězí s hráškem a rýží",
|
||||||
price: "40\xA0Kč",
|
price: "40\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [9]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Kuřecí směs se zeleninou, rýže",
|
name: "Rizoto s kuřecím masem a zeleninou, okurka, sýr",
|
||||||
price: "130\xA0Kč",
|
price: "130\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [7, 9]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Tvarohové knedlíky s meruňkami, strouhaný tvaroh, máslo, cukr",
|
name: "Smažené rýžové nudle Pad thai s arašídy, zeleninou a vejcem",
|
||||||
|
price: "na\xA0váhu",
|
||||||
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 6, 8, 11]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Vykoštěné vepřové koleno s křenem a hořčicí, chléb",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Ovar, křen, hořčice, pečivo",
|
name: "Gordon bleu, hranolky, pikantní dip",
|
||||||
price: "na\xA0váhu",
|
|
||||||
isSoup: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
amount: "-",
|
|
||||||
name: "Telecí holandský řízek s uzeným sýrem, bramborové pyré",
|
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Zeleninová s jáhly",
|
name: "Dýňová",
|
||||||
price: "40\xA0Kč",
|
price: "40\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [1, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Rizoto s vepřovým masem, okurka",
|
name: "Uzená plec, křenová omáčka, knedlík",
|
||||||
price: "130\xA0Kč",
|
price: "130\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Tortellini s parmezánovou omáčkou",
|
name: "Palačinky s marmeládou přelité čokoládou, sypané cukrem",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Pečený prejt, brambory, zelný salát",
|
name: "Smažený holandský řízek s bramborovou kaší a nakládanou zeleninou",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Chobotnice na grilu, grilovaná zelenina, bylinková bageta",
|
name: "Kuřecí jatýrka na smetaně s čerstvou majoránkou, jasmínová rýže",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [7]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Fazolová s uzeninou",
|
name: "Hovězí vývar s játrovými knedlíčky",
|
||||||
price: "40\xA0Kč",
|
price: "40\xA0Kč",
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: [1, 3, 7, 9]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Krůtí perkelt, těstoviny",
|
name: "Kuřecí Kung-pao, jasmínová rýže",
|
||||||
price: "130\xA0Kč",
|
price: "130\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 5, 6]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Grilovaný hermelín, bulgurový salát se zeleninou",
|
name: "Sýrové tortelliny s pažitkovou omáčkou",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Zabijačkový guláš, karlovarský knedlík",
|
name: "Teriyaki losos burger s frisée salátem a citrusovou majonézou, bramborové lupínky",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 6, 7, 11]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: "-",
|
amount: "-",
|
||||||
name: "Vepřový plátek na žampionech, jasmínová rýže",
|
name: "Vepřové výpečky s červeným zelím, bramborové knedlíky se smaženou cibulkou",
|
||||||
price: "na\xA0váhu",
|
price: "na\xA0váhu",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
allergens: [1, 3, 7]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
@@ -473,6 +517,24 @@ const MOCK_DATA = {
|
|||||||
name: "Pečené vepřové koleno, křen, hořčice, chléb",
|
name: "Pečené vepřové koleno, křen, hořčice, chléb",
|
||||||
price: "320\xA0Kč",
|
price: "320\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Slovácké strapačky s uzenou slaninou, zelím, mletým pepřem & sekanou petrželkou",
|
||||||
|
price: "140\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Hovězí guláš s vejcem, zeleninovou garniturkou & žemlovými knedlíky",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Kuřecí roláda s kaštanovou nádivkou, demi-glace & smetanovou bramborovou kaší",
|
||||||
|
price: "150\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -487,6 +549,24 @@ const MOCK_DATA = {
|
|||||||
name: "Poutine (trhané vepřové, hranolky, sýr, čalamáda, pikantní omáčka)",
|
name: "Poutine (trhané vepřové, hranolky, sýr, čalamáda, pikantní omáčka)",
|
||||||
price: "190\xA0Kč",
|
price: "190\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Slovácké strapačky s uzenou slaninou, zelím, mletým pepřem & sekanou petrželkou",
|
||||||
|
price: "140\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Hovězí guláš s vejcem, zeleninovou garniturkou & žemlovými knedlíky",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Kuřecí roláda s kaštanovou nádivkou, demi-glace & smetanovou bramborovou kaší",
|
||||||
|
price: "150\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -501,6 +581,24 @@ const MOCK_DATA = {
|
|||||||
name: "Vepřový řízek z kotlety, domácí bramborový salát",
|
name: "Vepřový řízek z kotlety, domácí bramborový salát",
|
||||||
price: "170\xA0Kč",
|
price: "170\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Slovácké strapačky s uzenou slaninou, zelím, mletým pepřem & sekanou petrželkou",
|
||||||
|
price: "140\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Hovězí guláš s vejcem, zeleninovou garniturkou & žemlovými knedlíky",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Kuřecí roláda s kaštanovou nádivkou, demi-glace & smetanovou bramborovou kaší",
|
||||||
|
price: "150\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -515,6 +613,24 @@ const MOCK_DATA = {
|
|||||||
name: "Burger z Chuck rollu, hranolky, tatarská omáčka",
|
name: "Burger z Chuck rollu, hranolky, tatarská omáčka",
|
||||||
price: "200\xA0Kč",
|
price: "200\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Slovácké strapačky s uzenou slaninou, zelím, mletým pepřem & sekanou petrželkou",
|
||||||
|
price: "140\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Hovězí guláš s vejcem, zeleninovou garniturkou & žemlovými knedlíky",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Kuřecí roláda s kaštanovou nádivkou, demi-glace & smetanovou bramborovou kaší",
|
||||||
|
price: "150\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@@ -557,6 +673,18 @@ const MOCK_DATA = {
|
|||||||
name: "Hovězí po Burgundsku, bramborová kaše",
|
name: "Hovězí po Burgundsku, bramborová kaše",
|
||||||
price: "155\xA0Kč",
|
price: "155\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Špagety s kuřecím masem, špenátem a smetanou",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Medailonky z vepřové panenky s fazolkami se slaninou, šťouchané brambory",
|
||||||
|
price: "185\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -571,6 +699,18 @@ const MOCK_DATA = {
|
|||||||
name: "Kuřecí plátky na sušených rajčatech, bylinkách a česneku, bramborová kaše",
|
name: "Kuřecí plátky na sušených rajčatech, bylinkách a česneku, bramborová kaše",
|
||||||
price: "155\xA0Kč",
|
price: "155\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Špagety s kuřecím masem, špenátem a smetanou",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Medailonky z vepřové panenky s fazolkami se slaninou, šťouchané brambory",
|
||||||
|
price: "185\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -585,6 +725,18 @@ const MOCK_DATA = {
|
|||||||
name: "Rajská s plněnou paprikou, knedlík",
|
name: "Rajská s plněnou paprikou, knedlík",
|
||||||
price: "170\xA0Kč",
|
price: "170\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Špagety s kuřecím masem, špenátem a smetanou",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Medailonky z vepřové panenky s fazolkami se slaninou, šťouchané brambory",
|
||||||
|
price: "185\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -599,6 +751,18 @@ const MOCK_DATA = {
|
|||||||
name: "Ragú z trhané kachny, onsen vejce, soté ze špenátu a ředkvičky, bramborové pyré, lanýžová sůl, zelený olej",
|
name: "Ragú z trhané kachny, onsen vejce, soté ze špenátu a ředkvičky, bramborové pyré, lanýžová sůl, zelený olej",
|
||||||
price: "189\xA0Kč",
|
price: "189\xA0Kč",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Špagety s kuřecím masem, špenátem a smetanou",
|
||||||
|
price: "145\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
amount: "-",
|
||||||
|
name: "Medailonky z vepřové panenky s fazolkami se slaninou, šťouchané brambory",
|
||||||
|
price: "185\xA0Kč",
|
||||||
|
isSoup: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@@ -1358,7 +1522,7 @@ const MOCK_PIZZA_LIST = [
|
|||||||
* Funkce vrací mock datu ve formátu YYYY-MM-DD
|
* Funkce vrací mock datu ve formátu YYYY-MM-DD
|
||||||
*/
|
*/
|
||||||
export const getTodayMock = (): Date => {
|
export const getTodayMock = (): Date => {
|
||||||
return new Date('2025-01-10'); // pátek
|
return new Date('2025-01-08'); // středa
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getMenuSladovnickaMock = () => {
|
export const getMenuSladovnickaMock = () => {
|
||||||
@@ -1384,3 +1548,28 @@ export const getMenuSenkSerikovaMock = () => {
|
|||||||
export const getPizzaListMock = () => {
|
export const getPizzaListMock = () => {
|
||||||
return MOCK_PIZZA_LIST;
|
return MOCK_PIZZA_LIST;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const getStatsMock = (): WeeklyStats => {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
date: '24.02.',
|
||||||
|
locations: { ...Object.keys(LunchChoice).reduce((prev, cur) => ({ ...prev, [cur]: Math.floor(Math.random() * 10) }), {}) }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '25.02.',
|
||||||
|
locations: { ...Object.keys(LunchChoice).reduce((prev, cur) => ({ ...prev, [cur]: Math.floor(Math.random() * 10) }), {}) }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '26.02.',
|
||||||
|
locations: { ...Object.keys(LunchChoice).reduce((prev, cur) => ({ ...prev, [cur]: Math.floor(Math.random() * 10) }), {}) }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '27.02.',
|
||||||
|
locations: { ...Object.keys(LunchChoice).reduce((prev, cur) => ({ ...prev, [cur]: Math.floor(Math.random() * 10) }), {}) }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '28.02.',
|
||||||
|
locations: { ...Object.keys(LunchChoice).reduce((prev, cur) => ({ ...prev, [cur]: Math.floor(Math.random() * 10) }), {}) }
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -1,60 +1,14 @@
|
|||||||
/** Notifikace */
|
|
||||||
import {ClientData, Locations, NotififaceInput} from '../../types';
|
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import dotenv from 'dotenv';
|
import dotenv from 'dotenv';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { getToday } from "./service";
|
import { getClientData, getToday } from "./service";
|
||||||
import {formatDate, getUsersByLocation, getHumanTime} from "./utils";
|
import { getUsersByLocation, getHumanTime } from "./utils";
|
||||||
import getStorage from "./storage";
|
import { NotifikaceData, NotifikaceInput } from '../../types';
|
||||||
|
|
||||||
const storage = getStorage();
|
const ENVIRONMENT = process.env.NODE_ENV ?? 'production';
|
||||||
const ENVIRONMENT = process.env.NODE_ENV || 'production'
|
|
||||||
dotenv.config({ path: path.resolve(__dirname, `../.env.${ENVIRONMENT}`) });
|
dotenv.config({ path: path.resolve(__dirname, `../.env.${ENVIRONMENT}`) });
|
||||||
|
|
||||||
// const gotifyDataRaw = process.env.GOTIFY_SERVERS_AND_KEYS || "{}";
|
export const ntfyCall = async (data: NotifikaceInput) => {
|
||||||
// const gotifyData: GotifyServer[] = JSON.parse(gotifyDataRaw);
|
|
||||||
// export const gotifyCall = async (data: NotififaceInput, gotifyServers?: GotifyServer[]): Promise<any[]> => {
|
|
||||||
// if (!Array.isArray(gotifyServers)) {
|
|
||||||
// return []
|
|
||||||
// }
|
|
||||||
// const urls = gotifyServers.flatMap(gotifyServer =>
|
|
||||||
// gotifyServer.api_keys.map(apiKey => `${gotifyServer.server}/message?token=${apiKey}`));
|
|
||||||
//
|
|
||||||
// const dataPayload = {
|
|
||||||
// title: "Luncher",
|
|
||||||
// message: `${data.udalost} - spustil:${data.user}`,
|
|
||||||
// priority: 7,
|
|
||||||
// };
|
|
||||||
//
|
|
||||||
// const headers = { "Content-Type": "application/json" };
|
|
||||||
//
|
|
||||||
// const promises = urls.map(url =>
|
|
||||||
// axios.post(url, dataPayload, { headers }).then(response => {
|
|
||||||
// response.data = {
|
|
||||||
// success: true,
|
|
||||||
// message: "Notifikace doručena",
|
|
||||||
// };
|
|
||||||
// return response;
|
|
||||||
// }).catch(error => {
|
|
||||||
// if (axios.isAxiosError(error)) {
|
|
||||||
// const axiosError = error as AxiosError;
|
|
||||||
// if (axiosError.response) {
|
|
||||||
// axiosError.response.data = {
|
|
||||||
// success: false,
|
|
||||||
// message: "fail",
|
|
||||||
// };
|
|
||||||
// console.log(error)
|
|
||||||
// return axiosError.response;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // Handle unknown error without a response
|
|
||||||
// console.log(error, "unknown error");
|
|
||||||
// })
|
|
||||||
// );
|
|
||||||
// return promises;
|
|
||||||
// };
|
|
||||||
|
|
||||||
export const ntfyCall = async (data: NotififaceInput) => {
|
|
||||||
const url = process.env.NTFY_HOST
|
const url = process.env.NTFY_HOST
|
||||||
const username = process.env.NTFY_USERNAME;
|
const username = process.env.NTFY_USERNAME;
|
||||||
const password = process.env.NTFY_PASSWD;
|
const password = process.env.NTFY_PASSWD;
|
||||||
@@ -70,12 +24,11 @@ export const ntfyCall = async (data: NotififaceInput) => {
|
|||||||
console.log("NTFY_PASSWD není definován v env")
|
console.log("NTFY_PASSWD není definován v env")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const today = formatDate(getToday());
|
let clientData = await getClientData(getToday());
|
||||||
let clientData: ClientData = await storage.getData(today);
|
const userByCLocation = getUsersByLocation(clientData.choices, data.user)
|
||||||
const usersByLocation = getUsersByLocation(clientData.choices, data.user)
|
|
||||||
|
|
||||||
const token = Buffer.from(`${username}:${password}`, 'utf8').toString('base64');
|
const token = Buffer.from(`${username}:${password}`, 'utf8').toString('base64');
|
||||||
const promises = usersByLocation.map(async user => {
|
const promises = userByCLocation.map(async user => {
|
||||||
try {
|
try {
|
||||||
// Odstraníme mezery a diakritiku a převedeme na lowercase
|
// Odstraníme mezery a diakritiku a převedeme na lowercase
|
||||||
const topic = user.normalize('NFD').replace(' ', '').replace(/[\u0300-\u036f]/g, '').toLowerCase();
|
const topic = user.normalize('NFD').replace(' ', '').replace(/[\u0300-\u036f]/g, '').toLowerCase();
|
||||||
@@ -98,18 +51,12 @@ export const ntfyCall = async (data: NotififaceInput) => {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const teamsCall = async (data: NotififaceInput) => {
|
export const teamsCall = async (data: NotifikaceInput) => {
|
||||||
const url = process.env.TEAMS_WEBHOOK_URL;
|
const url = process.env.TEAMS_WEBHOOK_URL;
|
||||||
if (!url) {
|
|
||||||
console.log("TEAMS_WEBHOOK_URL není definován v env")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
const title = data.udalost;
|
const title = data.udalost;
|
||||||
// const today = formatDate(getToday());
|
let time = new Date();
|
||||||
// let clientData: ClientData = await storage.getData(today);
|
time.setTime(time.getTime() + 1000 * 60);
|
||||||
// const usersByLocation = getUsersByLocation(clientData.choices, data.user)
|
const message = 'Odcházíme v ' + getHumanTime(time) + ', ' + data.user;
|
||||||
let location = data.locationKey ? ` odcházíme do ${Locations[data.locationKey] ?? ''}` : ' jdeme na oběd';
|
|
||||||
const message = 'V ' + getHumanTime(getToday()) + location;
|
|
||||||
const card = {
|
const card = {
|
||||||
'@type': 'MessageCard',
|
'@type': 'MessageCard',
|
||||||
'@context': 'http://schema.org/extensions',
|
'@context': 'http://schema.org/extensions',
|
||||||
@@ -141,20 +88,26 @@ export const teamsCall = async (data: NotififaceInput) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Zavolá notifikace na všechny konfigurované způsoby notifikace, přetížení proměných na false pro jednotlivé způsoby je vypne*/
|
/** Zavolá notifikace na všechny konfigurované způsoby notifikace, přetížení proměných na false pro jednotlivé způsoby je vypne*/
|
||||||
export const callNotifikace = async (input: NotififaceInput) => {
|
export const callNotifikace = async ({ input, teams = true, gotify = false, ntfy = true }: NotifikaceData) => {
|
||||||
const notifications = [];
|
const notifications = [];
|
||||||
|
|
||||||
const ntfyPromises = await ntfyCall(input);
|
if (ntfy) {
|
||||||
if (ntfyPromises) {
|
const ntfyPromises = await ntfyCall(input);
|
||||||
notifications.push(...ntfyPromises);
|
if (ntfyPromises) {
|
||||||
|
notifications.push(...ntfyPromises);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const teamsPromises = await teamsCall(input);
|
if (teams) {
|
||||||
if (teamsPromises) {
|
const teamsPromises = await teamsCall(input);
|
||||||
notifications.push(teamsPromises);
|
if (teamsPromises) {
|
||||||
|
notifications.push(teamsPromises);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// gotify bych řekl, že už je deprecated
|
// gotify bych řekl, že už je deprecated
|
||||||
// const gotifyPromises = await gotifyCall(input, gotifyData);
|
// if (gotify) {
|
||||||
// notifications.push(...gotifyPromises);
|
// const gotifyPromises = await gotifyCall(input, gotifyData);
|
||||||
|
// notifications.push(...gotifyPromises);
|
||||||
|
// }
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const results = await Promise.all(notifications);
|
const results = await Promise.all(notifications);
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import { formatDate } from "./utils";
|
import { formatDate } from "./utils";
|
||||||
import { callNotifikace } from "./notifikace";
|
import { callNotifikace } from "./notifikace";
|
||||||
import { generateQr } from "./qr";
|
import { generateQr } from "./qr";
|
||||||
import { ClientData, PizzaDayState, UdalostEnum, Pizza, PizzaSize, Order, PizzaOrder, DayData } from "../../types";
|
|
||||||
import getStorage from "./storage";
|
import getStorage from "./storage";
|
||||||
import { downloadPizzy } from "./chefie";
|
import { downloadPizzy } from "./chefie";
|
||||||
import { getToday, initIfNeeded } from "./service";
|
import { getClientData, getToday, initIfNeeded } from "./service";
|
||||||
|
import { Pizza, ClientData, PizzaDayState, PizzaSize, PizzaOrder, PizzaVariant, UdalostEnum } from "../../types/gen/types.gen";
|
||||||
|
|
||||||
const storage = getStorage();
|
const storage = getStorage();
|
||||||
|
|
||||||
@@ -14,8 +14,7 @@ const storage = getStorage();
|
|||||||
*/
|
*/
|
||||||
export async function getPizzaList(): Promise<Pizza[] | undefined> {
|
export async function getPizzaList(): Promise<Pizza[] | undefined> {
|
||||||
await initIfNeeded();
|
await initIfNeeded();
|
||||||
const today = formatDate(getToday());
|
let clientData = await getClientData(getToday());
|
||||||
let clientData: DayData = await storage.getData(today);
|
|
||||||
if (!clientData.pizzaList) {
|
if (!clientData.pizzaList) {
|
||||||
const mock = process.env.MOCK_DATA === 'true';
|
const mock = process.env.MOCK_DATA === 'true';
|
||||||
clientData = await savePizzaList(await downloadPizzy(mock));
|
clientData = await savePizzaList(await downloadPizzy(mock));
|
||||||
@@ -31,9 +30,9 @@ export async function getPizzaList(): Promise<Pizza[] | undefined> {
|
|||||||
export async function savePizzaList(pizzaList: Pizza[]): Promise<ClientData> {
|
export async function savePizzaList(pizzaList: Pizza[]): Promise<ClientData> {
|
||||||
await initIfNeeded();
|
await initIfNeeded();
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
const clientData = await getClientData(getToday());
|
||||||
clientData.pizzaList = pizzaList;
|
clientData.pizzaList = pizzaList;
|
||||||
clientData.pizzaListLastUpdate = new Date();
|
clientData.pizzaListLastUpdate = formatDate(new Date());
|
||||||
await storage.setData(today, clientData);
|
await storage.setData(today, clientData);
|
||||||
return clientData;
|
return clientData;
|
||||||
}
|
}
|
||||||
@@ -43,16 +42,16 @@ export async function savePizzaList(pizzaList: Pizza[]): Promise<ClientData> {
|
|||||||
*/
|
*/
|
||||||
export async function createPizzaDay(creator: string): Promise<ClientData> {
|
export async function createPizzaDay(creator: string): Promise<ClientData> {
|
||||||
await initIfNeeded();
|
await initIfNeeded();
|
||||||
const today = formatDate(getToday());
|
const clientData = await getClientData(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
|
||||||
if (clientData.pizzaDay) {
|
if (clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den již existuje");
|
throw Error("Pizza day pro dnešní den již existuje");
|
||||||
}
|
}
|
||||||
// TODO berka rychlooprava, vyřešit lépe - stahovat jednou, na jediném místě!
|
// TODO berka rychlooprava, vyřešit lépe - stahovat jednou, na jediném místě!
|
||||||
const pizzaList = await getPizzaList();
|
const pizzaList = await getPizzaList();
|
||||||
const data: ClientData = { pizzaDay: { state: PizzaDayState.CREATED, creator, orders: [] }, pizzaList, ...clientData };
|
const data: ClientData = { pizzaDay: { state: PizzaDayState.CREATED, creator, orders: [] }, pizzaList, ...clientData };
|
||||||
|
const today = formatDate(getToday());
|
||||||
await storage.setData(today, data);
|
await storage.setData(today, data);
|
||||||
callNotifikace({ udalost: UdalostEnum.ZAHAJENA_PIZZA, user: creator })
|
callNotifikace({ input: { udalost: UdalostEnum.ZAHAJENA_PIZZA, user: creator } })
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,8 +59,7 @@ export async function createPizzaDay(creator: string): Promise<ClientData> {
|
|||||||
* Smaže pizza day pro aktuální den.
|
* Smaže pizza day pro aktuální den.
|
||||||
*/
|
*/
|
||||||
export async function deletePizzaDay(login: string): Promise<ClientData> {
|
export async function deletePizzaDay(login: string): Promise<ClientData> {
|
||||||
const today = formatDate(getToday());
|
const clientData = await getClientData(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
@@ -69,6 +67,7 @@ export async function deletePizzaDay(login: string): Promise<ClientData> {
|
|||||||
throw Error("Login uživatele se neshoduje se zakladatelem Pizza Day");
|
throw Error("Login uživatele se neshoduje se zakladatelem Pizza Day");
|
||||||
}
|
}
|
||||||
delete clientData.pizzaDay;
|
delete clientData.pizzaDay;
|
||||||
|
const today = formatDate(getToday());
|
||||||
await storage.setData(today, clientData);
|
await storage.setData(today, clientData);
|
||||||
return clientData;
|
return clientData;
|
||||||
}
|
}
|
||||||
@@ -82,28 +81,31 @@ export async function deletePizzaDay(login: string): Promise<ClientData> {
|
|||||||
*/
|
*/
|
||||||
export async function addPizzaOrder(login: string, pizza: Pizza, size: PizzaSize) {
|
export async function addPizzaOrder(login: string, pizza: Pizza, size: PizzaSize) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
const clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
if (clientData.pizzaDay.state !== PizzaDayState.CREATED) {
|
if (clientData.pizzaDay.state !== PizzaDayState.CREATED) {
|
||||||
throw Error("Pizza day není ve stavu " + PizzaDayState.CREATED);
|
throw Error("Pizza day není ve stavu " + PizzaDayState.CREATED);
|
||||||
}
|
}
|
||||||
let order: Order | undefined = clientData.pizzaDay.orders.find(o => o.customer === login);
|
let order: PizzaOrder | undefined = clientData.pizzaDay?.orders?.find(o => o.customer === login);
|
||||||
if (!order) {
|
if (!order) {
|
||||||
order = {
|
order = {
|
||||||
customer: login,
|
customer: login,
|
||||||
pizzaList: [],
|
pizzaList: [],
|
||||||
totalPrice: 0,
|
totalPrice: 0,
|
||||||
|
hasQr: false,
|
||||||
}
|
}
|
||||||
|
clientData.pizzaDay.orders ??= [];
|
||||||
clientData.pizzaDay.orders.push(order);
|
clientData.pizzaDay.orders.push(order);
|
||||||
}
|
}
|
||||||
const pizzaOrder: PizzaOrder = {
|
const pizzaOrder: PizzaVariant = {
|
||||||
varId: size.varId,
|
varId: size.varId,
|
||||||
name: pizza.name,
|
name: pizza.name,
|
||||||
size: size.size,
|
size: size.size,
|
||||||
price: size.price,
|
price: size.price,
|
||||||
}
|
}
|
||||||
|
order.pizzaList ??= [];
|
||||||
order.pizzaList.push(pizzaOrder);
|
order.pizzaList.push(pizzaOrder);
|
||||||
order.totalPrice += pizzaOrder.price;
|
order.totalPrice += pizzaOrder.price;
|
||||||
await storage.setData(today, clientData);
|
await storage.setData(today, clientData);
|
||||||
@@ -116,26 +118,26 @@ export async function addPizzaOrder(login: string, pizza: Pizza, size: PizzaSize
|
|||||||
* @param login login uživatele
|
* @param login login uživatele
|
||||||
* @param pizzaOrder objednávka pizzy
|
* @param pizzaOrder objednávka pizzy
|
||||||
*/
|
*/
|
||||||
export async function removePizzaOrder(login: string, pizzaOrder: PizzaOrder) {
|
export async function removePizzaOrder(login: string, pizzaOrder: PizzaVariant) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
const clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
const orderIndex = clientData.pizzaDay.orders.findIndex(o => o.customer === login);
|
const orderIndex = clientData.pizzaDay.orders!.findIndex(o => o.customer === login);
|
||||||
if (orderIndex < 0) {
|
if (orderIndex < 0) {
|
||||||
throw Error("Nebyly nalezeny žádné objednávky pro uživatele " + login);
|
throw Error("Nebyly nalezeny žádné objednávky pro uživatele " + login);
|
||||||
}
|
}
|
||||||
const order = clientData.pizzaDay.orders[orderIndex];
|
const order = clientData.pizzaDay.orders![orderIndex];
|
||||||
const index = order.pizzaList.findIndex(o => o.name === pizzaOrder.name && o.size === pizzaOrder.size);
|
const index = order.pizzaList!.findIndex(o => o.name === pizzaOrder.name && o.size === pizzaOrder.size);
|
||||||
if (index < 0) {
|
if (index < 0) {
|
||||||
throw Error("Objednávka s danými parametry nebyla nalezena");
|
throw Error("Objednávka s danými parametry nebyla nalezena");
|
||||||
}
|
}
|
||||||
const price = order.pizzaList[index].price;
|
const price = order.pizzaList![index].price;
|
||||||
order.pizzaList.splice(index, 1);
|
order.pizzaList!.splice(index, 1);
|
||||||
order.totalPrice -= price;
|
order.totalPrice -= price;
|
||||||
if (order.pizzaList.length == 0) {
|
if (order.pizzaList!.length == 0) {
|
||||||
clientData.pizzaDay.orders.splice(orderIndex, 1);
|
clientData.pizzaDay.orders!.splice(orderIndex, 1);
|
||||||
}
|
}
|
||||||
await storage.setData(today, clientData);
|
await storage.setData(today, clientData);
|
||||||
return clientData;
|
return clientData;
|
||||||
@@ -149,7 +151,7 @@ export async function removePizzaOrder(login: string, pizzaOrder: PizzaOrder) {
|
|||||||
*/
|
*/
|
||||||
export async function lockPizzaDay(login: string) {
|
export async function lockPizzaDay(login: string) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
const clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
@@ -172,7 +174,7 @@ export async function lockPizzaDay(login: string) {
|
|||||||
*/
|
*/
|
||||||
export async function unlockPizzaDay(login: string) {
|
export async function unlockPizzaDay(login: string) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
const clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
@@ -195,7 +197,7 @@ export async function unlockPizzaDay(login: string) {
|
|||||||
*/
|
*/
|
||||||
export async function finishPizzaOrder(login: string) {
|
export async function finishPizzaOrder(login: string) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
const clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
@@ -207,7 +209,7 @@ export async function finishPizzaOrder(login: string) {
|
|||||||
}
|
}
|
||||||
clientData.pizzaDay.state = PizzaDayState.ORDERED;
|
clientData.pizzaDay.state = PizzaDayState.ORDERED;
|
||||||
await storage.setData(today, clientData);
|
await storage.setData(today, clientData);
|
||||||
callNotifikace({ udalost: UdalostEnum.OBJEDNANA_PIZZA, user: clientData?.pizzaDay?.creator })
|
callNotifikace({ input: { udalost: UdalostEnum.OBJEDNANA_PIZZA, user: clientData?.pizzaDay?.creator } })
|
||||||
return clientData;
|
return clientData;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -220,7 +222,7 @@ export async function finishPizzaOrder(login: string) {
|
|||||||
*/
|
*/
|
||||||
export async function finishPizzaDelivery(login: string, bankAccount?: string, bankAccountHolder?: string) {
|
export async function finishPizzaDelivery(login: string, bankAccount?: string, bankAccountHolder?: string) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
const clientData: DayData = await storage.getData(today);
|
const clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
@@ -234,9 +236,9 @@ export async function finishPizzaDelivery(login: string, bankAccount?: string, b
|
|||||||
|
|
||||||
// Vygenerujeme QR kód, pokud k tomu máme data
|
// Vygenerujeme QR kód, pokud k tomu máme data
|
||||||
if (bankAccount?.length && bankAccountHolder?.length) {
|
if (bankAccount?.length && bankAccountHolder?.length) {
|
||||||
for (const order of clientData.pizzaDay.orders) {
|
for (const order of clientData.pizzaDay.orders!) {
|
||||||
if (order.customer !== login) { // zatím platí creator = objednávající, a pro toho nemá QR kód smysl
|
if (order.customer !== login) { // zatím platí creator = objednávající, a pro toho nemá QR kód smysl
|
||||||
let message = order.pizzaList.map(pizza => `Pizza ${pizza.name} (${pizza.size})`).join(', ');
|
let message = order.pizzaList!.map(pizza => `Pizza ${pizza.name} (${pizza.size})`).join(', ');
|
||||||
await generateQr(order.customer, bankAccount, bankAccountHolder, order.totalPrice, message);
|
await generateQr(order.customer, bankAccount, bankAccountHolder, order.totalPrice, message);
|
||||||
order.hasQr = true;
|
order.hasQr = true;
|
||||||
}
|
}
|
||||||
@@ -255,15 +257,15 @@ export async function finishPizzaDelivery(login: string, bankAccount?: string, b
|
|||||||
*/
|
*/
|
||||||
export async function updatePizzaDayNote(login: string, note?: string) {
|
export async function updatePizzaDayNote(login: string, note?: string) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
let clientData: DayData = await storage.getData(today);
|
let clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
if (clientData.pizzaDay.state !== PizzaDayState.CREATED) {
|
if (clientData.pizzaDay.state !== PizzaDayState.CREATED) {
|
||||||
throw Error("Pizza day není ve stavu " + PizzaDayState.CREATED);
|
throw Error("Pizza day není ve stavu " + PizzaDayState.CREATED);
|
||||||
}
|
}
|
||||||
const myOrder = clientData.pizzaDay.orders.find(o => o.customer === login);
|
const myOrder = clientData.pizzaDay.orders!.find(o => o.customer === login);
|
||||||
if (!myOrder || !myOrder.pizzaList.length) {
|
if (!myOrder?.pizzaList?.length) {
|
||||||
throw Error("Pizza day neobsahuje žádné objednávky uživatele " + login);
|
throw Error("Pizza day neobsahuje žádné objednávky uživatele " + login);
|
||||||
}
|
}
|
||||||
myOrder.note = note;
|
myOrder.note = note;
|
||||||
@@ -282,7 +284,7 @@ export async function updatePizzaDayNote(login: string, note?: string) {
|
|||||||
*/
|
*/
|
||||||
export async function updatePizzaFee(login: string, targetLogin: string, text?: string, price?: number) {
|
export async function updatePizzaFee(login: string, targetLogin: string, text?: string, price?: number) {
|
||||||
const today = formatDate(getToday());
|
const today = formatDate(getToday());
|
||||||
let clientData: DayData = await storage.getData(today);
|
let clientData = await getClientData(getToday());
|
||||||
if (!clientData.pizzaDay) {
|
if (!clientData.pizzaDay) {
|
||||||
throw Error("Pizza day pro dnešní den neexistuje");
|
throw Error("Pizza day pro dnešní den neexistuje");
|
||||||
}
|
}
|
||||||
@@ -292,8 +294,8 @@ export async function updatePizzaFee(login: string, targetLogin: string, text?:
|
|||||||
if (clientData.pizzaDay.creator !== login) {
|
if (clientData.pizzaDay.creator !== login) {
|
||||||
throw Error("Příplatky může měnit pouze zakladatel Pizza day");
|
throw Error("Příplatky může měnit pouze zakladatel Pizza day");
|
||||||
}
|
}
|
||||||
const targetOrder = clientData.pizzaDay.orders.find(o => o.customer === targetLogin);
|
const targetOrder = clientData.pizzaDay.orders!.find(o => o.customer === targetLogin);
|
||||||
if (!targetOrder || !targetOrder.pizzaList.length) {
|
if (!targetOrder?.pizzaList?.length) {
|
||||||
throw Error(`Pizza day neobsahuje žádné objednávky uživatele ${targetLogin}`);
|
throw Error(`Pizza day neobsahuje žádné objednávky uživatele ${targetLogin}`);
|
||||||
}
|
}
|
||||||
if (!price) {
|
if (!price) {
|
||||||
@@ -302,7 +304,7 @@ export async function updatePizzaFee(login: string, targetLogin: string, text?:
|
|||||||
targetOrder.fee = { text, price };
|
targetOrder.fee = { text, price };
|
||||||
}
|
}
|
||||||
// Přepočet ceny
|
// Přepočet ceny
|
||||||
targetOrder.totalPrice = targetOrder.pizzaList.reduce((price, pizzaOrder) => price + pizzaOrder.price, 0) + (targetOrder.fee?.price || 0);
|
targetOrder.totalPrice = targetOrder.pizzaList.reduce((price, pizzaOrder) => price + pizzaOrder.price, 0) + (targetOrder.fee?.price ?? 0);
|
||||||
await storage.setData(today, clientData);
|
await storage.setData(today, clientData);
|
||||||
return clientData;
|
return clientData;
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { load } from 'cheerio';
|
import { load } from 'cheerio';
|
||||||
import { Food } from "../../types";
|
import { getMenuSladovnickaMock, getMenuTechTowerMock, getMenuUMotlikuMock, getMenuZastavkaUmichalaMock, getMenuSenkSerikovaMock } from "./mock";
|
||||||
import {getMenuSladovnickaMock, getMenuTechTowerMock, getMenuUMotlikuMock, getMenuZastavkaUmichalaMock, getMenuSenkSerikovaMock} from "./mock";
|
import { formatDate } from "./utils";
|
||||||
import {formatDate} from "./utils";
|
import { Food } from "../../types/gen/types.gen";
|
||||||
|
|
||||||
// Fráze v názvech jídel, které naznačují že se jedná o polévku
|
// Fráze v názvech jídel, které naznačují že se jedná o polévku
|
||||||
const SOUP_NAMES = [
|
const SOUP_NAMES = [
|
||||||
@@ -23,7 +23,7 @@ const SOUP_NAMES = [
|
|||||||
const DAYS_IN_WEEK = ['pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota', 'neděle'];
|
const DAYS_IN_WEEK = ['pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota', 'neděle'];
|
||||||
|
|
||||||
// URL na týdenní menu jednotlivých restaurací
|
// URL na týdenní menu jednotlivých restaurací
|
||||||
const SLADOVNICKA_URL = 'https://sladovnicka.unasplzenchutna.cz/cz/denni-nabidka';
|
const SLADOVNICKA_URL = 'https://sladovnicka.unasplzenchutna.cz/cz/#denni-nabidka';
|
||||||
const U_MOTLIKU_URL = 'https://www.umotliku.cz/menu';
|
const U_MOTLIKU_URL = 'https://www.umotliku.cz/menu';
|
||||||
const TECHTOWER_URL = 'https://www.equifarm.cz/restaurace-techtower';
|
const TECHTOWER_URL = 'https://www.equifarm.cz/restaurace-techtower';
|
||||||
const ZASTAVKAUMICHALA_URL = 'https://www.zastavkaumichala.cz';
|
const ZASTAVKAUMICHALA_URL = 'https://www.zastavkaumichala.cz';
|
||||||
@@ -53,6 +53,28 @@ const sanitizeText = (text: string): string => {
|
|||||||
return text.replace('\t', '').replace(' , ', ', ').trim();
|
return text.replace('\t', '').replace(' , ', ', ').trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parsuje čísla alergenů z názvu jídla a vrací vyčištěný název spolu s polem alergenů.
|
||||||
|
* Alergeny jsou očekávány na konci názvu ve formátu číslic oddělených čárkami.
|
||||||
|
*
|
||||||
|
* @param name původní název jídla
|
||||||
|
* @returns objekt obsahující vyčištěný název a pole alergenů
|
||||||
|
*/
|
||||||
|
const parseAllergens = (name: string): { cleanName: string, allergens: number[] } => {
|
||||||
|
// Regex pro nalezení čísel na konci řetězce oddělených čárkami a případnými mezerami
|
||||||
|
const regex = /\s+(\d+(?:\s*,\s*\d+)*)\s*$/;
|
||||||
|
const match = regex.exec(name);
|
||||||
|
|
||||||
|
if (match) {
|
||||||
|
const allergenString = match[1];
|
||||||
|
const allergens = allergenString.split(',').map(num => Number.parseInt(num.trim(), 10)).filter(num => !Number.isNaN(num));
|
||||||
|
const cleanName = name.replace(regex, '').trim();
|
||||||
|
return { cleanName, allergens };
|
||||||
|
}
|
||||||
|
|
||||||
|
return { cleanName: name, allergens: [] };
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stáhne a vrátí aktuální HTML z dané URL.
|
* Stáhne a vrátí aktuální HTML z dané URL.
|
||||||
*
|
*
|
||||||
@@ -78,84 +100,97 @@ export const getMenuSladovnicka = async (firstDayOfWeek: Date, mock: boolean = f
|
|||||||
const html = await getHtml(SLADOVNICKA_URL);
|
const html = await getHtml(SLADOVNICKA_URL);
|
||||||
const $ = load(html);
|
const $ = load(html);
|
||||||
|
|
||||||
const list = $('ul.tab-links').children();
|
// Nejdříve zjistíme, které dny jsou k dispozici z tab elementů
|
||||||
|
const tabElements = $('#daily-menu-tab-list').children('button[id^="daily-menu-tab-"]');
|
||||||
|
const availableDays: { [dayIndex: number]: number } = {}; // mapování dayIndex -> contentIndex
|
||||||
|
|
||||||
|
tabElements.each((contentIndex, tabElement) => {
|
||||||
|
const dayText = $(tabElement).find('.daily-menu-tab__day').text().toLowerCase();
|
||||||
|
const dayIndex = DAYS_IN_WEEK.indexOf(dayText);
|
||||||
|
if (dayIndex !== -1 && dayIndex < 5) { // pouze pracovní dny (0-4)
|
||||||
|
availableDays[dayIndex] = contentIndex;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const menuContentElements = $('#daily-menu-content-list').children('[id^="daily-menu-content-"]');
|
||||||
|
|
||||||
const result: Food[][] = [];
|
const result: Food[][] = [];
|
||||||
|
|
||||||
|
// Inicializujeme všechny pracovní dny (0-4) prázdnými poli
|
||||||
for (let dayIndex = 0; dayIndex < 5; dayIndex++) {
|
for (let dayIndex = 0; dayIndex < 5; dayIndex++) {
|
||||||
const currentDate = new Date(firstDayOfWeek);
|
result[dayIndex] = [];
|
||||||
currentDate.setDate(firstDayOfWeek.getDate() + dayIndex);
|
}
|
||||||
const searchedDayText = `${currentDate.getDate()}.${currentDate.getMonth() + 1}.${capitalize(DAYS_IN_WEEK[dayIndex])}`;
|
|
||||||
// Najdeme index pro vstupní datum (např. při svátcích bude posunutý)
|
// Projdeme pouze dostupné dny
|
||||||
// TODO validovat, že vstupní datum je v aktuálním týdnu
|
for (const [dayIndex, contentIndex] of Object.entries(availableDays)) {
|
||||||
// TODO tenhle způsob je zbytečně komplikovaný - stačilo by hledat rovnou v div.tab-content, protože každý den tam má datum taky (akorát je print-only)
|
const dayIndexNum = Number.parseInt(dayIndex);
|
||||||
let index = undefined;
|
const contentIndexNum = contentIndex;
|
||||||
list.each((i, dayRow) => {
|
|
||||||
const rowText = $(dayRow).first().text().trim();
|
if (contentIndexNum >= menuContentElements.length) {
|
||||||
if (rowText === searchedDayText) {
|
continue; // Přeskočíme, pokud content element neexistuje
|
||||||
index = i;
|
}
|
||||||
return;
|
|
||||||
}
|
const dayChildren = $(menuContentElements[contentIndexNum]).children();
|
||||||
})
|
|
||||||
if (index === undefined) {
|
// Ověříme, že má element očekávanou strukturu
|
||||||
// Pravděpodobně svátek, nebo je zavřeno
|
if (dayChildren.length < 2) {
|
||||||
result[dayIndex] = [{
|
console.warn(`Neočekávaný počet children v menu Sladovnické pro den ${dayIndexNum}: ${dayChildren.length}, očekávány alespoň 2 (polévka a hlavní jídlo)`);
|
||||||
amount: undefined,
|
|
||||||
name: "Pro daný den nebyla nalezena denní nabídka",
|
|
||||||
price: "",
|
|
||||||
isSoup: false,
|
|
||||||
}];
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dle dohledaného indexu najdeme správný tabpanel
|
// Parsování polévky
|
||||||
const rows = $('div.tab-content').children();
|
const soupElement = dayChildren.get(0);
|
||||||
if (index >= rows.length) {
|
const soupTable = $(soupElement).find('table tbody tr');
|
||||||
throw Error("V HTML nebyl nalezen řádek menu pro index " + index);
|
const soupCells = soupTable.children('td');
|
||||||
}
|
|
||||||
const tabPanel = $(rows.get(index));
|
|
||||||
|
|
||||||
// Opětovná validace, že daný tabpanel je pro vstupní datum
|
|
||||||
const headers = tabPanel.find('h2');
|
|
||||||
if (headers.length !== 3) {
|
|
||||||
throw Error("Neočekávaný počet elementů h2 v menu pro datum " + searchedDayText + ", očekávány 3, ale nalezeno bylo " + headers.length);
|
|
||||||
}
|
|
||||||
const dayText = $(headers.get(0)).text().trim();
|
|
||||||
if (dayText !== searchedDayText) {
|
|
||||||
throw Error("Neočekávaný datum na řádce nalezeného dne: '" + dayText + "', ale očekáváno bylo '" + searchedDayText + "'");
|
|
||||||
}
|
|
||||||
|
|
||||||
// V tabpanelu očekáváme dvě tabulky - pro polévku a pro hlavní jídlo
|
|
||||||
const tables = tabPanel.find('table');
|
|
||||||
if (tables.length !== 2) {
|
|
||||||
throw Error("Neočekávaný počet tabulek na řádce nalezeného dne: " + tables.length + ", ale očekávány byly 2");
|
|
||||||
}
|
|
||||||
const currentDayFood: Food[] = [];
|
|
||||||
// Polévka - div -> table -> tbody -> tr -> 3x td
|
|
||||||
const soupCells = $(tables.get(0)).children().first().children().first().children();
|
|
||||||
if (soupCells.length !== 3) {
|
if (soupCells.length !== 3) {
|
||||||
throw Error("Neočekávaný počet buněk v tabulce polévky: " + soupCells.length + ", ale očekávány byly 3");
|
console.warn(`Neočekávaný počet buněk v tabulce polévky pro den ${dayIndexNum}: ${soupCells.length}, ale očekávány byly 3`);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const soupAmount = sanitizeText($(soupCells.get(0)).text());
|
||||||
|
const soupNameRaw = sanitizeText($(soupCells.get(1)).text());
|
||||||
|
const soupPrice = sanitizeText($(soupCells.get(2)).text().replace(' ', '\xA0'));
|
||||||
|
const soupParsed = parseAllergens(soupNameRaw);
|
||||||
|
|
||||||
|
// Parsování hlavních jídel
|
||||||
|
const mainCourseElement = dayChildren.get(1);
|
||||||
|
const mainCourseTable = $(mainCourseElement).find('table tbody');
|
||||||
|
const mainCourseRows = mainCourseTable.children('tr');
|
||||||
|
|
||||||
|
const currentDayFood: Food[] = [];
|
||||||
|
|
||||||
|
// Přidáme polévku do seznamu jídel
|
||||||
currentDayFood.push({
|
currentDayFood.push({
|
||||||
amount: sanitizeText($(soupCells.get(0)).text()),
|
amount: soupAmount,
|
||||||
name: sanitizeText($(soupCells.get(1)).text()),
|
name: soupParsed.cleanName,
|
||||||
price: sanitizeText($(soupCells.get(2)).text().replace(' ', '\xA0')),
|
price: soupPrice,
|
||||||
isSoup: true,
|
isSoup: true,
|
||||||
|
allergens: soupParsed.allergens.length > 0 ? soupParsed.allergens : undefined,
|
||||||
});
|
});
|
||||||
// Hlavní jídla - div -> table -> tbody -> 3x tr
|
|
||||||
const mainCourseRows = $(tables.get(1)).children().first().children();
|
// Projdeme všechny řádky hlavních jídel
|
||||||
mainCourseRows.each((i, foodRow) => {
|
mainCourseRows.each((i, row) => {
|
||||||
const foodCells = $(foodRow).children();
|
const cells = $(row).children('td');
|
||||||
if (foodCells.length !== 3) {
|
const amount = sanitizeText($(cells.get(0)).text());
|
||||||
throw Error("Neočekávaný počet buněk v řádku jídla: " + foodCells.length + ", ale očekávány byly 3");
|
const nameRaw = sanitizeText($(cells.get(1)).text());
|
||||||
|
const price = sanitizeText($(cells.get(2)).text().replace(' ', '\xA0'));
|
||||||
|
const parsed = parseAllergens(nameRaw);
|
||||||
|
|
||||||
|
// Přeskočíme prázdné řádky (první řádek může být prázdný)
|
||||||
|
if (parsed.cleanName.trim().length > 0) {
|
||||||
|
currentDayFood.push({
|
||||||
|
amount,
|
||||||
|
name: parsed.cleanName,
|
||||||
|
price,
|
||||||
|
isSoup: false,
|
||||||
|
allergens: parsed.allergens.length > 0 ? parsed.allergens : undefined,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
currentDayFood.push({
|
});
|
||||||
amount: sanitizeText($(foodCells.get(0)).text()),
|
|
||||||
name: sanitizeText($(foodCells.get(1)).text()),
|
result[dayIndexNum] = currentDayFood;
|
||||||
price: sanitizeText($(foodCells.get(2)).text().replace(' ', '\xA0')),
|
|
||||||
isSoup: false,
|
|
||||||
});
|
|
||||||
})
|
|
||||||
result[dayIndex] = currentDayFood;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -177,7 +212,7 @@ export const getMenuUMotliku = async (firstDayOfWeek: Date, mock: boolean = fals
|
|||||||
// Najdeme první tabulku, nad kterou je v H3 datum začínající co nejdřívějším dnem v aktuálním týdnu
|
// Najdeme první tabulku, nad kterou je v H3 datum začínající co nejdřívějším dnem v aktuálním týdnu
|
||||||
const tables = $('table.table.table-hover.Xtable-striped');
|
const tables = $('table.table.table-hover.Xtable-striped');
|
||||||
let usedTable;
|
let usedTable;
|
||||||
let usedDate = new Date(firstDayOfWeek.getTime());
|
let usedDate = new Date(firstDayOfWeek);
|
||||||
for (let i = 0; i < 4; i++) {
|
for (let i = 0; i < 4; i++) {
|
||||||
const dayOfWeekString = `${usedDate.getDate()}.${usedDate.getMonth() + 1}.`;
|
const dayOfWeekString = `${usedDate.getDate()}.${usedDate.getMonth() + 1}.`;
|
||||||
for (const tableNode of tables) {
|
for (const tableNode of tables) {
|
||||||
@@ -197,7 +232,7 @@ export const getMenuUMotliku = async (firstDayOfWeek: Date, mock: boolean = fals
|
|||||||
|
|
||||||
if (usedTable == null) {
|
if (usedTable == null) {
|
||||||
const firstDayOfWeekString = `${firstDayOfWeek.getDate()}.${firstDayOfWeek.getMonth() + 1}.`;
|
const firstDayOfWeekString = `${firstDayOfWeek.getDate()}.${firstDayOfWeek.getMonth() + 1}.`;
|
||||||
throw Error(`Nepodařilo se najít tabulku pro týden začínající ${firstDayOfWeekString}`);
|
throw new Error(`Nepodařilo se najít tabulku pro týden začínající ${firstDayOfWeekString}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
const body = usedTable.children().first();
|
const body = usedTable.children().first();
|
||||||
@@ -230,11 +265,11 @@ export const getMenuUMotliku = async (firstDayOfWeek: Date, mock: boolean = fals
|
|||||||
} else if (foodType === 'Hlavní jídlo') {
|
} else if (foodType === 'Hlavní jídlo') {
|
||||||
isSoup = false;
|
isSoup = false;
|
||||||
} else {
|
} else {
|
||||||
throw Error("Neočekáváný typ jídla: " + foodType);
|
throw new Error("Neočekáváný typ jídla: " + foodType);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (children.length !== 3) {
|
if (children.length !== 3) {
|
||||||
throw Error("Neočekávaný počet child elementů pro jídlo: " + children.length + ", očekávány 3");
|
throw new Error("Neočekávaný počet child elementů pro jídlo: " + children.length + ", očekávány 3");
|
||||||
}
|
}
|
||||||
const amount = sanitizeText($(children.get(0)).text());
|
const amount = sanitizeText($(children.get(0)).text());
|
||||||
const name = sanitizeText($(children.get(1)).text());
|
const name = sanitizeText($(children.get(1)).text());
|
||||||
@@ -287,12 +322,12 @@ export const getMenuTechTower = async (firstDayOfWeek: Date, mock: boolean = fal
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (!font) {
|
if (!font) {
|
||||||
throw Error('Chyba: nenalezen <font> pro obědy v HTML Techtower.');
|
throw new Error('Chyba: nenalezen <font> pro obědy v HTML Techtower.');
|
||||||
}
|
}
|
||||||
|
|
||||||
const result: Food[][] = [];
|
const result: Food[][] = [];
|
||||||
// TODO validovat, že v textu nalezeného <font> je rozsah, do kterého spadá vstupní datum
|
// TODO validovat, že v textu nalezeného <font> je rozsah, do kterého spadá vstupní datum
|
||||||
const siblings = secondTry ? $(font).parent().siblings() : $(font).parent().parent().siblings();
|
const siblings = secondTry ? $(font).parent().parent().parent().siblings('p') : $(font).parent().parent().siblings();
|
||||||
let parsing = false;
|
let parsing = false;
|
||||||
let currentDayIndex = 0;
|
let currentDayIndex = 0;
|
||||||
for (let i = 0; i < siblings.length; i++) {
|
for (let i = 0; i < siblings.length; i++) {
|
||||||
@@ -310,21 +345,25 @@ export const getMenuTechTower = async (firstDayOfWeek: Date, mock: boolean = fal
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
let price = 'na\xA0váhu';
|
let price = 'na\xA0váhu';
|
||||||
let name = text.replace('•', '');
|
let nameRaw = text.replace('•', '');
|
||||||
if (text.toLowerCase().endsWith('kč')) {
|
if (text.toLowerCase().endsWith('kč')) {
|
||||||
const tmp = text.replace('\xA0', ' ').split(' ');
|
const tmp = text.replace('\xA0', ' ').split(' ');
|
||||||
const split = [tmp.slice(0, -2).join(' ')].concat(tmp.slice(-2));
|
const split = [tmp.slice(0, -2).join(' ')].concat(tmp.slice(-2));
|
||||||
price = `${split.slice(1)[0]}\xA0Kč`
|
price = `${split.slice(1)[0]}\xA0Kč`
|
||||||
name = split[0].replace('•', '');
|
nameRaw = split[0].replace('•', '');
|
||||||
}
|
}
|
||||||
if (result[currentDayIndex] == null) {
|
if (nameRaw.endsWith('–')) {
|
||||||
result[currentDayIndex] = [];
|
nameRaw = nameRaw.slice(0, -1).trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const parsed = parseAllergens(nameRaw);
|
||||||
|
result[currentDayIndex] ??= [];
|
||||||
result[currentDayIndex].push({
|
result[currentDayIndex].push({
|
||||||
amount: '-',
|
amount: '-',
|
||||||
name,
|
name: parsed.cleanName,
|
||||||
price,
|
price,
|
||||||
isSoup: isTextSoupName(name),
|
isSoup: isTextSoupName(parsed.cleanName),
|
||||||
|
allergens: parsed.allergens.length > 0 ? parsed.allergens : undefined,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -343,7 +382,8 @@ export const getMenuZastavkaUmichala = async (firstDayOfWeek: Date, mock: boolea
|
|||||||
return getMenuZastavkaUmichalaMock();
|
return getMenuZastavkaUmichalaMock();
|
||||||
}
|
}
|
||||||
|
|
||||||
const nowDate = new Date().getDate();
|
const today = new Date();
|
||||||
|
today.setHours(0,0,0,0);
|
||||||
const headers = {
|
const headers = {
|
||||||
"Cookie": "_nss=1; PHPSESSID=9e37de17e0326b0942613d6e67a30e69",
|
"Cookie": "_nss=1; PHPSESSID=9e37de17e0326b0942613d6e67a30e69",
|
||||||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36",
|
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36",
|
||||||
@@ -352,18 +392,18 @@ export const getMenuZastavkaUmichala = async (firstDayOfWeek: Date, mock: boolea
|
|||||||
for (let dayIndex = 0; dayIndex < 5; dayIndex++) {
|
for (let dayIndex = 0; dayIndex < 5; dayIndex++) {
|
||||||
const currentDate = new Date(firstDayOfWeek);
|
const currentDate = new Date(firstDayOfWeek);
|
||||||
currentDate.setDate(firstDayOfWeek.getDate() + dayIndex);
|
currentDate.setDate(firstDayOfWeek.getDate() + dayIndex);
|
||||||
|
currentDate.setHours(0,0,0,0);
|
||||||
if (currentDate.getDate() < nowDate || (currentDate.getDate() === nowDate && new Date().getHours() >= 14)) {
|
if (currentDate < today || (currentDate.getTime() === today.getTime() && new Date().getHours() >= 14)) {
|
||||||
result[dayIndex] = [{
|
result[dayIndex] = [{
|
||||||
amount: undefined,
|
amount: undefined,
|
||||||
name: "Pro tento den není uveřejněna nabídka jídel",
|
name: "Pro tento den není uveřejněna nabídka jídel",
|
||||||
price: "",
|
price: "",
|
||||||
isSoup: false,
|
isSoup: false,
|
||||||
}];
|
}];
|
||||||
continue;
|
|
||||||
} else {
|
} else {
|
||||||
const url = (currentDate.getDate() === nowDate) ?
|
const url = (currentDate.getTime() === today.getTime())
|
||||||
ZASTAVKAUMICHALA_URL : ZASTAVKAUMICHALA_URL + '/?do=dailyMenu-changeDate&dailyMenu-dateString=' + formatDate(currentDate, 'DD.MM.YYYY');
|
? ZASTAVKAUMICHALA_URL
|
||||||
|
: ZASTAVKAUMICHALA_URL + '/?do=dailyMenu-changeDate&dailyMenu-dateString=' + formatDate(currentDate, 'DD.MM.YYYY');
|
||||||
const html = await axios.get(url, {
|
const html = await axios.get(url, {
|
||||||
headers,
|
headers,
|
||||||
}).then(res => res.data).then(content => content);
|
}).then(res => res.data).then(content => content);
|
||||||
@@ -403,11 +443,13 @@ export const getMenuSenkSerikova = async (firstDayOfWeek: Date, mock: boolean =
|
|||||||
}).then(res => decoder.decode(new Uint8Array(res.data))).then(content => content);
|
}).then(res => decoder.decode(new Uint8Array(res.data))).then(content => content);
|
||||||
const $ = load(html);
|
const $ = load(html);
|
||||||
|
|
||||||
const nowDate = new Date().getDate();
|
const today = new Date();
|
||||||
|
today.setHours(0,0,0,0);
|
||||||
const currentDate = new Date(firstDayOfWeek);
|
const currentDate = new Date(firstDayOfWeek);
|
||||||
const result: Food[][] = [];
|
const result: Food[][] = [];
|
||||||
let dayIndex = 0;
|
let dayIndex = 0;
|
||||||
while(currentDate.getDate() < nowDate) {
|
currentDate.setHours(0,0,0,0);
|
||||||
|
while (currentDate < today) {
|
||||||
result[dayIndex] = [{
|
result[dayIndex] = [{
|
||||||
amount: undefined,
|
amount: undefined,
|
||||||
name: "Pro tento den není uveřejněna nabídka jídel",
|
name: "Pro tento den není uveřejněna nabídka jídel",
|
||||||
@@ -421,10 +463,12 @@ export const getMenuSenkSerikova = async (firstDayOfWeek: Date, mock: boolean =
|
|||||||
$('.menicka').each((i, element) => {
|
$('.menicka').each((i, element) => {
|
||||||
const currentDayFood: Food[] = [];
|
const currentDayFood: Food[] = [];
|
||||||
$(element).find('.popup-gallery li').each((j, element) => {
|
$(element).find('.popup-gallery li').each((j, element) => {
|
||||||
|
const rawName = $(element).children('div.polozka').text();
|
||||||
|
const nameWithoutNumber = rawName.replace(/^\d+\.\s*/, '');
|
||||||
currentDayFood.push({
|
currentDayFood.push({
|
||||||
amount: '-',
|
amount: '-',
|
||||||
name: $(element).children('div.polozka').text(),
|
name: nameWithoutNumber,
|
||||||
price: $(element).children('div.cena').text().replace(/ /g, '\xA0'),
|
price: $(element).children('div.cena').text().replaceAll(' ', '\xA0'),
|
||||||
isSoup: $(element).hasClass('polevka'),
|
isSoup: $(element).hasClass('polevka'),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
45
server/src/routes/debugRoutes.ts
Normal file
45
server/src/routes/debugRoutes.ts
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
import express, { Request } from "express";
|
||||||
|
import { addChoice, getData, removeChoices } from "../service";
|
||||||
|
import { ClientData, LunchChoice } from "../../../types";
|
||||||
|
|
||||||
|
const NAMES = ["alice", "bob", "carol", "dave", "eve", "frank", "grace", "heidi", "ivan", "judy"];
|
||||||
|
const DATES = ["2025-01-06", "2025-01-07", "2025-01-08", "2025-01-09", "2025-01-10"];
|
||||||
|
|
||||||
|
const router = express.Router();
|
||||||
|
|
||||||
|
router.get("/createUsers", async (req: Request<{}, any, any>, res) => {
|
||||||
|
for (const element of NAMES) {
|
||||||
|
for (const dateStr of DATES) {
|
||||||
|
// Se šancí 50 % přidat pro tohoto uživatele tento den náhodnou volbu
|
||||||
|
if (Math.random() > 0.5) {
|
||||||
|
const foodIndex = Math.floor(Math.random() * 3); // Předpokládáme, že jsou 3 možnosti jídla
|
||||||
|
const date = new Date(dateStr);
|
||||||
|
// Náhodná volba z LunchChoice
|
||||||
|
const lunchChoices = [
|
||||||
|
"SLADOVNICKA",
|
||||||
|
"TECHTOWER",
|
||||||
|
"ZASTAVKAUMICHALA",
|
||||||
|
"SENKSERIKOVA",
|
||||||
|
];
|
||||||
|
const randomLunchChoice = lunchChoices[Math.floor(Math.random() * lunchChoices.length)];
|
||||||
|
await addChoice(element, true, randomLunchChoice as LunchChoice, foodIndex, date);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
res.status(200).json({});
|
||||||
|
});
|
||||||
|
|
||||||
|
router.get("/clearUsers", async (req: Request<{}, any, any>, res) => {
|
||||||
|
for (const dateStr of DATES) {
|
||||||
|
const date = new Date(dateStr);
|
||||||
|
const data: ClientData = await getData(date);
|
||||||
|
for (const user of NAMES) {
|
||||||
|
for (const locationKey in data.choices) {
|
||||||
|
await removeChoices(user, true, locationKey as keyof ClientData["choices"], date);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
res.status(200).json({});
|
||||||
|
});
|
||||||
|
|
||||||
|
export default router;
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
import express, { NextFunction } from "express";
|
import express, { NextFunction } from "express";
|
||||||
import { getLogin, getTrusted } from "../auth";
|
import { getLogin } from "../auth";
|
||||||
import { parseToken } from "../utils";
|
import { parseToken } from "../utils";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import { EasterEgg } from "../../../types";
|
import { EasterEgg } from "../../../types/gen/types.gen";
|
||||||
|
|
||||||
const EASTER_EGGS_JSON_PATH = path.join(__dirname, "../../.easter-eggs.json");
|
const EASTER_EGGS_JSON_PATH = path.join(__dirname, "../../resources/.easter-eggs.json");
|
||||||
const IMAGES_PATH = '../../resources/easterEggs';
|
const IMAGES_PATH = '../../resources/easterEggs';
|
||||||
|
|
||||||
type EasterEggsJson = {
|
type EasterEggsJson = {
|
||||||
@@ -34,16 +34,11 @@ function generateUrl() {
|
|||||||
*/
|
*/
|
||||||
function getEasterEggImage(req: any, res: any, next: NextFunction) {
|
function getEasterEggImage(req: any, res: any, next: NextFunction) {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const trusted = getTrusted(parseToken(req));
|
|
||||||
try {
|
try {
|
||||||
// TODO vrátit!
|
if (login in easterEggs) {
|
||||||
// if (trusted) {
|
const imagePath = easterEggs[login][Math.floor(Math.random() * easterEggs[login].length)].path;
|
||||||
if (true) {
|
res.sendFile(path.join(__dirname, IMAGES_PATH, imagePath));
|
||||||
if (login in easterEggs) {
|
return;
|
||||||
const imagePath = easterEggs[login][Math.floor(Math.random() * easterEggs[login].length)].path;
|
|
||||||
res.sendFile(path.join(__dirname, IMAGES_PATH, imagePath));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
res.sendStatus(404);
|
res.sendStatus(404);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
@@ -124,7 +119,7 @@ let easterEggs: EasterEggsJson;
|
|||||||
if (fs.existsSync(EASTER_EGGS_JSON_PATH)) {
|
if (fs.existsSync(EASTER_EGGS_JSON_PATH)) {
|
||||||
const content = fs.readFileSync(EASTER_EGGS_JSON_PATH, 'utf-8');
|
const content = fs.readFileSync(EASTER_EGGS_JSON_PATH, 'utf-8');
|
||||||
easterEggs = JSON.parse(content);
|
easterEggs = JSON.parse(content);
|
||||||
for (const [key, eggs] of Object.entries(easterEggs)) {
|
for (const [_, eggs] of Object.entries(easterEggs)) {
|
||||||
for (const easterEgg of eggs) {
|
for (const easterEgg of eggs) {
|
||||||
const url = generateUrl();
|
const url = generateUrl();
|
||||||
easterEgg.url = url;
|
easterEgg.url = url;
|
||||||
@@ -138,16 +133,11 @@ if (fs.existsSync(EASTER_EGGS_JSON_PATH)) {
|
|||||||
// Získání náhodného easter eggu pro přihlášeného uživatele
|
// Získání náhodného easter eggu pro přihlášeného uživatele
|
||||||
router.get("/", async (req, res, next) => {
|
router.get("/", async (req, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const trusted = getTrusted(parseToken(req));
|
|
||||||
try {
|
try {
|
||||||
// TODO vrátit!
|
if (easterEggs && login in easterEggs) {
|
||||||
// if (trusted) {
|
const randomEasterEgg = easterEggs[login][Math.floor(Math.random() * easterEggs[login].length)];
|
||||||
if (true) {
|
const { path, startOffset, endOffset, ...strippedEasterEgg } = randomEasterEgg; // Path klient k ničemu nepotřebuje a nemá ho znát
|
||||||
if (easterEggs && login in easterEggs) {
|
return res.status(200).json({ ...strippedEasterEgg, ...getRandomPosition(startOffset, endOffset) });
|
||||||
const randomEasterEgg = easterEggs[login][Math.floor(Math.random() * easterEggs[login].length)];
|
|
||||||
const { path, startOffset, endOffset, ...strippedEasterEgg } = randomEasterEgg; // Path klient k ničemu nepotřebuje a nemá ho znát
|
|
||||||
return res.status(200).json({ ...strippedEasterEgg, ...getRandomPosition(startOffset, endOffset) });
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return res.status(200).send();
|
return res.status(200).send();
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
|
|||||||
@@ -1,19 +1,51 @@
|
|||||||
import express, { Request } from "express";
|
import express, { Request, Response } from "express";
|
||||||
import { getLogin, getTrusted } from "../auth";
|
import { getLogin, getTrusted } from "../auth";
|
||||||
import { addChoice, addVolatileData, getDateForWeekIndex, getToday, removeChoice, removeChoices, updateDepartureTime, updateNote } from "../service";
|
import { addChoice, getDateForWeekIndex, getToday, removeChoice, removeChoices, updateDepartureTime, updateNote, fetchRestaurantWeekMenuData, saveRestaurantWeekMenu } from "../service";
|
||||||
import { getDayOfWeekIndex, parseToken } from "../utils";
|
import { getDayOfWeekIndex, parseToken, getFirstWorkDayOfWeek } from "../utils";
|
||||||
import { getWebsocket } from "../websocket";
|
import { getWebsocket } from "../websocket";
|
||||||
import { callNotifikace } from "../notifikace";
|
import { callNotifikace } from "../notifikace";
|
||||||
import {
|
import { AddChoiceData, ChangeDepartureTimeData, RemoveChoiceData, RemoveChoicesData, UdalostEnum, UpdateNoteData } from "../../../types/gen/types.gen";
|
||||||
AddChoiceRequest,
|
|
||||||
ChangeDepartureTimeRequest,
|
|
||||||
IDayIndex,
|
// RateLimit na refresh endpoint
|
||||||
JdemeObedRequest,
|
interface RateLimitEntry {
|
||||||
RemoveChoiceRequest,
|
count: number;
|
||||||
RemoveChoicesRequest,
|
resetTime: number;
|
||||||
UdalostEnum,
|
}
|
||||||
UpdateNoteRequest
|
const rateLimits: Record<string, RateLimitEntry> = {};
|
||||||
} from "../../../types";
|
const RATE_LIMIT = 1; // maximální počet požadavků za minutu
|
||||||
|
const RATE_LIMIT_WINDOW = 30 * 60 * 1000; // je to v ms (x * 1min)
|
||||||
|
|
||||||
|
// Kontrola ratelimitu
|
||||||
|
function checkRateLimit(key: string, limit: number = RATE_LIMIT): boolean {
|
||||||
|
const now = Date.now();
|
||||||
|
|
||||||
|
// Vyčištění starých záznamů
|
||||||
|
Object.keys(rateLimits).forEach(k => {
|
||||||
|
if (rateLimits[k].resetTime < now) {
|
||||||
|
delete rateLimits[k];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Kontrola, že záznam existuje a platí
|
||||||
|
if (rateLimits[key] && rateLimits[key].resetTime > now) {
|
||||||
|
// Záznam platí a kontroluje se limit
|
||||||
|
if (rateLimits[key].count >= limit) {
|
||||||
|
return false; // Překročen limit
|
||||||
|
}
|
||||||
|
|
||||||
|
// ++ xd
|
||||||
|
rateLimits[key].count++;
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
// + klic
|
||||||
|
rateLimits[key] = {
|
||||||
|
count: 1,
|
||||||
|
resetTime: now + RATE_LIMIT_WINDOW
|
||||||
|
};
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ověří a vrátí index dne v týdnu z požadavku, za předpokladu, že byl předán, a je zároveň
|
* Ověří a vrátí index dne v týdnu z požadavku, za předpokladu, že byl předán, a je zároveň
|
||||||
@@ -22,7 +54,7 @@ import {
|
|||||||
* @param req request
|
* @param req request
|
||||||
* @returns index dne v týdnu
|
* @returns index dne v týdnu
|
||||||
*/
|
*/
|
||||||
const parseValidateFutureDayIndex = (req: Request<{}, any, IDayIndex>) => {
|
const parseValidateFutureDayIndex = (req: Request<{}, any, AddChoiceData["body"] | UpdateNoteData["body"]>) => {
|
||||||
if (req.body.dayIndex == null) {
|
if (req.body.dayIndex == null) {
|
||||||
throw Error(`Nebyl předán index dne v týdnu.`);
|
throw Error(`Nebyl předán index dne v týdnu.`);
|
||||||
}
|
}
|
||||||
@@ -39,7 +71,7 @@ const parseValidateFutureDayIndex = (req: Request<{}, any, IDayIndex>) => {
|
|||||||
|
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
|
||||||
router.post("/addChoice", async (req: Request<{}, any, AddChoiceRequest>, res, next) => {
|
router.post("/addChoice", async (req: Request<{}, any, AddChoiceData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const trusted = getTrusted(parseToken(req));
|
const trusted = getTrusted(parseToken(req));
|
||||||
let date = undefined;
|
let date = undefined;
|
||||||
@@ -54,12 +86,12 @@ router.post("/addChoice", async (req: Request<{}, any, AddChoiceRequest>, res, n
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const data = await addChoice(login, trusted, req.body.locationKey, req.body.foodIndex, date);
|
const data = await addChoice(login, trusted, req.body.locationKey, req.body.foodIndex, date);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
return res.status(200).json(data);
|
return res.status(200).json(data);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/removeChoices", async (req: Request<{}, any, RemoveChoicesRequest>, res, next) => {
|
router.post("/removeChoices", async (req: Request<{}, any, RemoveChoicesData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const trusted = getTrusted(parseToken(req));
|
const trusted = getTrusted(parseToken(req));
|
||||||
let date = undefined;
|
let date = undefined;
|
||||||
@@ -74,12 +106,12 @@ router.post("/removeChoices", async (req: Request<{}, any, RemoveChoicesRequest>
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const data = await removeChoices(login, trusted, req.body.locationKey, date);
|
const data = await removeChoices(login, trusted, req.body.locationKey, date);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/removeChoice", async (req: Request<{}, any, RemoveChoiceRequest>, res, next) => {
|
router.post("/removeChoice", async (req: Request<{}, any, RemoveChoiceData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const trusted = getTrusted(parseToken(req));
|
const trusted = getTrusted(parseToken(req));
|
||||||
let date = undefined;
|
let date = undefined;
|
||||||
@@ -94,12 +126,12 @@ router.post("/removeChoice", async (req: Request<{}, any, RemoveChoiceRequest>,
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const data = await removeChoice(login, trusted, req.body.locationKey, req.body.foodIndex, date);
|
const data = await removeChoice(login, trusted, req.body.locationKey, req.body.foodIndex, date);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/updateNote", async (req: Request<{}, any, UpdateNoteRequest>, res, next) => {
|
router.post("/updateNote", async (req: Request<{}, any, UpdateNoteData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const trusted = getTrusted(parseToken(req));
|
const trusted = getTrusted(parseToken(req));
|
||||||
const note = req.body.note;
|
const note = req.body.note;
|
||||||
@@ -118,12 +150,12 @@ router.post("/updateNote", async (req: Request<{}, any, UpdateNoteRequest>, res,
|
|||||||
date = getDateForWeekIndex(dayIndex);
|
date = getDateForWeekIndex(dayIndex);
|
||||||
}
|
}
|
||||||
const data = await updateNote(login, trusted, note, date);
|
const data = await updateNote(login, trusted, note, date);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/changeDepartureTime", async (req: Request<{}, any, ChangeDepartureTimeRequest>, res, next) => {
|
router.post("/changeDepartureTime", async (req: Request<{}, any, ChangeDepartureTimeData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
let date = undefined;
|
let date = undefined;
|
||||||
if (req.body.dayIndex != null) {
|
if (req.body.dayIndex != null) {
|
||||||
@@ -137,17 +169,98 @@ router.post("/changeDepartureTime", async (req: Request<{}, any, ChangeDeparture
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const data = await updateDepartureTime(login, req.body?.time, date);
|
const data = await updateDepartureTime(login, req.body?.time, date);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/jdemeObed", async (req: Request<{}, any, JdemeObedRequest>, res, next) => {
|
router.post("/jdemeObed", async (req, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
try {
|
try {
|
||||||
await callNotifikace({ user: login, udalost: UdalostEnum.JDEME_OBED, locationKey: req.body.locationKey });
|
await callNotifikace({ input: { user: login, udalost: UdalostEnum.JDEME_NA_OBED }, gotify: false })
|
||||||
res.status(200).json({});
|
res.status(200).json({});
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// /api/food/refresh?type=week&heslo=docasnyheslo
|
||||||
|
export const refreshMetoda = async (req: Request, res: Response) => {
|
||||||
|
const { type, heslo } = req.query as { type?: string; heslo?: string };
|
||||||
|
if (heslo !== "docasnyheslo" && heslo !== "tohleheslopavelnesmizjistit123") {
|
||||||
|
return res.status(403).json({ error: "Neplatné heslo" });
|
||||||
|
}
|
||||||
|
if (!checkRateLimit("refresh") && heslo !== "tohleheslopavelnesmizjistit123") {
|
||||||
|
return res.status(429).json({ error: "Refresh už se zavolal, chvíli počkej :))" });
|
||||||
|
}
|
||||||
|
if (type !== "week" && type !== "day") {
|
||||||
|
return res.status(400).json({ error: "Neznámý typ refresh" });
|
||||||
|
}
|
||||||
|
if (type === "day") {
|
||||||
|
return res.status(400).json({ error: "ještě neumim TODO..." });
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
// Pro všechny restaurace refreshni menu na aktuální týden
|
||||||
|
const restaurants = ["SLADOVNICKA", "TECHTOWER", "ZASTAVKAUMICHALA", "SENKSERIKOVA"] as const;
|
||||||
|
const firstDay = getFirstWorkDayOfWeek(getToday());
|
||||||
|
const results: Record<string, any> = {};
|
||||||
|
const successfulRestaurants: string[] = [];
|
||||||
|
const failedRestaurants: string[] = [];
|
||||||
|
|
||||||
|
// Nejdříve načíst všechna data bez ukládání
|
||||||
|
for (const rest of restaurants) {
|
||||||
|
try {
|
||||||
|
const weekData = await fetchRestaurantWeekMenuData(rest, firstDay);
|
||||||
|
results[rest] = weekData;
|
||||||
|
|
||||||
|
// Kontrola validity dat
|
||||||
|
if (weekData && weekData.length > 0 &&
|
||||||
|
weekData.some(dayMenu => dayMenu && dayMenu.length > 0)) {
|
||||||
|
successfulRestaurants.push(rest);
|
||||||
|
} else {
|
||||||
|
failedRestaurants.push(rest);
|
||||||
|
results[rest] = { error: "Žádná validní data" };
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
failedRestaurants.push(rest);
|
||||||
|
results[rest] = { error: `Chyba při načítání: ${error}` };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pokud se nepodařilo načíst žádnou restauraci
|
||||||
|
if (successfulRestaurants.length === 0) {
|
||||||
|
return res.status(400).json({
|
||||||
|
error: "Nepodařilo se získat validní data z žádné restaurace",
|
||||||
|
failed: failedRestaurants,
|
||||||
|
results: results
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uložit pouze validní data
|
||||||
|
for (const rest of successfulRestaurants) {
|
||||||
|
try {
|
||||||
|
await saveRestaurantWeekMenu(rest as any, firstDay, results[rest]);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(`Chyba při ukládání dat pro ${rest}:`, error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Připravit odpověď
|
||||||
|
const response: any = {
|
||||||
|
ok: true,
|
||||||
|
refreshed: results,
|
||||||
|
successful: successfulRestaurants
|
||||||
|
};
|
||||||
|
|
||||||
|
if (failedRestaurants.length > 0) {
|
||||||
|
response.warning = `Nepodařilo se načíst: ${failedRestaurants.join(', ')}`;
|
||||||
|
response.failed = failedRestaurants;
|
||||||
|
}
|
||||||
|
|
||||||
|
res.status(200).json(response);
|
||||||
|
} catch (e: any) {
|
||||||
|
res.status(500).json({ error: e?.message || "Chyba při refreshi" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
router.get("/refresh", refreshMetoda);
|
||||||
|
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
@@ -3,8 +3,7 @@ import { getLogin } from "../auth";
|
|||||||
import { createPizzaDay, deletePizzaDay, getPizzaList, addPizzaOrder, removePizzaOrder, lockPizzaDay, unlockPizzaDay, finishPizzaOrder, finishPizzaDelivery, updatePizzaDayNote, updatePizzaFee } from "../pizza";
|
import { createPizzaDay, deletePizzaDay, getPizzaList, addPizzaOrder, removePizzaOrder, lockPizzaDay, unlockPizzaDay, finishPizzaOrder, finishPizzaDelivery, updatePizzaDayNote, updatePizzaFee } from "../pizza";
|
||||||
import { parseToken } from "../utils";
|
import { parseToken } from "../utils";
|
||||||
import { getWebsocket } from "../websocket";
|
import { getWebsocket } from "../websocket";
|
||||||
import { addVolatileData } from "../service";
|
import { AddPizzaData, FinishDeliveryData, RemovePizzaData, UpdatePizzaDayNoteData, UpdatePizzaFeeData } from "../../../types";
|
||||||
import { AddPizzaRequest, FinishDeliveryRequest, RemovePizzaRequest, UpdatePizzaDayNoteRequest, UpdatePizzaFeeRequest } from "../../../types";
|
|
||||||
|
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
|
||||||
@@ -13,17 +12,17 @@ router.post("/create", async (req: Request<{}, any, undefined>, res) => {
|
|||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const data = await createPizzaDay(login);
|
const data = await createPizzaDay(login);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
});
|
});
|
||||||
|
|
||||||
/** Smaže pizza day pro aktuální den, za předpokladu že existuje. */
|
/** Smaže pizza day pro aktuální den, za předpokladu že existuje. */
|
||||||
router.post("/delete", async (req: Request<{}, any, undefined>, res) => {
|
router.post("/delete", async (req: Request<{}, any, undefined>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const data = await deletePizzaDay(login);
|
const data = await deletePizzaDay(login);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/add", async (req: Request<{}, any, AddPizzaRequest>, res) => {
|
router.post("/add", async (req: Request<{}, any, AddPizzaData["body"]>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
if (isNaN(req.body?.pizzaIndex)) {
|
if (isNaN(req.body?.pizzaIndex)) {
|
||||||
throw Error("Nebyl předán index pizzy");
|
throw Error("Nebyl předán index pizzy");
|
||||||
@@ -44,68 +43,68 @@ router.post("/add", async (req: Request<{}, any, AddPizzaRequest>, res) => {
|
|||||||
throw Error("Neplatný index velikosti pizzy: " + pizzaSizeIndex);
|
throw Error("Neplatný index velikosti pizzy: " + pizzaSizeIndex);
|
||||||
}
|
}
|
||||||
const data = await addPizzaOrder(login, pizzy[pizzaIndex], pizzy[pizzaIndex].sizes[pizzaSizeIndex]);
|
const data = await addPizzaOrder(login, pizzy[pizzaIndex], pizzy[pizzaIndex].sizes[pizzaSizeIndex]);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json({});
|
res.status(200).json({});
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/remove", async (req: Request<{}, any, RemovePizzaRequest>, res) => {
|
router.post("/remove", async (req: Request<{}, any, RemovePizzaData["body"]>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
if (!req.body?.pizzaOrder) {
|
if (!req.body?.pizzaOrder) {
|
||||||
throw Error("Nebyla předána objednávka");
|
throw Error("Nebyla předána objednávka");
|
||||||
}
|
}
|
||||||
const data = await removePizzaOrder(login, req.body?.pizzaOrder);
|
const data = await removePizzaOrder(login, req.body?.pizzaOrder);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json({});
|
res.status(200).json({});
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/lock", async (req: Request<{}, any, undefined>, res) => {
|
router.post("/lock", async (req: Request<{}, any, undefined>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const data = await lockPizzaDay(login);
|
const data = await lockPizzaDay(login);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json({});
|
res.status(200).json({});
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/unlock", async (req: Request<{}, any, undefined>, res) => {
|
router.post("/unlock", async (req: Request<{}, any, undefined>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const data = await unlockPizzaDay(login);
|
const data = await unlockPizzaDay(login);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json({});
|
res.status(200).json({});
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/finishOrder", async (req: Request<{}, any, undefined>, res) => {
|
router.post("/finishOrder", async (req: Request<{}, any, undefined>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const data = await finishPizzaOrder(login);
|
const data = await finishPizzaOrder(login);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json({});
|
res.status(200).json({});
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/finishDelivery", async (req: Request<{}, any, FinishDeliveryRequest>, res) => {
|
router.post("/finishDelivery", async (req: Request<{}, any, FinishDeliveryData["body"]>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const data = await finishPizzaDelivery(login, req.body.bankAccount, req.body.bankAccountHolder);
|
const data = await finishPizzaDelivery(login, req.body.bankAccount, req.body.bankAccountHolder);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json({});
|
res.status(200).json({});
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/updatePizzaDayNote", async (req: Request<{}, any, UpdatePizzaDayNoteRequest>, res, next) => {
|
router.post("/updatePizzaDayNote", async (req: Request<{}, any, UpdatePizzaDayNoteData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
try {
|
try {
|
||||||
if (req.body.note && req.body.note.length > 70) {
|
if (req.body.note && req.body.note.length > 70) {
|
||||||
throw Error("Poznámka může mít maximálně 70 znaků");
|
throw Error("Poznámka může mít maximálně 70 znaků");
|
||||||
}
|
}
|
||||||
const data = await updatePizzaDayNote(login, req.body.note);
|
const data = await updatePizzaDayNote(login, req.body.note);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/updatePizzaFee", async (req: Request<{}, any, UpdatePizzaFeeRequest>, res, next) => {
|
router.post("/updatePizzaFee", async (req: Request<{}, any, UpdatePizzaFeeData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
if (!req.body.login) {
|
if (!req.body.login) {
|
||||||
return res.status(400).json({ error: "Nebyl předán login cílového uživatele" });
|
return res.status(400).json({ error: "Nebyl předán login cílového uživatele" });
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const data = await updatePizzaFee(login, req.body.login, req.body.text, req.body.price);
|
const data = await updatePizzaFee(login, req.body.login, req.body.text, req.body.price);
|
||||||
getWebsocket().emit("message", await addVolatileData(data));
|
getWebsocket().emit("message", data);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
} catch (e: any) { next(e) }
|
} catch (e: any) { next(e) }
|
||||||
});
|
});
|
||||||
|
|||||||
15
server/src/routes/qrRoutes.ts
Normal file
15
server/src/routes/qrRoutes.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import express, { Request, Response } from "express";
|
||||||
|
import { getLogin } from "../auth";
|
||||||
|
import { parseToken } from "../utils";
|
||||||
|
import { GenerateQrData } from "../../../types";
|
||||||
|
|
||||||
|
const router = express.Router();
|
||||||
|
|
||||||
|
router.post("/generate", async (req: Request<{}, any, GenerateQrData["body"]>, res: Response<any>) => {
|
||||||
|
getLogin(parseToken(req));
|
||||||
|
console.log("Bank account for QR codes:", req.body.bankAccount);
|
||||||
|
console.log("Bank account holder for QR codes:", req.body.bankAccountHolder);
|
||||||
|
console.log("Requested QR codes for users:", req.body.qrCodes);
|
||||||
|
});
|
||||||
|
|
||||||
|
export default router;
|
||||||
22
server/src/routes/statsRoutes.ts
Normal file
22
server/src/routes/statsRoutes.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
import express, { Request, Response } from "express";
|
||||||
|
import { getLogin } from "../auth";
|
||||||
|
import { parseToken } from "../utils";
|
||||||
|
import { getStats } from "../stats";
|
||||||
|
import { WeeklyStats } from "../../../types/gen/types.gen";
|
||||||
|
|
||||||
|
const router = express.Router();
|
||||||
|
|
||||||
|
router.get("/", async (req: Request<{}, any, undefined>, res: Response<WeeklyStats>) => {
|
||||||
|
getLogin(parseToken(req));
|
||||||
|
if (typeof req.query.startDate === 'string' && typeof req.query.endDate === 'string') {
|
||||||
|
try {
|
||||||
|
const data = await getStats(req.query.startDate, req.query.endDate);
|
||||||
|
return res.status(200).json(data);
|
||||||
|
} catch (e) {
|
||||||
|
// necháme to zatím spadnout na 400
|
||||||
|
}
|
||||||
|
}
|
||||||
|
res.sendStatus(400);
|
||||||
|
});
|
||||||
|
|
||||||
|
export default router;
|
||||||
@@ -1,18 +1,18 @@
|
|||||||
import express, { Request, Response } from "express";
|
import express, { Request } from "express";
|
||||||
import { getLogin } from "../auth";
|
import { getLogin } from "../auth";
|
||||||
import { parseToken } from "../utils";
|
import { parseToken } from "../utils";
|
||||||
import { getUserVotes, updateFeatureVote } from "../voting";
|
import { getUserVotes, updateFeatureVote } from "../voting";
|
||||||
import { FeatureRequest, UpdateFeatureVoteRequest } from "../../../types";
|
import { GetVotesData, UpdateVoteData } from "../../../types";
|
||||||
|
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
|
||||||
router.get("/getVotes", async (req: Request<{}, any, undefined>, res: Response<FeatureRequest[]>) => {
|
router.get("/getVotes", async (req: Request<{}, any, GetVotesData["body"]>, res) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
const data = await getUserVotes(login);
|
const data = await getUserVotes(login);
|
||||||
res.status(200).json(data);
|
res.status(200).json(data);
|
||||||
});
|
});
|
||||||
|
|
||||||
router.post("/updateVote", async (req: Request<{}, any, UpdateFeatureVoteRequest>, res, next) => {
|
router.post("/updateVote", async (req: Request<{}, any, UpdateVoteData["body"]>, res, next) => {
|
||||||
const login = getLogin(parseToken(req));
|
const login = getLogin(parseToken(req));
|
||||||
if (req.body?.option == null || req.body?.active == null) {
|
if (req.body?.option == null || req.body?.active == null) {
|
||||||
res.status(400).json({ error: "Chybné parametry volání" });
|
res.status(400).json({ error: "Chybné parametry volání" });
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { InsufficientPermissions, formatDate, getDayOfWeekIndex, getFirstWorkDayOfWeek, getHumanDate, getIsWeekend, getWeekNumber } from "./utils";
|
import { InsufficientPermissions, formatDate, getDayOfWeekIndex, getFirstWorkDayOfWeek, getIsWeekend, getWeekNumber } from "./utils";
|
||||||
import { ClientData, Restaurants, DayMenu, DepartureTime, DayData, WeekMenu, LocationKey } from "../../types";
|
|
||||||
import getStorage from "./storage";
|
import getStorage from "./storage";
|
||||||
import { getMenuSladovnicka, getMenuTechTower, getMenuUMotliku, getMenuZastavkaUmichala, getMenuSenkSerikova } from "./restaurants";
|
import { getMenuSladovnicka, getMenuTechTower, getMenuZastavkaUmichala, getMenuSenkSerikova } from "./restaurants";
|
||||||
import { getTodayMock } from "./mock";
|
import { getTodayMock } from "./mock";
|
||||||
|
import { ClientData, DepartureTime, LunchChoice, Restaurant, RestaurantDayMenu, WeekMenu } from "../../types/gen/types.gen";
|
||||||
|
|
||||||
const storage = getStorage();
|
const storage = getStorage();
|
||||||
const MENU_PREFIX = 'menu';
|
const MENU_PREFIX = 'menu';
|
||||||
@@ -31,45 +31,28 @@ export const getDateForWeekIndex = (index: number) => {
|
|||||||
function getEmptyData(date?: Date): ClientData {
|
function getEmptyData(date?: Date): ClientData {
|
||||||
const usedDate = date || getToday();
|
const usedDate = date || getToday();
|
||||||
return {
|
return {
|
||||||
date: getHumanDate(usedDate),
|
date: usedDate.toISOString().split('T')[0],
|
||||||
isWeekend: getIsWeekend(usedDate),
|
|
||||||
weekIndex: getDayOfWeekIndex(usedDate),
|
|
||||||
choices: {},
|
choices: {},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Přidá k datům "dopočítaná" data, která nejsou přímo uložena v databázi.
|
|
||||||
*
|
|
||||||
* @param data data z databáze
|
|
||||||
* @returns obohacená data
|
|
||||||
*/
|
|
||||||
export async function addVolatileData(data: ClientData): Promise<ClientData> {
|
|
||||||
data.todayWeekIndex = getDayOfWeekIndex(getToday());
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Vrátí veškerá klientská data pro předaný den, nebo aktuální den, pokud není předán.
|
* Vrátí veškerá klientská data pro předaný den, nebo aktuální den, pokud není předán.
|
||||||
*/
|
*/
|
||||||
export async function getData(date?: Date): Promise<ClientData> {
|
export async function getData(date?: Date): Promise<ClientData> {
|
||||||
const targetDate = date ?? getToday();
|
const clientData = await getClientData(date);
|
||||||
const dateString = formatDate(targetDate);
|
|
||||||
const data: DayData = await storage.getData(dateString) || getEmptyData(date);
|
|
||||||
let clientData: ClientData = { ...data };
|
|
||||||
clientData.menus = {
|
clientData.menus = {
|
||||||
[Restaurants.SLADOVNICKA]: await getRestaurantMenu(Restaurants.SLADOVNICKA, date),
|
SLADOVNICKA: await getRestaurantMenu('SLADOVNICKA', date),
|
||||||
// [Restaurants.UMOTLIKU]: await getRestaurantMenu(Restaurants.UMOTLIKU, date),
|
// UMOTLIKU: await getRestaurantMenu('UMOTLIKU', date),
|
||||||
[Restaurants.TECHTOWER]: await getRestaurantMenu(Restaurants.TECHTOWER, date),
|
TECHTOWER: await getRestaurantMenu('TECHTOWER', date),
|
||||||
[Restaurants.ZASTAVKAUMICHALA]: await getRestaurantMenu(Restaurants.ZASTAVKAUMICHALA, date),
|
ZASTAVKAUMICHALA: await getRestaurantMenu('ZASTAVKAUMICHALA', date),
|
||||||
[Restaurants.SENKSERIKOVA]: await getRestaurantMenu(Restaurants.SENKSERIKOVA, date),
|
SENKSERIKOVA: await getRestaurantMenu('SENKSERIKOVA', date),
|
||||||
}
|
}
|
||||||
clientData = await addVolatileData(clientData);
|
|
||||||
return clientData;
|
return clientData;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Vrátí klíč, pod kterým je uloženo menu pro předané datum.
|
* Vrátí klíč, pod kterým je uloženo menu pro týden příslušící předanému datu.
|
||||||
*
|
*
|
||||||
* @param date datum
|
* @param date datum
|
||||||
* @returns databázový klíč
|
* @returns databázový klíč
|
||||||
@@ -80,25 +63,117 @@ function getMenuKey(date: Date) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Vrátí menu restaurací pro předané datum, pokud již existují.
|
* Vrátí menu všech podniků pro celý týden do kterého spadá předané datum, pokud již existují.
|
||||||
*
|
*
|
||||||
* @param date datum
|
* @param date datum
|
||||||
* @returns menu restaurací pro předané datum
|
* @returns menu restaurací pro týden příslušící předanému datu
|
||||||
*/
|
*/
|
||||||
async function getMenu(date: Date): Promise<WeekMenu | undefined> {
|
async function getMenu(date: Date): Promise<WeekMenu | undefined> {
|
||||||
return await storage.getData(getMenuKey(date));
|
return await storage.getData<WeekMenu | undefined>(getMenuKey(date));
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO přesun do restaurants.ts
|
// TODO přesun do restaurants.ts
|
||||||
|
/**
|
||||||
|
* Načte menu dané restaurace pro celý týden bez ukládání do storage.
|
||||||
|
* Používá se pro validaci dat před uložením.
|
||||||
|
*
|
||||||
|
* @param restaurant restaurace
|
||||||
|
* @param firstDay první pracovní den týdne
|
||||||
|
* @returns pole menu pro jednotlivé dny týdne
|
||||||
|
*/
|
||||||
|
export async function fetchRestaurantWeekMenuData(restaurant: Restaurant, firstDay: Date): Promise<any[]> {
|
||||||
|
return await fetchRestaurantWeekMenu(restaurant, firstDay);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Uloží týdenní menu restaurace do storage.
|
||||||
|
*
|
||||||
|
* @param restaurant restaurace
|
||||||
|
* @param date datum z týdne, pro který ukládat menu
|
||||||
|
* @param weekData data týdenního menu
|
||||||
|
*/
|
||||||
|
export async function saveRestaurantWeekMenu(restaurant: Restaurant, date: Date, weekData: any[]): Promise<void> {
|
||||||
|
const now = new Date().getTime();
|
||||||
|
let weekMenu = await getMenu(date);
|
||||||
|
weekMenu ??= [{}, {}, {}, {}, {}];
|
||||||
|
|
||||||
|
// Inicializace struktury pro restauraci
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
weekMenu[i] ??= {};
|
||||||
|
weekMenu[i][restaurant] ??= {
|
||||||
|
lastUpdate: now,
|
||||||
|
closed: false,
|
||||||
|
food: [],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uložení dat pro všechny dny
|
||||||
|
for (let i = 0; i < weekData.length && i < weekMenu.length; i++) {
|
||||||
|
weekMenu[i][restaurant]!.food = weekData[i];
|
||||||
|
weekMenu[i][restaurant]!.lastUpdate = now;
|
||||||
|
|
||||||
|
// Detekce uzavření pro každou restauraci
|
||||||
|
switch (restaurant) {
|
||||||
|
case 'SLADOVNICKA':
|
||||||
|
if (weekData[i].length === 1 && weekData[i][0].name.toLowerCase() === 'pro daný den nebyla nalezena denní nabídka') {
|
||||||
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'TECHTOWER':
|
||||||
|
if (weekData[i]?.length === 1 && weekData[i][0].name.toLowerCase() === 'svátek') {
|
||||||
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'ZASTAVKAUMICHALA':
|
||||||
|
if (weekData[i]?.length === 1 && weekData[i][0].name === 'Pro tento den není uveřejněna nabídka jídel.') {
|
||||||
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'SENKSERIKOVA':
|
||||||
|
if (weekData[i]?.length === 1 && weekData[i][0].name === 'Pro tento den nebylo zadáno menu.') {
|
||||||
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uložení do storage
|
||||||
|
await storage.setData(getMenuKey(date), weekMenu);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Načte menu dané restaurace pro celý týden bez ukládání do storage.
|
||||||
|
*
|
||||||
|
* @param restaurant restaurace
|
||||||
|
* @param firstDay první pracovní den týdne
|
||||||
|
* @returns pole menu pro jednotlivé dny týdne
|
||||||
|
*/
|
||||||
|
async function fetchRestaurantWeekMenu(restaurant: Restaurant, firstDay: Date): Promise<any[]> {
|
||||||
|
const mock = process.env.MOCK_DATA === 'true';
|
||||||
|
|
||||||
|
switch (restaurant) {
|
||||||
|
case 'SLADOVNICKA':
|
||||||
|
return await getMenuSladovnicka(firstDay, mock);
|
||||||
|
case 'TECHTOWER':
|
||||||
|
return await getMenuTechTower(firstDay, mock);
|
||||||
|
case 'ZASTAVKAUMICHALA':
|
||||||
|
return await getMenuZastavkaUmichala(firstDay, mock);
|
||||||
|
case 'SENKSERIKOVA':
|
||||||
|
return await getMenuSenkSerikova(firstDay, mock);
|
||||||
|
default:
|
||||||
|
throw new Error(`Nepodporovaná restaurace: ${restaurant}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Vrátí menu dané restaurace pro předaný den.
|
* Vrátí menu dané restaurace pro předaný den.
|
||||||
* Pokud neexistuje, provede stažení menu pro příslušný týden a uložení do DB.
|
* Pokud neexistuje, provede stažení menu pro příslušný týden a uložení do DB.
|
||||||
*
|
*
|
||||||
* @param restaurant restaurace
|
* @param restaurant restaurace
|
||||||
* @param date datum, ke kterému získat menu
|
* @param date datum, ke kterému získat menu
|
||||||
* @param mock příznak, zda chceme pouze mock data
|
* @param forceRefresh příznak vynuceného obnovení
|
||||||
*/
|
*/
|
||||||
export async function getRestaurantMenu(restaurant: Restaurants, date?: Date): Promise<DayMenu> {
|
export async function getRestaurantMenu(restaurant: Restaurant, date?: Date, forceRefresh = false): Promise<RestaurantDayMenu> {
|
||||||
const usedDate = date ?? getToday();
|
const usedDate = date ?? getToday();
|
||||||
const dayOfWeekIndex = getDayOfWeekIndex(usedDate);
|
const dayOfWeekIndex = getDayOfWeekIndex(usedDate);
|
||||||
const now = new Date().getTime();
|
const now = new Date().getTime();
|
||||||
@@ -110,96 +185,59 @@ export async function getRestaurantMenu(restaurant: Restaurants, date?: Date): P
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
let menus = await getMenu(usedDate);
|
let weekMenu = await getMenu(usedDate);
|
||||||
if (menus == null) {
|
weekMenu ??= [{}, {}, {}, {}, {}];
|
||||||
menus = [];
|
|
||||||
}
|
|
||||||
for (let i = 0; i < 5; i++) {
|
for (let i = 0; i < 5; i++) {
|
||||||
if (menus[i] == null) {
|
weekMenu[i] ??= {};
|
||||||
menus[i] = {};
|
weekMenu[i][restaurant] ??= {
|
||||||
}
|
lastUpdate: now,
|
||||||
if (menus[i][restaurant] == null) {
|
closed: false,
|
||||||
menus[i][restaurant] = {
|
food: [],
|
||||||
lastUpdate: now,
|
};
|
||||||
closed: false,
|
|
||||||
food: [],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!menus[dayOfWeekIndex][restaurant]?.food?.length) {
|
if (forceRefresh || (!weekMenu[dayOfWeekIndex][restaurant]?.food?.length && !weekMenu[dayOfWeekIndex][restaurant]?.closed)) {
|
||||||
const firstDay = getFirstWorkDayOfWeek(usedDate);
|
const firstDay = getFirstWorkDayOfWeek(usedDate);
|
||||||
const mock = process.env.MOCK_DATA === 'true';
|
|
||||||
switch (restaurant) {
|
try {
|
||||||
case Restaurants.SLADOVNICKA:
|
const restaurantWeekFood = await fetchRestaurantWeekMenu(restaurant, firstDay);
|
||||||
try {
|
|
||||||
const sladovnickaFood = await getMenuSladovnicka(firstDay, mock);
|
// Aktualizace menu pro všechny dny
|
||||||
for (let i = 0; i < sladovnickaFood.length; i++) {
|
for (let i = 0; i < restaurantWeekFood.length && i < weekMenu.length; i++) {
|
||||||
menus[i][restaurant]!.food = sladovnickaFood[i];
|
weekMenu[i][restaurant]!.food = restaurantWeekFood[i];
|
||||||
// Velice chatrný a nespolehlivý způsob detekce uzavření...
|
weekMenu[i][restaurant]!.lastUpdate = now;
|
||||||
if (sladovnickaFood[i].length === 1 && sladovnickaFood[i][0].name.toLowerCase() === 'pro daný den nebyla nalezena denní nabídka') {
|
|
||||||
menus[i][restaurant]!.closed = true;
|
// Detekce uzavření pro každou restauraci
|
||||||
|
switch (restaurant) {
|
||||||
|
case 'SLADOVNICKA':
|
||||||
|
if (restaurantWeekFood[i].length === 1 && restaurantWeekFood[i][0].name.toLowerCase() === 'pro daný den nebyla nalezena denní nabídka') {
|
||||||
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
} catch (e: any) {
|
case 'TECHTOWER':
|
||||||
console.error("Selhalo načtení jídel pro podnik Sladovnická", e);
|
if (restaurantWeekFood[i]?.length === 1 && restaurantWeekFood[i][0].name.toLowerCase() === 'svátek') {
|
||||||
}
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
break;
|
|
||||||
// case Restaurants.UMOTLIKU:
|
|
||||||
// try {
|
|
||||||
// const uMotlikuFood = await getMenuUMotliku(firstDay, mock);
|
|
||||||
// for (let i = 0; i < uMotlikuFood.length; i++) {
|
|
||||||
// menus[i][restaurant]!.food = uMotlikuFood[i];
|
|
||||||
// if (uMotlikuFood[i].length === 1 && uMotlikuFood[i][0].name.toLowerCase() === 'zavřeno') {
|
|
||||||
// menus[i][restaurant]!.closed = true;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// } catch (e: any) {
|
|
||||||
// console.error("Selhalo načtení jídel pro podnik U Motlíků", e);
|
|
||||||
// }
|
|
||||||
// break;
|
|
||||||
case Restaurants.TECHTOWER:
|
|
||||||
try {
|
|
||||||
const techTowerFood = await getMenuTechTower(firstDay, mock);
|
|
||||||
for (let i = 0; i < techTowerFood.length; i++) {
|
|
||||||
menus[i][restaurant]!.food = techTowerFood[i];
|
|
||||||
if (techTowerFood[i]?.length === 1 && techTowerFood[i][0].name.toLowerCase() === 'svátek') {
|
|
||||||
menus[i][restaurant]!.closed = true;
|
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
break;
|
case 'ZASTAVKAUMICHALA':
|
||||||
} catch (e: any) {
|
if (restaurantWeekFood[i]?.length === 1 && restaurantWeekFood[i][0].name === 'Pro tento den není uveřejněna nabídka jídel.') {
|
||||||
console.error("Selhalo načtení jídel pro podnik TechTower", e);
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
}
|
|
||||||
case Restaurants.ZASTAVKAUMICHALA:
|
|
||||||
try {
|
|
||||||
const zastavkaUmichalaFood = await getMenuZastavkaUmichala(firstDay, mock);
|
|
||||||
for (let i = 0; i < zastavkaUmichalaFood.length; i++) {
|
|
||||||
menus[i][restaurant]!.food = zastavkaUmichalaFood[i];
|
|
||||||
if (zastavkaUmichalaFood[i]?.length === 1 && zastavkaUmichalaFood[i][0].name === 'Pro tento den není uveřejněna nabídka jídel.') {
|
|
||||||
menus[i][restaurant]!.closed = true;
|
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
break;
|
case 'SENKSERIKOVA':
|
||||||
} catch (e: any) {
|
if (restaurantWeekFood[i]?.length === 1 && restaurantWeekFood[i][0].name === 'Pro tento den nebylo zadáno menu.') {
|
||||||
console.error("Selhalo načtení jídel pro podnik Zastávka u Michala", e);
|
weekMenu[i][restaurant]!.closed = true;
|
||||||
}
|
|
||||||
case Restaurants.SENKSERIKOVA:
|
|
||||||
try {
|
|
||||||
const senkSerikovaFood = await getMenuSenkSerikova(firstDay, mock);
|
|
||||||
for (let i = 0; i < senkSerikovaFood.length; i++) {
|
|
||||||
menus[i][restaurant]!.food = senkSerikovaFood[i];
|
|
||||||
if (senkSerikovaFood[i]?.length === 1 && senkSerikovaFood[i][0].name === 'Pro tento den nebylo zadáno menu.') {
|
|
||||||
menus[i][restaurant]!.closed = true;
|
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
break;
|
|
||||||
} catch (e: any) {
|
|
||||||
console.error("Selhalo načtení jídel pro podnik Pivovarský šenk Šeříková", e);
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uložení do storage
|
||||||
|
await storage.setData(getMenuKey(usedDate), weekMenu);
|
||||||
|
} catch (e: any) {
|
||||||
|
console.error(`Selhalo načtení jídel pro podnik ${restaurant}`, e);
|
||||||
}
|
}
|
||||||
await storage.setData(getMenuKey(usedDate), menus);
|
|
||||||
}
|
}
|
||||||
return menus[dayOfWeekIndex][restaurant]!;
|
return weekMenu[dayOfWeekIndex][restaurant]!;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -224,9 +262,9 @@ export async function initIfNeeded(date?: Date) {
|
|||||||
* @param date datum, ke kterému se volba vztahuje
|
* @param date datum, ke kterému se volba vztahuje
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export async function removeChoices(login: string, trusted: boolean, locationKey: LocationKey, date?: Date) {
|
export async function removeChoices(login: string, trusted: boolean, locationKey: LunchChoice, date?: Date) {
|
||||||
const selectedDay = formatDate(date ?? getToday());
|
const selectedDay = formatDate(date ?? getToday());
|
||||||
let data: DayData = await storage.getData(selectedDay);
|
let data = await getClientData(date);
|
||||||
validateTrusted(data, login, trusted);
|
validateTrusted(data, login, trusted);
|
||||||
if (locationKey in data.choices) {
|
if (locationKey in data.choices) {
|
||||||
if (data.choices[locationKey] && login in data.choices[locationKey]) {
|
if (data.choices[locationKey] && login in data.choices[locationKey]) {
|
||||||
@@ -251,15 +289,15 @@ export async function removeChoices(login: string, trusted: boolean, locationKey
|
|||||||
* @param date datum, ke kterému se volba vztahuje
|
* @param date datum, ke kterému se volba vztahuje
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export async function removeChoice(login: string, trusted: boolean, locationKey: LocationKey, foodIndex: number, date?: Date) {
|
export async function removeChoice(login: string, trusted: boolean, locationKey: LunchChoice, foodIndex: number, date?: Date) {
|
||||||
const selectedDay = formatDate(date ?? getToday());
|
const selectedDay = formatDate(date ?? getToday());
|
||||||
let data: DayData = await storage.getData(selectedDay);
|
let data = await getClientData(date);
|
||||||
validateTrusted(data, login, trusted);
|
validateTrusted(data, login, trusted);
|
||||||
if (locationKey in data.choices) {
|
if (locationKey in data.choices) {
|
||||||
if (data.choices[locationKey] && login in data.choices[locationKey]) {
|
if (data.choices[locationKey] && login in data.choices[locationKey]) {
|
||||||
const index = data.choices[locationKey][login].options.indexOf(foodIndex);
|
const index = data.choices[locationKey][login].selectedFoods?.indexOf(foodIndex);
|
||||||
if (index > -1) {
|
if (index != null && index > -1) {
|
||||||
data.choices[locationKey][login].options.splice(index, 1)
|
data.choices[locationKey][login].selectedFoods?.splice(index, 1);
|
||||||
await storage.setData(selectedDay, data);
|
await storage.setData(selectedDay, data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -274,10 +312,11 @@ export async function removeChoice(login: string, trusted: boolean, locationKey:
|
|||||||
* @param date datum, ke kterému se volby vztahují
|
* @param date datum, ke kterému se volby vztahují
|
||||||
* @param ignoredLocationKey volba, která nebude odstraněna, pokud existuje
|
* @param ignoredLocationKey volba, která nebude odstraněna, pokud existuje
|
||||||
*/
|
*/
|
||||||
async function removeChoiceIfPresent(login: string, date: string, ignoredLocationKey?: LocationKey) {
|
async function removeChoiceIfPresent(login: string, date?: Date, ignoredLocationKey?: LunchChoice) {
|
||||||
let data: DayData = await storage.getData(date);
|
const usedDate = date ?? getToday();
|
||||||
|
let data = await getClientData(usedDate);
|
||||||
for (const key of Object.keys(data.choices)) {
|
for (const key of Object.keys(data.choices)) {
|
||||||
const locationKey = key as LocationKey;
|
const locationKey = key as LunchChoice;
|
||||||
if (ignoredLocationKey != null && ignoredLocationKey == locationKey) {
|
if (ignoredLocationKey != null && ignoredLocationKey == locationKey) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -286,7 +325,7 @@ async function removeChoiceIfPresent(login: string, date: string, ignoredLocatio
|
|||||||
if (Object.keys(data.choices[locationKey]).length === 0) {
|
if (Object.keys(data.choices[locationKey]).length === 0) {
|
||||||
delete data.choices[locationKey];
|
delete data.choices[locationKey];
|
||||||
}
|
}
|
||||||
await storage.setData(date, data);
|
await storage.setData(formatDate(usedDate), data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
@@ -325,39 +364,64 @@ function validateTrusted(data: ClientData, login: string, trusted: boolean) {
|
|||||||
* @param date datum, ke kterému se volba vztahuje
|
* @param date datum, ke kterému se volba vztahuje
|
||||||
* @returns aktuální data
|
* @returns aktuální data
|
||||||
*/
|
*/
|
||||||
export async function addChoice(login: string, trusted: boolean, locationKey: LocationKey, foodIndex?: number, date?: Date) {
|
export async function addChoice(login: string, trusted: boolean, locationKey: LunchChoice, foodIndex?: number, date?: Date) {
|
||||||
const usedDate = date ?? getToday();
|
const usedDate = date ?? getToday();
|
||||||
await initIfNeeded(usedDate);
|
await initIfNeeded(usedDate);
|
||||||
const selectedDate = formatDate(usedDate);
|
let data = await getClientData(usedDate);
|
||||||
let data: DayData = await storage.getData(selectedDate);
|
|
||||||
validateTrusted(data, login, trusted);
|
validateTrusted(data, login, trusted);
|
||||||
|
await validateFoodIndex(locationKey, foodIndex, date);
|
||||||
// Pokud měníme pouze lokaci, mažeme případné předchozí
|
// Pokud měníme pouze lokaci, mažeme případné předchozí
|
||||||
if (foodIndex == null) {
|
if (foodIndex == null) {
|
||||||
data = await removeChoiceIfPresent(login, selectedDate);
|
data = await removeChoiceIfPresent(login, usedDate);
|
||||||
} else {
|
} else {
|
||||||
// Mažeme případné ostatní volby (měla by být maximálně jedna)
|
// Mažeme případné ostatní volby (měla by být maximálně jedna)
|
||||||
removeChoiceIfPresent(login, selectedDate, locationKey);
|
removeChoiceIfPresent(login, usedDate, locationKey);
|
||||||
}
|
}
|
||||||
// TODO vytáhnout inicializaci "prázdné struktury" do vlastní funkce
|
// TODO vytáhnout inicializaci "prázdné struktury" do vlastní funkce
|
||||||
if (!(data.choices[locationKey])) {
|
data.choices[locationKey] ??= {};
|
||||||
data.choices[locationKey] = {}
|
|
||||||
}
|
|
||||||
if (!(login in data.choices[locationKey])) {
|
if (!(login in data.choices[locationKey])) {
|
||||||
if (!data.choices[locationKey]) {
|
if (!data.choices[locationKey]) {
|
||||||
data.choices[locationKey] = {}
|
data.choices[locationKey] = {}
|
||||||
}
|
}
|
||||||
data.choices[locationKey][login] = {
|
data.choices[locationKey][login] = {
|
||||||
trusted,
|
trusted,
|
||||||
options: []
|
selectedFoods: []
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
if (foodIndex != null && !data.choices[locationKey][login].options.includes(foodIndex)) {
|
if (foodIndex != null && !data.choices[locationKey][login].selectedFoods?.includes(foodIndex)) {
|
||||||
data.choices[locationKey][login].options.push(foodIndex);
|
data.choices[locationKey][login].selectedFoods?.push(foodIndex);
|
||||||
}
|
}
|
||||||
|
const selectedDate = formatDate(usedDate);
|
||||||
await storage.setData(selectedDate, data);
|
await storage.setData(selectedDate, data);
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Zvaliduje platnost indexu jídla pro vybranou lokalitu a datum.
|
||||||
|
*
|
||||||
|
* @param locationKey vybraná lokalita
|
||||||
|
* @param foodIndex index jídla pro danou lokalitu
|
||||||
|
* @param date datum, pro které je validace prováděna
|
||||||
|
*/
|
||||||
|
async function validateFoodIndex(locationKey: LunchChoice, foodIndex?: number, date?: Date) {
|
||||||
|
if (foodIndex != null) {
|
||||||
|
if (typeof foodIndex !== 'number') {
|
||||||
|
throw Error(`Neplatný index ${foodIndex} typu ${typeof foodIndex}`);
|
||||||
|
}
|
||||||
|
if (foodIndex < 0) {
|
||||||
|
throw Error(`Neplatný index ${foodIndex}`);
|
||||||
|
}
|
||||||
|
if (!Object.keys(Restaurant).includes(locationKey)) {
|
||||||
|
throw Error(`Neplatný index ${foodIndex} pro lokalitu ${locationKey} nepodporující indexy`);
|
||||||
|
}
|
||||||
|
const usedDate = date ?? getToday();
|
||||||
|
const menu = await getRestaurantMenu(locationKey as Restaurant, usedDate);
|
||||||
|
if (menu.food?.length && foodIndex > (menu.food.length - 1)) {
|
||||||
|
throw new Error(`Neplatný index ${foodIndex} pro lokalitu ${locationKey}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aktualizuje poznámku k aktuálně vybrané možnosti.
|
* Aktualizuje poznámku k aktuálně vybrané možnosti.
|
||||||
*
|
*
|
||||||
@@ -369,16 +433,16 @@ export async function addChoice(login: string, trusted: boolean, locationKey: Lo
|
|||||||
export async function updateNote(login: string, trusted: boolean, note?: string, date?: Date) {
|
export async function updateNote(login: string, trusted: boolean, note?: string, date?: Date) {
|
||||||
const usedDate = date ?? getToday();
|
const usedDate = date ?? getToday();
|
||||||
await initIfNeeded(usedDate);
|
await initIfNeeded(usedDate);
|
||||||
const selectedDate = formatDate(usedDate);
|
let data = await getClientData(usedDate);
|
||||||
let data: DayData = await storage.getData(selectedDate);
|
|
||||||
validateTrusted(data, login, trusted);
|
validateTrusted(data, login, trusted);
|
||||||
const userEntry = data.choices != null && Object.entries(data.choices).find(entry => entry[1][login] != null);
|
const userEntry = data.choices != null && Object.entries(data.choices).find(entry => entry[1][login] != null);
|
||||||
if (userEntry) {
|
if (userEntry) {
|
||||||
if (!note || !note.length) {
|
if (!note?.length) {
|
||||||
delete userEntry[1][login].note;
|
delete userEntry[1][login].note;
|
||||||
} else {
|
} else {
|
||||||
userEntry[1][login].note = note;
|
userEntry[1][login].note = note;
|
||||||
}
|
}
|
||||||
|
const selectedDate = formatDate(usedDate);
|
||||||
await storage.setData(selectedDate, data);
|
await storage.setData(selectedDate, data);
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
@@ -392,8 +456,8 @@ export async function updateNote(login: string, trusted: boolean, note?: string,
|
|||||||
* @param date datum, ke kterému se čas vztahuje
|
* @param date datum, ke kterému se čas vztahuje
|
||||||
*/
|
*/
|
||||||
export async function updateDepartureTime(login: string, time?: string, date?: Date) {
|
export async function updateDepartureTime(login: string, time?: string, date?: Date) {
|
||||||
const selectedDate = formatDate(date ?? getToday());
|
const usedDate = date ?? getToday();
|
||||||
let clientData: DayData = await storage.getData(selectedDate);
|
let clientData = await getClientData(usedDate);
|
||||||
const found = Object.values(clientData.choices).find(location => login in location);
|
const found = Object.values(clientData.choices).find(location => login in location);
|
||||||
// TODO validace, že se jedná o restauraci
|
// TODO validace, že se jedná o restauraci
|
||||||
if (found) {
|
if (found) {
|
||||||
@@ -405,7 +469,19 @@ export async function updateDepartureTime(login: string, time?: string, date?: D
|
|||||||
}
|
}
|
||||||
found[login].departureTime = time;
|
found[login].departureTime = time;
|
||||||
}
|
}
|
||||||
await storage.setData(selectedDate, clientData);
|
await storage.setData(formatDate(usedDate), clientData);
|
||||||
}
|
}
|
||||||
return clientData;
|
return clientData;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vrátí data pro klienta pro předaný nebo aktuální den.
|
||||||
|
*
|
||||||
|
* @param date datum pro který vrátit data, pokud není vyplněno, je použit dnešní den
|
||||||
|
* @returns data pro klienta
|
||||||
|
*/
|
||||||
|
export async function getClientData(date?: Date): Promise<ClientData> {
|
||||||
|
const targetDate = date ?? getToday();
|
||||||
|
const dateString = formatDate(targetDate);
|
||||||
|
return await storage.getData<ClientData>(dateString) || getEmptyData(date);
|
||||||
|
}
|
||||||
48
server/src/stats.ts
Normal file
48
server/src/stats.ts
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
import { DailyStats, LunchChoice, WeeklyStats } from "../../types/gen/types.gen";
|
||||||
|
import { getStatsMock } from "./mock";
|
||||||
|
import { getClientData } from "./service";
|
||||||
|
import getStorage from "./storage";
|
||||||
|
|
||||||
|
const storage = getStorage();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vypočte a vrátí statistiky jednotlivých možností pro předaný rozsah dat.
|
||||||
|
*
|
||||||
|
* @param startDate počáteční datum
|
||||||
|
* @param endDate koncové datum
|
||||||
|
* @returns statistiky pro zadaný rozsah dat
|
||||||
|
*/
|
||||||
|
export async function getStats(startDate: string, endDate: string): Promise<WeeklyStats> {
|
||||||
|
if (process.env.MOCK_DATA === 'true') {
|
||||||
|
return getStatsMock();
|
||||||
|
}
|
||||||
|
const start = new Date(startDate);
|
||||||
|
const end = new Date(endDate);
|
||||||
|
|
||||||
|
// Dočasná validace, aby to někdo ručně neshodil
|
||||||
|
const daysDiff = ((end as any) - (start as any)) / (1000 * 60 * 60 * 24);
|
||||||
|
if (daysDiff > 4) {
|
||||||
|
throw Error('Neplatný rozsah');
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = [];
|
||||||
|
for (const date = start; date <= end; date.setDate(date.getDate() + 1)) {
|
||||||
|
const locationsStats: DailyStats = {
|
||||||
|
// TODO vytáhnout do utils funkce
|
||||||
|
date: `${String(date.getDate()).padStart(2, "0")}.${String(date.getMonth() + 1).padStart(2, "0")}.`,
|
||||||
|
locations: {}
|
||||||
|
}
|
||||||
|
const data = await getClientData(date);
|
||||||
|
if (data?.choices) {
|
||||||
|
Object.keys(data.choices).forEach(locationKey => {
|
||||||
|
if (!locationsStats.locations) {
|
||||||
|
locationsStats.locations = {}
|
||||||
|
}
|
||||||
|
// TODO dořešit, tohle je zmatek a té hlášce Sonaru nerozumím
|
||||||
|
locationsStats.locations[locationKey as LunchChoice] = Object.keys(data.choices[locationKey as LunchChoice]!).length;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
result.push(locationsStats);
|
||||||
|
}
|
||||||
|
return result as WeeklyStats;
|
||||||
|
}
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
import { ClientData } from "../../../types";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface pro úložiště dat.
|
* Interface pro úložiště dat.
|
||||||
*
|
*
|
||||||
@@ -7,6 +5,12 @@ import { ClientData } from "../../../types";
|
|||||||
* Postupem času lze předělat pro efektivnější využití Redis.
|
* Postupem času lze předělat pro efektivnější využití Redis.
|
||||||
*/
|
*/
|
||||||
export interface StorageInterface {
|
export interface StorageInterface {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inicializuje úložiště, pokud je potřeba (např. připojení k databázi).
|
||||||
|
*/
|
||||||
|
initialize?(): Promise<void>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Vrátí příznak, zda existují data pro předaný klíč.
|
* Vrátí příznak, zda existují data pro předaný klíč.
|
||||||
* @param key klíč, pro který zjišťujeme data (typicky datum)
|
* @param key klíč, pro který zjišťujeme data (typicky datum)
|
||||||
@@ -17,7 +21,7 @@ export interface StorageInterface {
|
|||||||
* Vrátí veškerá data pro předaný klíč.
|
* Vrátí veškerá data pro předaný klíč.
|
||||||
* @param key klíč, pro který vrátit data (typicky datum)
|
* @param key klíč, pro který vrátit data (typicky datum)
|
||||||
*/
|
*/
|
||||||
getData<Type>(key: string): Promise<Type>;
|
getData<Type>(key: string): Promise<Type | undefined>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Uloží data pod předaný klíč.
|
* Uloží data pod předaný klíč.
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import { StorageInterface } from "./StorageInterface";
|
|||||||
import JsonStorage from "./json";
|
import JsonStorage from "./json";
|
||||||
import RedisStorage from "./redis";
|
import RedisStorage from "./redis";
|
||||||
|
|
||||||
const ENVIRONMENT = process.env.NODE_ENV || 'production';
|
const ENVIRONMENT = process.env.NODE_ENV ?? 'production';
|
||||||
dotenv.config({ path: path.resolve(__dirname, `../.env.${ENVIRONMENT}`) });
|
dotenv.config({ path: path.resolve(__dirname, `../../.env.${ENVIRONMENT}`) });
|
||||||
|
|
||||||
const JSON_KEY = 'json';
|
const JSON_KEY = 'json';
|
||||||
const REDIS_KEY = 'redis';
|
const REDIS_KEY = 'redis';
|
||||||
@@ -19,6 +19,13 @@ if (!process.env.STORAGE || process.env.STORAGE?.toLowerCase() === JSON_KEY) {
|
|||||||
throw Error("Nepodporovaná hodnota proměnné STORAGE: " + process.env.STORAGE + ", podporované jsou 'json' nebo 'redis'");
|
throw Error("Nepodporovaná hodnota proměnné STORAGE: " + process.env.STORAGE + ", podporované jsou 'json' nebo 'redis'");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
if (storage.initialize) {
|
||||||
|
await storage.initialize();
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
|
|
||||||
export default function getStorage(): StorageInterface {
|
export default function getStorage(): StorageInterface {
|
||||||
return storage;
|
return storage;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,15 +8,18 @@ let client: RedisClientType;
|
|||||||
*/
|
*/
|
||||||
export default class RedisStorage implements StorageInterface {
|
export default class RedisStorage implements StorageInterface {
|
||||||
constructor() {
|
constructor() {
|
||||||
const HOST = process.env.REDIS_HOST || 'localhost';
|
const HOST = process.env.REDIS_HOST ?? 'localhost';
|
||||||
const PORT = process.env.REDIS_PORT || 6379;
|
const PORT = process.env.REDIS_PORT ?? 6379;
|
||||||
client = createClient({ url: `redis://${HOST}:${PORT}` });
|
client = createClient({ url: `redis://${HOST}:${PORT}` });
|
||||||
|
}
|
||||||
|
|
||||||
|
async initialize() {
|
||||||
client.connect();
|
client.connect();
|
||||||
}
|
}
|
||||||
|
|
||||||
async hasData(key: string) {
|
async hasData(key: string) {
|
||||||
const data = await client.json.get(key);
|
const data = await client.json.get(key);
|
||||||
return (data ? true : false);
|
return (!!data);
|
||||||
}
|
}
|
||||||
|
|
||||||
async getData<Type>(key: string) {
|
async getData<Type>(key: string) {
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import {Choices, LocationKey } from "../../types";
|
import { LunchChoice, LunchChoices } from "../../types/gen/types.gen";
|
||||||
|
|
||||||
|
const DAY_OF_WEEK_FORMAT = new Intl.DateTimeFormat(undefined, { weekday: 'long' });
|
||||||
|
|
||||||
/** Vrátí datum v ISO formátu. */
|
/** Vrátí datum v ISO formátu. */
|
||||||
export function formatDate(date: Date, format?: string) {
|
export function formatDate(date: Date, format?: string) {
|
||||||
@@ -6,7 +8,7 @@ export function formatDate(date: Date, format?: string) {
|
|||||||
let month = String(date.getMonth() + 1).padStart(2, "0");
|
let month = String(date.getMonth() + 1).padStart(2, "0");
|
||||||
let year = String(date.getFullYear());
|
let year = String(date.getFullYear());
|
||||||
|
|
||||||
const f = (format === undefined) ? 'YYYY-MM-DD' : format;
|
const f = format ?? 'YYYY-MM-DD';
|
||||||
return f.replace('DD', day).replace('MM', month).replace('YYYY', year);
|
return f.replace('DD', day).replace('MM', month).replace('YYYY', year);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -15,7 +17,7 @@ export function getHumanDate(date: Date) {
|
|||||||
let currentDay = String(date.getDate()).padStart(2, '0');
|
let currentDay = String(date.getDate()).padStart(2, '0');
|
||||||
let currentMonth = String(date.getMonth() + 1).padStart(2, "0");
|
let currentMonth = String(date.getMonth() + 1).padStart(2, "0");
|
||||||
let currentYear = date.getFullYear();
|
let currentYear = date.getFullYear();
|
||||||
let currentDayOfWeek = date.toLocaleDateString("CZ-cs", { weekday: 'long' });
|
let currentDayOfWeek = DAY_OF_WEEK_FORMAT.format(date);
|
||||||
return `${currentDay}.${currentMonth}.${currentYear} (${currentDayOfWeek})`;
|
return `${currentDay}.${currentMonth}.${currentYear} (${currentDayOfWeek})`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -59,10 +61,10 @@ export function getLastWorkDayOfWeek(date: Date) {
|
|||||||
|
|
||||||
/** Vrátí pořadové číslo týdne předaného data v roce dle ISO 8601. */
|
/** Vrátí pořadové číslo týdne předaného data v roce dle ISO 8601. */
|
||||||
export function getWeekNumber(inputDate: Date) {
|
export function getWeekNumber(inputDate: Date) {
|
||||||
var date = new Date(inputDate.getTime());
|
const date = new Date(inputDate.getTime());
|
||||||
date.setHours(0, 0, 0, 0);
|
date.setHours(0, 0, 0, 0);
|
||||||
date.setDate(date.getDate() + 3 - (date.getDay() + 6) % 7);
|
date.setDate(date.getDate() + 3 - (date.getDay() + 6) % 7);
|
||||||
var week1 = new Date(date.getFullYear(), 0, 4);
|
const week1 = new Date(date.getFullYear(), 0, 4);
|
||||||
return 1 + Math.round(((date.getTime() - week1.getTime()) / 86400000 - 3 + (week1.getDay() + 6) % 7) / 7);
|
return 1 + Math.round(((date.getTime() - week1.getTime()) / 86400000 - 3 + (week1.getDay() + 6) % 7) / 7);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -112,13 +114,13 @@ export const checkBodyParams = (req: any, paramNames: string[]) => {
|
|||||||
// TODO umístit do samostatného souboru
|
// TODO umístit do samostatného souboru
|
||||||
export class InsufficientPermissions extends Error { }
|
export class InsufficientPermissions extends Error { }
|
||||||
|
|
||||||
export const getUsersByLocation = (choices: Choices, login: string): string[] => {
|
export const getUsersByLocation = (choices: LunchChoices, login?: string): string[] => {
|
||||||
const result: string[] = [];
|
const result: string[] = [];
|
||||||
|
|
||||||
for (const location of Object.entries(choices)) {
|
for (const location of Object.entries(choices)) {
|
||||||
const locationKey = location[0] as LocationKey;
|
const locationKey = location[0] as LunchChoice;
|
||||||
const locationValue = location[1];
|
const locationValue = location[1];
|
||||||
if (locationValue[login]) {
|
if (login && locationValue[login]) {
|
||||||
for (const username in choices[locationKey]) {
|
for (const username in choices[locationKey]) {
|
||||||
if (choices[locationKey].hasOwnProperty(username)) {
|
if (choices[locationKey].hasOwnProperty(username)) {
|
||||||
result.push(username);
|
result.push(username);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { FeatureRequest } from "../../types";
|
import { FeatureRequest } from "../../types/gen/types.gen";
|
||||||
import getStorage from "./storage";
|
import getStorage from "./storage";
|
||||||
|
|
||||||
interface VotingData {
|
interface VotingData {
|
||||||
@@ -15,7 +15,7 @@ const STORAGE_KEY = 'voting';
|
|||||||
* @returns pole voleb
|
* @returns pole voleb
|
||||||
*/
|
*/
|
||||||
export async function getUserVotes(login: string) {
|
export async function getUserVotes(login: string) {
|
||||||
const data: VotingData = await storage.getData(STORAGE_KEY);
|
const data = await storage.getData<VotingData>(STORAGE_KEY);
|
||||||
return data?.[login] || [];
|
return data?.[login] || [];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,10 +28,8 @@ export async function getUserVotes(login: string) {
|
|||||||
* @returns aktuální data
|
* @returns aktuální data
|
||||||
*/
|
*/
|
||||||
export async function updateFeatureVote(login: string, option: FeatureRequest, active: boolean): Promise<VotingData> {
|
export async function updateFeatureVote(login: string, option: FeatureRequest, active: boolean): Promise<VotingData> {
|
||||||
let data: VotingData = await storage.getData(STORAGE_KEY);
|
let data = await storage.getData<VotingData>(STORAGE_KEY);
|
||||||
if (data == null) {
|
data ??= {};
|
||||||
data = {};
|
|
||||||
}
|
|
||||||
if (!(login in data)) {
|
if (!(login in data)) {
|
||||||
data[login] = [];
|
data[login] = [];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import { Server } from "socket.io";
|
import { DefaultEventsMap, Server } from "socket.io";
|
||||||
import { DefaultEventsMap } from "socket.io/dist/typed-events";
|
|
||||||
|
|
||||||
let io: Server<DefaultEventsMap, DefaultEventsMap, DefaultEventsMap, any>;
|
let io: Server<DefaultEventsMap, DefaultEventsMap, DefaultEventsMap, any>;
|
||||||
|
|
||||||
|
|||||||
@@ -4,10 +4,11 @@
|
|||||||
"../types/**/*"
|
"../types/**/*"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ES2016",
|
"target": "ES2022",
|
||||||
"module": "CommonJS",
|
"module": "Node16",
|
||||||
"jsx": "react",
|
"moduleResolution": "node16",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "../",
|
"rootDir": "../",
|
||||||
|
|||||||
3705
server/yarn.lock
3705
server/yarn.lock
File diff suppressed because it is too large
Load Diff
@@ -1,58 +0,0 @@
|
|||||||
import { FeatureRequest, LocationKey, PizzaOrder } from "./Types";
|
|
||||||
|
|
||||||
export type ILocationKey = {
|
|
||||||
locationKey: LocationKey,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type IDayIndex = {
|
|
||||||
dayIndex?: number,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type AddChoiceRequest = IDayIndex & ILocationKey & {
|
|
||||||
foodIndex?: number,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type RemoveChoicesRequest = IDayIndex & ILocationKey;
|
|
||||||
|
|
||||||
export type RemoveChoiceRequest = IDayIndex & ILocationKey & {
|
|
||||||
foodIndex: number,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type JdemeObedRequest = ILocationKey;
|
|
||||||
|
|
||||||
export type UpdateNoteRequest = IDayIndex & {
|
|
||||||
note?: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type ChangeDepartureTimeRequest = IDayIndex & {
|
|
||||||
time: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type FinishDeliveryRequest = {
|
|
||||||
bankAccount?: string,
|
|
||||||
bankAccountHolder?: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type AddPizzaRequest = {
|
|
||||||
pizzaIndex: number,
|
|
||||||
pizzaSizeIndex: number,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type RemovePizzaRequest = {
|
|
||||||
pizzaOrder: PizzaOrder,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type UpdatePizzaDayNoteRequest = {
|
|
||||||
note?: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type UpdatePizzaFeeRequest = {
|
|
||||||
login: string,
|
|
||||||
text?: string,
|
|
||||||
price?: number,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type UpdateFeatureVoteRequest = {
|
|
||||||
option: FeatureRequest,
|
|
||||||
active: boolean,
|
|
||||||
}
|
|
||||||
217
types/Types.ts
217
types/Types.ts
@@ -1,217 +0,0 @@
|
|||||||
/** Výčtový typ pro restaurace, pro které umíme získat a parsovat obědové menu. */
|
|
||||||
export enum Restaurants {
|
|
||||||
SLADOVNICKA = 'sladovnicka',
|
|
||||||
// UMOTLIKU = 'uMotliku',
|
|
||||||
TECHTOWER = 'techTower',
|
|
||||||
ZASTAVKAUMICHALA = 'zastavkaUmichala',
|
|
||||||
SENKSERIKOVA = 'senkSerikova',
|
|
||||||
}
|
|
||||||
|
|
||||||
export type FoodChoices = {
|
|
||||||
trusted: boolean,
|
|
||||||
options: number[],
|
|
||||||
departureTime?: string,
|
|
||||||
note?: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO okomentovat / rozdělit
|
|
||||||
export type Choices = {
|
|
||||||
[location in LocationKey]?: {
|
|
||||||
[login: string]: FoodChoices
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Velikost konkrétní pizzy */
|
|
||||||
export type PizzaSize = {
|
|
||||||
varId: number, // unikátní ID varianty pizzy
|
|
||||||
size: string, // velikost pizzy, např. "30cm"
|
|
||||||
pizzaPrice: number, // cena samotné pizzy
|
|
||||||
boxPrice: number, // cena krabice
|
|
||||||
price: number, // celková cena (pizza + krabice)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Jedna konkrétní pizza */
|
|
||||||
export type Pizza = {
|
|
||||||
name: string, // název pizzy
|
|
||||||
ingredients: string[], // seznam ingrediencí
|
|
||||||
sizes: PizzaSize[], // dostupné velikosti pizzy
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Objednávka jedné konkrétní pizzy */
|
|
||||||
export type PizzaOrder = {
|
|
||||||
varId: number, // unikátní ID varianty pizzy
|
|
||||||
name: string, // název pizzy
|
|
||||||
size: string, // velikost pizzy jako string (30cm)
|
|
||||||
price: number, // cena pizzy v Kč, včetně krabice
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Celková objednávka jednoho člověka */
|
|
||||||
export type Order = {
|
|
||||||
customer: string, // jméno objednatele
|
|
||||||
pizzaList: PizzaOrder[], // seznam objednaných pizz
|
|
||||||
fee?: { text?: string, price: number }, // příplatek (např. za extra ingredience)
|
|
||||||
totalPrice: number, // celková cena všech objednaných pizz, krabic a příplatků
|
|
||||||
hasQr?: boolean, // true, pokud je k objednávce vygenerován QR kód pro platbu
|
|
||||||
note?: string, // volitelná uživatelská poznámka k objednávce
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Stav pizza dne */
|
|
||||||
export enum PizzaDayState {
|
|
||||||
NOT_CREATED, // Pizza day nebyl založen
|
|
||||||
CREATED, // Pizza day je založen
|
|
||||||
LOCKED, // Objednávky uzamčeny
|
|
||||||
ORDERED, // Pizzy objednány
|
|
||||||
DELIVERED // Pizzy doručeny
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Informace o pizza day pro dnešní den */
|
|
||||||
interface PizzaDay {
|
|
||||||
state: PizzaDayState, // stav pizza dne
|
|
||||||
creator: string, // jméno zakladatele
|
|
||||||
orders: Order[], // seznam objednávek jednotlivých lidí
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Týdenní menu jednotlivých restaurací. */
|
|
||||||
export type WeekMenu = {
|
|
||||||
[dayIndex: number]: {
|
|
||||||
[restaurant in Restaurants]?: DayMenu
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Data vztahující se k jednomu konkrétnímu dni. */
|
|
||||||
export type DayData = {
|
|
||||||
date: string, // datum dne
|
|
||||||
isWeekend: boolean, // příznak, zda je datum víkend
|
|
||||||
weekIndex: number, // index dne v týdnu (0-6)
|
|
||||||
choices: Choices, // seznam voleb uživatelů
|
|
||||||
menus?: { [restaurant in Restaurants]?: DayMenu }, // menu jednotlivých restaurací
|
|
||||||
pizzaDay?: PizzaDay, // pizza day pro dnešní den, pokud existuje
|
|
||||||
pizzaList?: Pizza[], // seznam dostupných pizz pro dnešní den
|
|
||||||
pizzaListLastUpdate?: Date, // datum a čas poslední aktualizace pizz
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Veškerá data pro zobrazení na klientovi. */
|
|
||||||
export type ClientData = DayData & {
|
|
||||||
todayWeekIndex?: number, // index dnešního dne v týdnu (0-6)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Nabídka jídel jednoho podniku pro jeden konkrétní den. */
|
|
||||||
export type DayMenu = {
|
|
||||||
lastUpdate: number, // UNIX timestamp poslední aktualizace menu
|
|
||||||
closed: boolean, // příznak, zda je daný podnik v tento den zavřený
|
|
||||||
food: Food[], // seznam jídel v menu
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Jídlo z obědového menu restaurace. */
|
|
||||||
export type Food = {
|
|
||||||
amount?: string, // množství standardní porce, např. 0,33l nebo 150g
|
|
||||||
name: string, // název/popis jídla
|
|
||||||
price: string, // cena ve formátu '135 Kč'
|
|
||||||
isSoup: boolean, // příznak, zda se jedná o polévku
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO tohle je dost špatné pojmenování, vzhledem k tomu co to obsahuje
|
|
||||||
// TODO pokud by se použilo ovládáni výběru obědu kliknutím, pak bych restaurace z tohoto výčtu vyhodil
|
|
||||||
export enum Locations {
|
|
||||||
SLADOVNICKA = 'Sladovnická',
|
|
||||||
// UMOTLIKU = 'U Motlíků',
|
|
||||||
TECHTOWER = 'TechTower',
|
|
||||||
ZASTAVKAUMICHALA = 'Zastávka u Michala',
|
|
||||||
SENKSERIKOVA = 'Pivovarský šenk Šeříková',
|
|
||||||
SPSE = 'SPŠE',
|
|
||||||
PIZZA = 'Pizza day',
|
|
||||||
OBJEDNAVAM = 'Budu objednávat',
|
|
||||||
NEOBEDVAM = 'Mám vlastní/neobědvám',
|
|
||||||
ROZHODUJI = 'Rozhoduji se',
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO totéž
|
|
||||||
export type LocationKey = keyof typeof Locations;
|
|
||||||
|
|
||||||
export enum UdalostEnum {
|
|
||||||
ZAHAJENA_PIZZA = "Zahájen pizza day",
|
|
||||||
OBJEDNANA_PIZZA = "Objednána pizza",
|
|
||||||
JDEME_OBED = "Jdeme na oběd",
|
|
||||||
}
|
|
||||||
|
|
||||||
export type NotififaceInput = {
|
|
||||||
locationKey?: LocationKey,
|
|
||||||
udalost: UdalostEnum,
|
|
||||||
user: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
export type GotifyServer = {
|
|
||||||
server: string;
|
|
||||||
api_keys: string[];
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Čas preferovaného odchodu na oběd. */
|
|
||||||
export enum DepartureTime {
|
|
||||||
T10_00 = "10:00",
|
|
||||||
T10_15 = "10:15",
|
|
||||||
T10_30 = "10:30",
|
|
||||||
T10_45 = "10:45",
|
|
||||||
T11_00 = "11:00",
|
|
||||||
T11_15 = "11:15",
|
|
||||||
T11_30 = "11:30",
|
|
||||||
T11_45 = "11:45",
|
|
||||||
T12_00 = "12:00",
|
|
||||||
T12_15 = "12:15",
|
|
||||||
T12_30 = "12:30",
|
|
||||||
T12_45 = "12:45",
|
|
||||||
T13_00 = "13:00",
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum FeatureRequest {
|
|
||||||
CUSTOM_QR = "Ruční generování QR kódů mimo Pizza day (např. při objednávání)",
|
|
||||||
FAVORITES = "Možnost označovat si jídla jako oblíbená (taková jídla by se uživateli následně zvýrazňovala)",
|
|
||||||
SINGLE_PAYMENT = "Možnost úhrady v podniku za všechny jednou osobou a následné generování QR ostatním",
|
|
||||||
NO_WEEKENDS = "Zrušení \"užívejte víkend\", místo toho umožnit zpětně náhled na uplynulý týden",
|
|
||||||
QR_FOREVER = "Umožnění zobrazení vygenerovaného QR kódu i po následující dny (dokud ho uživatel ručně \"nezavře\", např. tlačítkem \"Zaplatil jsem\")",
|
|
||||||
PIZZA_PICTURES = "Zobrazování náhledů (fotografií) pizz v rámci Pizza day",
|
|
||||||
STATISTICS = "Statistiky (nejoblíbenější podnik, nejpopulárnější jídla, nejobjednávanější pizzy, nejčastější uživatelé, ...)",
|
|
||||||
RESPONSIVITY = "Vylepšení responzivního designu",
|
|
||||||
SECURITY = "Zvýšení zabezpečení aplikace",
|
|
||||||
SAFETY = "Zvýšená ochrana proti chybám uživatele (potvrzovací dialogy, překliky, ...)",
|
|
||||||
UI = "Celkové vylepšení UI/UX",
|
|
||||||
DEVELOPMENT = "Zlepšení dokumentace/postupů pro ostatní vývojáře"
|
|
||||||
}
|
|
||||||
|
|
||||||
export type EasterEgg = {
|
|
||||||
path: string;
|
|
||||||
url: string;
|
|
||||||
startOffset: number;
|
|
||||||
endOffset: number;
|
|
||||||
duration: number;
|
|
||||||
width?: string;
|
|
||||||
zIndex?: number;
|
|
||||||
position?: "absolute";
|
|
||||||
animationName?: string;
|
|
||||||
animationDuration?: string;
|
|
||||||
animationTimingFunction?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO aktuálně se k ničemu nepoužívá
|
|
||||||
export type AnimationPosition = {
|
|
||||||
left?: string,
|
|
||||||
startLeft?: string,
|
|
||||||
"--start-left"?: string,
|
|
||||||
right?: string,
|
|
||||||
startRight?: string,
|
|
||||||
"--start-right"?: string,
|
|
||||||
top?: string,
|
|
||||||
startTop?: string,
|
|
||||||
"--start-top"?: string,
|
|
||||||
bottom?: string,
|
|
||||||
startBottom?: string,
|
|
||||||
"--start-bottom"?: string,
|
|
||||||
endLeft?: string,
|
|
||||||
"--end-left"?: string,
|
|
||||||
endRight?: string,
|
|
||||||
"--end-right"?: string,
|
|
||||||
endTop?: string,
|
|
||||||
"--end-top"?: string,
|
|
||||||
endBottom?: string,
|
|
||||||
"--end-bottom"?: string,
|
|
||||||
rotate?: string,
|
|
||||||
}
|
|
||||||
88
types/api.yml
Normal file
88
types/api.yml
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
openapi: 3.0.4
|
||||||
|
info:
|
||||||
|
title: Luncher API
|
||||||
|
version: 1.0.0
|
||||||
|
servers:
|
||||||
|
- url: /api
|
||||||
|
paths:
|
||||||
|
# Obecné (/api)
|
||||||
|
/login:
|
||||||
|
$ref: "./paths/login.yml"
|
||||||
|
/qr:
|
||||||
|
$ref: "./paths/getPizzaQr.yml"
|
||||||
|
/data:
|
||||||
|
$ref: "./paths/getData.yml"
|
||||||
|
|
||||||
|
# Restaurace a jídla (/api/food)
|
||||||
|
/food/addChoice:
|
||||||
|
$ref: "./paths/food/addChoice.yml"
|
||||||
|
/food/removeChoice:
|
||||||
|
$ref: "./paths/food/removeChoice.yml"
|
||||||
|
/food/updateNote:
|
||||||
|
$ref: "./paths/food/updateNote.yml"
|
||||||
|
/food/removeChoices:
|
||||||
|
$ref: "./paths/food/removeChoices.yml"
|
||||||
|
/food/changeDepartureTime:
|
||||||
|
$ref: "./paths/food/changeDepartureTime.yml"
|
||||||
|
/food/jdemeObed:
|
||||||
|
$ref: "./paths/food/jdemeObed.yml"
|
||||||
|
|
||||||
|
# Pizza day (/api/pizzaDay)
|
||||||
|
/pizzaDay/create:
|
||||||
|
$ref: "./paths/pizzaDay/create.yml"
|
||||||
|
/pizzaDay/delete:
|
||||||
|
$ref: "./paths/pizzaDay/delete.yml"
|
||||||
|
/pizzaDay/lock:
|
||||||
|
$ref: "./paths/pizzaDay/lock.yml"
|
||||||
|
/pizzaDay/unlock:
|
||||||
|
$ref: "./paths/pizzaDay/unlock.yml"
|
||||||
|
/pizzaDay/finishOrder:
|
||||||
|
$ref: "./paths/pizzaDay/finishOrder.yml"
|
||||||
|
/pizzaDay/finishDelivery:
|
||||||
|
$ref: "./paths/pizzaDay/finishDelivery.yml"
|
||||||
|
/pizzaDay/add:
|
||||||
|
$ref: "./paths/pizzaDay/addPizza.yml"
|
||||||
|
/pizzaDay/remove:
|
||||||
|
$ref: "./paths/pizzaDay/removePizza.yml"
|
||||||
|
/pizzaDay/updatePizzaDayNote:
|
||||||
|
$ref: "./paths/pizzaDay/updatePizzaDayNote.yml"
|
||||||
|
/pizzaDay/updatePizzaFee:
|
||||||
|
$ref: "./paths/pizzaDay/updatePizzaFee.yml"
|
||||||
|
|
||||||
|
# Easter eggy (/api/easterEggs)
|
||||||
|
/easterEggs:
|
||||||
|
$ref: "./paths/easterEggs/easterEggs.yml"
|
||||||
|
/easterEggs/{url}:
|
||||||
|
$ref: "./paths/easterEggs/easterEgg.yml"
|
||||||
|
|
||||||
|
# Statistiky (/api/stats)
|
||||||
|
/stats:
|
||||||
|
$ref: "./paths/stats/stats.yml"
|
||||||
|
|
||||||
|
# Hlasování (/api/voting)
|
||||||
|
/voting/getVotes:
|
||||||
|
$ref: "./paths/voting/getVotes.yml"
|
||||||
|
/voting/updateVote:
|
||||||
|
$ref: "./paths/voting/updateVote.yml"
|
||||||
|
|
||||||
|
# QR kódy (/api/qr)
|
||||||
|
/qr/generate:
|
||||||
|
$ref: "./paths/qr/generateQr.yml"
|
||||||
|
|
||||||
|
components:
|
||||||
|
schemas:
|
||||||
|
$ref: "./schemas/_index.yml"
|
||||||
|
responses:
|
||||||
|
ClientDataResponse:
|
||||||
|
description: Aktuální data pro klienta
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "./schemas/_index.yml#/ClientData"
|
||||||
|
securitySchemes:
|
||||||
|
bearerAuth:
|
||||||
|
type: http
|
||||||
|
scheme: bearer
|
||||||
|
bearerFormat: JWT
|
||||||
|
security:
|
||||||
|
- bearerAuth: []
|
||||||
@@ -1,2 +1 @@
|
|||||||
export * from './Types';
|
export * from './gen';
|
||||||
export * from './RequestTypes';
|
|
||||||
14
types/openapi-ts.config.ts
Normal file
14
types/openapi-ts.config.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { defaultPlugins } from '@hey-api/openapi-ts';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
input: 'api.yml',
|
||||||
|
output: 'gen',
|
||||||
|
plugins: [
|
||||||
|
...defaultPlugins,
|
||||||
|
'@hey-api/client-fetch',
|
||||||
|
{
|
||||||
|
enums: 'javascript',
|
||||||
|
name: '@hey-api/typescript',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
11
types/package.json
Normal file
11
types/package.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "@luncher/types",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"license": "MIT",
|
||||||
|
"private": true,
|
||||||
|
"devDependencies": {
|
||||||
|
"@hey-api/client-fetch": "^0.8.2",
|
||||||
|
"@hey-api/openapi-ts": "^0.64.7",
|
||||||
|
"typescript": "^5.9.3"
|
||||||
|
}
|
||||||
|
}
|
||||||
18
types/paths/easterEggs/easterEgg.yml
Normal file
18
types/paths/easterEggs/easterEgg.yml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
get:
|
||||||
|
operationId: getEasterEggImage
|
||||||
|
summary: Vrátí obrázek konkrétního easter eggu
|
||||||
|
parameters:
|
||||||
|
- in: path
|
||||||
|
name: url
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
description: URL easter eggu
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
content:
|
||||||
|
image/png:
|
||||||
|
description: Obrázek easter eggu
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
format: binary
|
||||||
9
types/paths/easterEggs/easterEggs.yml
Normal file
9
types/paths/easterEggs/easterEggs.yml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
get:
|
||||||
|
operationId: getEasterEgg
|
||||||
|
summary: Vrátí náhodně metadata jednoho z definovaných easter egg obrázků pro přihlášeného uživatele, nebo nic, pokud žádné definované nemá.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "../../schemas/_index.yml#/EasterEgg"
|
||||||
20
types/paths/food/addChoice.yml
Normal file
20
types/paths/food/addChoice.yml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
post:
|
||||||
|
operationId: addChoice
|
||||||
|
summary: Přidání či nahrazení volby uživatele pro zvolený den/podnik
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
required:
|
||||||
|
- locationKey
|
||||||
|
properties:
|
||||||
|
locationKey:
|
||||||
|
$ref: "../../schemas/_index.yml#/LunchChoice"
|
||||||
|
dayIndex:
|
||||||
|
$ref: "../../schemas/_index.yml#/DayIndex"
|
||||||
|
foodIndex:
|
||||||
|
$ref: "../../schemas/_index.yml#/FoodIndex"
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
$ref: "../../api.yml#/components/responses/ClientDataResponse"
|
||||||
16
types/paths/food/changeDepartureTime.yml
Normal file
16
types/paths/food/changeDepartureTime.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
post:
|
||||||
|
operationId: changeDepartureTime
|
||||||
|
summary: Úprava preferovaného času odchodu do aktuálně zvoleného podniku.
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
properties:
|
||||||
|
dayIndex:
|
||||||
|
$ref: "../../schemas/_index.yml#/DayIndex"
|
||||||
|
time:
|
||||||
|
$ref: "../../schemas/_index.yml#/DepartureTime"
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
$ref: "../../api.yml#/components/responses/ClientDataResponse"
|
||||||
6
types/paths/food/jdemeObed.yml
Normal file
6
types/paths/food/jdemeObed.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
post:
|
||||||
|
operationId: jdemeObed
|
||||||
|
summary: Odeslání notifikací "jdeme na oběd" dle konfigurace.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Notifikace byly odeslány.
|
||||||
21
types/paths/food/removeChoice.yml
Normal file
21
types/paths/food/removeChoice.yml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
post:
|
||||||
|
operationId: removeChoice
|
||||||
|
summary: Odstranění jednoho zvoleného jídla uživatele pro zvolený den/podnik
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
required:
|
||||||
|
- foodIndex
|
||||||
|
- locationKey
|
||||||
|
properties:
|
||||||
|
foodIndex:
|
||||||
|
$ref: "../../schemas/_index.yml#/FoodIndex"
|
||||||
|
locationKey:
|
||||||
|
$ref: "../../schemas/_index.yml#/LunchChoice"
|
||||||
|
dayIndex:
|
||||||
|
$ref: "../../schemas/_index.yml#/DayIndex"
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
$ref: "../../api.yml#/components/responses/ClientDataResponse"
|
||||||
18
types/paths/food/removeChoices.yml
Normal file
18
types/paths/food/removeChoices.yml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
post:
|
||||||
|
operationId: removeChoices
|
||||||
|
summary: Odstranění volby uživatele pro zvolený den/podnik, včetně případných jídel
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
required:
|
||||||
|
- locationKey
|
||||||
|
properties:
|
||||||
|
locationKey:
|
||||||
|
$ref: "../../schemas/_index.yml#/LunchChoice"
|
||||||
|
dayIndex:
|
||||||
|
$ref: "../../schemas/_index.yml#/DayIndex"
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
$ref: "../../api.yml#/components/responses/ClientDataResponse"
|
||||||
16
types/paths/food/updateNote.yml
Normal file
16
types/paths/food/updateNote.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
post:
|
||||||
|
operationId: updateNote
|
||||||
|
summary: Nastavení poznámky k volbě uživatele
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
properties:
|
||||||
|
dayIndex:
|
||||||
|
$ref: "../../schemas/_index.yml#/DayIndex"
|
||||||
|
note:
|
||||||
|
type: string
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
$ref: "../../api.yml#/components/responses/ClientDataResponse"
|
||||||
14
types/paths/getData.yml
Normal file
14
types/paths/getData.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
get:
|
||||||
|
operationId: getData
|
||||||
|
summary: Načtení klientských dat pro aktuální nebo předaný den
|
||||||
|
parameters:
|
||||||
|
- in: query
|
||||||
|
name: dayIndex
|
||||||
|
description: Index dne v týdnu. Pokud není předán, je použit aktuální den.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
minimum: 0
|
||||||
|
maximum: 4
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
$ref: "../api.yml#/components/responses/ClientDataResponse"
|
||||||
19
types/paths/getPizzaQr.yml
Normal file
19
types/paths/getPizzaQr.yml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
get:
|
||||||
|
operationId: getPizzaQr
|
||||||
|
summary: Získání QR kódu pro platbu za Pizza day
|
||||||
|
security: [] # Nevyžaduje autentizaci
|
||||||
|
parameters:
|
||||||
|
- in: query
|
||||||
|
name: login
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
description: Přihlašovací jméno uživatele, pro kterého bude vrácen QR kód
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Vygenerovaný QR kód pro platbu
|
||||||
|
content:
|
||||||
|
image/png:
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
format: binary
|
||||||
20
types/paths/login.yml
Normal file
20
types/paths/login.yml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
post:
|
||||||
|
operationId: login
|
||||||
|
summary: Přihlášení uživatele
|
||||||
|
security: [] # Nevyžaduje autentizaci
|
||||||
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
login:
|
||||||
|
type: string
|
||||||
|
description: Přihlašovací jméno uživatele. Vyžadováno pouze pokud není předáno pomocí hlaviček.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Přihlášení bylo úspěšné
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "../schemas/_index.yml#/JWTToken"
|
||||||
21
types/paths/pizzaDay/addPizza.yml
Normal file
21
types/paths/pizzaDay/addPizza.yml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
post:
|
||||||
|
operationId: addPizza
|
||||||
|
summary: Přidání pizzy do objednávky.
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
required:
|
||||||
|
- pizzaIndex
|
||||||
|
- pizzaSizeIndex
|
||||||
|
properties:
|
||||||
|
pizzaIndex:
|
||||||
|
description: Index pizzy v nabídce
|
||||||
|
type: integer
|
||||||
|
pizzaSizeIndex:
|
||||||
|
description: Index velikosti pizzy v nabídce variant
|
||||||
|
type: integer
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Přidání pizzy do objednávky proběhlo úspěšně.
|
||||||
6
types/paths/pizzaDay/create.yml
Normal file
6
types/paths/pizzaDay/create.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
post:
|
||||||
|
operationId: createPizzaDay
|
||||||
|
summary: Založení pizza day.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Pizza day byl založen.
|
||||||
6
types/paths/pizzaDay/delete.yml
Normal file
6
types/paths/pizzaDay/delete.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
post:
|
||||||
|
operationId: deletePizzaDay
|
||||||
|
summary: Smazání pizza day.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Pizza day byl smazán.
|
||||||
18
types/paths/pizzaDay/finishDelivery.yml
Normal file
18
types/paths/pizzaDay/finishDelivery.yml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
post:
|
||||||
|
operationId: finishDelivery
|
||||||
|
summary: Převod pizza day do stavu "Pizzy byly doručeny". Pokud má objednávající nastaveno číslo účtu, je ostatním uživatelům vygenerován a následně zobrazen QR kód pro úhradu jejich objednávky.
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
properties:
|
||||||
|
bankAccount:
|
||||||
|
description: Číslo bankovního účtu objednávajícího
|
||||||
|
type: string
|
||||||
|
bankAccountHolder:
|
||||||
|
description: Jméno majitele bankovního účtu
|
||||||
|
type: string
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Pizza day byl přepnut do stavu "Pizzy doručeny".
|
||||||
6
types/paths/pizzaDay/finishOrder.yml
Normal file
6
types/paths/pizzaDay/finishOrder.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
post:
|
||||||
|
operationId: finishOrder
|
||||||
|
summary: Přepnutí pizza day do stavu "Pizzy objednány". Není možné měnit objednávky, příslušným uživatelům je odeslána notifikace o provedené objednávce.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Pizza day byl přepnut do stavu "Pizzy objednány".
|
||||||
6
types/paths/pizzaDay/lock.yml
Normal file
6
types/paths/pizzaDay/lock.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
post:
|
||||||
|
operationId: lockPizzaDay
|
||||||
|
summary: Uzamkne pizza day. Nebude možné přidávat či odebírat pizzy.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Pizza day byl uzamčen.
|
||||||
16
types/paths/pizzaDay/removePizza.yml
Normal file
16
types/paths/pizzaDay/removePizza.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
post:
|
||||||
|
operationId: removePizza
|
||||||
|
summary: Odstranění pizzy z objednávky.
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
required:
|
||||||
|
- pizzaOrder
|
||||||
|
properties:
|
||||||
|
pizzaOrder:
|
||||||
|
$ref: "../../schemas/_index.yml#/PizzaVariant"
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Odstranění pizzy z objednávky proběhlo úspěšně.
|
||||||
6
types/paths/pizzaDay/unlock.yml
Normal file
6
types/paths/pizzaDay/unlock.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
post:
|
||||||
|
operationId: unlockPizzaDay
|
||||||
|
summary: Odemkne pizza day. Bude opět možné přidávat či odebírat pizzy.
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Pizza day byl odemčen.
|
||||||
15
types/paths/pizzaDay/updatePizzaDayNote.yml
Normal file
15
types/paths/pizzaDay/updatePizzaDayNote.yml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
post:
|
||||||
|
operationId: updatePizzaDayNote
|
||||||
|
summary: Nastavení poznámky k objednávkám pizz přihlášeného uživatele.
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
properties:
|
||||||
|
note:
|
||||||
|
type: string
|
||||||
|
description: Poznámka k objednávkám pizz, např "bez oliv".
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Nastavení poznámky k objednávkám pizz proběhlo úspěšně.
|
||||||
23
types/paths/pizzaDay/updatePizzaFee.yml
Normal file
23
types/paths/pizzaDay/updatePizzaFee.yml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
post:
|
||||||
|
operationId: updatePizzaFee
|
||||||
|
summary: Nastavení přirážky/slevy k objednávce pizz uživatele.
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
required:
|
||||||
|
- login
|
||||||
|
properties:
|
||||||
|
login:
|
||||||
|
type: string
|
||||||
|
description: Login cíleného uživatele
|
||||||
|
text:
|
||||||
|
type: string
|
||||||
|
description: Textový popis přirážky/slevy
|
||||||
|
price:
|
||||||
|
type: number
|
||||||
|
description: Částka přirážky/slevy v Kč
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Nastavení přirážky/slevy proběhlo úspěšně.
|
||||||
12
types/paths/qr/generateQr.yml
Normal file
12
types/paths/qr/generateQr.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
post:
|
||||||
|
operationId: generateQr
|
||||||
|
summary: Generování QR kódů.
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "../../schemas/_index.yml#/GenerateQrCodesRequest"
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: QR kódy byly úspěšně vygenerovány.
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user