File size: 51,214 Bytes
ddd5681 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 | window.SmOSAdmin = (function () {
function moduleMeta() {
if (window.SmOS_Module) return window.SmOS_Module;
const match = location.pathname.match(/\/modules\/([^/]+)\/admin/);
return {
id: match ? match[1] : "SmOS_CC",
name: "The Corner Cafe",
};
}
function moduleId() {
return moduleMeta().id;
}
function tokenKey() {
return `smos-admin-token-${moduleId()}`;
}
function adminApiBase() {
return `/api/modules/${moduleId()}/admin`;
}
function loginPath() {
const base = location.pathname.replace(/\/[^/]*$/, "/");
return base.endsWith("/admin/") ? base : `${base.replace(/\/?$/, "/")}`;
}
const API_FALLBACK = "http://127.0.0.1:7860";
const SERVICE_ORDER = ["delivery", "collection", "sitting-in", "reservation"];
const SERVICE_LABELS = {
delivery: "Delivery",
collection: "Collection",
"sitting-in": "Sit-in",
reservation: "Reserve",
};
function apiBases() {
const list = [];
if (location.origin && location.origin.startsWith("http")) list.push(location.origin);
if (!list.includes(API_FALLBACK)) list.push(API_FALLBACK);
return list;
}
function token() {
try {
return localStorage.getItem(tokenKey()) || "";
} catch (e) {
return "";
}
}
function setToken(value) {
try {
if (value) localStorage.setItem(tokenKey(), value);
else localStorage.removeItem(tokenKey());
} catch (e) {
/* ignore */
}
}
async function api(path, options = {}) {
const headers = { ...(options.headers || {}) };
if (token()) headers.Authorization = `Bearer ${token()}`;
if (options.body && !headers["Content-Type"]) {
headers["Content-Type"] = "application/json";
}
let lastErr = null;
for (const base of apiBases()) {
try {
const res = await fetch(`${base}${path}`, { ...options, headers });
if (res.status === 401) {
setToken("");
const onLogin =
/\/admin\/?$/.test(location.pathname) ||
/\/admin\/index\.html$/.test(location.pathname);
if (!onLogin) window.location.href = loginPath();
throw new Error("Unauthorized");
}
if (res.ok) return res.status === 204 ? null : res.json();
const err = await res.json().catch(() => ({}));
lastErr = new Error(err.detail || `HTTP ${res.status}`);
} catch (e) {
if (e.message === "Unauthorized") throw e;
lastErr = e;
}
}
throw lastErr || new Error("API unavailable");
}
function money(n) {
if (n == null || Number.isNaN(Number(n))) return "—";
return new Intl.NumberFormat("en-GB", { style: "currency", currency: "GBP" }).format(Number(n));
}
function esc(s) {
return String(s ?? "")
.replace(/&/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g, """);
}
function serviceLabel(s) {
return SERVICE_LABELS[s] || s || "—";
}
function payState(b) {
const raw = (b.payment_status || "").toLowerCase();
if (raw && ["paid", "awaiting", "unpaid", "failed", "n/a"].includes(raw)) return raw;
if (b.kind === "reservation") return "n/a";
const method = String((b.payload && b.payload.payment) || b.payment || "").toLowerCase();
if (method.includes("transfer") || method === "bank-transfer") return "awaiting";
return "unpaid";
}
function payMeta(state, service) {
const map = {
paid: { label: "Paid", tone: "paid" },
awaiting: { label: "Await", tone: "awaiting" },
unpaid: {
label: service === "sitting-in" ? "Settle at till" : "Unpaid",
tone: "unpaid",
},
failed: { label: "Failed", tone: "failed" },
"n/a": { label: "On visit", tone: "na" },
};
return map[state] || map.unpaid;
}
function itemsLine(b, max = 3) {
const items = Array.isArray(b.items) ? b.items : [];
if (!items.length) {
if (b.kind === "reservation") {
const seats = b.party_size ? `${b.party_size}p` : "";
const tables = Array.isArray(b.tables)
? b.tables.map((t) => t.label || t.id).filter(Boolean).join("+")
: "";
return [seats, tables ? `T${tables}` : ""].filter(Boolean).join(" · ") || "Reserve";
}
return "—";
}
const parts = items.map((i) => `${i.qty || 1}×${i.name || "Item"}`);
if (parts.length <= max) return parts.join(", ");
return `${parts.slice(0, max).join(", ")} +${parts.length - max}`;
}
function tableLine(b) {
const tables = Array.isArray(b.tables) ? b.tables : [];
if (tables.length) {
return tables.map((t) => t.label || t.id).filter(Boolean).join(", ");
}
const payload = b.payload && typeof b.payload === "object" ? b.payload : {};
return payload.tableId || payload.table_id || "";
}
function locationLine(b) {
if (b.service === "delivery") return b.address || "No addr";
if (b.service === "collection") return "Collect";
if (b.service === "sitting-in") {
const table = tableLine(b);
return table ? `T${table}` : "T—";
}
if (b.service === "reservation") {
const win = b.arrival_window ? String(b.arrival_window).replace("-", "–") : "";
const when = [b.arrival_date, win].filter(Boolean).join(" ");
const table = tableLine(b);
return [when || "—", table ? `T${table}` : ""].filter(Boolean).join(" · ");
}
return b.address || "—";
}
function idLabel(b) {
if (b.kind === "reservation" || b.service === "reservation") return "RES";
if (b.service === "delivery") return "DEL";
if (b.service === "collection") return "COL";
if (b.service === "sitting-in") return "SIT";
return "ORD";
}
function fmtWhen(row) {
if (row.kind === "reservation") return "";
const d = row.created_at ? new Date(row.created_at) : null;
return d && !Number.isNaN(d.getTime())
? d.toLocaleString("en-GB", { day: "2-digit", month: "short", hour: "2-digit", minute: "2-digit" })
: "";
}
function contactLine(b) {
return [b.phone, b.email].filter(Boolean).join(" · ");
}
function startOfDay(d) {
const x = new Date(d);
x.setHours(0, 0, 0, 0);
return x;
}
function endOfDay(d) {
const x = new Date(d);
x.setHours(23, 59, 59, 999);
return x;
}
function startOfWeek(d) {
const x = startOfDay(d);
const day = x.getDay();
const diff = day === 0 ? -6 : 1 - day;
x.setDate(x.getDate() + diff);
return x;
}
function startOfMonth(d) {
const x = startOfDay(d);
x.setDate(1);
return x;
}
function addDays(d, n) {
const x = new Date(d);
x.setDate(x.getDate() + n);
return x;
}
function recordDate(b) {
if (b.kind === "reservation" && b.arrival_date) {
const d = new Date(`${b.arrival_date}T12:00:00`);
if (!Number.isNaN(d.getTime())) return d;
}
const d = b.created_at ? new Date(b.created_at) : null;
return d && !Number.isNaN(d.getTime()) ? d : null;
}
function periodBounds(period, fromStr, toStr) {
const now = new Date();
if (period === "all" || !period) return null;
if (period === "today") return { from: startOfDay(now), to: endOfDay(now) };
if (period === "yesterday") {
const y = addDays(startOfDay(now), -1);
return { from: y, to: endOfDay(y) };
}
if (period === "week") {
const from = startOfWeek(now);
return { from, to: endOfDay(addDays(from, 6)) };
}
if (period === "last-week") {
const thisWeek = startOfWeek(now);
const from = addDays(thisWeek, -7);
return { from, to: endOfDay(addDays(from, 6)) };
}
if (period === "month") {
const from = startOfMonth(now);
const to = endOfDay(new Date(now.getFullYear(), now.getMonth() + 1, 0));
return { from, to };
}
if (period === "last-month") {
const from = startOfMonth(new Date(now.getFullYear(), now.getMonth() - 1, 1));
const to = endOfDay(new Date(now.getFullYear(), now.getMonth(), 0));
return { from, to };
}
if (period === "custom") {
if (!fromStr && !toStr) return null;
const from = fromStr ? startOfDay(new Date(`${fromStr}T00:00:00`)) : null;
const to = toStr ? endOfDay(new Date(`${toStr}T00:00:00`)) : null;
if (from && Number.isNaN(from.getTime())) return null;
if (to && Number.isNaN(to.getTime())) return null;
return { from, to };
}
return null;
}
const STATUS_RANK = {
new: 0,
confirmed: 1,
preparing: 2,
ready: 3,
completed: 4,
cancelled: 5,
};
const PAY_RANK = { failed: 0, unpaid: 1, awaiting: 2, paid: 3, "n/a": 4 };
function sortBookings(list, sortBy) {
const rows = list.slice();
const cmpStr = (a, b) => String(a || "").localeCompare(String(b || ""), "en", { sensitivity: "base" });
rows.sort((a, b) => {
switch (sortBy) {
case "created_asc": {
const da = recordDate(a)?.getTime() || 0;
const db = recordDate(b)?.getTime() || 0;
return da - db;
}
case "total_desc":
return (Number(b.total) || 0) - (Number(a.total) || 0);
case "total_asc":
return (Number(a.total) || 0) - (Number(b.total) || 0);
case "name_asc":
return cmpStr(a.customer_name, b.customer_name);
case "name_desc":
return cmpStr(b.customer_name, a.customer_name);
case "status":
return (STATUS_RANK[a.status] ?? 99) - (STATUS_RANK[b.status] ?? 99);
case "payment":
return (PAY_RANK[payState(a)] ?? 99) - (PAY_RANK[payState(b)] ?? 99);
case "service":
return (
SERVICE_ORDER.indexOf(a.service) - SERVICE_ORDER.indexOf(b.service) ||
cmpStr(a.ref, b.ref)
);
case "ref":
return cmpStr(a.ref, b.ref);
case "created_desc":
default: {
const da = recordDate(a)?.getTime() || 0;
const db = recordDate(b)?.getTime() || 0;
return db - da;
}
}
});
return rows;
}
function initLogin() {
const form = document.querySelector("[data-admin-login]");
if (!form) return;
if (token()) {
window.location.href = "home.html";
return;
}
const meta = moduleMeta();
document.querySelectorAll("[data-module-name]").forEach((el) => {
el.textContent = meta.name;
});
document.querySelectorAll("[data-module-id]").forEach((el) => {
el.textContent = meta.id;
});
const errEl = document.querySelector("[data-login-error]");
form.addEventListener("submit", async (event) => {
event.preventDefault();
if (errEl) errEl.hidden = true;
const data = new FormData(form);
try {
const res = await api(`${adminApiBase()}/login`, {
method: "POST",
body: JSON.stringify({
username: String(data.get("username") || ""),
password: String(data.get("password") || ""),
}),
});
setToken(res.token);
window.location.href = "home.html";
} catch (e) {
if (errEl) {
errEl.hidden = false;
errEl.textContent = e.message === "Unauthorized" ? "Invalid username or password." : e.message;
}
}
});
}
function bindLogout() {
document.querySelector("[data-admin-logout]")?.addEventListener("click", async () => {
try {
await api(`${adminApiBase()}/logout`, { method: "POST" });
} catch (e) {
/* ignore */
}
setToken("");
window.location.href = loginPath();
});
}
function initHome() {
if (!token()) {
window.location.href = loginPath();
return;
}
const meta = moduleMeta();
document.querySelectorAll("[data-module-name]").forEach((el) => {
el.textContent = meta.name;
});
document.querySelectorAll("[data-module-id]").forEach((el) => {
el.textContent = meta.id;
});
bindLogout();
const statsEl = document.querySelector("[data-home-stats]");
const liveEl = document.querySelector("[data-admin-live]");
const load = async () => {
try {
const bookings = await api(`${adminApiBase()}/bookings?limit=300`);
const today = new Date().toISOString().slice(0, 10);
let open = 0;
let todayCount = 0;
let due = 0;
let paid = 0;
bookings.forEach((b) => {
if (!["completed", "cancelled"].includes(b.status)) open += 1;
const d = recordDate(b);
if (d && d.toISOString().slice(0, 10) === today) todayCount += 1;
const st = payState(b);
const total = Number(b.total) || 0;
if (st === "paid") paid += total;
else if (st === "unpaid" || st === "awaiting" || st === "failed") due += total;
});
if (statsEl) {
statsEl.innerHTML = `
<div class="admin-stat"><b>${bookings.length}</b><span>all</span></div>
<div class="admin-stat"><b>${open}</b><span>open</span></div>
<div class="admin-stat"><b>${todayCount}</b><span>today</span></div>
<div class="admin-stat"><b>${money(paid)}</b><span>taken</span></div>
<div class="admin-stat"><b>${money(due)}</b><span>due</span></div>
`;
}
if (liveEl) liveEl.classList.remove("is-stale");
} catch (e) {
if (statsEl) statsEl.innerHTML = `<div class="admin-stat"><b>—</b><span>${esc(e.message)}</span></div>`;
if (liveEl) liveEl.classList.add("is-stale");
}
};
load();
setInterval(load, 60000);
}
function initDashboard() {
if (!token()) {
window.location.href = loginPath();
return;
}
const meta = moduleMeta();
document.querySelectorAll("[data-module-name]").forEach((el) => {
el.textContent = meta.name;
});
document.querySelectorAll("[data-module-id]").forEach((el) => {
el.textContent = meta.id;
});
const groupsEl = document.querySelector("[data-admin-groups]");
const statsEl = document.querySelector("[data-admin-stats]");
const modal = document.querySelector("[data-admin-modal]");
const modalBody = document.querySelector("[data-modal-body]");
const modalTitle = document.querySelector("[data-modal-title]");
const modalStatus = document.querySelector("[data-modal-status]");
const modalPay = document.querySelector("[data-modal-pay]");
const liveEl = document.querySelector("[data-admin-live]");
const filters = {
service: "",
status: "",
pay: "",
search: "",
period: "all",
from: "",
to: "",
sort: "created_desc",
};
let bookings = [];
let activeId = null;
const syncRangeVisibility = () => {
const rangeEl = document.querySelector("[data-custom-range]");
if (rangeEl) rangeEl.hidden = filters.period !== "custom";
};
const filtered = () => {
const q = filters.search.trim().toLowerCase();
const bounds = periodBounds(filters.period, filters.from, filters.to);
const list = bookings.filter((b) => {
if (filters.service && b.service !== filters.service) return false;
if (filters.status && b.status !== filters.status) return false;
if (filters.pay && payState(b) !== filters.pay) return false;
if (bounds) {
const d = recordDate(b);
if (!d) return false;
if (bounds.from && d < bounds.from) return false;
if (bounds.to && d > bounds.to) return false;
}
if (!q) return true;
const hay = [
b.ref,
b.customer_name,
b.phone,
b.email,
b.notes,
b.address,
itemsLine(b),
b.payment,
]
.filter(Boolean)
.join(" ")
.toLowerCase();
return hay.includes(q);
});
return sortBookings(list, filters.sort);
};
const groupStats = (list) => {
let paid = 0;
let unpaid = 0;
let failed = 0;
let awaiting = 0;
let revenue = 0;
let due = 0;
list.forEach((b) => {
const st = payState(b);
const total = Number(b.total) || 0;
if (st === "paid") {
paid += 1;
revenue += total;
} else if (st === "failed") {
failed += 1;
due += total;
} else if (st === "awaiting") {
awaiting += 1;
due += total;
} else if (st === "unpaid") {
unpaid += 1;
due += total;
}
});
return { count: list.length, paid, unpaid, failed, awaiting, revenue, due };
};
const renderStats = () => {
if (!statsEl) return;
const list = filtered();
const s = groupStats(list);
const open = list.filter((b) => !["completed", "cancelled"].includes(b.status)).length;
statsEl.innerHTML = `
<div class="admin-stat"><b>${s.count}</b><span>all</span></div>
<div class="admin-stat"><b>${open}</b><span>open</span></div>
<div class="admin-stat"><b>${money(s.revenue)}</b><span>taken</span></div>
<div class="admin-stat"><b>${money(s.due)}</b><span>due</span></div>
<div class="admin-stat admin-stat--mix">
<em data-tone="paid">${s.paid}✓</em>
<em data-tone="awaiting">${s.awaiting}…</em>
<em data-tone="unpaid">${s.unpaid}○</em>
<em data-tone="failed">${s.failed}!</em>
</div>
`;
};
const renderCard = (b) => {
const pay = payMeta(payState(b), b.service);
const amount = b.kind === "reservation"
? (b.party_size ? `${b.party_size}p` : "—")
: money(b.total);
const when = fmtWhen(b);
const where = locationLine(b);
const bits = [where, when].filter(Boolean).join(" · ");
return `
<article class="admin-card" data-open-id="${esc(b.id)}">
<div class="admin-card__id">
<span class="admin-card__kind">${esc(idLabel(b))}</span>
<strong>${esc(b.ref)}</strong>
</div>
<div class="admin-card__main">
<div class="admin-card__line">
<span class="admin-card__guest">${esc(b.customer_name)}</span>
<span class="admin-card__items">${esc(itemsLine(b))}</span>
</div>
<div class="admin-card__meta">${esc(bits)}</div>
</div>
<div class="admin-card__side">
<span class="admin-card__amt">${esc(amount)}</span>
<span class="admin-pill admin-pill--${esc(b.status)}">${esc(b.status)}</span>
<span class="admin-pay admin-pay--${pay.tone}">${esc(pay.label)}</span>
</div>
</article>
`;
};
const renderGroups = () => {
if (!groupsEl) return;
const list = filtered();
if (!list.length) {
groupsEl.innerHTML = `<p class="admin-empty">No matches.</p>`;
return;
}
const byService = {};
SERVICE_ORDER.forEach((key) => {
byService[key] = [];
});
list.forEach((b) => {
const key = SERVICE_ORDER.includes(b.service) ? b.service : "collection";
byService[key].push(b);
});
const keys = filters.service ? [filters.service] : SERVICE_ORDER.filter((k) => byService[k].length);
groupsEl.innerHTML = keys
.map((key) => {
const rows = byService[key] || [];
if (!rows.length) return "";
const s = groupStats(rows);
const sub =
key === "reservation"
? `${s.count}`
: `${s.count} · ${money(s.revenue)} in · ${money(s.due)} due`;
return `
<section class="admin-group" data-group="${esc(key)}">
<header class="admin-group__head">
<h3>${esc(serviceLabel(key))} <span>${esc(sub)}</span></h3>
<div class="admin-group__chips">
${s.paid ? `<span class="admin-chip admin-chip--paid">${s.paid}✓</span>` : ""}
${s.awaiting ? `<span class="admin-chip admin-chip--awaiting">${s.awaiting}…</span>` : ""}
${s.unpaid ? `<span class="admin-chip admin-chip--unpaid">${s.unpaid}○</span>` : ""}
${s.failed ? `<span class="admin-chip admin-chip--failed">${s.failed}!</span>` : ""}
</div>
</header>
<div class="admin-group__list">${rows.map(renderCard).join("")}</div>
</section>
`;
})
.join("");
groupsEl.querySelectorAll("[data-open-id]").forEach((el) => {
el.addEventListener("click", () => openModal(el.dataset.openId));
});
};
const renderDetail = (b) => {
const items = Array.isArray(b.items) ? b.items : [];
const tables = Array.isArray(b.tables) ? b.tables : [];
const pay = payMeta(payState(b), b.service);
return `
<div class="admin-detail">
<div class="admin-detail__banner">
<span class="admin-pill admin-pill--${esc(b.status)}">${esc(b.status)}</span>
<span class="admin-pay admin-pay--${pay.tone}">${esc(pay.label)}</span>
${b.kind !== "reservation" ? `<strong>${esc(money(b.total))}</strong>` : ""}
</div>
<dl>
<dt>${esc(idLabel(b))}</dt><dd><strong>${esc(b.ref)}</strong></dd>
<dt>Guest</dt><dd>${esc(b.customer_name)}${contactLine(b) ? ` · ${esc(contactLine(b))}` : ""}</dd>
${
b.service === "sitting-in" || b.service === "reservation"
? `<dt>Table</dt><dd>${esc(tableLine(b) || "—")}</dd>`
: ""
}
${
b.service === "delivery"
? `<dt>To</dt><dd>${esc(b.address || "—")}</dd>`
: ""
}
${
b.service === "reservation"
? `<dt>When</dt><dd>${esc(locationLine(b))}</dd>`
: `<dt>At</dt><dd>${esc(fmtWhen(b) || "—")}</dd>`
}
<dt>Pay</dt><dd>${esc(b.payment || "—")}</dd>
${b.notes ? `<dt>Note</dt><dd>${esc(b.notes)}</dd>` : ""}
</dl>
${
tables.length && b.service === "reservation"
? `<ul class="admin-detail__items">${tables
.map((t) => `<li><span>T${esc(t.label || t.id)}</span><span>${esc(t.seats || "?")} seats</span></li>`)
.join("")}</ul>`
: ""
}
${
items.length
? `<ul class="admin-detail__items">${items
.map(
(i) =>
`<li><span>${esc(i.qty || 1)}× ${esc(i.name)}</span><span>${esc(
money((i.qty || 1) * (i.price || 0))
)}</span></li>`
)
.join("")}</ul>`
: ""
}
</div>
`;
};
const openModal = (id) => {
const b = bookings.find((row) => row.id === id);
if (!b || !modal) return;
activeId = id;
if (modalTitle) modalTitle.textContent = `${b.ref} · ${b.customer_name}`;
if (modalBody) modalBody.innerHTML = renderDetail(b);
if (modalStatus) modalStatus.value = b.status;
if (modalPay) modalPay.value = payState(b);
modal.showModal();
};
const render = () => {
renderStats();
renderGroups();
};
const load = async () => {
try {
bookings = await api(`${adminApiBase()}/bookings?limit=300`);
render();
if (liveEl) liveEl.classList.remove("is-stale");
} catch (e) {
if (groupsEl) groupsEl.innerHTML = `<p class="admin-empty">${esc(e.message)}</p>`;
if (liveEl) liveEl.classList.add("is-stale");
}
};
document.querySelector("[data-admin-refresh]")?.addEventListener("click", load);
bindLogout();
document.querySelectorAll("[data-filter-service]").forEach((btn) => {
btn.addEventListener("click", () => {
filters.service = btn.dataset.filterService || "";
document
.querySelectorAll("[data-filter-service]")
.forEach((b) => b.classList.toggle("is-active", b === btn));
render();
});
});
document.querySelectorAll("[data-period]").forEach((btn) => {
btn.addEventListener("click", () => {
filters.period = btn.dataset.period || "all";
document
.querySelectorAll("[data-period]")
.forEach((b) => b.classList.toggle("is-active", b === btn));
syncRangeVisibility();
render();
});
});
document.querySelector("[data-filter-from]")?.addEventListener("change", (e) => {
filters.from = e.target.value;
if (filters.period !== "custom") {
filters.period = "custom";
document.querySelectorAll("[data-period]").forEach((b) => {
b.classList.toggle("is-active", b.dataset.period === "custom");
});
syncRangeVisibility();
}
render();
});
document.querySelector("[data-filter-to]")?.addEventListener("change", (e) => {
filters.to = e.target.value;
if (filters.period !== "custom") {
filters.period = "custom";
document.querySelectorAll("[data-period]").forEach((b) => {
b.classList.toggle("is-active", b.dataset.period === "custom");
});
syncRangeVisibility();
}
render();
});
document.querySelector("[data-sort-by]")?.addEventListener("change", (e) => {
filters.sort = e.target.value || "created_desc";
render();
});
document.querySelector("[data-filter-pay]")?.addEventListener("change", (e) => {
filters.pay = e.target.value;
render();
});
document.querySelector("[data-filter-status]")?.addEventListener("change", (e) => {
filters.status = e.target.value;
render();
});
document.querySelector("[data-filter-search]")?.addEventListener("input", (e) => {
filters.search = e.target.value;
render();
});
syncRangeVisibility();
document.querySelector("[data-modal-close]")?.addEventListener("click", () => modal?.close());
document.querySelector("[data-modal-save]")?.addEventListener("click", async () => {
if (!activeId || !modalStatus) return;
try {
await api(`${adminApiBase()}/bookings/${activeId}`, {
method: "PATCH",
body: JSON.stringify({
status: modalStatus.value,
payment_status: modalPay ? modalPay.value : undefined,
}),
});
modal?.close();
await load();
} catch (e) {
alert(e.message);
}
});
try {
const proto = location.protocol === "https:" ? "wss" : "ws";
const host =
location.port === "8877" || !location.host
? "127.0.0.1:7860"
: location.host;
const ws = new WebSocket(`${proto}://${host}/ws`);
ws.addEventListener("message", (event) => {
try {
const msg = JSON.parse(event.data);
if (msg.type !== "booking.created" && msg.type !== "booking.updated") return;
const mid = msg.booking?.module_id;
if (mid && mid !== moduleId()) return;
load();
} catch (e) {
/* ignore */
}
});
} catch (e) {
/* ignore */
}
load();
setInterval(load, 60000);
}
function menuDrinkIds() {
const menu = window.CornerCafeMenu || [];
return new Set(menu.filter((i) => i.section === "Drinks").map((i) => i.id));
}
function isDrinkItem(item, drinkIds) {
if (!item) return false;
if (String(item.section || "").toLowerCase() === "drinks") return true;
if (item.id && drinkIds.has(item.id)) return true;
const name = String(item.name || "").toLowerCase();
return /(latte|cappuccino|americano|espresso|flat white|coffee|tea|hot chocolate|juice|irn|coke|fanta|sprite|water|lager|ale|wine|whisky|whiskey|soft drink)/i.test(
name
);
}
function isIndianFoodItem(item) {
return String(item?.section || "").toLowerCase() === "indian";
}
function splitItems(b) {
const drinkIds = menuDrinkIds();
const items = Array.isArray(b.items) ? b.items : [];
const cafe = [];
const indian = [];
const drinks = [];
items.forEach((i) => {
if (isDrinkItem(i, drinkIds)) drinks.push(i);
else if (isIndianFoodItem(i)) indian.push(i);
else cafe.push(i);
});
return { cafe, indian, food: cafe.concat(indian), drinks };
}
function kitchenStatusKey(station) {
return station === "indian" ? "indian_kitchen_status" : "kitchen_status";
}
function foodServedKey(station) {
return station === "indian" ? "indian_food_served" : "food_served";
}
function foodServedFlag(b, station) {
if (station === "indian") return Boolean(b.indian_food_served);
return Boolean(b.food_served);
}
function itemsLineFrom(items) {
if (!items.length) return "—";
return items.map((i) => `${i.qty || 1}× ${i.name || "Item"}`).join(", ");
}
function stationTicketId(b) {
if (b.service === "sitting-in") {
const table = tableLine(b);
return table ? `T${table}` : "T—";
}
return b.ref || "—";
}
function stationTime(b) {
const d = recordDate(b);
if (!d) return "—";
return d.toLocaleTimeString("en-GB", { hour: "2-digit", minute: "2-digit" });
}
function stationKind(b) {
return b.service === "sitting-in" ? "SIT" : b.service === "delivery" ? "DEL" : "COL";
}
function isCookQueueOrder(b) {
if (b.kind !== "order") return false;
if (["completed", "cancelled"].includes(b.status)) return false;
if (b.service === "sitting-in") return true;
if (b.service === "delivery" || b.service === "collection") return payState(b) === "paid";
return false;
}
function stationState(b, key) {
const raw = String(b[key] || "not_started").toLowerCase();
if (["not_started", "in_progress", "done"].includes(raw)) return raw;
return "not_started";
}
function bindStationLive(load) {
try {
const proto = location.protocol === "https:" ? "wss" : "ws";
const host =
location.port === "8877" || !location.host ? "127.0.0.1:7860" : location.host;
const ws = new WebSocket(`${proto}://${host}/ws`);
ws.addEventListener("message", (event) => {
try {
const msg = JSON.parse(event.data);
if (msg.type !== "booking.created" && msg.type !== "booking.updated") return;
const mid = msg.booking?.module_id;
if (mid && mid !== moduleId()) return;
load();
} catch (e) {
/* ignore */
}
});
} catch (e) {
/* ignore */
}
}
function initStationShell() {
if (!token()) {
window.location.href = loginPath();
return false;
}
const meta = moduleMeta();
document.querySelectorAll("[data-module-name]").forEach((el) => {
el.textContent = meta.name;
});
document.querySelectorAll("[data-module-id]").forEach((el) => {
el.textContent = meta.id;
});
bindLogout();
return true;
}
function renderProgressButtons(active, attr) {
return ["not_started", "in_progress", "done"]
.map((k) => {
const label =
k === "not_started" ? "Not started" : k === "in_progress" ? "In progress" : "Done";
return `<button type="button" class="chef-state${
active === k ? " is-active" : ""
}" data-${attr}="${k}">${label}</button>`;
})
.join("");
}
function initChef() {
if (!initStationShell()) return;
const boardEl = document.querySelector("[data-chef-board]");
const liveEl = document.querySelector("[data-admin-live]");
let filter = "active";
let kitchen = "cafe";
let bookings = [];
const stationItems = (b) => {
const split = splitItems(b);
return kitchen === "indian" ? split.indian : split.cafe;
};
const statusKey = () => kitchenStatusKey(kitchen);
const render = () => {
if (!boardEl) return;
let list = bookings.filter((b) => isCookQueueOrder(b) && stationItems(b).length);
const key = statusKey();
if (filter === "online") {
list = list.filter(
(b) =>
(b.service === "delivery" || b.service === "collection") &&
stationState(b, key) !== "done"
);
} else if (filter === "sitting-in") {
list = list.filter(
(b) => b.service === "sitting-in" && stationState(b, key) !== "done"
);
} else if (filter === "done") {
list = list.filter((b) => stationState(b, key) === "done");
} else {
list = list.filter((b) => stationState(b, key) !== "done");
}
list.sort((a, b) => (recordDate(a)?.getTime() || 0) - (recordDate(b)?.getTime() || 0));
if (!list.length) {
boardEl.innerHTML = `<p class="admin-empty">No ${
kitchen === "indian" ? "Indian cuisine" : "cafe"
} tickets.</p>`;
return;
}
boardEl.innerHTML = list
.map((b) => {
const kind = stationKind(b);
const k = stationState(b, key);
const food = stationItems(b);
return `
<article class="chef-ticket chef-ticket--${esc(kind.toLowerCase())} chef-ticket--${esc(k)}" data-station-id="${esc(b.id)}">
<header class="chef-ticket__head">
<time>${esc(stationTime(b))}</time>
<span class="chef-ticket__kind">${esc(kind)}</span>
<strong class="chef-ticket__id">${esc(stationTicketId(b))}</strong>
</header>
<p class="chef-ticket__food">${esc(itemsLineFrom(food))}</p>
<div class="chef-ticket__actions" role="group" aria-label="Kitchen status">
${renderProgressButtons(k, "kitchen")}
</div>
</article>`;
})
.join("");
boardEl.querySelectorAll("[data-station-id]").forEach((card) => {
card.querySelectorAll("[data-kitchen]").forEach((btn) => {
btn.addEventListener("click", async (event) => {
event.stopPropagation();
try {
await api(`${adminApiBase()}/bookings/${card.dataset.stationId}`, {
method: "PATCH",
body: JSON.stringify({ [statusKey()]: btn.dataset.kitchen }),
});
await load();
} catch (e) {
alert(e.message);
}
});
});
});
};
const load = async () => {
try {
bookings = await api(`${adminApiBase()}/bookings?limit=300`);
render();
if (liveEl) liveEl.classList.remove("is-stale");
} catch (e) {
if (boardEl) boardEl.innerHTML = `<p class="admin-empty">${esc(e.message)}</p>`;
if (liveEl) liveEl.classList.add("is-stale");
}
};
document.querySelector("[data-chef-refresh]")?.addEventListener("click", load);
document.querySelectorAll("[data-chef-filter]").forEach((btn) => {
btn.addEventListener("click", () => {
filter = btn.dataset.chefFilter || "active";
document
.querySelectorAll("[data-chef-filter]")
.forEach((b) => b.classList.toggle("is-active", b === btn));
render();
});
});
document.querySelectorAll("[data-chef-kitchen]").forEach((btn) => {
btn.addEventListener("click", () => {
kitchen = btn.dataset.chefKitchen || "cafe";
document
.querySelectorAll("[data-chef-kitchen]")
.forEach((b) => {
const on = b === btn;
b.classList.toggle("is-active", on);
b.setAttribute("aria-selected", on ? "true" : "false");
});
render();
});
});
bindStationLive(load);
load();
setInterval(load, 15000);
}
function initBarista() {
if (!initStationShell()) return;
const boardEl = document.querySelector("[data-barista-board]");
const liveEl = document.querySelector("[data-admin-live]");
let filter = "active";
let bookings = [];
const render = () => {
if (!boardEl) return;
let list = bookings.filter((b) => isCookQueueOrder(b) && splitItems(b).drinks.length);
if (filter === "online") {
list = list.filter(
(b) =>
(b.service === "delivery" || b.service === "collection") &&
stationState(b, "barista_status") !== "done"
);
} else if (filter === "sitting-in") {
list = list.filter(
(b) => b.service === "sitting-in" && stationState(b, "barista_status") !== "done"
);
} else if (filter === "done") {
list = list.filter((b) => stationState(b, "barista_status") === "done");
} else {
list = list.filter((b) => stationState(b, "barista_status") !== "done");
}
list.sort((a, b) => (recordDate(a)?.getTime() || 0) - (recordDate(b)?.getTime() || 0));
if (!list.length) {
boardEl.innerHTML = `<p class="admin-empty">No drinks tickets.</p>`;
return;
}
boardEl.innerHTML = list
.map((b) => {
const kind = stationKind(b);
const k = stationState(b, "barista_status");
const drinks = splitItems(b).drinks;
return `
<article class="chef-ticket chef-ticket--${esc(kind.toLowerCase())} chef-ticket--${esc(k)}" data-station-id="${esc(b.id)}">
<header class="chef-ticket__head">
<time>${esc(stationTime(b))}</time>
<span class="chef-ticket__kind">${esc(kind)}</span>
<strong class="chef-ticket__id">${esc(stationTicketId(b))}</strong>
</header>
<p class="chef-ticket__food">${esc(itemsLineFrom(drinks))}</p>
<div class="chef-ticket__actions" role="group" aria-label="Barista status">
${renderProgressButtons(k, "barista")}
</div>
</article>`;
})
.join("");
boardEl.querySelectorAll("[data-station-id]").forEach((card) => {
card.querySelectorAll("[data-barista]").forEach((btn) => {
btn.addEventListener("click", async (event) => {
event.stopPropagation();
try {
await api(`${adminApiBase()}/bookings/${card.dataset.stationId}`, {
method: "PATCH",
body: JSON.stringify({ barista_status: btn.dataset.barista }),
});
await load();
} catch (e) {
alert(e.message);
}
});
});
});
};
const load = async () => {
try {
bookings = await api(`${adminApiBase()}/bookings?limit=300`);
render();
if (liveEl) liveEl.classList.remove("is-stale");
} catch (e) {
if (boardEl) boardEl.innerHTML = `<p class="admin-empty">${esc(e.message)}</p>`;
if (liveEl) liveEl.classList.add("is-stale");
}
};
document.querySelector("[data-barista-refresh]")?.addEventListener("click", load);
document.querySelectorAll("[data-barista-filter]").forEach((btn) => {
btn.addEventListener("click", () => {
filter = btn.dataset.baristaFilter || "active";
document
.querySelectorAll("[data-barista-filter]")
.forEach((b) => b.classList.toggle("is-active", b === btn));
render();
});
});
bindStationLive(load);
load();
setInterval(load, 15000);
}
function initWaiter() {
if (!initStationShell()) return;
const boardEl = document.querySelector("[data-waiter-board]");
const liveEl = document.querySelector("[data-admin-live]");
const hintEl = document.querySelector("[data-waiter-hint]");
let filter = "ready";
let bookings = [];
const readyRows = () => {
const rows = [];
bookings.forEach((b) => {
if (b.kind !== "order" || b.status === "cancelled") return;
const { cafe, indian, drinks } = splitItems(b);
const cafeDone = stationState(b, "kitchen_status") === "done";
const indianDone = stationState(b, "indian_kitchen_status") === "done";
const baristaDone = stationState(b, "barista_status") === "done";
if (filter === "served") {
if (cafe.length && foodServedFlag(b, "cafe")) {
rows.push({ booking: b, type: "food", station: "cafe", items: cafe, served: true });
}
if (indian.length && foodServedFlag(b, "indian")) {
rows.push({
booking: b,
type: "food",
station: "indian",
items: indian,
served: true,
});
}
if (drinks.length && b.drinks_served) {
rows.push({ booking: b, type: "drinks", station: null, items: drinks, served: true });
}
return;
}
if (cafe.length && cafeDone && !foodServedFlag(b, "cafe")) {
rows.push({ booking: b, type: "food", station: "cafe", items: cafe });
}
if (indian.length && indianDone && !foodServedFlag(b, "indian")) {
rows.push({ booking: b, type: "food", station: "indian", items: indian });
}
if (drinks.length && baristaDone && !b.drinks_served) {
rows.push({ booking: b, type: "drinks", station: null, items: drinks });
}
});
return rows;
};
const sitInTables = () =>
bookings
.filter(
(b) =>
b.kind === "order" &&
b.service === "sitting-in" &&
!["completed", "cancelled"].includes(b.status)
)
.sort((a, b) => (recordDate(a)?.getTime() || 0) - (recordDate(b)?.getTime() || 0));
const bindServeActions = () => {
boardEl.querySelectorAll("[data-serve]").forEach((btn) => {
btn.addEventListener("click", async (event) => {
event.stopPropagation();
const card = btn.closest("[data-station-id]");
const id = card.dataset.stationId;
const type = card.dataset.serveType;
const station = card.dataset.serveStation || "cafe";
const b = bookings.find((row) => row.id === id);
if (!b) return;
const { cafe, indian, drinks } = splitItems(b);
const body = {};
if (type === "food") {
body[foodServedKey(station)] = true;
if (station === "cafe" && !indian.length) body.indian_food_served = true;
if (station === "indian" && !cafe.length) body.food_served = true;
if (!drinks.length) body.drinks_served = true;
} else {
body.drinks_served = true;
if (!cafe.length) body.food_served = true;
if (!indian.length) body.indian_food_served = true;
}
try {
await api(`${adminApiBase()}/bookings/${id}`, {
method: "PATCH",
body: JSON.stringify(body),
});
await load();
} catch (e) {
alert(e.message);
}
});
});
};
const bindTableActions = () => {
boardEl.querySelectorAll("[data-print-receipt]").forEach((btn) => {
btn.addEventListener("click", (event) => {
event.stopPropagation();
const id = btn.closest("[data-station-id]")?.dataset.stationId;
const b = bookings.find((row) => row.id === id);
if (!b) return;
if (window.SmOSReceipt?.openPrint) {
window.SmOSReceipt.openPrint(b, { businessName: "The Corner Cafe" });
} else {
alert("Receipt helper not loaded.");
}
});
});
boardEl.querySelectorAll("[data-mark-paid]").forEach((btn) => {
btn.addEventListener("click", async (event) => {
event.stopPropagation();
const id = btn.closest("[data-station-id]")?.dataset.stationId;
if (!id) return;
try {
await api(`${adminApiBase()}/bookings/${id}`, {
method: "PATCH",
body: JSON.stringify({ payment_status: "paid" }),
});
await load();
} catch (e) {
alert(e.message);
}
});
});
boardEl.querySelectorAll("[data-release-table]").forEach((btn) => {
btn.addEventListener("click", async (event) => {
event.stopPropagation();
const card = btn.closest("[data-station-id]");
const id = card?.dataset.stationId;
if (!id) return;
const paid = card.dataset.paid === "1";
if (!paid) {
alert("Mark the table paid before releasing it.");
return;
}
if (
!confirm(
"Release this table? Guest has left and the table is cleaned — it becomes vacant."
)
) {
return;
}
try {
await api(`${adminApiBase()}/bookings/${id}`, {
method: "PATCH",
body: JSON.stringify({
payment_status: "paid",
status: "completed",
food_served: true,
indian_food_served: true,
drinks_served: true,
}),
});
await load();
} catch (e) {
alert(e.message);
}
});
});
};
const renderServeBoard = () => {
let rows = readyRows();
if (filter === "food") rows = rows.filter((r) => r.type === "food" && !r.served);
else if (filter === "drinks") rows = rows.filter((r) => r.type === "drinks" && !r.served);
else if (filter === "served") rows = rows.filter((r) => r.served);
else rows = rows.filter((r) => !r.served);
rows.sort(
(a, b) =>
(recordDate(a.booking)?.getTime() || 0) - (recordDate(b.booking)?.getTime() || 0)
);
if (!rows.length) {
boardEl.innerHTML = `<p class="admin-empty">Nothing to serve.</p>`;
return;
}
boardEl.innerHTML = rows
.map((row) => {
const b = row.booking;
const kind = stationKind(b);
const label =
row.type === "drinks"
? "DRINKS"
: row.station === "indian"
? "INDIAN"
: "CAFE";
return `
<article class="chef-ticket chef-ticket--${esc(kind.toLowerCase())}${
row.served ? " chef-ticket--done" : ""
}" data-station-id="${esc(b.id)}" data-serve-type="${esc(row.type)}" data-serve-station="${esc(
row.station || ""
)}">
<header class="chef-ticket__head">
<time>${esc(stationTime(b))}</time>
<span class="chef-ticket__kind">${esc(kind)} · ${esc(label)}</span>
<strong class="chef-ticket__id">${esc(stationTicketId(b))}</strong>
</header>
<p class="chef-ticket__food">${esc(itemsLineFrom(row.items))}</p>
${
row.served
? `<p class="chef-hint">Served</p>`
: `<div class="chef-ticket__actions">
<button type="button" class="chef-state is-active" data-serve>Mark served</button>
</div>`
}
</article>`;
})
.join("");
bindServeActions();
};
const renderTablesBoard = () => {
const list = sitInTables();
if (!list.length) {
boardEl.innerHTML = `<p class="admin-empty">No occupied sit-in tables.</p>`;
return;
}
boardEl.innerHTML = list
.map((b) => {
const st = payState(b);
const pay = payMeta(st, b.service);
const paid = st === "paid";
return `
<article class="chef-ticket chef-ticket--sit waiter-table${
paid ? " waiter-table--paid" : ""
}" data-station-id="${esc(b.id)}" data-paid="${paid ? "1" : "0"}">
<header class="chef-ticket__head">
<time>${esc(stationTime(b))}</time>
<span class="chef-ticket__kind">SIT</span>
<strong class="chef-ticket__id">${esc(stationTicketId(b))}</strong>
</header>
<p class="chef-ticket__food">${esc(itemsLine(b, 4))}</p>
<div class="waiter-table__meta">
<strong>${esc(money(b.total))}</strong>
<span class="admin-pay admin-pay--${esc(pay.tone)}">${esc(pay.label)}</span>
<span class="waiter-table__guest">${esc(b.customer_name || "Guest")}</span>
</div>
<div class="chef-ticket__actions">
${
paid
? `<button type="button" class="chef-state is-active" disabled>Paid</button>`
: `<button type="button" class="chef-state is-active" data-mark-paid>Mark paid</button>`
}
<button type="button" class="chef-state${paid ? " is-active" : ""}" data-print-receipt>
${paid ? "Print receipt" : "Preview receipt"}
</button>
<button type="button" class="chef-state${paid ? " is-active" : ""}" data-release-table ${
paid ? "" : "disabled"
}>Release table</button>
</div>
${
paid
? `<p class="chef-hint">Print till receipt · release when guest leaves and table is cleaned</p>`
: `<p class="chef-hint">Collect payment before releasing · receipt available as PDF/image</p>`
}
</article>`;
})
.join("");
bindTableActions();
};
const render = () => {
if (!boardEl) return;
if (hintEl) {
hintEl.textContent =
filter === "tables"
? "Sit-in tables · mark paid · release when guest leaves and table is cleaned"
: "Completed food / drinks ready to take · table / order ID";
}
if (filter === "tables") renderTablesBoard();
else renderServeBoard();
};
const load = async () => {
try {
bookings = await api(`${adminApiBase()}/bookings?limit=300`);
render();
if (liveEl) liveEl.classList.remove("is-stale");
} catch (e) {
if (boardEl) boardEl.innerHTML = `<p class="admin-empty">${esc(e.message)}</p>`;
if (liveEl) liveEl.classList.add("is-stale");
}
};
document.querySelector("[data-waiter-refresh]")?.addEventListener("click", load);
document.querySelectorAll("[data-waiter-filter]").forEach((btn) => {
btn.addEventListener("click", () => {
filter = btn.dataset.waiterFilter || "ready";
document
.querySelectorAll("[data-waiter-filter]")
.forEach((b) => b.classList.toggle("is-active", b === btn));
render();
});
});
bindStationLive(load);
load();
setInterval(load, 15000);
}
document.addEventListener("DOMContentLoaded", initLogin);
return { initDashboard, initHome, initChef, initBarista, initWaiter };
})();
|