Porządki v1
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap"
|
||||
rel="stylesheet">
|
||||
<link rel="stylesheet" href="assets/css/stolik3_api.css">
|
||||
<link rel="stylesheet" href="assets/css/app.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@@ -366,7 +366,7 @@
|
||||
<span style="font-size:20px;">✓</span> <span id="toastText">Wysłano!</span>
|
||||
</div>
|
||||
|
||||
<script src="assets/js/stolik3_api.js"></script>
|
||||
<script src="assets/js/app.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,628 +0,0 @@
|
||||
:root {
|
||||
--primary: #e2b07e; /* Ciepłe złoto/miedź */
|
||||
--bg: #0f0f11;
|
||||
--surface: #1c1c1f;
|
||||
--surface-light: #2c2c2e;
|
||||
--text-main: #ffffff;
|
||||
--text-muted: #9a9a9e;
|
||||
--success: #4ade80;
|
||||
--accent: #f59e0b;
|
||||
--radius: 20px;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Plus Jakarta Sans', sans-serif;
|
||||
background-color: var(--bg);
|
||||
color: var(--text-main);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* --- LOADER SCREEN --- */
|
||||
#loadingScreen {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 100;
|
||||
background: var(--bg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px;
|
||||
text-align: center;
|
||||
transition: opacity 0.5s ease, visibility 0.5s;
|
||||
}
|
||||
|
||||
.loader-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border: 3px solid var(--surface-light);
|
||||
border-top: 3px solid var(--primary);
|
||||
border-radius: 50%;
|
||||
animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.loader-text h2 {
|
||||
font-family: 'Playfair Display', serif;
|
||||
margin: 0 0 8px;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.loader-msg { color: var(--text-muted); font-size: 14px; min-height: 20px; }
|
||||
|
||||
/* --- MAIN LAYOUT --- */
|
||||
.container {
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
padding: 24px 16px 100px;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin-bottom: 32px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: 28px;
|
||||
margin: 0;
|
||||
background: linear-gradient(to right, #fff, var(--primary));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.table-badge {
|
||||
display: inline-block;
|
||||
background: var(--surface-light);
|
||||
padding: 6px 16px;
|
||||
border-radius: 99px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
margin-top: 8px;
|
||||
color: var(--primary);
|
||||
border: 1px solid rgba(226, 176, 126, 0.2);
|
||||
}
|
||||
|
||||
/* --- STATUS CARD --- */
|
||||
.status-card {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius);
|
||||
padding: 24px;
|
||||
margin-bottom: 24px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
|
||||
border: 1px solid rgba(255,255,255,0.05);
|
||||
}
|
||||
|
||||
.status-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.status-title {
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
color: var(--text-muted);
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.status-value {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
height: 8px;
|
||||
background: var(--surface-light);
|
||||
border-radius: 10px;
|
||||
margin: 15px 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: linear-gradient(90deg, var(--primary), var(--accent));
|
||||
box-shadow: 0 0 15px rgba(226, 176, 126, 0.4);
|
||||
transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
/* --- ITEMS LIST --- */
|
||||
.items-container h3 {
|
||||
font-size: 18px;
|
||||
margin: 0 0 16px 8px;
|
||||
}
|
||||
|
||||
.item-card {
|
||||
background: var(--surface);
|
||||
margin-bottom: 12px;
|
||||
padding: 16px;
|
||||
border-radius: 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
transition: transform 0.2s;
|
||||
border-left: 4px solid var(--surface-light);
|
||||
}
|
||||
|
||||
.item-card.ready { border-left-color: var(--success); }
|
||||
.item-card.archived { opacity: 0.82; }
|
||||
|
||||
.history-section { margin-top: 26px; }
|
||||
.history-note {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
margin: 0 0 12px 8px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.item-info { display: flex; flex-direction: column; }
|
||||
.item-name { font-weight: 600; font-size: 16px; }
|
||||
.item-meta { font-size: 12px; color: var(--text-muted); }
|
||||
|
||||
.item-qty {
|
||||
background: var(--surface-light);
|
||||
padding: 6px 12px;
|
||||
border-radius: 10px;
|
||||
font-weight: 700;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
/* --- EMPTY STATE --- */
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
|
||||
|
||||
/* --- ANIMATIONS --- */
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
|
||||
.hidden { opacity: 0; visibility: hidden; pointer-events: none; display: none; }
|
||||
|
||||
.meta-footer {
|
||||
font-size: 11px;
|
||||
color: var(--text-muted);
|
||||
margin-top: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* --- ACTION CARD --- */
|
||||
.action-card {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius);
|
||||
padding: 16px;
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
|
||||
border: 1px solid rgba(255,255,255,0.05);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.action-card h3 {
|
||||
font-size: 15px;
|
||||
margin: 0 0 12px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.action-buttons {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
font-family: inherit;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
padding: 14px 20px;
|
||||
border-radius: 12px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.action-btn {
|
||||
flex-direction: column;
|
||||
font-size: 13px;
|
||||
line-height: 1.3;
|
||||
padding: 14px 8px;
|
||||
gap: 6px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.action-btn span {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, var(--primary), var(--accent));
|
||||
color: var(--bg);
|
||||
box-shadow: 0 4px 15px rgba(226, 176, 126, 0.3);
|
||||
}
|
||||
|
||||
.btn-primary:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: var(--surface-light);
|
||||
color: var(--primary);
|
||||
border: 1px solid rgba(226, 176, 126, 0.2);
|
||||
}
|
||||
|
||||
.btn-secondary:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
/* --- MODAL DIALOG --- */
|
||||
.modal-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(15, 15, 17, 0.85);
|
||||
backdrop-filter: blur(8px);
|
||||
z-index: 200;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: opacity 0.3s ease, visibility 0.3s;
|
||||
}
|
||||
|
||||
.modal-overlay.active {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background: var(--surface);
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
border-radius: 24px;
|
||||
padding: 24px;
|
||||
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
transform: translateY(20px) scale(0.95);
|
||||
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||
}
|
||||
|
||||
.modal-overlay.active .modal-content {
|
||||
transform: translateY(0) scale(1);
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.modal-header h3 {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
color: var(--primary);
|
||||
font-family: 'Playfair Display', serif;
|
||||
}
|
||||
|
||||
.close-btn {
|
||||
background: transparent;
|
||||
color: var(--text-muted);
|
||||
border: none;
|
||||
font-size: 28px;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
line-height: 1;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.close-btn:hover {
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.step {
|
||||
display: none;
|
||||
animation: fadeInStep 0.4s ease forwards;
|
||||
}
|
||||
|
||||
.step.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@keyframes fadeInStep {
|
||||
from { opacity: 0; transform: translateX(10px); }
|
||||
to { opacity: 1; transform: translateX(0); }
|
||||
}
|
||||
|
||||
.option-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 12px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.option-card {
|
||||
background: var(--surface-light);
|
||||
border: 1px solid rgba(226, 176, 126, 0.1);
|
||||
border-radius: 16px;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.option-card:hover {
|
||||
background: rgba(226, 176, 126, 0.15);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.option-icon {
|
||||
font-size: 32px;
|
||||
margin-bottom: 8px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.option-label {
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.input-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.input-label {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.input-field {
|
||||
width: 100%;
|
||||
background: var(--bg);
|
||||
border: 1px solid var(--surface-light);
|
||||
color: var(--text-main);
|
||||
padding: 14px;
|
||||
border-radius: 12px;
|
||||
font-family: inherit;
|
||||
font-size: 16px;
|
||||
transition: border-color 0.2s;
|
||||
}
|
||||
|
||||
.input-field:focus {
|
||||
outline: none;
|
||||
border-color: var(--primary);
|
||||
box-shadow: 0 0 0 2px rgba(226, 176, 126, 0.2);
|
||||
}
|
||||
|
||||
.company-details {
|
||||
background: var(--bg);
|
||||
padding: 16px;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 24px;
|
||||
border: 1px solid var(--surface-light);
|
||||
}
|
||||
|
||||
.company-input {
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
border: 1px solid transparent;
|
||||
color: var(--text-main);
|
||||
font-family: inherit;
|
||||
font-size: 15px;
|
||||
padding: 8px;
|
||||
border-radius: 8px;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.company-input:not([readonly]) {
|
||||
border-color: var(--surface-light);
|
||||
background: var(--surface-light);
|
||||
}
|
||||
|
||||
.company-input:not([readonly]):focus {
|
||||
outline: none;
|
||||
border-color: var(--primary);
|
||||
}
|
||||
|
||||
.company-input.muted {
|
||||
color: var(--text-muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* --- TOAST --- */
|
||||
.toast {
|
||||
position: fixed;
|
||||
bottom: 30px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(100px);
|
||||
background: linear-gradient(135deg, var(--success), #22c55e);
|
||||
color: var(--bg);
|
||||
padding: 14px 28px;
|
||||
border-radius: 30px;
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
|
||||
opacity: 0;
|
||||
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
||||
z-index: 300;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.toast.active {
|
||||
transform: translateX(-50%) translateY(0);
|
||||
opacity: 1;
|
||||
}
|
||||
/* --- KITCHEN ANIMATION --- */
|
||||
.kitchen-anim {
|
||||
position: relative;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.pan-emoji {
|
||||
font-size: 30px;
|
||||
z-index: 2;
|
||||
animation: panToss 1.5s infinite ease-in-out;
|
||||
transform-origin: 70% 70%;
|
||||
}
|
||||
.fire-emoji {
|
||||
position: absolute;
|
||||
bottom: -5px;
|
||||
left: 5px;
|
||||
font-size: 24px;
|
||||
z-index: 1;
|
||||
animation: fireFlicker 0.4s infinite alternate;
|
||||
}
|
||||
@keyframes panToss {
|
||||
0%, 100% { transform: rotate(0deg) translateY(0); }
|
||||
50% { transform: rotate(-20deg) translateY(-8px); }
|
||||
}
|
||||
@keyframes fireFlicker {
|
||||
0% { transform: scale(1) rotate(-3deg); opacity: 0.8; filter: drop-shadow(0 0 5px var(--accent)); }
|
||||
100% { transform: scale(1.1) rotate(3deg); opacity: 1; filter: drop-shadow(0 0 10px var(--accent)); }
|
||||
}
|
||||
/* Wariant 2: Uciekająca Kura */
|
||||
.anim-run {
|
||||
position: relative;
|
||||
width: 100px;
|
||||
height: 40px;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.anim-run .chicken {
|
||||
position: absolute;
|
||||
font-size: 24px;
|
||||
animation: runLeft 3s infinite linear;
|
||||
}
|
||||
.anim-run .chef {
|
||||
position: absolute;
|
||||
font-size: 28px;
|
||||
animation: runLeftChef 3s infinite linear;
|
||||
}
|
||||
@keyframes runLeft {
|
||||
0% { transform: translateX(100px); }
|
||||
100% { transform: translateX(-40px); }
|
||||
}
|
||||
@keyframes runLeftChef {
|
||||
0% { transform: translateX(140px); }
|
||||
100% { transform: translateX(0px); }
|
||||
}
|
||||
|
||||
/* Wariant 3: Kura w garnku */
|
||||
.anim-pot {
|
||||
position: relative;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: center;
|
||||
}
|
||||
.anim-pot .pot-emoji {
|
||||
font-size: 32px;
|
||||
z-index: 2;
|
||||
}
|
||||
.anim-pot .chicken-head {
|
||||
position: absolute;
|
||||
font-size: 24px;
|
||||
bottom: 10px;
|
||||
z-index: 1;
|
||||
animation: peekaboo 4s infinite ease-in-out;
|
||||
}
|
||||
@keyframes peekaboo {
|
||||
0%, 100%, 80% { transform: translateY(15px); opacity: 0; }
|
||||
30%, 50% { transform: translateY(0px); opacity: 1; }
|
||||
}
|
||||
|
||||
/* Wariant 4: Latająca pizza */
|
||||
.anim-pizza {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.anim-pizza .chef-pizza {
|
||||
font-size: 28px;
|
||||
z-index: 1;
|
||||
}
|
||||
.anim-pizza .pizza-emoji {
|
||||
position: absolute;
|
||||
font-size: 20px;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
animation: spinPizza 2s infinite ease-in-out;
|
||||
}
|
||||
@keyframes spinPizza {
|
||||
0%, 100% { transform: translateY(0) rotate(0deg); }
|
||||
50% { transform: translateY(-15px) rotate(360deg); }
|
||||
}
|
||||
|
||||
/* Wariant 5: Nerwowa świnka */
|
||||
.anim-pig {
|
||||
position: relative;
|
||||
width: 60px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.anim-pig .pig-emoji {
|
||||
font-size: 28px;
|
||||
animation: nervous 0.2s infinite;
|
||||
}
|
||||
.anim-pig .sweat-emoji {
|
||||
position: absolute;
|
||||
font-size: 16px;
|
||||
top: 0;
|
||||
right: 15px;
|
||||
animation: sweatDrop 1s infinite;
|
||||
}
|
||||
.anim-pig .knife-emoji {
|
||||
position: absolute;
|
||||
font-size: 20px;
|
||||
right: -10px;
|
||||
animation: knifeStab 2s infinite ease-in-out;
|
||||
}
|
||||
@keyframes nervous {
|
||||
0%, 100% { transform: translateX(0); }
|
||||
50% { transform: translateX(2px); }
|
||||
}
|
||||
@keyframes sweatDrop {
|
||||
0% { transform: translateY(0); opacity: 1; }
|
||||
100% { transform: translateY(10px); opacity: 0; }
|
||||
}
|
||||
@keyframes knifeStab {
|
||||
0%, 100% { transform: translateX(10px); opacity: 0; }
|
||||
50% { transform: translateX(0px); opacity: 1; }
|
||||
}
|
||||
@@ -1,639 +0,0 @@
|
||||
window.kitchenAnimations = [
|
||||
`<div class="kitchen-anim"><div class="fire-emoji">🔥</div><div class="pan-emoji">🍳</div></div>`,
|
||||
`<div class="anim-run"><div class="chicken">🐓</div><div class="chef">👨🍳</div></div>`,
|
||||
`<div class="anim-pot"><div class="chicken-head">🐓</div><div class="pot-emoji">🍲</div></div>`,
|
||||
`<div class="anim-pizza"><div class="chef-pizza">👨🍳</div><div class="pizza-emoji">🍕</div></div>`,
|
||||
`<div class="anim-pig"><div class="pig-emoji">🐷</div><div class="sweat-emoji">💦</div><div class="knife-emoji">🍴</div></div>`
|
||||
];
|
||||
window.selectedAnimationHtml = null;
|
||||
|
||||
const params = new URLSearchParams(location.search);
|
||||
let hashParam = (params.get("h") || "").trim();
|
||||
|
||||
// Jeśli brak hasha w URL – zapytaj użytkownika (np. do testów)
|
||||
if (!hashParam) {
|
||||
const input = prompt("Podaj bezpieczny hash stolika (wymagane):");
|
||||
const trimmed = (input || "").trim();
|
||||
if (trimmed) {
|
||||
const newUrl = new URL(location.href);
|
||||
newUrl.searchParams.set("h", trimmed);
|
||||
location.replace(newUrl.toString());
|
||||
}
|
||||
}
|
||||
|
||||
let tableParam = ""; // Puste, zostanie uzupełnione przez backend
|
||||
|
||||
// UI Elements
|
||||
const loadingScreen = document.getElementById("loadingScreen");
|
||||
const loaderMsg = document.getElementById("loaderMsg");
|
||||
const tableLabel = document.getElementById("tableLabel");
|
||||
const prepStatus = document.getElementById("prepStatus");
|
||||
const progressBar = document.getElementById("progressBar");
|
||||
const statusMeta = document.getElementById("statusMeta");
|
||||
const itemsList = document.getElementById("itemsList");
|
||||
const emptyState = document.getElementById("emptyState");
|
||||
const metaFooter = document.getElementById("metaFooter");
|
||||
const statusIcon = document.getElementById("statusIcon");
|
||||
const storageKey = `stolik2_state_${(tableParam || "unknown").toLowerCase()}`;
|
||||
const historyKey = "stolik2_global_history";
|
||||
const historySection = document.getElementById("historySection");
|
||||
const historyList = document.getElementById("historyList");
|
||||
const SIX_MONTHS_MS = 180 * 24 * 60 * 60 * 1000;
|
||||
const HOT_WINDOW_MS = 5 * 60 * 60 * 1000;
|
||||
|
||||
// Dynamic Loader Messages
|
||||
const LOADER_MIN_MS = 10_000;
|
||||
const loadStartTime = Date.now();
|
||||
|
||||
const msgs = ["Rozgrzewamy piece...", "Szef kuchni sprawdza składniki...", "Łączenie z sercem restauracji...", "Prawie gotowe..."];
|
||||
let msgIdx = 0;
|
||||
const msgInterval = setInterval(() => {
|
||||
msgIdx = (msgIdx + 1) % msgs.length;
|
||||
loaderMsg.textContent = msgs[msgIdx];
|
||||
}, 4000);
|
||||
|
||||
// Initial State
|
||||
if (tableParam) {
|
||||
tableLabel.textContent = `Stolik ${tableParam}`;
|
||||
}
|
||||
|
||||
function hideLoader() {
|
||||
const elapsed = Date.now() - loadStartTime;
|
||||
const remaining = Math.max(0, LOADER_MIN_MS - elapsed);
|
||||
setTimeout(() => {
|
||||
loadingScreen.classList.add("hidden");
|
||||
clearInterval(msgInterval);
|
||||
}, remaining);
|
||||
}
|
||||
|
||||
function updateUI(bills) {
|
||||
// Hide loader after minimum display time
|
||||
hideLoader();
|
||||
|
||||
const allArticles = bills.flatMap(b => Array.isArray(b?.Articles) ? b.Articles : []);
|
||||
const items = mergeWithPersistedItems(allArticles);
|
||||
renderGlobalHistory();
|
||||
|
||||
if (items.length === 0) {
|
||||
showEmptyState();
|
||||
return;
|
||||
}
|
||||
|
||||
renderItems(items);
|
||||
updateStatus(bills, items);
|
||||
}
|
||||
|
||||
function detectTableCandidates(bill) {
|
||||
const remark = String(bill?.Remark || "");
|
||||
const description = String(bill?.Description || "").trim();
|
||||
|
||||
// 1) klasyczny format: "STOLIK 9", "STOLIK 11A"
|
||||
const stolikMatch = remark.match(/STOLIK\s*([0-9A-Z]+)/i);
|
||||
const fromRemark = stolikMatch ? stolikMatch[1].toLowerCase() : "";
|
||||
|
||||
// 2) czasem numer bywa w samym Description
|
||||
const fromDescription = description.toLowerCase();
|
||||
|
||||
return { fromRemark, fromDescription, remark: remark.toLowerCase() };
|
||||
}
|
||||
|
||||
function showEmptyState() {
|
||||
emptyState.classList.remove("hidden");
|
||||
itemsList.innerHTML = "";
|
||||
prepStatus.textContent = "Brak aktywnych zamówień";
|
||||
statusIcon.textContent = "🍃";
|
||||
progressBar.style.width = "0%";
|
||||
statusMeta.textContent = "Zapraszamy do złożenia zamówienia u kelnera.";
|
||||
// Historia może istnieć nawet gdy brak bieżących pozycji
|
||||
renderGlobalHistory();
|
||||
}
|
||||
|
||||
function normalizeArticleName(rawName) {
|
||||
const name = String(rawName || "Pozycja");
|
||||
|
||||
// Usuwa gramatury typu: "300G", "250 G", "500/200/150G".
|
||||
const withoutWeight = name.replace(
|
||||
/\b\d+(?:[.,]\d+)?(?:\s*\/\s*\d+(?:[.,]\d+)?)*\s*[gG]\b/g,
|
||||
""
|
||||
);
|
||||
|
||||
return withoutWeight
|
||||
.replace(/\s{2,}/g, " ")
|
||||
.replace(/\s+([,.;:!?])/g, "$1")
|
||||
.trim() || "Pozycja";
|
||||
}
|
||||
|
||||
function loadPersistedItems() {
|
||||
try {
|
||||
const raw = localStorage.getItem(storageKey);
|
||||
if (!raw) return [];
|
||||
const parsed = JSON.parse(raw);
|
||||
return Array.isArray(parsed) ? parsed : [];
|
||||
} catch {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
function savePersistedItems(items) {
|
||||
try {
|
||||
localStorage.setItem(storageKey, JSON.stringify(items));
|
||||
} catch {
|
||||
// brak miejsca/tryb prywatny
|
||||
}
|
||||
}
|
||||
|
||||
function loadGlobalHistory() {
|
||||
try {
|
||||
const raw = localStorage.getItem(historyKey);
|
||||
if (!raw) return [];
|
||||
const parsed = JSON.parse(raw);
|
||||
return Array.isArray(parsed) ? parsed : [];
|
||||
} catch {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
function saveGlobalHistory(entries) {
|
||||
const now = Date.now();
|
||||
const cleaned = entries
|
||||
.filter((e) => e && e.name && Number.isFinite(e.archivedAt))
|
||||
.filter((e) => (now - e.archivedAt) <= SIX_MONTHS_MS);
|
||||
|
||||
try {
|
||||
localStorage.setItem(historyKey, JSON.stringify(cleaned));
|
||||
} catch {
|
||||
// ignore storage errors
|
||||
}
|
||||
}
|
||||
|
||||
function addItemsToGlobalHistory(items, sourceTable) {
|
||||
if (!items.length) return;
|
||||
const now = Date.now();
|
||||
const existing = loadGlobalHistory();
|
||||
|
||||
// zapobiegamy dokładnym duplikatom (ta sama nazwa + qty + stół blisko czasu)
|
||||
const dedupWindowMs = 2 * 60 * 1000;
|
||||
const toAdd = items.filter((item) => {
|
||||
return !existing.some((h) =>
|
||||
h.name === item.name &&
|
||||
Number(h.qty) === Number(item.qty) &&
|
||||
String(h.sourceTable || "") === String(sourceTable || "") &&
|
||||
Math.abs((h.archivedAt || 0) - now) <= dedupWindowMs
|
||||
);
|
||||
}).map((item) => ({
|
||||
name: item.name,
|
||||
qty: item.qty,
|
||||
sourceTable: sourceTable || "?",
|
||||
archivedAt: now
|
||||
}));
|
||||
|
||||
if (!toAdd.length) return;
|
||||
saveGlobalHistory([...existing, ...toAdd]);
|
||||
}
|
||||
|
||||
function renderGlobalHistory() {
|
||||
const now = Date.now();
|
||||
const history = loadGlobalHistory()
|
||||
.filter((e) => (now - (e.archivedAt || 0)) <= SIX_MONTHS_MS)
|
||||
.sort((a, b) => (b.archivedAt || 0) - (a.archivedAt || 0));
|
||||
|
||||
saveGlobalHistory(history);
|
||||
|
||||
if (!history.length) {
|
||||
historySection.classList.add("hidden");
|
||||
historyList.innerHTML = "";
|
||||
return;
|
||||
}
|
||||
|
||||
historySection.classList.remove("hidden");
|
||||
historyList.innerHTML = "";
|
||||
|
||||
history.forEach((entry) => {
|
||||
const dt = new Date(entry.archivedAt || Date.now());
|
||||
const div = document.createElement("div");
|
||||
div.className = "item-card archived ready";
|
||||
div.innerHTML = `
|
||||
<div class="item-info">
|
||||
<span class="item-name">${entry.name}</span>
|
||||
<span class="item-meta">Stolik ${entry.sourceTable || "?"} • ${dt.toLocaleDateString("pl-PL")} ${dt.toLocaleTimeString([], {hour:'2-digit', minute:'2-digit'})}</span>
|
||||
</div>
|
||||
<div class="item-qty">x${entry.qty}</div>
|
||||
`;
|
||||
historyList.appendChild(div);
|
||||
});
|
||||
}
|
||||
|
||||
function mergeWithPersistedItems(articles) {
|
||||
const current = new Map();
|
||||
|
||||
articles.forEach(a => {
|
||||
const name = normalizeArticleName(a.Name);
|
||||
const todo = parseFloat(String(a.QuantityToDo || a.QuantitySet || "0").replace(",","."));
|
||||
const done = parseFloat(String(a.QuantityDone || "0").replace(",","."));
|
||||
|
||||
if (!current.has(name)) {
|
||||
current.set(name, { name, qty: 0, done: 0, present: true, completedByDisappear: false });
|
||||
}
|
||||
const curr = current.get(name);
|
||||
curr.qty += Number.isFinite(todo) ? todo : 0;
|
||||
curr.done += Number.isFinite(done) ? done : 0;
|
||||
});
|
||||
|
||||
const persisted = loadPersistedItems();
|
||||
const persistedMap = new Map(persisted.map(i => [i.name, i]));
|
||||
const merged = [];
|
||||
|
||||
// Aktualnie obecne pozycje z WS
|
||||
current.forEach((item) => {
|
||||
merged.push({
|
||||
...item,
|
||||
present: true,
|
||||
completedByDisappear: false,
|
||||
updatedAt: Date.now()
|
||||
});
|
||||
});
|
||||
|
||||
// Pozycje, które były wcześniej, ale zniknęły z API -> przesyłamy od razu do historii globalnej
|
||||
persistedMap.forEach((oldItem, name) => {
|
||||
if (current.has(name)) return;
|
||||
const qty = Number.isFinite(oldItem?.qty) ? oldItem.qty : 0;
|
||||
|
||||
// Zniknęło z bieżącego rachunku (np. rachunek został zamknięty), od razu leci do osobnego bloku historii!
|
||||
addItemsToGlobalHistory([{ name, qty }], tableParam);
|
||||
});
|
||||
|
||||
// Aktywne na górze, gotowe (zniknięte) na dole
|
||||
merged.sort((a, b) => {
|
||||
if (a.present !== b.present) return a.present ? -1 : 1;
|
||||
return a.name.localeCompare(b.name, "pl");
|
||||
});
|
||||
|
||||
savePersistedItems(merged);
|
||||
return merged;
|
||||
}
|
||||
|
||||
function renderItems(items) {
|
||||
emptyState.classList.add("hidden");
|
||||
itemsList.innerHTML = "";
|
||||
|
||||
items.forEach((item) => {
|
||||
const isReady = item.done >= item.qty && item.qty > 0;
|
||||
const div = document.createElement("div");
|
||||
div.className = `item-card ${isReady ? 'ready' : ''} ${item.present ? '' : 'archived'}`;
|
||||
|
||||
let meta = "🔥 W przygotowaniu";
|
||||
if (isReady && item.completedByDisappear) {
|
||||
meta = "✅ Gotowe (zrealizowane)";
|
||||
} else if (isReady) {
|
||||
meta = "✅ Gotowe";
|
||||
}
|
||||
|
||||
div.innerHTML = `
|
||||
<div class="item-info">
|
||||
<span class="item-name">${item.name}</span>
|
||||
<span class="item-meta">${meta}</span>
|
||||
</div>
|
||||
<div class="item-qty">x${item.qty}</div>
|
||||
`;
|
||||
itemsList.appendChild(div);
|
||||
});
|
||||
|
||||
renderGlobalHistory();
|
||||
}
|
||||
|
||||
function updateStatus(bills, items) {
|
||||
let total = 0;
|
||||
let done = 0;
|
||||
items.forEach(i => {
|
||||
total += Number.isFinite(i.qty) ? i.qty : 0;
|
||||
done += Number.isFinite(i.done) ? i.done : 0;
|
||||
});
|
||||
|
||||
const pct = total > 0 ? (done / total) * 100 : 0;
|
||||
progressBar.style.width = `${pct}%`;
|
||||
|
||||
if (pct >= 100) {
|
||||
prepStatus.textContent = "Gotowe do podania!";
|
||||
statusIcon.innerHTML = "😋";
|
||||
statusMeta.textContent = "Wszystkie Twoje dania opuściły już kuchnię.";
|
||||
} else if (pct > 0) {
|
||||
prepStatus.textContent = "Częściowo gotowe";
|
||||
statusIcon.innerHTML = "🍳";
|
||||
statusMeta.textContent = "Pierwsze pyszności już na Ciebie czekają!";
|
||||
} else {
|
||||
prepStatus.textContent = "W przygotowaniu";
|
||||
if (!window.selectedAnimationHtml) {
|
||||
window.selectedAnimationHtml = window.kitchenAnimations[Math.floor(Math.random() * window.kitchenAnimations.length)];
|
||||
}
|
||||
statusIcon.innerHTML = window.selectedAnimationHtml;
|
||||
statusMeta.textContent = "Twoje zamówienie jest właśnie tworzone przez naszych kucharzy.";
|
||||
}
|
||||
|
||||
// Footer meta
|
||||
const newest = [...bills].sort((a,b) => new Date(b?.Date || 0) - new Date(a?.Date || 0))[0];
|
||||
const time = newest?.Date
|
||||
? new Date(newest.Date).toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'})
|
||||
: "--:--";
|
||||
metaFooter.textContent = `Zamówienie złożone o godzinie ${time} • Stolik ${tableParam}`;
|
||||
}
|
||||
|
||||
// API Fetch Logic
|
||||
async function fetchOrders() {
|
||||
try {
|
||||
if (!hashParam) {
|
||||
updateUI([]);
|
||||
return;
|
||||
}
|
||||
|
||||
const response = await fetch(`../api/kds.php?h=${encodeURIComponent(hashParam)}`);
|
||||
const result = await response.json();
|
||||
|
||||
if (result.status === 'success') {
|
||||
if (result.tableName && result.tableName !== '') {
|
||||
tableLabel.textContent = `Stolik ${result.tableName}`;
|
||||
tableParam = result.tableName; // Aktualizacja do właściwej nazwy na poczet innych zapytań
|
||||
}
|
||||
|
||||
// API teraz samo filtruje i zwraca tylko to co nas interesuje (za pomocą mocnego wyrażenia regularnego)
|
||||
const matches = result.data;
|
||||
|
||||
// Grupowanie składników w główne dania
|
||||
const groups = {};
|
||||
matches.forEach(item => {
|
||||
const groupId = item.GrupaZestawuID || item.PozycjaID;
|
||||
if (!groups[groupId]) {
|
||||
groups[groupId] = {
|
||||
Name: item.NazwaZestawu || item.NazwaTowaru,
|
||||
QuantitySet: item.GrupaZestawuID ? 1 : parseFloat(item.Ilosc),
|
||||
Done: 0
|
||||
};
|
||||
}
|
||||
// StatusRealizacji >= 2 oznacza, że kucharz wcisnął "Gotowe" na swoim ekranie
|
||||
if (parseInt(item.StatusRealizacji, 10) >= 2) {
|
||||
groups[groupId].Done = groups[groupId].QuantitySet;
|
||||
}
|
||||
});
|
||||
|
||||
const transformedArticles = Object.values(groups).map(g => ({
|
||||
Name: g.Name,
|
||||
QuantitySet: g.QuantitySet,
|
||||
QuantityDone: g.Done
|
||||
}));
|
||||
|
||||
// Najnowszy czas dodania (do pokazania w stopce)
|
||||
const latestDate = matches.length > 0
|
||||
? matches.sort((a,b) => new Date(b.DataDodania) - new Date(a.DataDodania))[0].DataDodania
|
||||
: null;
|
||||
|
||||
// Przekazanie do dotychczasowej logiki aktualizującej UI (w odpowiednim formacie)
|
||||
updateUI([{
|
||||
Articles: transformedArticles,
|
||||
Date: latestDate
|
||||
}]);
|
||||
|
||||
} else {
|
||||
loaderMsg.textContent = "Błąd API: " + result.message;
|
||||
}
|
||||
} catch (err) {
|
||||
loaderMsg.textContent = "Problem z połączeniem. Próbujemy ponownie...";
|
||||
}
|
||||
}
|
||||
|
||||
fetchOrders();
|
||||
setInterval(fetchOrders, 10000);
|
||||
|
||||
// --- CALL WAITER LOGIC ---
|
||||
let billState = { payment: '', doc: '', nip: '', company: null };
|
||||
|
||||
function showToast(msg) {
|
||||
const t = document.getElementById("toastMsg");
|
||||
document.getElementById("toastText").textContent = msg;
|
||||
|
||||
t.classList.remove("active");
|
||||
void t.offsetWidth; // trigger reflow
|
||||
t.classList.add("active");
|
||||
|
||||
setTimeout(() => t.classList.remove("active"), 3500);
|
||||
}
|
||||
|
||||
function sendApiSimulated(actionName, details) {
|
||||
console.log(`[SYMULACJA API] Akcja: ${actionName}`, details);
|
||||
// Przykładowe wysłanie docelowo:
|
||||
// if (window.socket && window.socket.readyState === WebSocket.OPEN) {
|
||||
// window.socket.send(JSON.stringify({ action: "sendUpstream", payload: { type: actionName, table: tableParam, ...details } }));
|
||||
// }
|
||||
}
|
||||
|
||||
window.callWaiter = function(type) {
|
||||
if (type === 'order') {
|
||||
sendApiSimulated("CallWaiter_Order", { table: tableParam });
|
||||
showToast("Kelner wkrótce do Ciebie podejdzie!");
|
||||
}
|
||||
};
|
||||
|
||||
window.openWaiterDialog = function() {
|
||||
document.getElementById("waiterModal").classList.add("active");
|
||||
document.body.style.overflow = 'hidden';
|
||||
};
|
||||
|
||||
window.closeWaiterDialog = function() {
|
||||
document.getElementById("waiterModal").classList.remove("active");
|
||||
document.body.style.overflow = '';
|
||||
};
|
||||
|
||||
window.confirmCallWaiter = function() {
|
||||
closeWaiterDialog();
|
||||
callWaiter('order');
|
||||
};
|
||||
|
||||
window.openBillDialog = async function() {
|
||||
billState = { payment: '', doc: '', nip: '', company: null, selectedBillId: null };
|
||||
document.getElementById("billModal").classList.add("active");
|
||||
document.body.style.overflow = 'hidden'; // Zablokuj scroll tła
|
||||
|
||||
document.getElementById("billLoading").classList.remove("hidden");
|
||||
document.getElementById("billListContainer").classList.add("hidden");
|
||||
goToStep("stepBillList");
|
||||
|
||||
try {
|
||||
const res = await fetch(`../api/bills.php?h=${encodeURIComponent(hashParam)}`);
|
||||
const result = await res.json();
|
||||
|
||||
if (result.status === 'success' && result.data.length > 0) {
|
||||
const bills = result.data;
|
||||
|
||||
if (bills.length === 1) {
|
||||
showBillReview(bills[0]);
|
||||
document.getElementById("btnBackToBills").style.display = 'none';
|
||||
} else {
|
||||
renderBillList(bills);
|
||||
document.getElementById("btnBackToBills").style.display = 'block';
|
||||
}
|
||||
} else {
|
||||
document.getElementById("billLoading").innerHTML = "Brak otwartych rachunków do opłacenia.";
|
||||
}
|
||||
} catch (err) {
|
||||
document.getElementById("billLoading").innerHTML = "Błąd pobierania rachunków.";
|
||||
}
|
||||
};
|
||||
|
||||
function renderBillList(bills) {
|
||||
document.getElementById("billLoading").classList.add("hidden");
|
||||
document.getElementById("billListContainer").classList.remove("hidden");
|
||||
|
||||
const container = document.getElementById("billListItems");
|
||||
container.innerHTML = "";
|
||||
|
||||
bills.forEach(b => {
|
||||
const div = document.createElement("div");
|
||||
div.className = "option-card";
|
||||
div.style.flexDirection = "row";
|
||||
div.style.justifyContent = "space-between";
|
||||
div.style.padding = "15px";
|
||||
div.onclick = () => showBillReview(b);
|
||||
|
||||
const numerFormat = b.numer ? `#${b.numer}` : "Rachunek";
|
||||
div.innerHTML = `
|
||||
<div>
|
||||
<div style="font-weight:bold;">${numerFormat}</div>
|
||||
<div style="font-size:12px; color:var(--text-muted);">${b.opis}</div>
|
||||
</div>
|
||||
<div style="font-weight:bold; color:var(--primary);">${b.suma.toFixed(2)} PLN</div>
|
||||
`;
|
||||
container.appendChild(div);
|
||||
});
|
||||
}
|
||||
|
||||
window.goBackToBillList = function() {
|
||||
goToStep("stepBillList");
|
||||
};
|
||||
|
||||
window.showBillReview = function(bill) {
|
||||
billState.selectedBillId = bill.id;
|
||||
|
||||
const content = document.getElementById("billReviewContent");
|
||||
content.innerHTML = "";
|
||||
|
||||
bill.pozycje.forEach(p => {
|
||||
const div = document.createElement("div");
|
||||
div.style.display = "flex";
|
||||
div.style.justifyContent = "space-between";
|
||||
div.style.marginBottom = "8px";
|
||||
div.style.borderBottom = "1px solid rgba(255,255,255,0.05)";
|
||||
div.style.paddingBottom = "8px";
|
||||
|
||||
div.innerHTML = `
|
||||
<div style="flex:1;">
|
||||
<div style="font-weight:600; font-size: 14px;">${p.nazwa}</div>
|
||||
<div style="font-size:12px; color:var(--text-muted);">${p.ilosc} x ${p.cena.toFixed(2)} PLN</div>
|
||||
</div>
|
||||
<div style="font-weight:600;">${p.wartosc.toFixed(2)} PLN</div>
|
||||
`;
|
||||
content.appendChild(div);
|
||||
});
|
||||
|
||||
document.getElementById("billTotalAmount").textContent = bill.suma.toFixed(2) + " PLN";
|
||||
goToStep("stepBillReview");
|
||||
};
|
||||
|
||||
window.closeBillDialog = function() {
|
||||
document.getElementById("billModal").classList.remove("active");
|
||||
document.body.style.overflow = ''; // Odblokuj scroll tła
|
||||
};
|
||||
|
||||
window.goToStep = function(stepId) {
|
||||
document.querySelectorAll(".step").forEach(s => s.classList.remove("active"));
|
||||
document.getElementById(stepId).classList.add("active");
|
||||
};
|
||||
|
||||
window.selectPayment = function(method) {
|
||||
billState.payment = method;
|
||||
goToStep("stepDocument");
|
||||
};
|
||||
|
||||
window.selectDocument = function(docType) {
|
||||
billState.doc = docType;
|
||||
if (docType === 'paragon') {
|
||||
closeBillDialog();
|
||||
sendApiSimulated("CallWaiter_Bill", { table: tableParam, billId: billState.selectedBillId, payment: billState.payment, doc: 'paragon' });
|
||||
showToast("Kelner przyniesie paragon do opłacenia!");
|
||||
} else {
|
||||
goToStep("stepNIP");
|
||||
document.getElementById("nipInput").value = '';
|
||||
setTimeout(() => document.getElementById("nipInput").focus(), 100);
|
||||
}
|
||||
};
|
||||
|
||||
window.fetchGUS = function() {
|
||||
const nip = document.getElementById("nipInput").value.replace(/[\s-]/g, '');
|
||||
if (nip.length < 10) {
|
||||
alert("Wprowadź poprawny numer NIP.");
|
||||
return;
|
||||
}
|
||||
const btn = document.getElementById("btnGUS");
|
||||
btn.textContent = "Szukam...";
|
||||
btn.disabled = true;
|
||||
|
||||
// Symulacja pobrania z GUS
|
||||
setTimeout(() => {
|
||||
btn.textContent = "Pobierz z GUS";
|
||||
btn.disabled = false;
|
||||
billState.nip = nip;
|
||||
billState.company = {
|
||||
name: "Przykładowa Firma Sp. z o.o.",
|
||||
address: "ul. Gastronomiczna 12/4, 00-120 Warszawa",
|
||||
nip: nip
|
||||
};
|
||||
|
||||
document.getElementById("cmpName").value = billState.company.name;
|
||||
document.getElementById("cmpAddress").value = billState.company.address;
|
||||
document.getElementById("cmpNip").value = "NIP: " + billState.company.nip;
|
||||
|
||||
// reset do readonly
|
||||
document.getElementById("cmpName").readOnly = true;
|
||||
document.getElementById("cmpAddress").readOnly = true;
|
||||
document.getElementById("btnEditCompany").textContent = "Popraw ręcznie";
|
||||
|
||||
goToStep("stepVerify");
|
||||
}, 1200);
|
||||
};
|
||||
|
||||
window.editCompanyData = function() {
|
||||
const n = document.getElementById("cmpName");
|
||||
const a = document.getElementById("cmpAddress");
|
||||
const btn = document.getElementById("btnEditCompany");
|
||||
|
||||
if (n.readOnly) {
|
||||
n.readOnly = false;
|
||||
a.readOnly = false;
|
||||
n.focus();
|
||||
btn.textContent = "Zakończ edycję";
|
||||
} else {
|
||||
n.readOnly = true;
|
||||
a.readOnly = true;
|
||||
btn.textContent = "Popraw ręcznie";
|
||||
}
|
||||
};
|
||||
|
||||
window.confirmInvoice = function() {
|
||||
billState.company.name = document.getElementById("cmpName").value;
|
||||
billState.company.address = document.getElementById("cmpAddress").value;
|
||||
|
||||
closeBillDialog();
|
||||
sendApiSimulated("CallWaiter_Bill", {
|
||||
table: tableParam,
|
||||
billId: billState.selectedBillId,
|
||||
payment: billState.payment,
|
||||
doc: 'faktura',
|
||||
nip: billState.nip,
|
||||
company: billState.company
|
||||
});
|
||||
showToast("Dziękujemy! Prośba o fakturę została wysłana.");
|
||||
};
|
||||
|
||||
// Fallback: If no data after 25s, show empty state anyway
|
||||
setTimeout(() => {
|
||||
if (!loadingScreen.classList.contains("hidden")) {
|
||||
updateUI([]);
|
||||
}
|
||||
}, 25000);
|
||||
@@ -1,190 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Podgląd WebSocket - gastro_serwer</title>
|
||||
<style>
|
||||
body { font-family: Arial, sans-serif; margin: 20px; background:#f6f7fb; color:#222; }
|
||||
h1 { margin: 0 0 8px; }
|
||||
.muted { color:#666; font-size: 14px; }
|
||||
.card { background:#fff; border:1px solid #ddd; border-radius:10px; padding:14px; margin-top:14px; }
|
||||
.ok { color: #0a7a2f; font-weight: bold; }
|
||||
.bad { color: #a11; font-weight: bold; }
|
||||
table { width: 100%; border-collapse: collapse; margin-top: 8px; }
|
||||
th, td { border: 1px solid #ddd; padding: 6px; font-size: 13px; text-align: left; }
|
||||
th { background:#f1f4ff; }
|
||||
pre { background:#111; color:#d7ffd7; border-radius:8px; padding:10px; max-height:280px; overflow:auto; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Podgląd danych z <code>gastro_serwer</code></h1>
|
||||
<div class="muted">Strona łączy się z lokalnym serwerem (<code>/ws</code>), który pobiera dane z <code>wss://api.serwer.magico.pl/gastro_serwer</code>.</div>
|
||||
|
||||
<div class="card">
|
||||
<div>Status połączenia: <span id="status" class="bad">rozłączono</span></div>
|
||||
<div class="muted" id="lastEvent">Brak danych.</div>
|
||||
<button id="refreshBtn" style="margin-top:10px;">Pobierz current bills (ręcznie)</button>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>Ostatnia paczka <code>Type = "bills"</code></h3>
|
||||
<div id="billsInfo" class="muted">Jeszcze nie odebrano danych.</div>
|
||||
<table id="billsTable" style="display:none;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Description</th>
|
||||
<th>kierunek</th>
|
||||
<th>type</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>Ostatnia surowa wiadomość</h3>
|
||||
<pre id="raw">(czekam...)</pre>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>Debug: wyślij własny JSON do upstream</h3>
|
||||
<div class="muted">Wklej dokładnie ramkę wysyłaną przez oryginalną aplikację (Network → WS → Messages).</div>
|
||||
<textarea id="customPayload" style="width:100%;min-height:90px;margin-top:8px;">{"Type":"bills","kierunek":"all","type":"current"}</textarea>
|
||||
<div style="margin-top:8px;display:flex;gap:8px;align-items:center;flex-wrap:wrap;">
|
||||
<button id="sendCustomBtn">Wyślij JSON</button>
|
||||
<label><input type="checkbox" id="autoRefresh" /> auto co 5s</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>Historia in/out (ostatnie 20)</h3>
|
||||
<pre id="history">(brak)</pre>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const statusEl = document.getElementById("status");
|
||||
const lastEventEl = document.getElementById("lastEvent");
|
||||
const billsInfoEl = document.getElementById("billsInfo");
|
||||
const billsTable = document.getElementById("billsTable");
|
||||
const tbody = billsTable.querySelector("tbody");
|
||||
const rawEl = document.getElementById("raw");
|
||||
const refreshBtn = document.getElementById("refreshBtn");
|
||||
const customPayloadEl = document.getElementById("customPayload");
|
||||
const sendCustomBtn = document.getElementById("sendCustomBtn");
|
||||
const autoRefreshEl = document.getElementById("autoRefresh");
|
||||
const historyEl = document.getElementById("history");
|
||||
|
||||
const history = [];
|
||||
let autoTimer = null;
|
||||
|
||||
function pushHistory(direction, payload) {
|
||||
const line = `[${new Date().toLocaleTimeString()}] ${direction}: ${typeof payload === "string" ? payload : JSON.stringify(payload)}`;
|
||||
history.unshift(line);
|
||||
if (history.length > 20) history.length = 20;
|
||||
historyEl.textContent = history.join("\n");
|
||||
}
|
||||
|
||||
function sendToUpstream(payload) {
|
||||
if (ws.readyState !== WebSocket.OPEN) return;
|
||||
ws.send(JSON.stringify({
|
||||
action: "sendUpstream",
|
||||
payload
|
||||
}));
|
||||
pushHistory("OUT", payload);
|
||||
}
|
||||
|
||||
const proto = location.protocol === "https:" ? "wss" : "ws";
|
||||
const ws = new WebSocket(`${proto}://${location.host}/ws`);
|
||||
|
||||
ws.onopen = () => {
|
||||
statusEl.textContent = "połączono z lokalnym podglądem";
|
||||
statusEl.className = "ok";
|
||||
};
|
||||
|
||||
ws.onclose = () => {
|
||||
statusEl.textContent = "rozłączono";
|
||||
statusEl.className = "bad";
|
||||
};
|
||||
|
||||
ws.onerror = () => {
|
||||
statusEl.textContent = "błąd połączenia";
|
||||
statusEl.className = "bad";
|
||||
};
|
||||
|
||||
ws.onmessage = (evt) => {
|
||||
let data;
|
||||
try {
|
||||
data = JSON.parse(evt.data);
|
||||
} catch {
|
||||
return;
|
||||
}
|
||||
|
||||
lastEventEl.textContent = `Zdarzenie: ${data.event || "?"} | ${new Date(data.ts || Date.now()).toLocaleTimeString()}`;
|
||||
|
||||
if (data.event === "status") {
|
||||
const connected = !!data.connected;
|
||||
statusEl.textContent = connected ? "upstream: połączono" : "upstream: rozłączono";
|
||||
statusEl.className = connected ? "ok" : "bad";
|
||||
return;
|
||||
}
|
||||
|
||||
if (data.event === "sent") {
|
||||
lastEventEl.textContent = `Wysłano do upstream: ${JSON.stringify(data.payload)} | ${new Date(data.ts || Date.now()).toLocaleTimeString()}`;
|
||||
return;
|
||||
}
|
||||
|
||||
if (data.event !== "message") return;
|
||||
|
||||
rawEl.textContent = data.raw || "(pusto)";
|
||||
if (data.raw) pushHistory("IN", data.raw);
|
||||
|
||||
const msg = data.parsed;
|
||||
if (!msg || msg.Type !== "bills" || !Array.isArray(msg.Bills)) {
|
||||
return;
|
||||
}
|
||||
|
||||
billsInfoEl.textContent = `Odebrano ${msg.Bills.length} rekordów bills.`;
|
||||
billsTable.style.display = "table";
|
||||
tbody.innerHTML = "";
|
||||
|
||||
for (const bill of msg.Bills) {
|
||||
const tr = document.createElement("tr");
|
||||
tr.innerHTML = `
|
||||
<td>${bill.ID || ""}</td>
|
||||
<td>${bill.Description || ""}</td>
|
||||
<td>${msg.kierunek || ""}</td>
|
||||
<td>${msg.type || ""}</td>
|
||||
`;
|
||||
tbody.appendChild(tr);
|
||||
}
|
||||
};
|
||||
|
||||
refreshBtn.addEventListener("click", () => {
|
||||
sendToUpstream({ Type: "bills", kierunek: "all", type: "current" });
|
||||
});
|
||||
|
||||
sendCustomBtn.addEventListener("click", () => {
|
||||
const text = customPayloadEl.value.trim();
|
||||
if (!text) return;
|
||||
|
||||
try {
|
||||
const parsed = JSON.parse(text);
|
||||
sendToUpstream(parsed);
|
||||
} catch {
|
||||
alert("Niepoprawny JSON.");
|
||||
}
|
||||
});
|
||||
|
||||
autoRefreshEl.addEventListener("change", () => {
|
||||
clearInterval(autoTimer);
|
||||
autoTimer = null;
|
||||
if (!autoRefreshEl.checked) return;
|
||||
autoTimer = setInterval(() => {
|
||||
sendToUpstream({ Type: "bills", kierunek: "all", type: "current" });
|
||||
}, 5000);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
222
public/qr.html
222
public/qr.html
@@ -1,222 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Generator QR - Stoliki</title>
|
||||
<style>
|
||||
/* Ustawienia strony A4 i druku */
|
||||
@page {
|
||||
size: A4;
|
||||
margin: 10mm;
|
||||
}
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
background: white;
|
||||
width: 210mm; /* Szerokość A4 */
|
||||
margin: 0 auto;
|
||||
min-height: 297mm;
|
||||
}
|
||||
/* Styl pojedynczego kafelka ze stolikiem */
|
||||
.qr-card {
|
||||
width: 48mm; /* ok. 4 kody w rzędzie */
|
||||
height: 60mm;
|
||||
border: 1px solid #eee;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
.label {
|
||||
font-weight: bold;
|
||||
font-size: 14pt;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
img {
|
||||
width: 35mm;
|
||||
height: 35mm;
|
||||
}
|
||||
.footer-text {
|
||||
font-size: 8pt;
|
||||
color: #666;
|
||||
margin-top: 5px;
|
||||
}
|
||||
/* Ukryj menu podczas drukowania */
|
||||
@media print {
|
||||
.no-print { display: none !important; }
|
||||
body { background: white; }
|
||||
.container { box-shadow: none; margin: 0; width: 100%; min-height: auto; }
|
||||
.qr-card { page-break-inside: avoid; }
|
||||
}
|
||||
.no-print {
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
background: #222;
|
||||
color: white;
|
||||
}
|
||||
.no-print .controls-panel {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.control-box {
|
||||
background: #333;
|
||||
padding: 15px;
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
}
|
||||
.control-box p {
|
||||
margin: 0;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
}
|
||||
.no-print input {
|
||||
padding: 8px 12px;
|
||||
font-size: 15px;
|
||||
border: 1px solid #555;
|
||||
border-radius: 4px;
|
||||
background: #fff;
|
||||
color: #000;
|
||||
}
|
||||
.no-print button {
|
||||
padding: 8px 16px;
|
||||
font-size: 15px;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
background: #4a5568;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
transition: 0.2s;
|
||||
}
|
||||
.no-print button:hover {
|
||||
background: #2d3748;
|
||||
}
|
||||
.btn-print {
|
||||
background: #e2b07e !important;
|
||||
color: #000 !important;
|
||||
}
|
||||
.btn-print:hover {
|
||||
background: #cc9f70 !important;
|
||||
}
|
||||
.btn-danger {
|
||||
background: #e53e3e !important;
|
||||
}
|
||||
.btn-danger:hover {
|
||||
background: #c53030 !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="no-print">
|
||||
<h1 style="margin-top:0;">Generator kodów QR dla stolików</h1>
|
||||
|
||||
<div class="controls-panel">
|
||||
<div class="control-box">
|
||||
<p>Dodaj pojedynczy stolik</p>
|
||||
<div style="display:flex; gap:8px;">
|
||||
<input type="text" id="customTableInput" placeholder="Np. 12A, VIP, 5..." style="width: 140px;">
|
||||
<button onclick="addCustomTable()">Dodaj</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="control-box">
|
||||
<p>Wygeneruj zakres od 1 do...</p>
|
||||
<div style="display:flex; gap:8px;">
|
||||
<input type="number" id="bulkCountInput" value="20" style="width: 80px;">
|
||||
<button onclick="generateBulk()">Generuj</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="control-box">
|
||||
<p>Adres bazowy URL aplikacji</p>
|
||||
<div style="display:flex; gap:8px;">
|
||||
<input type="text" id="baseUrlInput" value="http://192.168.20.84:3000/stolik2.html?table=" style="width: 320px;">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<button class="btn-print" onclick="window.print()">🖨️ Drukuj arkusz (Ctrl + P)</button>
|
||||
<button class="btn-danger" onclick="clearGrid()" style="margin-left:10px;">🗑️ Wyczyść grid</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container" id="target">
|
||||
<!-- Kody QR będą tutaj generowane -->
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const target = document.getElementById('target');
|
||||
|
||||
function createQrCard(tableId) {
|
||||
// Pobierz aktualny baseURL z inputa
|
||||
const baseUrl = document.getElementById('baseUrlInput').value.trim();
|
||||
const fullUrl = baseUrl + encodeURIComponent(tableId);
|
||||
|
||||
// Generowanie kodu przez zewnętrzne api
|
||||
const qrApiUrl = `https://api.qrserver.com/v1/create-qr-code/?size=200x200&data=${encodeURIComponent(fullUrl)}`;
|
||||
|
||||
const card = document.createElement('div');
|
||||
card.className = 'qr-card';
|
||||
card.innerHTML = `
|
||||
<div class="label">STOLIK ${tableId}</div>
|
||||
<img src="${qrApiUrl}" alt="QR ${tableId}">
|
||||
<div class="footer-text">Zeskanuj, aby zamówić</div>
|
||||
`;
|
||||
target.appendChild(card);
|
||||
}
|
||||
|
||||
function addCustomTable() {
|
||||
const input = document.getElementById('customTableInput');
|
||||
const val = input.value.trim();
|
||||
if(!val) return;
|
||||
createQrCard(val);
|
||||
input.value = '';
|
||||
input.focus();
|
||||
}
|
||||
|
||||
function generateBulk() {
|
||||
const count = parseInt(document.getElementById('bulkCountInput').value) || 0;
|
||||
if (count > 0) {
|
||||
// Jeśli chcesz przed każdą masówką wyczyścić: target.innerHTML = '';
|
||||
for (let i = 1; i <= count; i++) {
|
||||
createQrCard(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function clearGrid() {
|
||||
target.innerHTML = '';
|
||||
}
|
||||
|
||||
// Dodaj obsługę Entera na polu dodawania stolika
|
||||
document.getElementById('customTableInput').addEventListener('keypress', function(e) {
|
||||
if (e.key === 'Enter') {
|
||||
addCustomTable();
|
||||
}
|
||||
});
|
||||
|
||||
// Przy starcie wygeneruj kody tak jak było wcześniej
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
generateBulk();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,350 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Karczma Biesiada – status zamówienia</title>
|
||||
<style>
|
||||
:root {
|
||||
--bg1: #0c1222;
|
||||
--bg2: #141b31;
|
||||
--card: #1f2a44;
|
||||
--card-soft: #243252;
|
||||
--muted: #aab4c9;
|
||||
--ok: #10b981;
|
||||
--warn: #f59e0b;
|
||||
--accent: #7c3aed;
|
||||
--accent2: #22d3ee;
|
||||
--text: #f8fafc;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: "Segoe UI", Arial, sans-serif;
|
||||
background: radial-gradient(circle at top, #1d2a4a 0%, var(--bg1) 45%, var(--bg2) 100%);
|
||||
color: var(--text);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 14px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.wrap { width: 100%; max-width: 700px; }
|
||||
|
||||
.card {
|
||||
background: linear-gradient(180deg, var(--card), var(--card-soft));
|
||||
border: 1px solid rgba(255,255,255,.09);
|
||||
border-radius: 18px;
|
||||
padding: 16px;
|
||||
margin-bottom: 14px;
|
||||
box-shadow: 0 12px 28px rgba(0,0,0,.28);
|
||||
backdrop-filter: blur(4px);
|
||||
}
|
||||
|
||||
h1 { margin: 0 0 6px; font-size: 26px; }
|
||||
.muted { color: var(--muted); font-size: 14px; line-height: 1.35; }
|
||||
|
||||
.pill {
|
||||
display: inline-block;
|
||||
padding: 6px 10px;
|
||||
border-radius: 999px;
|
||||
background: rgba(124,58,237,.22);
|
||||
border: 1px solid rgba(124,58,237,.45);
|
||||
font-size: 12px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.status {
|
||||
font-size: 21px;
|
||||
font-weight: bold;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.status.prep { color: var(--warn); }
|
||||
.status.done { color: var(--ok); }
|
||||
|
||||
.progress-wrap {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
background: rgba(255,255,255,.12);
|
||||
border-radius: 999px;
|
||||
height: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: linear-gradient(90deg, var(--accent2), var(--accent));
|
||||
transition: width .45s ease;
|
||||
}
|
||||
|
||||
.loader-row {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
margin-top: 8px;
|
||||
padding: 10px;
|
||||
border-radius: 12px;
|
||||
background: rgba(255,255,255,.06);
|
||||
}
|
||||
|
||||
.spinner {
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
border-radius: 50%;
|
||||
border: 3px solid rgba(255,255,255,.2);
|
||||
border-top-color: #fff;
|
||||
animation: spin .8s linear infinite;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.search-icon {
|
||||
font-size: 18px;
|
||||
animation: bob 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@keyframes bob {
|
||||
0%, 100% { transform: translateY(0); }
|
||||
50% { transform: translateY(-3px); }
|
||||
}
|
||||
|
||||
ul { list-style: none; padding: 0; margin: 12px 0 0; }
|
||||
li {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 11px 10px;
|
||||
border-bottom: 1px solid rgba(255,255,255,.1);
|
||||
}
|
||||
|
||||
li:last-child { border-bottom: none; }
|
||||
|
||||
.item-name {
|
||||
font-weight: 600;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.qty {
|
||||
min-width: 54px;
|
||||
text-align: right;
|
||||
color: #dbe5ff;
|
||||
font-weight: bold;
|
||||
background: rgba(34,211,238,.18);
|
||||
border: 1px solid rgba(34,211,238,.35);
|
||||
border-radius: 10px;
|
||||
padding: 5px 8px;
|
||||
}
|
||||
|
||||
.hidden { display: none !important; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<div class="card">
|
||||
<div class="pill">🍽️ Twoje zamówienie</div>
|
||||
<h1>Karczma Biesiada</h1>
|
||||
<div class="muted" id="tableLabel">Status zamówienia stolika</div>
|
||||
<div class="status prep" id="prepStatus">Łączenie z serwerem…</div>
|
||||
<div class="muted" id="meta">-</div>
|
||||
<div class="progress-wrap"><div class="progress" id="progress"></div></div>
|
||||
|
||||
<div id="loadingBox" class="loader-row">
|
||||
<div class="spinner"></div>
|
||||
<div>
|
||||
<div style="font-weight:600;display:flex;align-items:center;gap:6px;">
|
||||
<span class="search-icon">🔎</span>
|
||||
Szukamy Twojego zamówienia…
|
||||
</div>
|
||||
<div class="muted">Jesteśmy w trakcie wyszukiwania. Daj nam chwilkę ✨</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3 style="margin:0 0 6px;">Co już jest na Twoim rachunku</h3>
|
||||
<div class="muted" id="empty">Czekam na dane…</div>
|
||||
<ul id="items" style="display:none;"></ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const params = new URLSearchParams(location.search);
|
||||
const tableParam = (params.get("table") || "").trim();
|
||||
|
||||
const tableLabelEl = document.getElementById("tableLabel");
|
||||
const prepStatusEl = document.getElementById("prepStatus");
|
||||
const metaEl = document.getElementById("meta");
|
||||
const emptyEl = document.getElementById("empty");
|
||||
const itemsEl = document.getElementById("items");
|
||||
const loadingBoxEl = document.getElementById("loadingBox");
|
||||
const progressEl = document.getElementById("progress");
|
||||
|
||||
tableLabelEl.textContent = tableParam
|
||||
? `Status zamówienia – stolik ${tableParam}`
|
||||
: "Brak numeru stolika w adresie";
|
||||
|
||||
function parseNumber(value) {
|
||||
const n = parseFloat(String(value || "0").replace(",", "."));
|
||||
return Number.isFinite(n) ? n : 0;
|
||||
}
|
||||
|
||||
function detectTableNumber(bill) {
|
||||
const text = `${bill?.Remark || ""} ${bill?.Description || ""}`;
|
||||
const m = text.match(/STOLIK\s*([0-9A-Z]+)/i);
|
||||
return m ? m[1] : "";
|
||||
}
|
||||
|
||||
function byLatestDate(a, b) {
|
||||
return new Date(b?.Date || 0).getTime() - new Date(a?.Date || 0).getTime();
|
||||
}
|
||||
|
||||
function minutesAgoText(dateIso) {
|
||||
const ts = new Date(dateIso || Date.now()).getTime();
|
||||
if (!ts) return "chwilę temu";
|
||||
const diffMin = Math.max(0, Math.floor((Date.now() - ts) / 60000));
|
||||
if (diffMin < 1) return "przed chwilą";
|
||||
if (diffMin === 1) return "1 minutę temu";
|
||||
if (diffMin < 5) return `${diffMin} minuty temu`;
|
||||
return `${diffMin} minut temu`;
|
||||
}
|
||||
|
||||
function setProgress(percent) {
|
||||
const p = Math.max(0, Math.min(100, percent || 0));
|
||||
progressEl.style.width = `${p}%`;
|
||||
}
|
||||
|
||||
function renderBills(bills) {
|
||||
loadingBoxEl.classList.add("hidden");
|
||||
|
||||
const allArticles = bills.flatMap((b) => Array.isArray(b?.Articles) ? b.Articles : []);
|
||||
|
||||
if (!allArticles.length) {
|
||||
emptyEl.style.display = "block";
|
||||
itemsEl.style.display = "none";
|
||||
emptyEl.textContent = "Brak pozycji do wyświetlenia dla tego stolika.";
|
||||
prepStatusEl.textContent = "W trakcie przygotowywania 🍳";
|
||||
prepStatusEl.className = "status prep";
|
||||
setProgress(0);
|
||||
return;
|
||||
}
|
||||
|
||||
const grouped = new Map();
|
||||
let sumTodo = 0;
|
||||
let sumDone = 0;
|
||||
|
||||
for (const a of allArticles) {
|
||||
const name = (a.Name || "Pozycja").trim();
|
||||
const qty = parseNumber(a.QuantityToDo || a.QuantitySet || "1");
|
||||
const done = parseNumber(a.QuantityDone || "0");
|
||||
|
||||
sumTodo += qty;
|
||||
sumDone += done;
|
||||
|
||||
grouped.set(name, (grouped.get(name) || 0) + qty);
|
||||
}
|
||||
|
||||
const entries = [...grouped.entries()];
|
||||
itemsEl.innerHTML = "";
|
||||
|
||||
for (const [name, qty] of entries) {
|
||||
const li = document.createElement("li");
|
||||
li.innerHTML = `<span class="item-name">${name}</span><span class="qty">x ${qty % 1 === 0 ? qty.toFixed(0) : qty.toFixed(2)}</span>`;
|
||||
itemsEl.appendChild(li);
|
||||
}
|
||||
|
||||
emptyEl.style.display = "none";
|
||||
itemsEl.style.display = "block";
|
||||
|
||||
const progress = sumTodo > 0 ? (sumDone / sumTodo) * 100 : 0;
|
||||
setProgress(progress);
|
||||
|
||||
if (sumTodo > 0 && sumDone >= sumTodo) {
|
||||
prepStatusEl.textContent = "Gotowe do odbioru ✅";
|
||||
prepStatusEl.className = "status done";
|
||||
} else if (sumDone > 0) {
|
||||
prepStatusEl.textContent = "Część zamówienia już gotowa ⏳";
|
||||
prepStatusEl.className = "status prep";
|
||||
} else {
|
||||
prepStatusEl.textContent = "W trakcie przygotowywania 🍳";
|
||||
prepStatusEl.className = "status prep";
|
||||
}
|
||||
|
||||
const byDateAsc = [...bills].sort((a, b) => new Date(a?.Date || 0) - new Date(b?.Date || 0));
|
||||
const firstOrder = byDateAsc[0];
|
||||
const billNumbers = bills.map((b) => b?.Description).filter(Boolean).join(", ");
|
||||
const billsLabel = bills.length === 1 ? "1 rachunek" : `${bills.length} rachunki`;
|
||||
|
||||
metaEl.textContent = `${billsLabel} • Nr: ${billNumbers || "-"} • Pierwsze zamówienie: ${minutesAgoText(firstOrder?.Date)} • Godzina: ${new Date(firstOrder?.Date || Date.now()).toLocaleTimeString()}`;
|
||||
}
|
||||
|
||||
function handleBillsMessage(parsed) {
|
||||
if (!parsed || parsed.Type !== "bills" || !Array.isArray(parsed.Bills)) return;
|
||||
if (!tableParam) {
|
||||
loadingBoxEl.classList.add("hidden");
|
||||
prepStatusEl.textContent = "Brak numeru stolika w URL";
|
||||
prepStatusEl.className = "status prep";
|
||||
emptyEl.style.display = "block";
|
||||
emptyEl.textContent = "Użyj adresu np. /stolik.html?table=9";
|
||||
itemsEl.style.display = "none";
|
||||
setProgress(0);
|
||||
return;
|
||||
}
|
||||
|
||||
const norm = tableParam.toLowerCase();
|
||||
const matches = parsed.Bills.filter((bill) => {
|
||||
const t = detectTableNumber(bill).toLowerCase();
|
||||
return t === norm;
|
||||
}).sort(byLatestDate);
|
||||
|
||||
if (!matches.length) {
|
||||
loadingBoxEl.classList.remove("hidden");
|
||||
prepStatusEl.textContent = "Oczekujemy na zamówienie";
|
||||
prepStatusEl.className = "status prep";
|
||||
metaEl.textContent = `Stolik ${tableParam}`;
|
||||
emptyEl.style.display = "block";
|
||||
emptyEl.textContent = `Jeszcze nie widzimy aktywnego zamówienia dla stolika ${tableParam}.`;
|
||||
itemsEl.style.display = "none";
|
||||
setProgress(0);
|
||||
return;
|
||||
}
|
||||
|
||||
renderBills(matches);
|
||||
}
|
||||
|
||||
const proto = location.protocol === "https:" ? "wss" : "ws";
|
||||
const ws = new WebSocket(`${proto}://${location.host}/ws`);
|
||||
|
||||
ws.onmessage = (evt) => {
|
||||
let data;
|
||||
try {
|
||||
data = JSON.parse(evt.data);
|
||||
} catch {
|
||||
return;
|
||||
}
|
||||
|
||||
if (data.event === "snapshot") {
|
||||
handleBillsMessage(data.parsed);
|
||||
return;
|
||||
}
|
||||
|
||||
if (data.event === "message") {
|
||||
handleBillsMessage(data.parsed);
|
||||
}
|
||||
};
|
||||
|
||||
ws.onerror = () => {
|
||||
loadingBoxEl.classList.add("hidden");
|
||||
prepStatusEl.textContent = "Błąd połączenia";
|
||||
prepStatusEl.className = "status prep";
|
||||
setProgress(0);
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,629 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Karczma Biesiada – Twoje Zamówienie</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--primary: #e2b07e; /* Ciepłe złoto/miedź */
|
||||
--bg: #0f0f11;
|
||||
--surface: #1c1c1f;
|
||||
--surface-light: #2c2c2e;
|
||||
--text-main: #ffffff;
|
||||
--text-muted: #9a9a9e;
|
||||
--success: #4ade80;
|
||||
--accent: #f59e0b;
|
||||
--radius: 20px;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Plus Jakarta Sans', sans-serif;
|
||||
background-color: var(--bg);
|
||||
color: var(--text-main);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* --- LOADER SCREEN --- */
|
||||
#loadingScreen {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 100;
|
||||
background: var(--bg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px;
|
||||
text-align: center;
|
||||
transition: opacity 0.5s ease, visibility 0.5s;
|
||||
}
|
||||
|
||||
.loader-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border: 3px solid var(--surface-light);
|
||||
border-top: 3px solid var(--primary);
|
||||
border-radius: 50%;
|
||||
animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.loader-text h2 {
|
||||
font-family: 'Playfair Display', serif;
|
||||
margin: 0 0 8px;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.loader-msg { color: var(--text-muted); font-size: 14px; min-height: 20px; }
|
||||
|
||||
/* --- MAIN LAYOUT --- */
|
||||
.container {
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
padding: 24px 16px 100px;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin-bottom: 32px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: 28px;
|
||||
margin: 0;
|
||||
background: linear-gradient(to right, #fff, var(--primary));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.table-badge {
|
||||
display: inline-block;
|
||||
background: var(--surface-light);
|
||||
padding: 6px 16px;
|
||||
border-radius: 99px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
margin-top: 8px;
|
||||
color: var(--primary);
|
||||
border: 1px solid rgba(226, 176, 126, 0.2);
|
||||
}
|
||||
|
||||
/* --- STATUS CARD --- */
|
||||
.status-card {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius);
|
||||
padding: 24px;
|
||||
margin-bottom: 24px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
|
||||
border: 1px solid rgba(255,255,255,0.05);
|
||||
}
|
||||
|
||||
.status-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.status-title {
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
color: var(--text-muted);
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.status-value {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
height: 8px;
|
||||
background: var(--surface-light);
|
||||
border-radius: 10px;
|
||||
margin: 15px 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: linear-gradient(90deg, var(--primary), var(--accent));
|
||||
box-shadow: 0 0 15px rgba(226, 176, 126, 0.4);
|
||||
transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
/* --- ITEMS LIST --- */
|
||||
.items-container h3 {
|
||||
font-size: 18px;
|
||||
margin: 0 0 16px 8px;
|
||||
}
|
||||
|
||||
.item-card {
|
||||
background: var(--surface);
|
||||
margin-bottom: 12px;
|
||||
padding: 16px;
|
||||
border-radius: 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
transition: transform 0.2s;
|
||||
border-left: 4px solid var(--surface-light);
|
||||
}
|
||||
|
||||
.item-card.ready { border-left-color: var(--success); }
|
||||
.item-card.archived { opacity: 0.82; }
|
||||
|
||||
.history-section { margin-top: 26px; }
|
||||
.history-note {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
margin: 0 0 12px 8px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.item-info { display: flex; flex-direction: column; }
|
||||
.item-name { font-weight: 600; font-size: 16px; }
|
||||
.item-meta { font-size: 12px; color: var(--text-muted); }
|
||||
|
||||
.item-qty {
|
||||
background: var(--surface-light);
|
||||
padding: 6px 12px;
|
||||
border-radius: 10px;
|
||||
font-weight: 700;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
/* --- EMPTY STATE --- */
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
|
||||
|
||||
/* --- ANIMATIONS --- */
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
|
||||
.hidden { opacity: 0; visibility: hidden; pointer-events: none; display: none; }
|
||||
|
||||
.meta-footer {
|
||||
font-size: 11px;
|
||||
color: var(--text-muted);
|
||||
margin-top: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="loadingScreen">
|
||||
<div class="loader-icon"></div>
|
||||
<div class="loader-text">
|
||||
<h2>Karczma Biesiada</h2>
|
||||
<div class="loader-msg" id="loaderMsg">Łączenie z kuchnią...</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1 class="logo-text">Karczma Biesiada</h1>
|
||||
<div id="tableLabel" class="table-badge">Wybierz stolik</div>
|
||||
</header>
|
||||
|
||||
<main id="mainContent">
|
||||
<section class="status-card">
|
||||
<div class="status-header">
|
||||
<div>
|
||||
<span class="status-title">Aktualny status</span>
|
||||
<div id="prepStatus" class="status-value">Oczekiwanie...</div>
|
||||
</div>
|
||||
<div id="statusIcon" style="font-size: 28px;">⏳</div>
|
||||
</div>
|
||||
|
||||
<div class="progress-container">
|
||||
<div id="progressBar" class="progress-bar"></div>
|
||||
</div>
|
||||
|
||||
<div id="statusMeta" style="font-size: 12px; color: var(--text-muted);">
|
||||
Sprawdzamy co pysznego się przygotowuje...
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="items-container">
|
||||
<h3>Twoje zamówione dania</h3>
|
||||
<div id="emptyState" class="empty-state hidden">
|
||||
<div class="empty-icon">🍽️</div>
|
||||
<p style="color: var(--text-muted)">Aktualnie nie przygotowujemy niczego dla tego stolika.</p>
|
||||
<p style="font-size: 14px">Jeśli właśnie złożyłeś zamówienie, daj nam chwilkę na jego przetworzenie.</p>
|
||||
</div>
|
||||
<div id="itemsList"></div>
|
||||
</section>
|
||||
|
||||
<section id="historySection" class="items-container history-section hidden">
|
||||
<h3>Twoje poprzednie zamówienia</h3>
|
||||
<p class="history-note">To są pozycje z innych wizyt, które były widoczne na tym telefonie po zeskanowaniu kodów QR. Jeśli kiedyś byłeś w restauracji bez skanowania kodu, tych pozycji tu nie będzie 🙂</p>
|
||||
<div id="historyList"></div>
|
||||
</section>
|
||||
|
||||
<div id="metaFooter" class="meta-footer"></div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const params = new URLSearchParams(location.search);
|
||||
const tableParam = (params.get("table") || "").trim();
|
||||
|
||||
// UI Elements
|
||||
const loadingScreen = document.getElementById("loadingScreen");
|
||||
const loaderMsg = document.getElementById("loaderMsg");
|
||||
const tableLabel = document.getElementById("tableLabel");
|
||||
const prepStatus = document.getElementById("prepStatus");
|
||||
const progressBar = document.getElementById("progressBar");
|
||||
const statusMeta = document.getElementById("statusMeta");
|
||||
const itemsList = document.getElementById("itemsList");
|
||||
const emptyState = document.getElementById("emptyState");
|
||||
const metaFooter = document.getElementById("metaFooter");
|
||||
const statusIcon = document.getElementById("statusIcon");
|
||||
const storageKey = `stolik2_state_${(tableParam || "unknown").toLowerCase()}`;
|
||||
const historyKey = "stolik2_global_history";
|
||||
const historySection = document.getElementById("historySection");
|
||||
const historyList = document.getElementById("historyList");
|
||||
const SIX_MONTHS_MS = 180 * 24 * 60 * 60 * 1000;
|
||||
const HOT_WINDOW_MS = 5 * 60 * 60 * 1000;
|
||||
|
||||
// Dynamic Loader Messages
|
||||
const msgs = ["Rozgrzewamy piece...", "Szef kuchni sprawdza składniki...", "Łączenie z sercem restauracji...", "Prawie gotowe..."];
|
||||
let msgIdx = 0;
|
||||
const msgInterval = setInterval(() => {
|
||||
msgIdx = (msgIdx + 1) % msgs.length;
|
||||
loaderMsg.textContent = msgs[msgIdx];
|
||||
}, 4000);
|
||||
|
||||
// Initial State
|
||||
if (tableParam) {
|
||||
tableLabel.textContent = `Stolik ${tableParam}`;
|
||||
}
|
||||
|
||||
function updateUI(bills) {
|
||||
// Hide loader on first data
|
||||
loadingScreen.classList.add("hidden");
|
||||
clearInterval(msgInterval);
|
||||
|
||||
const allArticles = bills.flatMap(b => Array.isArray(b?.Articles) ? b.Articles : []);
|
||||
const items = mergeWithPersistedItems(allArticles);
|
||||
|
||||
if (items.length === 0) {
|
||||
showEmptyState();
|
||||
return;
|
||||
}
|
||||
|
||||
renderItems(items);
|
||||
updateStatus(bills, items);
|
||||
}
|
||||
|
||||
function detectTableCandidates(bill) {
|
||||
const remark = String(bill?.Remark || "");
|
||||
const description = String(bill?.Description || "").trim();
|
||||
|
||||
// 1) klasyczny format: "STOLIK 9", "STOLIK 11A"
|
||||
const stolikMatch = remark.match(/STOLIK\s*([0-9A-Z]+)/i);
|
||||
const fromRemark = stolikMatch ? stolikMatch[1].toLowerCase() : "";
|
||||
|
||||
// 2) czasem numer bywa w samym Description
|
||||
const fromDescription = description.toLowerCase();
|
||||
|
||||
return { fromRemark, fromDescription, remark: remark.toLowerCase() };
|
||||
}
|
||||
|
||||
function showEmptyState() {
|
||||
emptyState.classList.remove("hidden");
|
||||
itemsList.innerHTML = "";
|
||||
prepStatus.textContent = "Brak aktywnych zamówień";
|
||||
statusIcon.textContent = "🍃";
|
||||
progressBar.style.width = "0%";
|
||||
statusMeta.textContent = "Zapraszamy do złożenia zamówienia u kelnera.";
|
||||
}
|
||||
|
||||
function normalizeArticleName(rawName) {
|
||||
const name = String(rawName || "Pozycja");
|
||||
|
||||
// Usuwa gramatury typu: "300G", "250 G", "500/200/150G".
|
||||
const withoutWeight = name.replace(
|
||||
/\b\d+(?:[.,]\d+)?(?:\s*\/\s*\d+(?:[.,]\d+)?)*\s*[gG]\b/g,
|
||||
""
|
||||
);
|
||||
|
||||
return withoutWeight
|
||||
.replace(/\s{2,}/g, " ")
|
||||
.replace(/\s+([,.;:!?])/g, "$1")
|
||||
.trim() || "Pozycja";
|
||||
}
|
||||
|
||||
function loadPersistedItems() {
|
||||
try {
|
||||
const raw = localStorage.getItem(storageKey);
|
||||
if (!raw) return [];
|
||||
const parsed = JSON.parse(raw);
|
||||
return Array.isArray(parsed) ? parsed : [];
|
||||
} catch {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
function savePersistedItems(items) {
|
||||
try {
|
||||
localStorage.setItem(storageKey, JSON.stringify(items));
|
||||
} catch {
|
||||
// brak miejsca/tryb prywatny
|
||||
}
|
||||
}
|
||||
|
||||
function loadGlobalHistory() {
|
||||
try {
|
||||
const raw = localStorage.getItem(historyKey);
|
||||
if (!raw) return [];
|
||||
const parsed = JSON.parse(raw);
|
||||
return Array.isArray(parsed) ? parsed : [];
|
||||
} catch {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
function saveGlobalHistory(entries) {
|
||||
const now = Date.now();
|
||||
const cleaned = entries
|
||||
.filter((e) => e && e.name && Number.isFinite(e.archivedAt))
|
||||
.filter((e) => (now - e.archivedAt) <= SIX_MONTHS_MS);
|
||||
|
||||
try {
|
||||
localStorage.setItem(historyKey, JSON.stringify(cleaned));
|
||||
} catch {
|
||||
// ignore storage errors
|
||||
}
|
||||
}
|
||||
|
||||
function addItemsToGlobalHistory(items, sourceTable) {
|
||||
if (!items.length) return;
|
||||
const now = Date.now();
|
||||
const existing = loadGlobalHistory();
|
||||
|
||||
// zapobiegamy dokładnym duplikatom (ta sama nazwa + qty + stół blisko czasu)
|
||||
const dedupWindowMs = 2 * 60 * 1000;
|
||||
const toAdd = items.filter((item) => {
|
||||
return !existing.some((h) =>
|
||||
h.name === item.name &&
|
||||
Number(h.qty) === Number(item.qty) &&
|
||||
String(h.sourceTable || "") === String(sourceTable || "") &&
|
||||
Math.abs((h.archivedAt || 0) - now) <= dedupWindowMs
|
||||
);
|
||||
}).map((item) => ({
|
||||
name: item.name,
|
||||
qty: item.qty,
|
||||
sourceTable: sourceTable || "?",
|
||||
archivedAt: now
|
||||
}));
|
||||
|
||||
if (!toAdd.length) return;
|
||||
saveGlobalHistory([...existing, ...toAdd]);
|
||||
}
|
||||
|
||||
function renderGlobalHistory() {
|
||||
const now = Date.now();
|
||||
const history = loadGlobalHistory()
|
||||
.filter((e) => (now - (e.archivedAt || 0)) <= SIX_MONTHS_MS)
|
||||
.sort((a, b) => (b.archivedAt || 0) - (a.archivedAt || 0));
|
||||
|
||||
saveGlobalHistory(history);
|
||||
|
||||
if (!history.length) {
|
||||
historySection.classList.add("hidden");
|
||||
historyList.innerHTML = "";
|
||||
return;
|
||||
}
|
||||
|
||||
historySection.classList.remove("hidden");
|
||||
historyList.innerHTML = "";
|
||||
|
||||
history.forEach((entry) => {
|
||||
const dt = new Date(entry.archivedAt || Date.now());
|
||||
const div = document.createElement("div");
|
||||
div.className = "item-card archived ready";
|
||||
div.innerHTML = `
|
||||
<div class="item-info">
|
||||
<span class="item-name">${entry.name}</span>
|
||||
<span class="item-meta">Stolik ${entry.sourceTable || "?"} • ${dt.toLocaleDateString("pl-PL")} ${dt.toLocaleTimeString([], {hour:'2-digit', minute:'2-digit'})}</span>
|
||||
</div>
|
||||
<div class="item-qty">x${entry.qty}</div>
|
||||
`;
|
||||
historyList.appendChild(div);
|
||||
});
|
||||
}
|
||||
|
||||
function mergeWithPersistedItems(articles) {
|
||||
const current = new Map();
|
||||
|
||||
articles.forEach(a => {
|
||||
const name = normalizeArticleName(a.Name);
|
||||
const todo = parseFloat(String(a.QuantityToDo || a.QuantitySet || "0").replace(",","."));
|
||||
const done = parseFloat(String(a.QuantityDone || "0").replace(",","."));
|
||||
|
||||
if (!current.has(name)) {
|
||||
current.set(name, { name, qty: 0, done: 0, present: true, completedByDisappear: false });
|
||||
}
|
||||
const curr = current.get(name);
|
||||
curr.qty += Number.isFinite(todo) ? todo : 0;
|
||||
curr.done += Number.isFinite(done) ? done : 0;
|
||||
});
|
||||
|
||||
const persisted = loadPersistedItems();
|
||||
const persistedMap = new Map(persisted.map(i => [i.name, i]));
|
||||
const merged = [];
|
||||
|
||||
// Aktualnie obecne pozycje z WS
|
||||
current.forEach((item) => {
|
||||
merged.push({
|
||||
...item,
|
||||
present: true,
|
||||
completedByDisappear: false,
|
||||
updatedAt: Date.now()
|
||||
});
|
||||
});
|
||||
|
||||
// Pozycje, które były wcześniej, ale zniknęły z WS -> zostają jako gotowe
|
||||
persistedMap.forEach((oldItem, name) => {
|
||||
if (current.has(name)) return;
|
||||
const qty = Number.isFinite(oldItem?.qty) ? oldItem.qty : 0;
|
||||
const archivedAt = Number.isFinite(oldItem?.archivedAt) ? oldItem.archivedAt : Date.now();
|
||||
const shouldMoveToGlobal = (Date.now() - archivedAt) > HOT_WINDOW_MS;
|
||||
|
||||
if (shouldMoveToGlobal) {
|
||||
addItemsToGlobalHistory([{ name, qty }], tableParam);
|
||||
return;
|
||||
}
|
||||
|
||||
merged.push({
|
||||
name,
|
||||
qty,
|
||||
done: qty,
|
||||
present: false,
|
||||
completedByDisappear: true,
|
||||
archivedAt,
|
||||
updatedAt: Date.now()
|
||||
});
|
||||
});
|
||||
|
||||
// Aktywne na górze, gotowe (zniknięte) na dole
|
||||
merged.sort((a, b) => {
|
||||
if (a.present !== b.present) return a.present ? -1 : 1;
|
||||
return a.name.localeCompare(b.name, "pl");
|
||||
});
|
||||
|
||||
savePersistedItems(merged);
|
||||
return merged;
|
||||
}
|
||||
|
||||
function renderItems(items) {
|
||||
emptyState.classList.add("hidden");
|
||||
itemsList.innerHTML = "";
|
||||
|
||||
items.forEach((item) => {
|
||||
const isReady = item.done >= item.qty && item.qty > 0;
|
||||
const div = document.createElement("div");
|
||||
div.className = `item-card ${isReady ? 'ready' : ''} ${item.present ? '' : 'archived'}`;
|
||||
|
||||
let meta = "🔥 W przygotowaniu";
|
||||
if (isReady && item.completedByDisappear) {
|
||||
meta = "✅ Gotowe (zrealizowane)";
|
||||
} else if (isReady) {
|
||||
meta = "✅ Gotowe";
|
||||
}
|
||||
|
||||
div.innerHTML = `
|
||||
<div class="item-info">
|
||||
<span class="item-name">${item.name}</span>
|
||||
<span class="item-meta">${meta}</span>
|
||||
</div>
|
||||
<div class="item-qty">x${item.qty}</div>
|
||||
`;
|
||||
itemsList.appendChild(div);
|
||||
});
|
||||
|
||||
renderGlobalHistory();
|
||||
}
|
||||
|
||||
function updateStatus(bills, items) {
|
||||
let total = 0;
|
||||
let done = 0;
|
||||
items.forEach(i => {
|
||||
total += Number.isFinite(i.qty) ? i.qty : 0;
|
||||
done += Number.isFinite(i.done) ? i.done : 0;
|
||||
});
|
||||
|
||||
const pct = total > 0 ? (done / total) * 100 : 0;
|
||||
progressBar.style.width = `${pct}%`;
|
||||
|
||||
if (pct >= 100) {
|
||||
prepStatus.textContent = "Gotowe do podania!";
|
||||
statusIcon.textContent = "😋";
|
||||
statusMeta.textContent = "Wszystkie Twoje dania opuściły już kuchnię.";
|
||||
} else if (pct > 0) {
|
||||
prepStatus.textContent = "Częściowo gotowe";
|
||||
statusIcon.textContent = "🍳";
|
||||
statusMeta.textContent = "Pierwsze pyszności już na Ciebie czekają!";
|
||||
} else {
|
||||
prepStatus.textContent = "W przygotowaniu";
|
||||
statusIcon.textContent = "👨🍳";
|
||||
statusMeta.textContent = "Twoje zamówienie jest właśnie tworzone przez naszych kucharzy.";
|
||||
}
|
||||
|
||||
// Footer meta
|
||||
const newest = [...bills].sort((a,b) => new Date(b?.Date || 0) - new Date(a?.Date || 0))[0];
|
||||
const time = newest?.Date
|
||||
? new Date(newest.Date).toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'})
|
||||
: "--:--";
|
||||
metaFooter.textContent = `Zamówienie złożone o godzinie ${time} • Stolik ${tableParam}`;
|
||||
}
|
||||
|
||||
// WebSocket Logic
|
||||
function connect() {
|
||||
const proto = location.protocol === "https:" ? "wss" : "ws";
|
||||
const ws = new WebSocket(`${proto}://${location.host}/ws`);
|
||||
|
||||
ws.onmessage = (evt) => {
|
||||
try {
|
||||
const data = JSON.parse(evt.data);
|
||||
const parsed = data?.parsed;
|
||||
if (!parsed || !Array.isArray(parsed.Bills)) return;
|
||||
|
||||
if (!tableParam) {
|
||||
updateUI([]);
|
||||
return;
|
||||
}
|
||||
|
||||
const myTable = tableParam.toLowerCase();
|
||||
const matches = parsed.Bills.filter(b => {
|
||||
const c = detectTableCandidates(b);
|
||||
return (
|
||||
c.fromRemark === myTable ||
|
||||
c.fromDescription === myTable ||
|
||||
c.remark.includes(`stolik ${myTable}`)
|
||||
);
|
||||
});
|
||||
|
||||
updateUI(matches);
|
||||
} catch (e) { console.error("Data error", e); }
|
||||
};
|
||||
|
||||
ws.onclose = () => setTimeout(connect, 3000); // Auto-reconnect
|
||||
ws.onerror = () => {
|
||||
loaderMsg.textContent = "Problem z połączeniem. Próbujemy ponownie...";
|
||||
};
|
||||
}
|
||||
|
||||
connect();
|
||||
|
||||
// Fallback: If no data after 25s, show empty state anyway
|
||||
setTimeout(() => {
|
||||
if (!loadingScreen.classList.contains("hidden")) {
|
||||
updateUI([]);
|
||||
}
|
||||
}, 25000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,518 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Karczma Biesiada – Twoje Zamówienie</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--primary: #e2b07e; /* Ciepłe złoto/miedź */
|
||||
--bg: #0f0f11;
|
||||
--surface: #1c1c1f;
|
||||
--surface-light: #2c2c2e;
|
||||
--text-main: #ffffff;
|
||||
--text-muted: #9a9a9e;
|
||||
--success: #4ade80;
|
||||
--accent: #f59e0b;
|
||||
--radius: 20px;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Plus Jakarta Sans', sans-serif;
|
||||
background-color: var(--bg);
|
||||
color: var(--text-main);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* --- LOADER SCREEN --- */
|
||||
#loadingScreen {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 100;
|
||||
background: var(--bg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px;
|
||||
text-align: center;
|
||||
transition: opacity 0.5s ease, visibility 0.5s;
|
||||
}
|
||||
|
||||
.loader-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border: 3px solid var(--surface-light);
|
||||
border-top: 3px solid var(--primary);
|
||||
border-radius: 50%;
|
||||
animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.loader-text h2 {
|
||||
font-family: 'Playfair Display', serif;
|
||||
margin: 0 0 8px;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.loader-msg { color: var(--text-muted); font-size: 14px; min-height: 20px; }
|
||||
|
||||
/* --- MAIN LAYOUT --- */
|
||||
.container {
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
padding: 24px 16px 100px;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin-bottom: 32px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: 28px;
|
||||
margin: 0;
|
||||
background: linear-gradient(to right, #fff, var(--primary));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.table-badge {
|
||||
display: inline-block;
|
||||
background: var(--surface-light);
|
||||
padding: 6px 16px;
|
||||
border-radius: 99px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
margin-top: 8px;
|
||||
color: var(--primary);
|
||||
border: 1px solid rgba(226, 176, 126, 0.2);
|
||||
}
|
||||
|
||||
/* --- STATUS CARD --- */
|
||||
.status-card {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius);
|
||||
padding: 24px;
|
||||
margin-bottom: 24px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
|
||||
border: 1px solid rgba(255,255,255,0.05);
|
||||
}
|
||||
|
||||
.status-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.status-title {
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
color: var(--text-muted);
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.status-value {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
height: 8px;
|
||||
background: var(--surface-light);
|
||||
border-radius: 10px;
|
||||
margin: 15px 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: linear-gradient(90deg, var(--primary), var(--accent));
|
||||
box-shadow: 0 0 15px rgba(226, 176, 126, 0.4);
|
||||
transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
/* --- ITEMS LIST --- */
|
||||
.items-container h3 {
|
||||
font-size: 18px;
|
||||
margin: 0 0 16px 8px;
|
||||
}
|
||||
|
||||
.item-card {
|
||||
background: var(--surface);
|
||||
margin-bottom: 12px;
|
||||
padding: 16px;
|
||||
border-radius: 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
transition: transform 0.2s;
|
||||
border-left: 4px solid var(--surface-light);
|
||||
}
|
||||
|
||||
.item-card.ready { border-left-color: var(--success); }
|
||||
.item-card.archived { opacity: 0.82; }
|
||||
|
||||
.item-info { display: flex; flex-direction: column; }
|
||||
.item-name { font-weight: 600; font-size: 16px; }
|
||||
.item-meta { font-size: 12px; color: var(--text-muted); }
|
||||
|
||||
.item-qty {
|
||||
background: var(--surface-light);
|
||||
padding: 6px 12px;
|
||||
border-radius: 10px;
|
||||
font-weight: 700;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
/* --- EMPTY STATE --- */
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
|
||||
|
||||
/* --- ANIMATIONS --- */
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
|
||||
.hidden { opacity: 0; visibility: hidden; pointer-events: none; display: none; }
|
||||
|
||||
.meta-footer {
|
||||
font-size: 11px;
|
||||
color: var(--text-muted);
|
||||
margin-top: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="loadingScreen">
|
||||
<div class="loader-icon"></div>
|
||||
<div class="loader-text">
|
||||
<h2>Karczma Biesiada</h2>
|
||||
<div class="loader-msg" id="loaderMsg">Łączenie z kuchnią...</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1 class="logo-text">Karczma Biesiada</h1>
|
||||
<div id="tableLabel" class="table-badge">Wybierz stolik</div>
|
||||
</header>
|
||||
|
||||
<main id="mainContent">
|
||||
<section class="status-card">
|
||||
<div class="status-header">
|
||||
<div>
|
||||
<span class="status-title">Aktualny status</span>
|
||||
<div id="prepStatus" class="status-value">Oczekiwanie...</div>
|
||||
</div>
|
||||
<div id="statusIcon" style="font-size: 28px;">⏳</div>
|
||||
</div>
|
||||
|
||||
<div class="progress-container">
|
||||
<div id="progressBar" class="progress-bar"></div>
|
||||
</div>
|
||||
|
||||
<div id="statusMeta" style="font-size: 12px; color: var(--text-muted);">
|
||||
Sprawdzamy co pysznego się przygotowuje...
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="items-container">
|
||||
<h3>Twoje zamówione dania</h3>
|
||||
<div id="emptyState" class="empty-state hidden">
|
||||
<div class="empty-icon">🍽️</div>
|
||||
<p style="color: var(--text-muted)">Aktualnie nie przygotowujemy niczego dla tego stolika.</p>
|
||||
<p style="font-size: 14px">Jeśli właśnie złożyłeś zamówienie, daj nam chwilkę na jego przetworzenie.</p>
|
||||
</div>
|
||||
<div id="itemsList"></div>
|
||||
</section>
|
||||
|
||||
<div id="metaFooter" class="meta-footer"></div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const params = new URLSearchParams(location.search);
|
||||
const tableParam = (params.get("table") || "").trim();
|
||||
|
||||
// UI Elements
|
||||
const loadingScreen = document.getElementById("loadingScreen");
|
||||
const loaderMsg = document.getElementById("loaderMsg");
|
||||
const tableLabel = document.getElementById("tableLabel");
|
||||
const prepStatus = document.getElementById("prepStatus");
|
||||
const progressBar = document.getElementById("progressBar");
|
||||
const statusMeta = document.getElementById("statusMeta");
|
||||
const itemsList = document.getElementById("itemsList");
|
||||
const emptyState = document.getElementById("emptyState");
|
||||
const metaFooter = document.getElementById("metaFooter");
|
||||
const statusIcon = document.getElementById("statusIcon");
|
||||
const storageKey = `stolik2_state_${(tableParam || "unknown").toLowerCase()}`;
|
||||
|
||||
// Dynamic Loader Messages
|
||||
const msgs = ["Rozgrzewamy piece...", "Szef kuchni sprawdza składniki...", "Łączenie z sercem restauracji...", "Prawie gotowe..."];
|
||||
let msgIdx = 0;
|
||||
const msgInterval = setInterval(() => {
|
||||
msgIdx = (msgIdx + 1) % msgs.length;
|
||||
loaderMsg.textContent = msgs[msgIdx];
|
||||
}, 4000);
|
||||
|
||||
// Initial State
|
||||
if (tableParam) {
|
||||
tableLabel.textContent = `Stolik ${tableParam}`;
|
||||
}
|
||||
|
||||
function updateUI(bills) {
|
||||
// Hide loader on first data
|
||||
loadingScreen.classList.add("hidden");
|
||||
clearInterval(msgInterval);
|
||||
|
||||
const allArticles = bills.flatMap(b => Array.isArray(b?.Articles) ? b.Articles : []);
|
||||
const items = mergeWithPersistedItems(allArticles);
|
||||
|
||||
if (items.length === 0) {
|
||||
showEmptyState();
|
||||
return;
|
||||
}
|
||||
|
||||
renderItems(items);
|
||||
updateStatus(bills, items);
|
||||
}
|
||||
|
||||
function detectTableCandidates(bill) {
|
||||
const remark = String(bill?.Remark || "");
|
||||
const description = String(bill?.Description || "").trim();
|
||||
|
||||
// 1) klasyczny format: "STOLIK 9", "STOLIK 11A"
|
||||
const stolikMatch = remark.match(/STOLIK\s*([0-9A-Z]+)/i);
|
||||
const fromRemark = stolikMatch ? stolikMatch[1].toLowerCase() : "";
|
||||
|
||||
// 2) czasem numer bywa w samym Description
|
||||
const fromDescription = description.toLowerCase();
|
||||
|
||||
return { fromRemark, fromDescription, remark: remark.toLowerCase() };
|
||||
}
|
||||
|
||||
function showEmptyState() {
|
||||
emptyState.classList.remove("hidden");
|
||||
itemsList.innerHTML = "";
|
||||
prepStatus.textContent = "Brak aktywnych zamówień";
|
||||
statusIcon.textContent = "🍃";
|
||||
progressBar.style.width = "0%";
|
||||
statusMeta.textContent = "Zapraszamy do złożenia zamówienia u kelnera.";
|
||||
}
|
||||
|
||||
function normalizeArticleName(rawName) {
|
||||
const name = String(rawName || "Pozycja");
|
||||
|
||||
// Usuwa gramatury typu: "300G", "250 G", "500/200/150G".
|
||||
const withoutWeight = name.replace(
|
||||
/\b\d+(?:[.,]\d+)?(?:\s*\/\s*\d+(?:[.,]\d+)?)*\s*[gG]\b/g,
|
||||
""
|
||||
);
|
||||
|
||||
return withoutWeight
|
||||
.replace(/\s{2,}/g, " ")
|
||||
.replace(/\s+([,.;:!?])/g, "$1")
|
||||
.trim() || "Pozycja";
|
||||
}
|
||||
|
||||
function loadPersistedItems() {
|
||||
try {
|
||||
const raw = localStorage.getItem(storageKey);
|
||||
if (!raw) return [];
|
||||
const parsed = JSON.parse(raw);
|
||||
return Array.isArray(parsed) ? parsed : [];
|
||||
} catch {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
function savePersistedItems(items) {
|
||||
try {
|
||||
localStorage.setItem(storageKey, JSON.stringify(items));
|
||||
} catch {
|
||||
// brak miejsca/tryb prywatny
|
||||
}
|
||||
}
|
||||
|
||||
function mergeWithPersistedItems(articles) {
|
||||
const current = new Map();
|
||||
|
||||
articles.forEach(a => {
|
||||
const name = normalizeArticleName(a.Name);
|
||||
const todo = parseFloat(String(a.QuantityToDo || a.QuantitySet || "0").replace(",","."));
|
||||
const done = parseFloat(String(a.QuantityDone || "0").replace(",","."));
|
||||
|
||||
if (!current.has(name)) {
|
||||
current.set(name, { name, qty: 0, done: 0, present: true, completedByDisappear: false });
|
||||
}
|
||||
const curr = current.get(name);
|
||||
curr.qty += Number.isFinite(todo) ? todo : 0;
|
||||
curr.done += Number.isFinite(done) ? done : 0;
|
||||
});
|
||||
|
||||
const persisted = loadPersistedItems();
|
||||
const persistedMap = new Map(persisted.map(i => [i.name, i]));
|
||||
const merged = [];
|
||||
|
||||
// Aktualnie obecne pozycje z WS
|
||||
current.forEach((item) => {
|
||||
merged.push({
|
||||
...item,
|
||||
present: true,
|
||||
completedByDisappear: false,
|
||||
updatedAt: Date.now()
|
||||
});
|
||||
});
|
||||
|
||||
// Pozycje, które były wcześniej, ale zniknęły z WS -> zostają jako gotowe
|
||||
persistedMap.forEach((oldItem, name) => {
|
||||
if (current.has(name)) return;
|
||||
const qty = Number.isFinite(oldItem?.qty) ? oldItem.qty : 0;
|
||||
merged.push({
|
||||
name,
|
||||
qty,
|
||||
done: qty,
|
||||
present: false,
|
||||
completedByDisappear: true,
|
||||
updatedAt: Date.now()
|
||||
});
|
||||
});
|
||||
|
||||
// Aktywne na górze, gotowe (zniknięte) na dole
|
||||
merged.sort((a, b) => {
|
||||
if (a.present !== b.present) return a.present ? -1 : 1;
|
||||
return a.name.localeCompare(b.name, "pl");
|
||||
});
|
||||
|
||||
savePersistedItems(merged);
|
||||
return merged;
|
||||
}
|
||||
|
||||
function renderItems(items) {
|
||||
emptyState.classList.add("hidden");
|
||||
itemsList.innerHTML = "";
|
||||
|
||||
items.forEach((item) => {
|
||||
const isReady = item.done >= item.qty && item.qty > 0;
|
||||
const div = document.createElement("div");
|
||||
div.className = `item-card ${isReady ? 'ready' : ''} ${item.present ? '' : 'archived'}`;
|
||||
|
||||
let meta = "🔥 W przygotowaniu";
|
||||
if (isReady && item.completedByDisappear) {
|
||||
meta = "✅ Gotowe (zrealizowane)";
|
||||
} else if (isReady) {
|
||||
meta = "✅ Gotowe";
|
||||
}
|
||||
|
||||
div.innerHTML = `
|
||||
<div class="item-info">
|
||||
<span class="item-name">${item.name}</span>
|
||||
<span class="item-meta">${meta}</span>
|
||||
</div>
|
||||
<div class="item-qty">x${item.qty}</div>
|
||||
`;
|
||||
itemsList.appendChild(div);
|
||||
});
|
||||
}
|
||||
|
||||
function updateStatus(bills, items) {
|
||||
let total = 0;
|
||||
let done = 0;
|
||||
items.forEach(i => {
|
||||
total += Number.isFinite(i.qty) ? i.qty : 0;
|
||||
done += Number.isFinite(i.done) ? i.done : 0;
|
||||
});
|
||||
|
||||
const pct = total > 0 ? (done / total) * 100 : 0;
|
||||
progressBar.style.width = `${pct}%`;
|
||||
|
||||
if (pct >= 100) {
|
||||
prepStatus.textContent = "Gotowe do podania!";
|
||||
statusIcon.textContent = "😋";
|
||||
statusMeta.textContent = "Wszystkie Twoje dania opuściły już kuchnię.";
|
||||
} else if (pct > 0) {
|
||||
prepStatus.textContent = "Częściowo gotowe";
|
||||
statusIcon.textContent = "🍳";
|
||||
statusMeta.textContent = "Pierwsze pyszności już na Ciebie czekają!";
|
||||
} else {
|
||||
prepStatus.textContent = "W przygotowaniu";
|
||||
statusIcon.textContent = "👨🍳";
|
||||
statusMeta.textContent = "Twoje zamówienie jest właśnie tworzone przez naszych kucharzy.";
|
||||
}
|
||||
|
||||
// Footer meta
|
||||
const newest = [...bills].sort((a,b) => new Date(b?.Date || 0) - new Date(a?.Date || 0))[0];
|
||||
const time = newest?.Date
|
||||
? new Date(newest.Date).toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'})
|
||||
: "--:--";
|
||||
metaFooter.textContent = `Zamówienie złożone o godzinie ${time} • Stolik ${tableParam}`;
|
||||
}
|
||||
|
||||
// WebSocket Logic
|
||||
function connect() {
|
||||
const proto = location.protocol === "https:" ? "wss" : "ws";
|
||||
const ws = new WebSocket(`${proto}://${location.host}/ws`);
|
||||
|
||||
ws.onmessage = (evt) => {
|
||||
try {
|
||||
const data = JSON.parse(evt.data);
|
||||
const parsed = data?.parsed;
|
||||
if (!parsed || !Array.isArray(parsed.Bills)) return;
|
||||
|
||||
if (!tableParam) {
|
||||
updateUI([]);
|
||||
return;
|
||||
}
|
||||
|
||||
const myTable = tableParam.toLowerCase();
|
||||
const matches = parsed.Bills.filter(b => {
|
||||
const c = detectTableCandidates(b);
|
||||
return (
|
||||
c.fromRemark === myTable ||
|
||||
c.fromDescription === myTable ||
|
||||
c.remark.includes(`stolik ${myTable}`)
|
||||
);
|
||||
});
|
||||
|
||||
updateUI(matches);
|
||||
} catch (e) { console.error("Data error", e); }
|
||||
};
|
||||
|
||||
ws.onclose = () => setTimeout(connect, 3000); // Auto-reconnect
|
||||
ws.onerror = () => {
|
||||
loaderMsg.textContent = "Problem z połączeniem. Próbujemy ponownie...";
|
||||
};
|
||||
}
|
||||
|
||||
connect();
|
||||
|
||||
// Fallback: If no data after 25s, show empty state anyway
|
||||
setTimeout(() => {
|
||||
if (!loadingScreen.classList.contains("hidden")) {
|
||||
updateUI([]);
|
||||
}
|
||||
}, 25000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
1155
public/stolik2.html
1155
public/stolik2.html
File diff suppressed because it is too large
Load Diff
@@ -1,202 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Karczma Biesiada – Twoje Zamówienie</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="assets/css/stolik2_api.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="loadingScreen">
|
||||
<div class="loader-icon"></div>
|
||||
<div class="loader-text">
|
||||
<h2>Karczma Biesiada</h2>
|
||||
<div class="loader-msg" id="loaderMsg">Łączenie z kuchnią...</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1 class="logo-text">Karczma Biesiada</h1>
|
||||
<div id="tableLabel" class="table-badge">Wybierz stolik</div>
|
||||
</header>
|
||||
|
||||
<main id="mainContent">
|
||||
<section class="action-card">
|
||||
<h3>Przywołaj kelnera</h3>
|
||||
<div class="action-buttons">
|
||||
<button class="btn btn-primary action-btn" onclick="openWaiterDialog()">
|
||||
<span>🛎️</span> Przywołaj kelnera
|
||||
</button>
|
||||
<button class="btn btn-secondary action-btn" onclick="openBillDialog()">
|
||||
<span>💳</span> Poproś o rachunek
|
||||
</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="status-card">
|
||||
<div class="status-header">
|
||||
<div>
|
||||
<span class="status-title">Aktualny status</span>
|
||||
<div id="prepStatus" class="status-value">Oczekiwanie...</div>
|
||||
</div>
|
||||
<div id="statusIcon" style="font-size: 28px;">⏳</div>
|
||||
</div>
|
||||
|
||||
<div class="progress-container">
|
||||
<div id="progressBar" class="progress-bar"></div>
|
||||
</div>
|
||||
|
||||
<div id="statusMeta" style="font-size: 12px; color: var(--text-muted);">
|
||||
Sprawdzamy co pysznego się przygotowuje...
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="items-container">
|
||||
<h3>Twoje zamówione dania</h3>
|
||||
<div id="emptyState" class="empty-state hidden">
|
||||
<div class="empty-icon">🍽️</div>
|
||||
<p style="color: var(--text-muted)">Aktualnie nie przygotowujemy niczego dla tego stolika.</p>
|
||||
<p style="font-size: 14px">Jeśli właśnie złożyłeś zamówienie, daj nam chwilkę na jego przetworzenie.</p>
|
||||
</div>
|
||||
<div id="itemsList"></div>
|
||||
</section>
|
||||
|
||||
<section id="historySection" class="items-container history-section hidden">
|
||||
<h3>Twoje poprzednie zamówienia</h3>
|
||||
<p class="history-note">To są pozycje z innych wizyt, które były widoczne na tym telefonie po zeskanowaniu kodów QR. Jeśli kiedyś byłeś w restauracji bez skanowania kodu, tych pozycji tu nie będzie 🙂</p>
|
||||
<div id="historyList"></div>
|
||||
</section>
|
||||
|
||||
<div id="metaFooter" class="meta-footer"></div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<!-- WAITER DIALOG -->
|
||||
<div class="modal-overlay" id="waiterModal">
|
||||
<div class="modal-content" style="text-align: center;">
|
||||
<div style="font-size: 48px; margin-bottom: 15px;">🛎️</div>
|
||||
<h3 style="margin-top: 0; color: var(--text-main); font-family: 'Playfair Display', serif; font-size: 24px;">Przywołać obsługę?</h3>
|
||||
<p style="color: var(--text-muted); font-size: 15px; margin-bottom: 25px; line-height: 1.5;">
|
||||
Kelner otrzyma natychmiastowe powiadomienie na swoim panelu i podejdzie do Twojego stolika najszybciej jak to możliwe.
|
||||
</p>
|
||||
<div style="display: flex; gap: 12px; flex-direction: column;">
|
||||
<button class="btn btn-primary" onclick="confirmCallWaiter()" style="padding: 14px; font-size: 16px;">Tak, poproś kelnera</button>
|
||||
<button class="btn btn-secondary" onclick="closeWaiterDialog()" style="padding: 14px;">Anuluj</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- BILL DIALOG -->
|
||||
<div class="modal-overlay" id="billModal">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h3 id="modalTitle">Rozliczenie</h3>
|
||||
<button class="close-btn" onclick="closeBillDialog()">×</button>
|
||||
</div>
|
||||
|
||||
<!-- Step 0: Loading or List of Bills -->
|
||||
<div class="step active" id="stepBillList">
|
||||
<div id="billLoading" style="text-align:center; padding: 20px;">
|
||||
⏳ Pobieranie rachunków...
|
||||
</div>
|
||||
<div id="billListContainer" class="hidden">
|
||||
<p style="margin-top:0; color:var(--text-muted); font-size:14px; margin-bottom: 20px;">Mamy kilka otwartych rachunków na tym stoliku. Który chcesz opłacić?</p>
|
||||
<div id="billListItems" style="display:flex; flex-direction:column; gap:10px;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Step 0.5: Bill Review -->
|
||||
<div class="step" id="stepBillReview">
|
||||
<p style="margin-top:0; color:var(--text-muted); font-size:14px; margin-bottom: 20px;">Podsumowanie rachunku:</p>
|
||||
<div id="billReviewContent" style="background: var(--surface-light); padding: 15px; border-radius: 12px; max-height: 40vh; overflow-y: auto; margin-bottom: 15px;">
|
||||
</div>
|
||||
<div style="display:flex; justify-content:space-between; font-weight:700; font-size:18px; margin-bottom: 20px;">
|
||||
<span>Do zapłaty:</span>
|
||||
<span id="billTotalAmount" style="color:var(--primary);">0.00 PLN</span>
|
||||
</div>
|
||||
<div style="display:flex; gap:12px;">
|
||||
<button class="btn btn-secondary" style="flex:1;" onclick="goBackToBillList()" id="btnBackToBills">Wróć</button>
|
||||
<button class="btn btn-primary" style="flex:2;" onclick="goToStep('stepPayment')">Dalej</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Step 1: Payment Method -->
|
||||
<div class="step" id="stepPayment">
|
||||
<p style="margin-top:0; color:var(--text-muted); font-size:14px; margin-bottom: 20px;">Wybierz preferowaną formę płatności:</p>
|
||||
<div class="option-grid">
|
||||
<div class="option-card" onclick="selectPayment('karta')">
|
||||
<span class="option-icon">💳</span>
|
||||
<span class="option-label">Karta</span>
|
||||
</div>
|
||||
<div class="option-card" onclick="selectPayment('gotówka')">
|
||||
<span class="option-icon">💵</span>
|
||||
<span class="option-label">Gotówka</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn btn-secondary" onclick="goToStep('stepBillReview')" style="margin-top: 15px;">Wróć do podsumowania</button>
|
||||
</div>
|
||||
|
||||
<!-- Step 2: Document Type -->
|
||||
<div class="step" id="stepDocument">
|
||||
<p style="margin-top:0; color:var(--text-muted); font-size:14px; margin-bottom: 20px;">Jakiego dokumentu potrzebujesz?</p>
|
||||
<div class="option-grid">
|
||||
<div class="option-card" onclick="selectDocument('paragon')">
|
||||
<span class="option-icon">🧾</span>
|
||||
<span class="option-label">Paragon</span>
|
||||
</div>
|
||||
<div class="option-card" onclick="selectDocument('faktura')">
|
||||
<span class="option-icon">📄</span>
|
||||
<span class="option-label">Faktura</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn btn-secondary" onclick="goToStep('stepPayment')" style="margin-top: 8px;">Wróć</button>
|
||||
</div>
|
||||
|
||||
<!-- Step 3: NIP Input -->
|
||||
<div class="step" id="stepNIP">
|
||||
<p style="margin-top:0; color:var(--text-muted); font-size:14px; margin-bottom: 20px;">Wprowadź NIP firmy, abyśmy mogli automatycznie pobrać dane.</p>
|
||||
<div class="input-group">
|
||||
<label class="input-label">Numer NIP</label>
|
||||
<input type="text" id="nipInput" class="input-field" placeholder="np. 1234567890" autocomplete="off" />
|
||||
</div>
|
||||
<div style="display:flex; gap:12px; margin-top: 24px;">
|
||||
<button class="btn btn-secondary" style="flex:1;" onclick="goToStep('stepDocument')">Wróć</button>
|
||||
<button class="btn btn-primary" style="flex:2;" onclick="fetchGUS()" id="btnGUS">Pobierz z GUS</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Step 4: Verify Data -->
|
||||
<div class="step" id="stepVerify">
|
||||
<p style="margin-top:0; color:var(--text-muted); font-size:14px; margin-bottom: 20px;">Czy poniższe dane do faktury są prawidłowe?</p>
|
||||
|
||||
<div class="company-details">
|
||||
<input type="text" id="cmpName" class="company-input" style="font-weight:700; margin-bottom:4px;" readonly />
|
||||
<input type="text" id="cmpAddress" class="company-input" style="margin-bottom:4px;" readonly />
|
||||
<input type="text" id="cmpNip" class="company-input muted" readonly />
|
||||
</div>
|
||||
|
||||
<div style="display:flex; gap:12px; flex-direction:column;">
|
||||
<button class="btn btn-primary" onclick="confirmInvoice()">Tak, poproszę fakturę!</button>
|
||||
<div style="display:flex; gap:12px;">
|
||||
<button class="btn btn-secondary" onclick="goToStep('stepNIP')">Zmień NIP</button>
|
||||
<button class="btn btn-secondary" onclick="editCompanyData()" id="btnEditCompany">Popraw ręcznie</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Toast -->
|
||||
<div class="toast" id="toastMsg">
|
||||
<span style="font-size:20px;">✓</span> <span id="toastText">Wysłano!</span>
|
||||
</div>
|
||||
|
||||
<script src="assets/js/stolik2_api.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,731 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||||
<title>Karczma Biesiada</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--ink: #1a1410;
|
||||
--ink-2: #3d342b;
|
||||
--ink-3: #7a6d63;
|
||||
--cream: #faf7f2;
|
||||
--cream-2: #f2ede4;
|
||||
--cream-3: #e8e0d4;
|
||||
--gold: #c9a84c;
|
||||
--gold-lt: #f0d89a;
|
||||
--gold-dk: #8c6b22;
|
||||
--green: #2d5a3d;
|
||||
--green-lt: #e8f2eb;
|
||||
--amber: #b85c1a;
|
||||
--amber-lt: #faeee5;
|
||||
--r: 16px;
|
||||
}
|
||||
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
html {
|
||||
font-family: 'DM Sans', sans-serif;
|
||||
font-size: 16px;
|
||||
color: var(--ink);
|
||||
background: var(--cream);
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 100dvh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background:
|
||||
radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,168,76,.10) 0%, transparent 70%),
|
||||
var(--cream);
|
||||
}
|
||||
|
||||
/* ── HEADER ── */
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 20px 20px 0;
|
||||
animation: fadeDown .5s ease both;
|
||||
}
|
||||
|
||||
.brand {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1px;
|
||||
}
|
||||
|
||||
.brand-name {
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
color: var(--ink);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.brand-tagline {
|
||||
font-size: 11px;
|
||||
font-weight: 300;
|
||||
color: var(--ink-3);
|
||||
letter-spacing: .06em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.table-pill {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
background: var(--ink);
|
||||
color: var(--cream);
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
padding: 6px 13px;
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
.table-pill svg { opacity: .65; }
|
||||
|
||||
/* ── HERO ── */
|
||||
|
||||
.hero {
|
||||
padding: 36px 20px 28px;
|
||||
text-align: center;
|
||||
animation: fadeUp .55s .1s ease both;
|
||||
}
|
||||
|
||||
.hero-icon {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
background: var(--cream-2);
|
||||
border: 1px solid var(--cream-3);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 18px;
|
||||
transition: background .4s, border-color .4s;
|
||||
}
|
||||
|
||||
.hero-icon svg {
|
||||
width: 26px; height: 26px;
|
||||
transition: opacity .3s;
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
color: var(--ink);
|
||||
margin-bottom: 8px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.hero-sub {
|
||||
font-size: 14px;
|
||||
font-weight: 300;
|
||||
color: var(--ink-3);
|
||||
line-height: 1.6;
|
||||
max-width: 280px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* ── STATUS BADGE ── */
|
||||
|
||||
.status-wrap {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
padding: 7px 15px;
|
||||
border-radius: 999px;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
border: 1px solid transparent;
|
||||
transition: all .35s ease;
|
||||
}
|
||||
|
||||
.status-badge.s-idle {
|
||||
background: var(--cream-2);
|
||||
border-color: var(--cream-3);
|
||||
color: var(--ink-3);
|
||||
}
|
||||
.status-badge.s-cooking {
|
||||
background: var(--amber-lt);
|
||||
border-color: rgba(184,92,26,.25);
|
||||
color: var(--amber);
|
||||
}
|
||||
.status-badge.s-partial {
|
||||
background: #e8f0fa;
|
||||
border-color: rgba(59,100,180,.22);
|
||||
color: #2a5cb8;
|
||||
}
|
||||
.status-badge.s-done {
|
||||
background: var(--green-lt);
|
||||
border-color: rgba(45,90,61,.22);
|
||||
color: var(--green);
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
width: 7px; height: 7px;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
background: currentColor;
|
||||
}
|
||||
|
||||
.status-dot.pulse { animation: dotpulse 1.6s ease-in-out infinite; }
|
||||
|
||||
@keyframes dotpulse {
|
||||
0%, 100% { opacity: 1; transform: scale(1); }
|
||||
50% { opacity: .4; transform: scale(.65); }
|
||||
}
|
||||
|
||||
/* ── PROGRESS ── */
|
||||
|
||||
.progress-section {
|
||||
padding: 0 20px;
|
||||
margin-bottom: 8px;
|
||||
animation: fadeUp .5s .15s ease both;
|
||||
}
|
||||
|
||||
.progress-meta {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: var(--ink-3);
|
||||
margin-bottom: 7px;
|
||||
}
|
||||
|
||||
.progress-track {
|
||||
height: 4px;
|
||||
background: var(--cream-3);
|
||||
border-radius: 999px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
background: var(--green);
|
||||
border-radius: 999px;
|
||||
transition: width .6s cubic-bezier(.4, 0, .2, 1);
|
||||
}
|
||||
|
||||
/* ── LOADER ── */
|
||||
|
||||
.loader-section {
|
||||
margin: 8px 20px 0;
|
||||
padding: 28px 20px;
|
||||
border-radius: var(--r);
|
||||
border: 1px solid var(--cream-3);
|
||||
background: var(--cream-2);
|
||||
text-align: center;
|
||||
animation: fadeUp .5s .2s ease both;
|
||||
}
|
||||
|
||||
.loader-ring {
|
||||
width: 36px; height: 36px;
|
||||
margin: 0 auto 14px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid var(--cream-3);
|
||||
border-top-color: var(--gold);
|
||||
animation: spin .85s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
|
||||
.loader-title {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: var(--ink-2);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.loader-sub {
|
||||
font-size: 13px;
|
||||
font-weight: 300;
|
||||
color: var(--ink-3);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* ── ITEMS CARD ── */
|
||||
|
||||
.items-card {
|
||||
margin: 14px 20px 0;
|
||||
border-radius: var(--r);
|
||||
border: 1px solid var(--cream-3);
|
||||
background: #fff;
|
||||
overflow: hidden;
|
||||
animation: fadeUp .5s .2s ease both;
|
||||
}
|
||||
|
||||
.items-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 14px 16px 12px;
|
||||
border-bottom: 1px solid var(--cream-3);
|
||||
}
|
||||
|
||||
.items-label {
|
||||
font-size: 11px;
|
||||
font-weight: 500;
|
||||
color: var(--ink-3);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
.items-count {
|
||||
font-size: 12px;
|
||||
color: var(--ink-3);
|
||||
background: var(--cream-2);
|
||||
padding: 2px 8px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid var(--cream-3);
|
||||
}
|
||||
|
||||
.order-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 13px 16px;
|
||||
border-bottom: 1px solid var(--cream-3);
|
||||
transition: background .15s;
|
||||
}
|
||||
|
||||
.order-row:last-child { border-bottom: none; }
|
||||
.order-row:active { background: var(--cream-2); }
|
||||
|
||||
.row-dot {
|
||||
width: 6px; height: 6px;
|
||||
border-radius: 50%;
|
||||
background: var(--gold);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.row-name {
|
||||
flex: 1;
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
color: var(--ink);
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.row-qty {
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: var(--ink-3);
|
||||
background: var(--cream-2);
|
||||
border: 1px solid var(--cream-3);
|
||||
border-radius: 6px;
|
||||
padding: 3px 9px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* ── META TAGS ── */
|
||||
|
||||
.meta-row {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
padding: 14px 20px 0;
|
||||
animation: fadeUp .5s .3s ease both;
|
||||
}
|
||||
|
||||
.meta-tag {
|
||||
font-size: 12px;
|
||||
font-weight: 300;
|
||||
color: var(--ink-3);
|
||||
background: var(--cream-2);
|
||||
border: 1px solid var(--cream-3);
|
||||
border-radius: 6px;
|
||||
padding: 3px 9px;
|
||||
}
|
||||
|
||||
/* ── FOOTER ── */
|
||||
|
||||
footer {
|
||||
margin-top: auto;
|
||||
padding: 28px 20px 24px;
|
||||
text-align: center;
|
||||
animation: fadeUp .5s .35s ease both;
|
||||
}
|
||||
|
||||
.footer-line {
|
||||
font-size: 12px;
|
||||
font-weight: 300;
|
||||
color: var(--cream-3);
|
||||
}
|
||||
|
||||
.footer-divider {
|
||||
width: 32px;
|
||||
height: 1px;
|
||||
background: var(--cream-3);
|
||||
margin: 14px auto;
|
||||
}
|
||||
|
||||
.ws-status {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
font-size: 11px;
|
||||
color: var(--ink-3);
|
||||
}
|
||||
|
||||
.ws-dot {
|
||||
width: 6px; height: 6px;
|
||||
border-radius: 50%;
|
||||
background: var(--ink-3);
|
||||
}
|
||||
|
||||
.ws-dot.connected { background: var(--green); }
|
||||
.ws-dot.error { background: var(--amber); }
|
||||
|
||||
/* ── HELPERS ── */
|
||||
|
||||
.hidden { display: none !important; }
|
||||
|
||||
@keyframes fadeUp {
|
||||
from { opacity: 0; transform: translateY(14px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
@keyframes fadeDown {
|
||||
from { opacity: 0; transform: translateY(-8px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
@keyframes itemIn {
|
||||
from { opacity: 0; transform: translateX(-10px); }
|
||||
to { opacity: 1; transform: translateX(0); }
|
||||
}
|
||||
|
||||
.order-row { animation: itemIn .35s ease both; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="brand">
|
||||
<span class="brand-name">Karczma Biesiada</span>
|
||||
<span class="brand-tagline">Status zamówienia</span>
|
||||
</div>
|
||||
<div class="table-pill" id="tablePill">
|
||||
<svg width="12" height="12" viewBox="0 0 16 16" fill="none">
|
||||
<rect x="1" y="7" width="14" height="2" rx="1" fill="currentColor"/>
|
||||
<rect x="3" y="9" width="2" height="5" rx="1" fill="currentColor"/>
|
||||
<rect x="11" y="9" width="2" height="5" rx="1" fill="currentColor"/>
|
||||
</svg>
|
||||
<span id="tableLabel">Stolik —</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- HERO -->
|
||||
<div class="hero">
|
||||
<div class="hero-icon" id="heroIcon">
|
||||
<!-- icon swapped by JS -->
|
||||
<svg id="iconIdle" viewBox="0 0 24 24" fill="none" stroke="var(--ink-3)" stroke-width="1.5">
|
||||
<circle cx="12" cy="12" r="9"/>
|
||||
<path d="M12 7v5l3 2" stroke-linecap="round"/>
|
||||
</svg>
|
||||
<svg id="iconCooking" class="hidden" viewBox="0 0 24 24" fill="none" stroke="var(--amber)" stroke-width="1.5">
|
||||
<path d="M3 12c0-5 2-8 9-8s9 3 9 8" stroke-linecap="round"/>
|
||||
<path d="M3 12h18M12 12v6" stroke-linecap="round"/>
|
||||
<path d="M9 18h6" stroke-linecap="round"/>
|
||||
<path d="M8 5.5c0-1 .5-2 1-2.5M12 5c0-1 .5-2 1-2.5M16 5.5c0-1-.5-2-1-2.5" stroke-linecap="round"/>
|
||||
</svg>
|
||||
<svg id="iconDone" class="hidden" viewBox="0 0 24 24" fill="none" stroke="var(--green)" stroke-width="1.5">
|
||||
<circle cx="12" cy="12" r="9"/>
|
||||
<path d="M8 12l3 3 5-5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h1 class="hero-title" id="heroTitle">Sprawdzamy…</h1>
|
||||
<p class="hero-sub" id="heroSub">Łączymy się z kuchnią. Chwileczkę.</p>
|
||||
<div class="status-wrap">
|
||||
<span class="status-badge s-idle" id="statusBadge">
|
||||
<span class="status-dot pulse" id="statusDot"></span>
|
||||
<span id="statusText">Łączenie</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- PROGRESS -->
|
||||
<div class="progress-section hidden" id="progressSection">
|
||||
<div class="progress-meta">
|
||||
<span>Postęp przygotowania</span>
|
||||
<span id="progressPct">0%</span>
|
||||
</div>
|
||||
<div class="progress-track">
|
||||
<div class="progress-fill" id="progressFill" style="width:0%"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- LOADER -->
|
||||
<div class="loader-section" id="loaderSection">
|
||||
<div class="loader-ring"></div>
|
||||
<div class="loader-title">Szukamy Twojego zamówienia</div>
|
||||
<div class="loader-sub">Łączymy się z kuchnią.<br>Może chwilkę potrwać.</div>
|
||||
</div>
|
||||
|
||||
<!-- ITEMS -->
|
||||
<div class="items-card hidden" id="itemsCard">
|
||||
<div class="items-header">
|
||||
<span class="items-label">Na rachunku</span>
|
||||
<span class="items-count" id="itemsCount">0 pozycji</span>
|
||||
</div>
|
||||
<div id="itemsList"></div>
|
||||
</div>
|
||||
|
||||
<!-- META -->
|
||||
<div class="meta-row hidden" id="metaRow"></div>
|
||||
|
||||
<footer>
|
||||
<div class="footer-divider"></div>
|
||||
<div class="ws-status">
|
||||
<span class="ws-dot" id="wsDot"></span>
|
||||
<span id="wsLabel">Rozłączono</span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
/* ── HELPERS ── */
|
||||
|
||||
const $ = id => document.getElementById(id);
|
||||
const params = new URLSearchParams(location.search);
|
||||
const tableParam = (params.get("table") || "").trim();
|
||||
|
||||
// Set table label
|
||||
$("tableLabel").textContent = tableParam ? `Stolik\u00a0${tableParam}` : "Brak stolika";
|
||||
|
||||
function parseNum(v) {
|
||||
const n = parseFloat(String(v || "0").replace(",", "."));
|
||||
return Number.isFinite(n) ? n : 0;
|
||||
}
|
||||
|
||||
function detectTable(bill) {
|
||||
const t = `${bill?.Remark || ""} ${bill?.Description || ""}`;
|
||||
const m = t.match(/STOLIK\s*([0-9A-Z]+)/i);
|
||||
return m ? m[1] : "";
|
||||
}
|
||||
|
||||
function minutesAgo(iso) {
|
||||
const diff = Math.max(0, Math.floor((Date.now() - new Date(iso || Date.now())) / 60000));
|
||||
if (diff < 1) return "przed chwilą";
|
||||
if (diff === 1) return "1 min temu";
|
||||
if (diff < 5) return `${diff} min temu`;
|
||||
return `${diff} min temu`;
|
||||
}
|
||||
|
||||
/* ── RENDER STATES ── */
|
||||
|
||||
function setIcon(name) {
|
||||
["Idle","Cooking","Done"].forEach(n => $("icon"+n).classList.add("hidden"));
|
||||
$("icon"+name).classList.remove("hidden");
|
||||
}
|
||||
|
||||
function setHeroIcon(state) {
|
||||
const icon = $("heroIcon");
|
||||
icon.style.background = state === "done" ? "var(--green-lt)"
|
||||
: state === "cooking" || state === "partial" ? "var(--amber-lt)"
|
||||
: "var(--cream-2)";
|
||||
icon.style.borderColor = state === "done" ? "rgba(45,90,61,.2)"
|
||||
: state === "cooking" || state === "partial" ? "rgba(184,92,26,.2)"
|
||||
: "var(--cream-3)";
|
||||
if (state === "done") setIcon("Done");
|
||||
else if (state === "cooking" || state === "partial") setIcon("Cooking");
|
||||
else setIcon("Idle");
|
||||
}
|
||||
|
||||
function setStatus(state, text) {
|
||||
const badge = $("statusBadge");
|
||||
const dot = $("statusDot");
|
||||
badge.className = "status-badge";
|
||||
dot.className = "status-dot";
|
||||
if (state === "cooking") { badge.classList.add("s-cooking"); dot.classList.add("pulse"); }
|
||||
else if (state === "partial") { badge.classList.add("s-partial"); dot.classList.add("pulse"); }
|
||||
else if (state === "done") badge.classList.add("s-done");
|
||||
else badge.classList.add("s-idle");
|
||||
$("statusText").textContent = text;
|
||||
}
|
||||
|
||||
function setProgress(pct) {
|
||||
const p = Math.max(0, Math.min(100, pct));
|
||||
$("progressFill").style.width = p + "%";
|
||||
$("progressPct").textContent = Math.round(p) + "%";
|
||||
}
|
||||
|
||||
function showEl(id, show) {
|
||||
$(id).classList.toggle("hidden", !show);
|
||||
}
|
||||
|
||||
/* ── RENDER BILLS ── */
|
||||
|
||||
function renderBills(bills) {
|
||||
// Hide loader
|
||||
showEl("loaderSection", false);
|
||||
|
||||
if (!bills.length) {
|
||||
setHeroIcon("idle");
|
||||
$("heroTitle").textContent = "Cisza w kuchni";
|
||||
$("heroSub").textContent = "Aktualnie nie mamy aktywnego zamówienia dla tego stolika.";
|
||||
setStatus("idle", "Brak zamówienia");
|
||||
showEl("progressSection", false);
|
||||
showEl("itemsCard", false);
|
||||
showEl("metaRow", false);
|
||||
return;
|
||||
}
|
||||
|
||||
const allArticles = bills.flatMap(b => Array.isArray(b?.Articles) ? b.Articles : []);
|
||||
|
||||
if (!allArticles.length) {
|
||||
setHeroIcon("cooking");
|
||||
$("heroTitle").textContent = "Gotujemy dla Ciebie";
|
||||
$("heroSub").textContent = "Zamówienie przyjęte — kuchnia właśnie zaczyna.";
|
||||
setStatus("cooking", "W trakcie przygotowywania");
|
||||
showEl("progressSection", true);
|
||||
setProgress(0);
|
||||
showEl("itemsCard", false);
|
||||
showEl("metaRow", false);
|
||||
return;
|
||||
}
|
||||
|
||||
// Group items
|
||||
const grouped = new Map();
|
||||
let sumTodo = 0, sumDone = 0;
|
||||
|
||||
for (const a of allArticles) {
|
||||
const name = (a.Name || "Pozycja").trim();
|
||||
const qty = parseNum(a.QuantityToDo || a.QuantitySet || "1");
|
||||
const done = parseNum(a.QuantityDone || "0");
|
||||
sumTodo += qty;
|
||||
sumDone += done;
|
||||
grouped.set(name, (grouped.get(name) || 0) + qty);
|
||||
}
|
||||
|
||||
const progress = sumTodo > 0 ? (sumDone / sumTodo) * 100 : 0;
|
||||
|
||||
// Render list
|
||||
const list = $("itemsList");
|
||||
list.innerHTML = "";
|
||||
[...grouped.entries()].forEach(([name, qty], i) => {
|
||||
const row = document.createElement("div");
|
||||
row.className = "order-row";
|
||||
row.style.animationDelay = (i * 0.05) + "s";
|
||||
row.innerHTML = `
|
||||
<span class="row-dot"></span>
|
||||
<span class="row-name">${name}</span>
|
||||
<span class="row-qty">× ${qty % 1 === 0 ? qty.toFixed(0) : qty.toFixed(2)}</span>
|
||||
`;
|
||||
list.appendChild(row);
|
||||
});
|
||||
|
||||
const count = grouped.size;
|
||||
$("itemsCount").textContent = count + (count === 1 ? " pozycja" : count < 5 ? " pozycje" : " pozycji");
|
||||
|
||||
// Status
|
||||
if (sumDone >= sumTodo && sumTodo > 0) {
|
||||
setHeroIcon("done");
|
||||
$("heroTitle").textContent = "Smacznego!";
|
||||
$("heroSub").textContent = "Wszystko gotowe. Kelner zaraz do Was dotrze.";
|
||||
setStatus("done", "Gotowe do podania");
|
||||
} else if (sumDone > 0) {
|
||||
setHeroIcon("partial");
|
||||
$("heroTitle").textContent = "Część już jedzie!";
|
||||
$("heroSub").textContent = "Kilka pozycji gotowych — reszta zaraz będzie.";
|
||||
setStatus("partial", "Część gotowa do podania");
|
||||
} else {
|
||||
setHeroIcon("cooking");
|
||||
$("heroTitle").textContent = "Gotujemy dla Ciebie";
|
||||
$("heroSub").textContent = "Kuchnia pracuje nad Twoim zamówieniem.";
|
||||
setStatus("cooking", "W trakcie przygotowywania");
|
||||
}
|
||||
|
||||
showEl("progressSection", true);
|
||||
setProgress(progress);
|
||||
showEl("itemsCard", true);
|
||||
|
||||
// Meta
|
||||
const sorted = [...bills].sort((a, b) => new Date(a?.Date || 0) - new Date(b?.Date || 0));
|
||||
const first = sorted[0];
|
||||
const nums = bills.map(b => b?.Description).filter(Boolean).join(", ");
|
||||
const metaRow = $("metaRow");
|
||||
metaRow.innerHTML = [
|
||||
`Stolik ${tableParam}`,
|
||||
nums ? `Nr: ${nums}` : null,
|
||||
first?.Date ? `Zamówiono ${minutesAgo(first.Date)}` : null,
|
||||
first?.Date ? `Godz. ${new Date(first.Date).toLocaleTimeString("pl-PL", {hour:"2-digit", minute:"2-digit"})}` : null,
|
||||
].filter(Boolean).map(t => `<span class="meta-tag">${t}</span>`).join("");
|
||||
showEl("metaRow", true);
|
||||
}
|
||||
|
||||
/* ── WEBSOCKET ── */
|
||||
|
||||
function setWS(state) {
|
||||
const dot = $("wsDot");
|
||||
const lbl = $("wsLabel");
|
||||
dot.className = "ws-dot";
|
||||
if (state === "connected") { dot.classList.add("connected"); lbl.textContent = "Połączono z kuchnią"; }
|
||||
else if (state === "error") { dot.classList.add("error"); lbl.textContent = "Błąd połączenia"; }
|
||||
else { lbl.textContent = "Rozłączono"; }
|
||||
}
|
||||
|
||||
function handleMessage(parsed) {
|
||||
if (!parsed || parsed.Type !== "bills" || !Array.isArray(parsed.Bills)) return;
|
||||
|
||||
if (!tableParam) {
|
||||
showEl("loaderSection", false);
|
||||
$("heroTitle").textContent = "Brak numeru stolika";
|
||||
$("heroSub").textContent = "Użyj adresu z parametrem ?table=9";
|
||||
setStatus("idle", "Brak stolika");
|
||||
return;
|
||||
}
|
||||
|
||||
const norm = tableParam.toLowerCase();
|
||||
const matches = parsed.Bills.filter(b => detectTable(b).toLowerCase() === norm)
|
||||
.sort((a, b) => new Date(b?.Date || 0) - new Date(a?.Date || 0));
|
||||
|
||||
renderBills(matches);
|
||||
}
|
||||
|
||||
if (tableParam) {
|
||||
const proto = location.protocol === "https:" ? "wss" : "ws";
|
||||
const ws = new WebSocket(`${proto}://${location.host}/ws`);
|
||||
|
||||
ws.onopen = () => setWS("connected");
|
||||
|
||||
ws.onmessage = evt => {
|
||||
let data;
|
||||
try { data = JSON.parse(evt.data); } catch { return; }
|
||||
if (data.event === "snapshot" || data.event === "message") handleMessage(data.parsed);
|
||||
};
|
||||
|
||||
ws.onerror = () => {
|
||||
setWS("error");
|
||||
showEl("loaderSection", false);
|
||||
$("heroTitle").textContent = "Błąd połączenia";
|
||||
$("heroSub").textContent = "Nie udało się połączyć z kuchnią. Odśwież stronę.";
|
||||
setStatus("idle", "Błąd");
|
||||
};
|
||||
|
||||
ws.onclose = () => setWS("disconnected");
|
||||
|
||||
} else {
|
||||
// No table param
|
||||
showEl("loaderSection", false);
|
||||
$("heroTitle").textContent = "Brak numeru stolika";
|
||||
$("heroSub").textContent = "Zeskanuj kod QR przy swoim stoliku, aby zobaczyć zamówienie.";
|
||||
setStatus("idle", "Brak stolika");
|
||||
$("tableLabel").textContent = "Brak stolika";
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user