Compare commits
104 Commits
ce3ac3dfc0
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 5f4a12b9c4 | |||
|
|
3b0daeae0c | ||
|
|
0411df57eb | ||
|
|
082e388799 | ||
| abe75fb1fd | |||
|
|
45fd6d34eb | ||
| 30233b430f | |||
|
|
924a28e201 | ||
|
|
2cd646ddea | ||
|
|
3f9e125412 | ||
| 7bca854058 | |||
|
|
96d2a966d7 | ||
|
|
666ae8d59b | ||
| 67f1e4a26a | |||
|
|
613784a1cc | ||
| ea9aceec46 | |||
|
|
bc8613bbbc | ||
|
|
a1dc4b0e47 | ||
| 81de80abb9 | |||
|
|
75c7c28f73 | ||
|
|
99fdaaa05a | ||
| 6870aea1a5 | |||
|
|
e589ff02f0 | ||
|
|
da4b765b14 | ||
|
|
326b30161b | ||
|
|
ac9b615470 | ||
|
|
785071e5fd | ||
|
|
0ca6ae7632 | ||
|
|
7d9aeaf188 | ||
|
|
be8cc0ad8b | ||
|
|
95cf017b4b | ||
|
|
a48da03289 | ||
|
|
e19cdc76e0 | ||
|
|
fe40b563d5 | ||
|
|
49db60e31f | ||
|
|
8820a56a51 | ||
|
|
0aa9345c27 | ||
|
|
3519db9bd9 | ||
|
|
0fd73015f7 | ||
|
|
d21972212b | ||
|
|
cf299ac1d2 | ||
|
|
6505b2dcb9 | ||
|
|
12a3e170de | ||
|
|
3ed2707a66 | ||
|
|
24ddb17ca8 | ||
|
|
bd2252e426 | ||
|
|
254fe0e5d5 | ||
|
|
5750af83d8 | ||
|
|
505f8fd4e4 | ||
|
|
a84530e80e | ||
|
|
b8e39369f1 | ||
|
|
81d37a2c68 | ||
|
|
70a924cfba | ||
| 2b9e99bbd6 | |||
|
|
a0be16d848 | ||
|
|
1673e18fe8 | ||
|
|
bd3a25aa1c | ||
| bd5f0ca511 | |||
|
|
aa5b53920d | ||
|
|
772d5578ad | ||
| 51e7902ee2 | |||
|
|
8256380cd1 | ||
|
|
199b9ab3b3 | ||
|
|
2b141d45f3 | ||
|
|
1c56023491 | ||
|
|
7b15f18e59 | ||
|
|
93450a1eb7 | ||
|
|
7aa81c4e7c | ||
|
|
b318345fdf | ||
|
|
cc5ab41da4 | ||
|
|
c54069ad99 | ||
|
|
04420dbd12 | ||
|
|
f538c60f3d | ||
|
|
1524153cfb | ||
|
|
4c31357428 | ||
|
|
b3e67d1483 | ||
|
|
3d081ee01f | ||
|
|
9942a5638f | ||
|
|
b40bab0391 | ||
|
|
de70fb47f9 | ||
|
|
c5d618698b | ||
|
|
54943ea1b7 | ||
|
|
ba1c385937 | ||
|
|
2231f06234 | ||
|
|
fe29e548fb | ||
|
|
3d72f04b14 | ||
|
|
36eb377583 | ||
|
|
b8f0c7ecba | ||
|
|
0034e0b8b3 | ||
|
|
d9a7409f9c | ||
|
|
358e07b1d5 | ||
|
|
5df914a40f | ||
|
|
1f8002629f | ||
|
|
ff2e4586f3 | ||
|
|
019867f1fa | ||
|
|
48d49a068a | ||
| 11f81cfd8e | |||
|
|
1601e0f849 | ||
|
|
0e3a8d7504 | ||
|
|
87456e3aac | ||
| d7249088e9 | |||
|
|
59ea9557d1 | ||
| 628c090dfd | |||
|
|
9fc42b7881 |
34
.gitea/workflows/build-devpod.yml
Normal file
34
.gitea/workflows/build-devpod.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
name: Build Devpod
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
paths:
|
||||||
|
- Dockerfile.devpod
|
||||||
|
- entrypoint-devpod.sh
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
REGISTRY: registry.digitalocean.com/lunarfront
|
||||||
|
DOCKER_HOST: tcp://localhost:2375
|
||||||
|
VERSION: devpod-0.1.${{ github.run_number }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Login to DOCR
|
||||||
|
run: echo "${{ secrets.DOCR_TOKEN }}" | docker login registry.digitalocean.com -u token --password-stdin
|
||||||
|
|
||||||
|
- name: Build and push devpod
|
||||||
|
run: |
|
||||||
|
docker build \
|
||||||
|
-t $REGISTRY/manager:$VERSION \
|
||||||
|
-t $REGISTRY/manager:devpod-latest \
|
||||||
|
-f Dockerfile.devpod .
|
||||||
|
docker push $REGISTRY/manager:$VERSION
|
||||||
|
docker push $REGISTRY/manager:devpod-latest
|
||||||
|
|
||||||
@@ -12,83 +12,55 @@ concurrency:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: "!startsWith(github.event.head_commit.message, 'chore: bump version')"
|
env:
|
||||||
|
REGISTRY: registry.digitalocean.com/lunarfront
|
||||||
|
DOCKER_HOST: tcp://localhost:2375
|
||||||
|
VERSION: 0.1.${{ github.run_number }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
token: ${{ secrets.BOT_TOKEN }}
|
|
||||||
|
|
||||||
- name: Determine version bump
|
- name: Login to DOCR
|
||||||
id: bump
|
run: echo "${{ secrets.DOCR_TOKEN }}" | docker login registry.digitalocean.com -u token --password-stdin
|
||||||
run: |
|
|
||||||
COMMIT_MSG=$(git log -1 --pretty=%s)
|
|
||||||
if echo "$COMMIT_MSG" | grep -qiE "^breaking(\(.+\))?:|^.+!:"; then
|
|
||||||
echo "type=major" >> $GITHUB_OUTPUT
|
|
||||||
elif echo "$COMMIT_MSG" | grep -qiE "^feat(\(.+\))?:"; then
|
|
||||||
echo "type=minor" >> $GITHUB_OUTPUT
|
|
||||||
else
|
|
||||||
echo "type=patch" >> $GITHUB_OUTPUT
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Bump version in package.json
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION=$(node -e "
|
|
||||||
const fs = require('fs');
|
|
||||||
const pkg = JSON.parse(fs.readFileSync('packages/backend/package.json', 'utf8'));
|
|
||||||
const [major, minor, patch] = pkg.version.split('.').map(Number);
|
|
||||||
const type = '${{ steps.bump.outputs.type }}';
|
|
||||||
if (type === 'major') pkg.version = \`\${major + 1}.0.0\`;
|
|
||||||
else if (type === 'minor') pkg.version = \`\${major}.\${minor + 1}.0\`;
|
|
||||||
else pkg.version = \`\${major}.\${minor}.\${patch + 1}\`;
|
|
||||||
fs.writeFileSync('packages/backend/package.json', JSON.stringify(pkg, null, 2) + '\n');
|
|
||||||
console.log(pkg.version);
|
|
||||||
")
|
|
||||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Login to registry
|
|
||||||
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login registry.lunarfront.tech -u ryan --password-stdin
|
|
||||||
|
|
||||||
- name: Build and push backend
|
- name: Build and push backend
|
||||||
run: |
|
run: |
|
||||||
VERSION=${{ steps.version.outputs.version }}
|
|
||||||
SHA=$(git rev-parse --short HEAD)
|
SHA=$(git rev-parse --short HEAD)
|
||||||
docker build \
|
docker build \
|
||||||
--build-arg APP_VERSION=$VERSION \
|
--build-arg APP_VERSION=$VERSION \
|
||||||
-t registry.lunarfront.tech/ryan/lunarfront-app:$VERSION \
|
-t $REGISTRY/lunarfront-app:$VERSION \
|
||||||
-t registry.lunarfront.tech/ryan/lunarfront-app:$SHA \
|
-t $REGISTRY/lunarfront-app:$SHA \
|
||||||
-t registry.lunarfront.tech/ryan/lunarfront-app:latest \
|
-t $REGISTRY/lunarfront-app:latest \
|
||||||
-f Dockerfile .
|
-f Dockerfile .
|
||||||
docker push registry.lunarfront.tech/ryan/lunarfront-app:$VERSION
|
docker push $REGISTRY/lunarfront-app:$VERSION
|
||||||
docker push registry.lunarfront.tech/ryan/lunarfront-app:$SHA
|
docker push $REGISTRY/lunarfront-app:$SHA
|
||||||
docker push registry.lunarfront.tech/ryan/lunarfront-app:latest
|
docker push $REGISTRY/lunarfront-app:latest
|
||||||
|
|
||||||
- name: Build and push frontend
|
- name: Build and push frontend
|
||||||
run: |
|
run: |
|
||||||
VERSION=${{ steps.version.outputs.version }}
|
|
||||||
SHA=$(git rev-parse --short HEAD)
|
SHA=$(git rev-parse --short HEAD)
|
||||||
docker build \
|
docker build \
|
||||||
-t registry.lunarfront.tech/ryan/lunarfront-frontend:$VERSION \
|
-t $REGISTRY/lunarfront-frontend:$VERSION \
|
||||||
-t registry.lunarfront.tech/ryan/lunarfront-frontend:$SHA \
|
-t $REGISTRY/lunarfront-frontend:$SHA \
|
||||||
-t registry.lunarfront.tech/ryan/lunarfront-frontend:latest \
|
-t $REGISTRY/lunarfront-frontend:latest \
|
||||||
-f Dockerfile.frontend .
|
-f Dockerfile.frontend .
|
||||||
docker push registry.lunarfront.tech/ryan/lunarfront-frontend:$VERSION
|
docker push $REGISTRY/lunarfront-frontend:$VERSION
|
||||||
docker push registry.lunarfront.tech/ryan/lunarfront-frontend:$SHA
|
docker push $REGISTRY/lunarfront-frontend:$SHA
|
||||||
docker push registry.lunarfront.tech/ryan/lunarfront-frontend:latest
|
docker push $REGISTRY/lunarfront-frontend:latest
|
||||||
|
|
||||||
- name: Commit version bump
|
- name: Install Helm
|
||||||
|
run: curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
||||||
|
|
||||||
|
- name: Package and push Helm chart
|
||||||
run: |
|
run: |
|
||||||
git config user.name "lunarfront-bot"
|
sed -i "s/^version:.*/version: $VERSION/" chart/Chart.yaml
|
||||||
git config user.email "bot@lunarfront.tech"
|
sed -i "s/^appVersion:.*/appVersion: \"$VERSION\"/" chart/Chart.yaml
|
||||||
git remote set-url origin https://lunarfront-bot:${{ secrets.BOT_TOKEN }}@git.lunarfront.tech/ryan/lunarfront-app.git
|
sed -i "s|tag: .*|tag: $VERSION|g" chart/values.yaml
|
||||||
git add packages/backend/package.json
|
helm registry login registry.digitalocean.com -u token --password "${{ secrets.DOCR_TOKEN }}"
|
||||||
git commit -m "chore: bump version to v${{ steps.version.outputs.version }}"
|
helm package chart/
|
||||||
git pull --rebase origin main
|
helm push lunarfront-$VERSION.tgz oci://registry.digitalocean.com/lunarfront
|
||||||
git push origin main
|
|
||||||
|
|
||||||
- name: Logout
|
- name: Logout
|
||||||
if: always()
|
if: always()
|
||||||
run: docker logout registry.lunarfront.tech
|
run: docker logout registry.digitalocean.com
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install --frozen-lockfile
|
run: bun install --frozen-lockfile
|
||||||
|
|
||||||
|
- name: Generate route tree
|
||||||
|
working-directory: packages/admin
|
||||||
|
run: bunx @tanstack/router-cli generate
|
||||||
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: bun run lint
|
run: bun run lint
|
||||||
|
|
||||||
@@ -30,6 +34,8 @@ jobs:
|
|||||||
e2e:
|
e2e:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: ci
|
needs: ci
|
||||||
|
env:
|
||||||
|
DOCKER_HOST: tcp://localhost:2375
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|||||||
112
CLAUDE.md
112
CLAUDE.md
@@ -63,3 +63,115 @@
|
|||||||
- API routes are thin — validate with Zod, call a service, return result
|
- API routes are thin — validate with Zod, call a service, return result
|
||||||
- All financial events must be auditable (append-only audit records)
|
- All financial events must be auditable (append-only audit records)
|
||||||
- JSON structured logging with request IDs on every log line
|
- JSON structured logging with request IDs on every log line
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Infrastructure
|
||||||
|
|
||||||
|
### Overview
|
||||||
|
LunarFront runs on DigitalOcean Kubernetes (DOKS). Each customer gets an isolated namespace, database, and Helm release managed by ArgoCD.
|
||||||
|
|
||||||
|
### Key Services
|
||||||
|
- **Cluster:** `lunarfront` DOKS cluster, region NYC
|
||||||
|
- **Registry:** `registry.digitalocean.com/lunarfront` (DOCR) — stores Docker images and Helm charts
|
||||||
|
- **Git:** `git.lunarfront.tech` — self-hosted Gitea, source of truth for code and charts
|
||||||
|
- **CI:** Gitea Actions — builds Docker images and Helm charts on push to `main`
|
||||||
|
- **CD:** ArgoCD at `argocd.lunarfront.tech` — deploys from `lunarfront-charts` repo
|
||||||
|
- **Database:** DO Managed PostgreSQL — one database per customer, plus manager DB
|
||||||
|
- **Cache/Queue:** DO Managed Valkey — shared across all customers (key-prefixed per customer)
|
||||||
|
- **Ingress:** nginx ingress controller with Cloudflare proxy in front
|
||||||
|
- **TLS:** cert-manager with Let's Encrypt (letsencrypt-prod cluster issuer)
|
||||||
|
- **DNS:** Cloudflare — wildcard `*.lunarfront.tech` → cluster LB IP `167.99.21.170`
|
||||||
|
|
||||||
|
### Node Pools
|
||||||
|
- `system` — 2x s-2vcpu-4gb, runs ingress, ArgoCD, manager, pgbouncer
|
||||||
|
- `customers` — autoscales 0→N, s-4vcpu-8gb, runs customer app pods (tainted `role=customer`)
|
||||||
|
- `dev` — autoscales 0→1, s-4vcpu-8gb, runs dev pod only (tainted `dedicated=dev:NoSchedule`)
|
||||||
|
|
||||||
|
### Repos
|
||||||
|
- `lunarfront-app` — main application code (this repo)
|
||||||
|
- `lunarfront-charts` — Helm charts and ArgoCD app definitions
|
||||||
|
- `lunarfront-infra` — Terraform for DO infrastructure (DOKS, managed DBs, registry, DNS)
|
||||||
|
- `lunarfront-manager` — internal ops tool for provisioning/deprovisioning customers
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Build & Deploy Pipeline
|
||||||
|
|
||||||
|
### How it works
|
||||||
|
1. Push code to `main` on `lunarfront-app`
|
||||||
|
2. Gitea Actions runs `.gitea/workflows/build.yml`:
|
||||||
|
- Builds `lunarfront-app` Docker image → pushes as `0.1.{run_number}`, `{sha}`, `latest`
|
||||||
|
- Builds `lunarfront-frontend` Docker image → same tags
|
||||||
|
- Packages Helm chart → pushes as `0.1.{run_number}` to DOCR OCI registry
|
||||||
|
3. ArgoCD image updater detects new image digests → updates customer deployments
|
||||||
|
4. New customer provisions always get the latest chart version (queried from DOCR at provision time)
|
||||||
|
5. Existing customers upgraded via `POST /customers/:slug/upgrade` or `POST /customers/upgrade-all` in the manager
|
||||||
|
|
||||||
|
### Versioning
|
||||||
|
- Version format: `0.1.{gitea_run_number}` — always incrementing, no git commit-back needed
|
||||||
|
- No version stored in git — source of truth is DOCR tags
|
||||||
|
- Chart version and app version are kept in sync
|
||||||
|
|
||||||
|
### Key files
|
||||||
|
- `Dockerfile` — backend image (bun runtime, runs `packages/backend/src/main.ts` directly)
|
||||||
|
- `Dockerfile.frontend` — frontend nginx image
|
||||||
|
- `chart/` — Helm chart for customer app deployments
|
||||||
|
- `.gitea/workflows/build.yml` — CI pipeline
|
||||||
|
- `.gitea/workflows/build-devpod.yml` — builds dev box image on Dockerfile.devpod changes
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Dev Box
|
||||||
|
|
||||||
|
### What it is
|
||||||
|
A persistent development pod running in the `dev` namespace on the cluster. Provides a full remote dev environment accessible from anywhere.
|
||||||
|
|
||||||
|
- **VS Code in browser:** `dev.lunarfront.tech` (Cloudflare Access protected, OTP to email)
|
||||||
|
- **SSH:** `ssh -p 2222 root@dev-ssh.lunarfront.tech`
|
||||||
|
- **Storage:** 100GB DO block storage PVC mounted at `/root` — everything in home dir persists
|
||||||
|
- **Image:** `registry.digitalocean.com/lunarfront/manager:devpod-latest`
|
||||||
|
- **Tools:** bun, Claude Code CLI, code-server, kubectl, helm, k9s, doctl, psql, redis-cli, git
|
||||||
|
|
||||||
|
### Managing the dev pod
|
||||||
|
```bash
|
||||||
|
# Scale up (provisions node automatically)
|
||||||
|
kubectl scale deployment dev -n dev --replicas=1
|
||||||
|
|
||||||
|
# Scale down (node auto-terminates after ~15 min)
|
||||||
|
kubectl scale deployment dev -n dev --replicas=0
|
||||||
|
```
|
||||||
|
|
||||||
|
### Running the app locally on the dev box (no containers)
|
||||||
|
The dev box runs the app as plain Bun processes, connecting to the same DO managed services as production.
|
||||||
|
|
||||||
|
**Required env vars** (create a `.env` file in the repo root or export in `.bashrc`):
|
||||||
|
```bash
|
||||||
|
DATABASE_URL=postgresql://... # DO managed postgres, lunarfront database
|
||||||
|
REDIS_URL=rediss://... # DO managed valkey
|
||||||
|
JWT_SECRET=... # any random hex string for local dev
|
||||||
|
PORT=8000
|
||||||
|
```
|
||||||
|
|
||||||
|
**Start the app:**
|
||||||
|
```bash
|
||||||
|
cd ~/lunarfront-app
|
||||||
|
bun run dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Access the running backend at `dev.lunarfront.tech/proxy/8000/` in the browser (code-server proxy), or via SSH port forward:
|
||||||
|
```bash
|
||||||
|
ssh -p 2222 -L 8000:localhost:8000 root@dev-ssh.lunarfront.tech
|
||||||
|
```
|
||||||
|
|
||||||
|
**Run migrations against the dev database:**
|
||||||
|
```bash
|
||||||
|
bunx drizzle-kit migrate
|
||||||
|
```
|
||||||
|
|
||||||
|
### Workflow
|
||||||
|
1. Edit code in VS Code at `dev.lunarfront.tech` or via SSH
|
||||||
|
2. Run and test locally with `bun run dev` — app connects to DO managed postgres/valkey
|
||||||
|
3. Push to `main` → Gitea Actions builds and pushes new Docker image + Helm chart
|
||||||
|
4. ArgoCD deploys to the cluster automatically
|
||||||
|
5. Use manager at `manager.lunarfront.tech` to upgrade customer instances if needed
|
||||||
|
|||||||
14
Dockerfile
14
Dockerfile
@@ -6,8 +6,9 @@ COPY packages/backend/package.json packages/backend/
|
|||||||
COPY packages/admin/package.json packages/admin/
|
COPY packages/admin/package.json packages/admin/
|
||||||
RUN bun install --frozen-lockfile
|
RUN bun install --frozen-lockfile
|
||||||
|
|
||||||
FROM oven/bun:1.3.11-alpine AS build
|
FROM oven/bun:1.3.11-alpine
|
||||||
ARG APP_VERSION=dev
|
ARG APP_VERSION=dev
|
||||||
|
ENV APP_VERSION=${APP_VERSION}
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=deps /app/node_modules ./node_modules
|
COPY --from=deps /app/node_modules ./node_modules
|
||||||
COPY --from=deps /app/packages/shared/node_modules ./packages/shared/node_modules
|
COPY --from=deps /app/packages/shared/node_modules ./packages/shared/node_modules
|
||||||
@@ -16,18 +17,11 @@ COPY packages/shared ./packages/shared
|
|||||||
COPY packages/backend ./packages/backend
|
COPY packages/backend ./packages/backend
|
||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
COPY tsconfig.base.json ./
|
COPY tsconfig.base.json ./
|
||||||
WORKDIR /app/packages/backend
|
|
||||||
RUN bun build src/main.ts --compile --outfile /app/server \
|
|
||||||
--define "process.env.APP_VERSION='${APP_VERSION}'"
|
|
||||||
|
|
||||||
FROM alpine:3.21
|
|
||||||
RUN addgroup -S app && adduser -S app -G app
|
RUN addgroup -S app && adduser -S app -G app
|
||||||
WORKDIR /app
|
COPY packages/backend/src/db/migrations ./migrations
|
||||||
COPY --from=build /app/server ./server
|
|
||||||
COPY --from=build /app/packages/backend/src/db/migrations ./migrations
|
|
||||||
ENV MIGRATIONS_DIR=/app/migrations
|
ENV MIGRATIONS_DIR=/app/migrations
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
|
||||||
CMD wget -qO- http://localhost:8000/v1/health || exit 1
|
CMD wget -qO- http://localhost:8000/v1/health || exit 1
|
||||||
USER app
|
USER app
|
||||||
CMD ["./server"]
|
CMD ["bun", "run", "packages/backend/src/main.ts"]
|
||||||
|
|||||||
47
Dockerfile.devpod
Normal file
47
Dockerfile.devpod
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
FROM ubuntu:24.04
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
ENV HOME=/root
|
||||||
|
ENV PATH="/usr/local/bin:/root/.bun/bin:$PATH"
|
||||||
|
|
||||||
|
# Base tools
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
curl wget git openssh-server ca-certificates gnupg \
|
||||||
|
build-essential unzip zip jq tmux zsh ripgrep \
|
||||||
|
postgresql-client redis-tools haproxy tini \
|
||||||
|
nano vim htop netcat-openbsd dnsutils iputils-ping lsof iproute2 \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Bun — install then move to /usr/local/bin so it's on the image filesystem, not the /root PVC
|
||||||
|
RUN curl -fsSL https://bun.sh/install | bash \
|
||||||
|
&& mv /root/.bun/bin/bun /usr/local/bin/bun \
|
||||||
|
&& ln -sf /usr/local/bin/bun /usr/local/bin/bunx \
|
||||||
|
&& rm -rf /root/.bun
|
||||||
|
|
||||||
|
# code-server (VS Code in browser)
|
||||||
|
RUN curl -fsSL https://code-server.dev/install.sh | sh
|
||||||
|
|
||||||
|
# kubectl
|
||||||
|
RUN curl -fsSL "https://dl.k8s.io/release/$(curl -fsSL https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
|
||||||
|
-o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl
|
||||||
|
|
||||||
|
# doctl
|
||||||
|
RUN curl -fsSL https://github.com/digitalocean/doctl/releases/download/v1.119.0/doctl-1.119.0-linux-amd64.tar.gz \
|
||||||
|
| tar xz -C /usr/local/bin
|
||||||
|
|
||||||
|
# helm
|
||||||
|
RUN curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
||||||
|
|
||||||
|
# k9s
|
||||||
|
RUN curl -fsSL https://github.com/derailed/k9s/releases/latest/download/k9s_Linux_amd64.tar.gz \
|
||||||
|
| tar xz -C /usr/local/bin k9s
|
||||||
|
|
||||||
|
# SSH setup — host keys generated at runtime via entrypoint
|
||||||
|
RUN mkdir -p /run/sshd /root/.ssh && chmod 700 /root/.ssh
|
||||||
|
|
||||||
|
COPY entrypoint-devpod.sh /entrypoint.sh
|
||||||
|
RUN chmod +x /entrypoint.sh
|
||||||
|
|
||||||
|
WORKDIR /root
|
||||||
|
EXPOSE 8080 22
|
||||||
|
ENTRYPOINT ["/usr/bin/tini", "--", "/entrypoint.sh"]
|
||||||
@@ -16,10 +16,13 @@ COPY packages/admin ./packages/admin
|
|||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
COPY tsconfig.base.json ./
|
COPY tsconfig.base.json ./
|
||||||
WORKDIR /app/packages/admin
|
WORKDIR /app/packages/admin
|
||||||
|
RUN bunx @tanstack/router-cli generate
|
||||||
RUN bun run build
|
RUN bun run build
|
||||||
|
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
COPY --from=build /app/packages/admin/dist /usr/share/nginx/html
|
COPY --from=build /app/packages/admin/dist /usr/share/nginx/html
|
||||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
# nginx docker image processes templates in /etc/nginx/templates/ with envsubst at startup
|
||||||
|
COPY nginx.conf /etc/nginx/templates/default.conf.template
|
||||||
|
ENV BACKEND_URL=http://localhost:8000
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
|||||||
8
bun.lock
8
bun.lock
@@ -34,6 +34,8 @@
|
|||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"date-fns": "^4.1.0",
|
"date-fns": "^4.1.0",
|
||||||
|
"html2pdf.js": "^0.14.0",
|
||||||
|
"jsbarcode": "^3.12.3",
|
||||||
"jspdf": "^4.2.1",
|
"jspdf": "^4.2.1",
|
||||||
"lucide-react": "^1.7.0",
|
"lucide-react": "^1.7.0",
|
||||||
"radix-ui": "^1.4.3",
|
"radix-ui": "^1.4.3",
|
||||||
@@ -59,7 +61,7 @@
|
|||||||
},
|
},
|
||||||
"packages/backend": {
|
"packages/backend": {
|
||||||
"name": "@lunarfront/backend",
|
"name": "@lunarfront/backend",
|
||||||
"version": "0.0.1",
|
"version": "0.1.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fastify/cors": "^10",
|
"@fastify/cors": "^10",
|
||||||
"@fastify/jwt": "^9",
|
"@fastify/jwt": "^9",
|
||||||
@@ -806,6 +808,8 @@
|
|||||||
|
|
||||||
"html2canvas": ["html2canvas@1.4.1", "", { "dependencies": { "css-line-break": "^2.1.0", "text-segmentation": "^1.0.3" } }, "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA=="],
|
"html2canvas": ["html2canvas@1.4.1", "", { "dependencies": { "css-line-break": "^2.1.0", "text-segmentation": "^1.0.3" } }, "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA=="],
|
||||||
|
|
||||||
|
"html2pdf.js": ["html2pdf.js@0.14.0", "", { "dependencies": { "dompurify": "^3.3.1", "html2canvas": "^1.0.0", "jspdf": "^4.0.0" } }, "sha512-yvNJgE/8yru2UeGflkPdjW8YEY+nDH5X7/2WG4uiuSCwYiCp8PZ8EKNiTAa6HxJ1NjC51fZSIEq6xld5CADKBQ=="],
|
||||||
|
|
||||||
"ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="],
|
"ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="],
|
||||||
|
|
||||||
"import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="],
|
"import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="],
|
||||||
@@ -842,6 +846,8 @@
|
|||||||
|
|
||||||
"js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="],
|
"js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="],
|
||||||
|
|
||||||
|
"jsbarcode": ["jsbarcode@3.12.3", "", {}, "sha512-CuHU9hC6dPsHF5oVFMo8NW76uQVjH4L22CsP4hW+dNnGywJHC/B0ThA1CTDVLnxKLrrpYdicBLnd2xsgTfRnvg=="],
|
||||||
|
|
||||||
"jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="],
|
"jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="],
|
||||||
|
|
||||||
"json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="],
|
"json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="],
|
||||||
|
|||||||
6
chart/Chart.yaml
Normal file
6
chart/Chart.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: lunarfront
|
||||||
|
description: LunarFront small business management platform
|
||||||
|
type: application
|
||||||
|
version: 0.1.1
|
||||||
|
appVersion: "0.1.1"
|
||||||
8
chart/templates/_helpers.tpl
Normal file
8
chart/templates/_helpers.tpl
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{{- define "lunarfront.name" -}}
|
||||||
|
{{- .Release.Name }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- define "lunarfront.labels" -}}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
|
{{- end }}
|
||||||
129
chart/templates/backend-deployment.yaml
Normal file
129
chart/templates/backend-deployment.yaml
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}-backend
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "lunarfront.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: {{ .Release.Name }}-backend
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: {{ .Release.Name }}-backend
|
||||||
|
spec:
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml .Values.imagePullSecrets | nindent 8 }}
|
||||||
|
containers:
|
||||||
|
- name: backend
|
||||||
|
image: "{{ .Values.backend.image.repository }}:{{ .Values.backend.image.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.backend.image.pullPolicy }}
|
||||||
|
ports:
|
||||||
|
- containerPort: {{ .Values.backend.port }}
|
||||||
|
env:
|
||||||
|
- name: PORT
|
||||||
|
value: {{ .Values.backend.port | quote }}
|
||||||
|
- name: NODE_ENV
|
||||||
|
value: production
|
||||||
|
- name: DATABASE_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: database-url
|
||||||
|
- name: REDIS_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: redis-url
|
||||||
|
- name: REDIS_KEY_PREFIX
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: redis-key-prefix
|
||||||
|
- name: SPACES_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: spaces-key
|
||||||
|
- name: SPACES_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: spaces-secret
|
||||||
|
- name: SPACES_BUCKET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: spaces-bucket
|
||||||
|
- name: SPACES_ENDPOINT
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: spaces-endpoint
|
||||||
|
- name: SPACES_PREFIX
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: spaces-prefix
|
||||||
|
- name: JWT_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: jwt-secret
|
||||||
|
- name: ENCRYPTION_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: encryption-key
|
||||||
|
- name: RESEND_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: resend-api-key
|
||||||
|
- name: MAIL_FROM
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: mail-from
|
||||||
|
- name: BUSINESS_NAME
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: business-name
|
||||||
|
- name: APP_URL
|
||||||
|
value: "https://{{ .Values.ingress.host }}"
|
||||||
|
- name: INITIAL_USER_EMAIL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: initial-user-email
|
||||||
|
optional: true
|
||||||
|
- name: INITIAL_USER_FIRST_NAME
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: initial-user-first-name
|
||||||
|
optional: true
|
||||||
|
- name: INITIAL_USER_LAST_NAME
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: lunarfront-secrets
|
||||||
|
key: initial-user-last-name
|
||||||
|
optional: true
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /v1/health
|
||||||
|
port: {{ .Values.backend.port }}
|
||||||
|
initialDelaySeconds: 15
|
||||||
|
periodSeconds: 30
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /v1/health
|
||||||
|
port: {{ .Values.backend.port }}
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 10
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.backend.resources | nindent 12 }}
|
||||||
13
chart/templates/backend-service.yaml
Normal file
13
chart/templates/backend-service.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}-backend
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "lunarfront.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: {{ .Release.Name }}-backend
|
||||||
|
ports:
|
||||||
|
- port: {{ .Values.backend.port }}
|
||||||
|
targetPort: {{ .Values.backend.port }}
|
||||||
30
chart/templates/frontend-deployment.yaml
Normal file
30
chart/templates/frontend-deployment.yaml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}-frontend
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "lunarfront.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: {{ .Release.Name }}-frontend
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: {{ .Release.Name }}-frontend
|
||||||
|
spec:
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml .Values.imagePullSecrets | nindent 8 }}
|
||||||
|
containers:
|
||||||
|
- name: frontend
|
||||||
|
image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.frontend.image.pullPolicy }}
|
||||||
|
ports:
|
||||||
|
- containerPort: {{ .Values.frontend.port }}
|
||||||
|
env:
|
||||||
|
- name: BACKEND_URL
|
||||||
|
value: "http://{{ .Release.Name }}-backend:{{ .Values.backend.port }}"
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.frontend.resources | nindent 12 }}
|
||||||
13
chart/templates/frontend-service.yaml
Normal file
13
chart/templates/frontend-service.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}-frontend
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "lunarfront.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: {{ .Release.Name }}-frontend
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: {{ .Values.frontend.port }}
|
||||||
29
chart/templates/ingress.yaml
Normal file
29
chart/templates/ingress.yaml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{{- if .Values.ingress.host }}
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "lunarfront.labels" . | nindent 4 }}
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: {{ .Values.ingress.className }}
|
||||||
|
cert-manager.io/cluster-issuer: {{ .Values.ingress.tlsIssuer }}
|
||||||
|
spec:
|
||||||
|
ingressClassName: {{ .Values.ingress.className }}
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- {{ .Values.ingress.host }}
|
||||||
|
secretName: {{ .Release.Name }}-tls
|
||||||
|
rules:
|
||||||
|
- host: {{ .Values.ingress.host }}
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: {{ .Release.Name }}-frontend
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
{{- end }}
|
||||||
39
chart/values.yaml
Normal file
39
chart/values.yaml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
backend:
|
||||||
|
image:
|
||||||
|
repository: registry.digitalocean.com/lunarfront/lunarfront-app
|
||||||
|
tag: 0.0.27
|
||||||
|
pullPolicy: Always
|
||||||
|
port: 8000
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 1000m
|
||||||
|
memory: 512Mi
|
||||||
|
|
||||||
|
frontend:
|
||||||
|
image:
|
||||||
|
repository: registry.digitalocean.com/lunarfront/lunarfront-frontend
|
||||||
|
tag: 0.0.27
|
||||||
|
pullPolicy: Always
|
||||||
|
port: 80
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 50m
|
||||||
|
memory: 64Mi
|
||||||
|
limits:
|
||||||
|
cpu: 200m
|
||||||
|
memory: 128Mi
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
host: ""
|
||||||
|
className: nginx
|
||||||
|
tlsIssuer: letsencrypt
|
||||||
|
|
||||||
|
imagePullSecrets:
|
||||||
|
- name: registry-lunarfront
|
||||||
|
|
||||||
|
# Secrets are expected to exist in-namespace as 'lunarfront-secrets' with keys:
|
||||||
|
# database-url, jwt-secret, redis-url
|
||||||
|
# These are created by the manager during provisioning, not by this chart.
|
||||||
82
entrypoint-devpod.sh
Normal file
82
entrypoint-devpod.sh
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Generate SSH host keys if not present
|
||||||
|
ssh-keygen -A
|
||||||
|
|
||||||
|
# Write authorized keys from env if provided
|
||||||
|
if [ -n "$SSH_AUTHORIZED_KEYS" ]; then
|
||||||
|
mkdir -p /root/.ssh
|
||||||
|
chmod 700 /root/.ssh
|
||||||
|
echo "$SSH_AUTHORIZED_KEYS" > /root/.ssh/authorized_keys
|
||||||
|
chmod 600 /root/.ssh/authorized_keys
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Bootstrap home dir on fresh PVC
|
||||||
|
if [ ! -f /root/.bashrc ]; then
|
||||||
|
cp /etc/skel/.bashrc /root/.bashrc 2>/dev/null || true
|
||||||
|
cat >> /root/.bashrc <<'EOF'
|
||||||
|
export PATH="/usr/local/bin:$PATH"
|
||||||
|
export HISTFILE=/root/.bash_history
|
||||||
|
export HISTSIZE=10000
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f /root/.profile ]; then
|
||||||
|
cat > /root/.profile <<'EOF'
|
||||||
|
export PATH="/usr/local/bin:$PATH"
|
||||||
|
[ -f /root/.bashrc ] && . /root/.bashrc
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f /root/.gitconfig ]; then
|
||||||
|
cat > /root/.gitconfig <<'EOF'
|
||||||
|
[user]
|
||||||
|
name = ryan
|
||||||
|
email = ryan@lunartech.com
|
||||||
|
[init]
|
||||||
|
defaultBranch = main
|
||||||
|
[core]
|
||||||
|
editor = code --wait
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Install Claude Code on first boot (installs to /root/.claude, persists on PVC)
|
||||||
|
if [ ! -f /root/.claude/bin/claude ]; then
|
||||||
|
curl -fsSL https://claude.ai/install.sh | bash
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Allow root login via SSH key, listen on internal port 2222
|
||||||
|
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
||||||
|
echo "Port 2222" >> /etc/ssh/sshd_config
|
||||||
|
|
||||||
|
# Start SSH daemon on internal port 2222
|
||||||
|
/usr/sbin/sshd
|
||||||
|
|
||||||
|
# Start haproxy on port 22 to accept PROXY protocol from nginx and forward to sshd:2222
|
||||||
|
cat > /etc/haproxy/haproxy.cfg <<'EOF'
|
||||||
|
global
|
||||||
|
daemon
|
||||||
|
maxconn 256
|
||||||
|
|
||||||
|
defaults
|
||||||
|
mode tcp
|
||||||
|
timeout connect 5s
|
||||||
|
timeout client 60s
|
||||||
|
timeout server 60s
|
||||||
|
|
||||||
|
frontend ssh
|
||||||
|
bind *:22 accept-proxy
|
||||||
|
default_backend sshd
|
||||||
|
|
||||||
|
backend sshd
|
||||||
|
server local 127.0.0.1:2222
|
||||||
|
EOF
|
||||||
|
haproxy -f /etc/haproxy/haproxy.cfg
|
||||||
|
|
||||||
|
# Start code-server
|
||||||
|
exec code-server \
|
||||||
|
--bind-addr 0.0.0.0:8080 \
|
||||||
|
--auth none \
|
||||||
|
--disable-telemetry \
|
||||||
|
/root
|
||||||
@@ -3,9 +3,9 @@ server {
|
|||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
index index.html;
|
index index.html;
|
||||||
|
|
||||||
# Proxy API and WebDAV to backend
|
# Proxy API and WebDAV to backend — BACKEND_URL injected at runtime via envsubst
|
||||||
location /v1/ {
|
location /v1/ {
|
||||||
proxy_pass http://localhost:8000;
|
proxy_pass ${BACKEND_URL};
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
@@ -14,7 +14,7 @@ server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
location /webdav/ {
|
location /webdav/ {
|
||||||
proxy_pass http://localhost:8000;
|
proxy_pass ${BACKEND_URL};
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|||||||
@@ -25,6 +25,8 @@
|
|||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"date-fns": "^4.1.0",
|
"date-fns": "^4.1.0",
|
||||||
|
"html2pdf.js": "^0.14.0",
|
||||||
|
"jsbarcode": "^3.12.3",
|
||||||
"jspdf": "^4.2.1",
|
"jspdf": "^4.2.1",
|
||||||
"lucide-react": "^1.7.0",
|
"lucide-react": "^1.7.0",
|
||||||
"radix-ui": "^1.4.3",
|
"radix-ui": "^1.4.3",
|
||||||
|
|||||||
@@ -14,3 +14,11 @@ interface LoginResponse {
|
|||||||
export async function login(email: string, password: string): Promise<LoginResponse> {
|
export async function login(email: string, password: string): Promise<LoginResponse> {
|
||||||
return api.post<LoginResponse>('/v1/auth/login', { email, password })
|
return api.post<LoginResponse>('/v1/auth/login', { email, password })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function forgotPassword(email: string): Promise<{ message: string }> {
|
||||||
|
return api.post<{ message: string }>('/v1/auth/forgot-password', { email })
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function resetPassword(token: string, newPassword: string): Promise<{ message: string }> {
|
||||||
|
return api.post<{ message: string }>('/v1/auth/reset-password', { token, newPassword })
|
||||||
|
}
|
||||||
|
|||||||
225
packages/admin/src/api/pos.ts
Normal file
225
packages/admin/src/api/pos.ts
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
|
||||||
|
// --- Types ---
|
||||||
|
|
||||||
|
export interface Transaction {
|
||||||
|
id: string
|
||||||
|
locationId: string | null
|
||||||
|
transactionNumber: string
|
||||||
|
accountId: string | null
|
||||||
|
repairTicketId: string | null
|
||||||
|
repairBatchId: string | null
|
||||||
|
transactionType: string
|
||||||
|
status: string
|
||||||
|
subtotal: string
|
||||||
|
discountTotal: string
|
||||||
|
taxTotal: string
|
||||||
|
total: string
|
||||||
|
paymentMethod: string | null
|
||||||
|
amountTendered: string | null
|
||||||
|
changeGiven: string | null
|
||||||
|
checkNumber: string | null
|
||||||
|
roundingAdjustment: string
|
||||||
|
taxExempt: boolean
|
||||||
|
taxExemptReason: string | null
|
||||||
|
processedBy: string
|
||||||
|
drawerSessionId: string | null
|
||||||
|
notes: string | null
|
||||||
|
completedAt: string | null
|
||||||
|
createdAt: string
|
||||||
|
updatedAt: string
|
||||||
|
lineItems?: TransactionLineItem[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TransactionLineItem {
|
||||||
|
id: string
|
||||||
|
transactionId: string
|
||||||
|
productId: string | null
|
||||||
|
inventoryUnitId: string | null
|
||||||
|
description: string
|
||||||
|
qty: number
|
||||||
|
unitPrice: string
|
||||||
|
discountAmount: string
|
||||||
|
discountReason: string | null
|
||||||
|
taxRate: string
|
||||||
|
taxAmount: string
|
||||||
|
lineTotal: string
|
||||||
|
createdAt: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DrawerSession {
|
||||||
|
id: string
|
||||||
|
locationId: string | null
|
||||||
|
openedBy: string
|
||||||
|
closedBy: string | null
|
||||||
|
openingBalance: string
|
||||||
|
closingBalance: string | null
|
||||||
|
expectedBalance: string | null
|
||||||
|
overShort: string | null
|
||||||
|
denominations: Record<string, number> | null
|
||||||
|
status: string
|
||||||
|
notes: string | null
|
||||||
|
openedAt: string
|
||||||
|
closedAt: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Discount {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
discountType: string
|
||||||
|
discountValue: string
|
||||||
|
appliesTo: string
|
||||||
|
requiresApprovalAbove: string | null
|
||||||
|
isActive: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Product {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
sku: string | null
|
||||||
|
upc: string | null
|
||||||
|
description: string | null
|
||||||
|
price: string | null
|
||||||
|
costPrice: string | null
|
||||||
|
qtyOnHand: number | null
|
||||||
|
taxCategory: string
|
||||||
|
isSerialized: boolean
|
||||||
|
isActive: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Register {
|
||||||
|
id: string
|
||||||
|
locationId: string
|
||||||
|
name: string
|
||||||
|
isActive: boolean
|
||||||
|
createdAt: string
|
||||||
|
updatedAt: string
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Query Keys ---
|
||||||
|
|
||||||
|
export interface DrawerAdjustment {
|
||||||
|
id: string
|
||||||
|
drawerSessionId: string
|
||||||
|
type: string
|
||||||
|
amount: string
|
||||||
|
reason: string
|
||||||
|
createdBy: string
|
||||||
|
createdAt: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export const posKeys = {
|
||||||
|
transaction: (id: string) => ['pos', 'transaction', id] as const,
|
||||||
|
drawer: (locationId: string) => ['pos', 'drawer', locationId] as const,
|
||||||
|
drawerAdjustments: (id: string) => ['pos', 'drawer-adjustments', id] as const,
|
||||||
|
drawerReport: (id: string) => ['pos', 'drawer-report', id] as const,
|
||||||
|
dailyReport: (locationId: string, date: string) => ['pos', 'daily-report', locationId, date] as const,
|
||||||
|
registers: (locationId: string) => ['pos', 'registers', locationId] as const,
|
||||||
|
products: (search: string) => ['pos', 'products', search] as const,
|
||||||
|
discounts: ['pos', 'discounts'] as const,
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Query Options ---
|
||||||
|
|
||||||
|
export function transactionOptions(id: string | null) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: posKeys.transaction(id ?? ''),
|
||||||
|
queryFn: () => api.get<Transaction>(`/v1/transactions/${id}`),
|
||||||
|
enabled: !!id,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function currentDrawerOptions(locationId: string | null) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: posKeys.drawer(locationId ?? ''),
|
||||||
|
queryFn: async (): Promise<DrawerSession | null> => {
|
||||||
|
try {
|
||||||
|
return await api.get<DrawerSession>('/v1/drawer/current', { locationId })
|
||||||
|
} catch {
|
||||||
|
return null // 404 = no open drawer
|
||||||
|
}
|
||||||
|
},
|
||||||
|
enabled: !!locationId,
|
||||||
|
retry: false,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function productSearchOptions(search: string) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: posKeys.products(search),
|
||||||
|
queryFn: () => api.get<{ data: Product[]; pagination: { page: number; limit: number; total: number; totalPages: number } }>('/v1/products', { q: search, limit: 24, isActive: true, isConsumable: false }),
|
||||||
|
enabled: search.length >= 1,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function discountListOptions() {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: posKeys.discounts,
|
||||||
|
queryFn: () => api.get<Discount[]>('/v1/discounts/all'),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function registerListOptions(locationId: string | null) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: posKeys.registers(locationId ?? ''),
|
||||||
|
queryFn: () => api.get<{ data: Register[] }>('/v1/registers/all', { locationId }),
|
||||||
|
enabled: !!locationId,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function drawerReportOptions(drawerSessionId: string | null) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: posKeys.drawerReport(drawerSessionId ?? ''),
|
||||||
|
queryFn: () => api.get<any>(`/v1/reports/drawer/${drawerSessionId}`),
|
||||||
|
enabled: !!drawerSessionId,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function dailyReportOptions(locationId: string | null, date: string) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: posKeys.dailyReport(locationId ?? '', date),
|
||||||
|
queryFn: () => api.get<any>('/v1/reports/daily', { locationId, date }),
|
||||||
|
enabled: !!locationId && !!date,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Mutations ---
|
||||||
|
|
||||||
|
export const posMutations = {
|
||||||
|
createTransaction: (data: { transactionType: string; locationId?: string; accountId?: string }) =>
|
||||||
|
api.post<Transaction>('/v1/transactions', data),
|
||||||
|
|
||||||
|
addLineItem: (txnId: string, data: { productId?: string; inventoryUnitId?: string; description: string; qty: number; unitPrice: number }) =>
|
||||||
|
api.post<TransactionLineItem>(`/v1/transactions/${txnId}/line-items`, data),
|
||||||
|
|
||||||
|
removeLineItem: (txnId: string, lineItemId: string) =>
|
||||||
|
api.del<TransactionLineItem>(`/v1/transactions/${txnId}/line-items/${lineItemId}`),
|
||||||
|
|
||||||
|
applyDiscount: (txnId: string, data: { discountId?: string; amount: number; reason: string; lineItemId?: string }) =>
|
||||||
|
api.post<Transaction>(`/v1/transactions/${txnId}/discounts`, data),
|
||||||
|
|
||||||
|
complete: (txnId: string, data: { paymentMethod: string; amountTendered?: number; checkNumber?: string }) =>
|
||||||
|
api.post<Transaction>(`/v1/transactions/${txnId}/complete`, data),
|
||||||
|
|
||||||
|
void: (txnId: string) =>
|
||||||
|
api.post<Transaction>(`/v1/transactions/${txnId}/void`, {}),
|
||||||
|
|
||||||
|
openDrawer: (data: { locationId?: string; registerId?: string; openingBalance: number }) =>
|
||||||
|
api.post<DrawerSession>('/v1/drawer/open', data),
|
||||||
|
|
||||||
|
closeDrawer: (id: string, data: { closingBalance: number; denominations?: Record<string, number>; notes?: string }) =>
|
||||||
|
api.post<DrawerSession>(`/v1/drawer/${id}/close`, data),
|
||||||
|
|
||||||
|
lookupUpc: (upc: string) =>
|
||||||
|
api.get<Product>(`/v1/products/lookup/upc/${upc}`),
|
||||||
|
|
||||||
|
addAdjustment: (drawerId: string, data: { type: string; amount: number; reason: string }) =>
|
||||||
|
api.post<DrawerAdjustment>(`/v1/drawer/${drawerId}/adjustments`, data),
|
||||||
|
|
||||||
|
getAdjustments: (drawerId: string) =>
|
||||||
|
api.get<{ data: DrawerAdjustment[] }>(`/v1/drawer/${drawerId}/adjustments`),
|
||||||
|
|
||||||
|
createFromRepair: (ticketId: string, locationId?: string) =>
|
||||||
|
api.post<Transaction>(`/v1/transactions/from-repair/${ticketId}`, { locationId }),
|
||||||
|
}
|
||||||
@@ -34,6 +34,7 @@ export function ProductForm({ defaultValues, onSubmit, loading }: Props) {
|
|||||||
isSerialized: defaultValues?.isSerialized ?? false,
|
isSerialized: defaultValues?.isSerialized ?? false,
|
||||||
isRental: defaultValues?.isRental ?? false,
|
isRental: defaultValues?.isRental ?? false,
|
||||||
isDualUseRepair: defaultValues?.isDualUseRepair ?? false,
|
isDualUseRepair: defaultValues?.isDualUseRepair ?? false,
|
||||||
|
isConsumable: defaultValues?.isConsumable ?? false,
|
||||||
isActive: defaultValues?.isActive ?? true,
|
isActive: defaultValues?.isActive ?? true,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@@ -42,6 +43,7 @@ export function ProductForm({ defaultValues, onSubmit, loading }: Props) {
|
|||||||
const isRental = watch('isRental')
|
const isRental = watch('isRental')
|
||||||
const isSerialized = watch('isSerialized')
|
const isSerialized = watch('isSerialized')
|
||||||
const isDualUseRepair = watch('isDualUseRepair')
|
const isDualUseRepair = watch('isDualUseRepair')
|
||||||
|
const isConsumable = watch('isConsumable')
|
||||||
const isActive = watch('isActive')
|
const isActive = watch('isActive')
|
||||||
|
|
||||||
function handleFormSubmit(data: Record<string, unknown>) {
|
function handleFormSubmit(data: Record<string, unknown>) {
|
||||||
@@ -61,6 +63,7 @@ export function ProductForm({ defaultValues, onSubmit, loading }: Props) {
|
|||||||
isSerialized: data.isSerialized,
|
isSerialized: data.isSerialized,
|
||||||
isRental: data.isRental,
|
isRental: data.isRental,
|
||||||
isDualUseRepair: data.isDualUseRepair,
|
isDualUseRepair: data.isDualUseRepair,
|
||||||
|
isConsumable: data.isConsumable,
|
||||||
isActive: data.isActive,
|
isActive: data.isActive,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -158,6 +161,10 @@ export function ProductForm({ defaultValues, onSubmit, loading }: Props) {
|
|||||||
<input type="checkbox" checked={isDualUseRepair} onChange={(e) => setValue('isDualUseRepair', e.target.checked)} className="h-4 w-4" />
|
<input type="checkbox" checked={isDualUseRepair} onChange={(e) => setValue('isDualUseRepair', e.target.checked)} className="h-4 w-4" />
|
||||||
Available as Repair Line Item
|
Available as Repair Line Item
|
||||||
</label>
|
</label>
|
||||||
|
<label className="flex items-center gap-2 text-sm cursor-pointer">
|
||||||
|
<input type="checkbox" checked={isConsumable} onChange={(e) => setValue('isConsumable', e.target.checked)} className="h-4 w-4" />
|
||||||
|
Consumable (internal use, not sold at POS)
|
||||||
|
</label>
|
||||||
<label className="flex items-center gap-2 text-sm cursor-pointer">
|
<label className="flex items-center gap-2 text-sm cursor-pointer">
|
||||||
<input type="checkbox" checked={isActive} onChange={(e) => setValue('isActive', e.target.checked)} className="h-4 w-4" />
|
<input type="checkbox" checked={isActive} onChange={(e) => setValue('isActive', e.target.checked)} className="h-4 w-4" />
|
||||||
Active
|
Active
|
||||||
|
|||||||
522
packages/admin/src/components/pos/pos-cart-panel.tsx
Normal file
522
packages/admin/src/components/pos/pos-cart-panel.tsx
Normal file
@@ -0,0 +1,522 @@
|
|||||||
|
import { useMutation, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { posMutations, posKeys, type Transaction } from '@/api/pos'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover'
|
||||||
|
import { X, Banknote, CreditCard, FileText, Ban, UserRound, Tag } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
import { useState } from 'react'
|
||||||
|
import { POSPaymentDialog } from './pos-payment-dialog'
|
||||||
|
import { POSCustomerDialog } from './pos-customer-dialog'
|
||||||
|
import { ManagerOverrideDialog, requiresOverride, requiresDiscountOverride } from './pos-manager-override'
|
||||||
|
import type { TransactionLineItem } from '@/api/pos'
|
||||||
|
|
||||||
|
interface POSCartPanelProps {
|
||||||
|
transaction: Transaction | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSCartPanel({ transaction }: POSCartPanelProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const { currentTransactionId, setTransaction, accountName, accountPhone, accountEmail } = usePOSStore()
|
||||||
|
const [paymentMethod, setPaymentMethod] = useState<string | null>(null)
|
||||||
|
const [customerOpen, setCustomerOpen] = useState(false)
|
||||||
|
const [overrideOpen, setOverrideOpen] = useState(false)
|
||||||
|
const [priceItemId, setPriceItemId] = useState<string | null>(null)
|
||||||
|
const [pendingDiscount, setPendingDiscount] = useState<{ lineItemId: string; amount: number; reason: string } | null>(null)
|
||||||
|
const [pendingOrderDiscount, setPendingOrderDiscount] = useState<{ amount: number; reason: string } | null>(null)
|
||||||
|
const [discountOverrideOpen, setDiscountOverrideOpen] = useState(false)
|
||||||
|
const lineItems = transaction?.lineItems ?? []
|
||||||
|
|
||||||
|
const drawerSessionId = usePOSStore((s) => s.drawerSessionId)
|
||||||
|
const drawerOpen = !!drawerSessionId
|
||||||
|
|
||||||
|
const removeItemMutation = useMutation({
|
||||||
|
mutationFn: (lineItemId: string) =>
|
||||||
|
posMutations.removeLineItem(currentTransactionId!, lineItemId),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(currentTransactionId!) })
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const discountMutation = useMutation({
|
||||||
|
mutationFn: (data: { lineItemId: string; amount: number; reason: string }) =>
|
||||||
|
posMutations.applyDiscount(currentTransactionId!, data),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(currentTransactionId!) })
|
||||||
|
setPriceItemId(null)
|
||||||
|
toast.success('Price adjusted')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const orderDiscountMutation = useMutation({
|
||||||
|
mutationFn: async ({ amount, reason }: { amount: number; reason: string }) => {
|
||||||
|
// Distribute discount proportionally across all line items
|
||||||
|
let remaining = amount
|
||||||
|
for (let i = 0; i < lineItems.length; i++) {
|
||||||
|
const item = lineItems[i]
|
||||||
|
const itemTotal = parseFloat(item.unitPrice) * item.qty
|
||||||
|
const isLast = i === lineItems.length - 1
|
||||||
|
const share = isLast ? remaining : Math.round((itemTotal / subtotal) * amount * 100) / 100
|
||||||
|
remaining -= share
|
||||||
|
if (share > 0) {
|
||||||
|
await posMutations.applyDiscount(currentTransactionId!, { lineItemId: item.id, amount: share, reason })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(currentTransactionId!) })
|
||||||
|
toast.success('Order discount applied')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const voidMutation = useMutation({
|
||||||
|
mutationFn: () => posMutations.void(currentTransactionId!),
|
||||||
|
onSuccess: () => {
|
||||||
|
setTransaction(null)
|
||||||
|
toast.success('Transaction voided')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const subtotal = parseFloat(transaction?.subtotal ?? '0')
|
||||||
|
const discountTotal = parseFloat(transaction?.discountTotal ?? '0')
|
||||||
|
const taxTotal = parseFloat(transaction?.taxTotal ?? '0')
|
||||||
|
const total = parseFloat(transaction?.total ?? '0')
|
||||||
|
const hasItems = lineItems.length > 0
|
||||||
|
const isPending = transaction?.status === 'pending'
|
||||||
|
|
||||||
|
function handlePaymentComplete() {
|
||||||
|
setPaymentMethod(null)
|
||||||
|
setTransaction(null)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full bg-card">
|
||||||
|
{/* Header */}
|
||||||
|
<div className="p-3 border-b border-border">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<h2 className="font-semibold text-base">Current Sale</h2>
|
||||||
|
{transaction && (
|
||||||
|
<span className="text-xs text-muted-foreground font-mono">
|
||||||
|
{transaction.transactionNumber}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
onClick={() => setCustomerOpen(true)}
|
||||||
|
className="flex items-start gap-1.5 mt-1 text-xs text-muted-foreground hover:text-foreground text-left"
|
||||||
|
>
|
||||||
|
<UserRound className="h-3 w-3 mt-0.5 shrink-0" />
|
||||||
|
{accountName ? (
|
||||||
|
<span>
|
||||||
|
<span className="font-medium text-foreground">{accountName}</span>
|
||||||
|
{(accountPhone || accountEmail) && (
|
||||||
|
<span className="block text-[11px]">
|
||||||
|
{[accountPhone, accountEmail].filter(Boolean).join(' · ')}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
|
) : (
|
||||||
|
<span>Walk-in — tap to add customer</span>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Line items */}
|
||||||
|
<div className="flex-1 overflow-y-auto">
|
||||||
|
{lineItems.length === 0 ? (
|
||||||
|
<div className="flex items-center justify-center h-full text-muted-foreground text-sm">
|
||||||
|
No items yet
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="divide-y divide-border">
|
||||||
|
{lineItems.map((item) => {
|
||||||
|
const unitPrice = parseFloat(item.unitPrice)
|
||||||
|
const discount = parseFloat(item.discountAmount)
|
||||||
|
const hasDiscount = discount > 0
|
||||||
|
const listTotal = unitPrice * item.qty
|
||||||
|
const discountPct = listTotal > 0 ? Math.round((discount / listTotal) * 100) : 0
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div key={item.id} className="flex items-center gap-2 px-3 py-2.5 group">
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<p className="text-sm font-medium truncate">{item.description}</p>
|
||||||
|
<div className="text-xs text-muted-foreground flex items-center gap-2">
|
||||||
|
<span>{item.qty} x ${unitPrice.toFixed(2)}</span>
|
||||||
|
{hasDiscount && (
|
||||||
|
<span className="text-green-600">-${discount.toFixed(2)} ({discountPct}%)</span>
|
||||||
|
)}
|
||||||
|
{parseFloat(item.taxAmount) > 0 && (
|
||||||
|
<span>tax ${parseFloat(item.taxAmount).toFixed(2)}</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span className="text-sm font-medium tabular-nums">
|
||||||
|
${parseFloat(item.lineTotal).toFixed(2)}
|
||||||
|
</span>
|
||||||
|
{isPending && (
|
||||||
|
<div className="flex items-center gap-0.5 opacity-0 group-hover:opacity-100 shrink-0">
|
||||||
|
<PriceAdjuster
|
||||||
|
item={item}
|
||||||
|
open={priceItemId === item.id}
|
||||||
|
onOpenChange={(o) => setPriceItemId(o ? item.id : null)}
|
||||||
|
onApply={(amount, reason) => {
|
||||||
|
const pct = listTotal > 0 ? (amount / listTotal) * 100 : 0
|
||||||
|
if (requiresDiscountOverride(pct)) {
|
||||||
|
setPendingDiscount({ lineItemId: item.id, amount, reason })
|
||||||
|
setDiscountOverrideOpen(true)
|
||||||
|
} else {
|
||||||
|
discountMutation.mutate({ lineItemId: item.id, amount, reason })
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
isPending={discountMutation.isPending}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
className="h-8 w-8"
|
||||||
|
onClick={() => removeItemMutation.mutate(item.id)}
|
||||||
|
disabled={removeItemMutation.isPending}
|
||||||
|
>
|
||||||
|
<X className="h-4 w-4 text-destructive" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Totals + payment */}
|
||||||
|
<div className="shrink-0 border-t border-border">
|
||||||
|
<div className="px-3 py-2 space-y-1 text-sm">
|
||||||
|
<div className="flex justify-between">
|
||||||
|
<span className="text-muted-foreground">Subtotal</span>
|
||||||
|
<span className="tabular-nums">${subtotal.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
{discountTotal > 0 && (
|
||||||
|
<div className="flex justify-between text-green-600">
|
||||||
|
<span>Discount</span>
|
||||||
|
<span className="tabular-nums">-${discountTotal.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="flex justify-between">
|
||||||
|
<span className="text-muted-foreground">Tax</span>
|
||||||
|
<span className="tabular-nums">${taxTotal.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
<Separator />
|
||||||
|
<div className="flex justify-between text-lg font-bold pt-1">
|
||||||
|
<span>Total</span>
|
||||||
|
<span className="tabular-nums">${total.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Order discount button */}
|
||||||
|
{hasItems && isPending && (
|
||||||
|
<div className="px-3 pb-1">
|
||||||
|
<OrderDiscountButton
|
||||||
|
subtotal={subtotal}
|
||||||
|
onApply={(amount, reason) => {
|
||||||
|
const pct = subtotal > 0 ? (amount / subtotal) * 100 : 0
|
||||||
|
if (requiresDiscountOverride(pct)) {
|
||||||
|
setPendingOrderDiscount({ amount, reason })
|
||||||
|
setDiscountOverrideOpen(true)
|
||||||
|
} else {
|
||||||
|
orderDiscountMutation.mutate({ amount, reason })
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
isPending={orderDiscountMutation.isPending}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Payment buttons */}
|
||||||
|
<div className="p-3 space-y-2">
|
||||||
|
{!drawerOpen && hasItems && (
|
||||||
|
<p className="text-xs text-destructive text-center">Open the drawer before accepting payment</p>
|
||||||
|
)}
|
||||||
|
<div className="grid grid-cols-2 gap-2">
|
||||||
|
<Button
|
||||||
|
className="h-12 text-sm gap-2"
|
||||||
|
disabled={!hasItems || !isPending || !drawerOpen}
|
||||||
|
onClick={() => setPaymentMethod('cash')}
|
||||||
|
>
|
||||||
|
<Banknote className="h-4 w-4" />
|
||||||
|
Cash
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
className="h-12 text-sm gap-2"
|
||||||
|
disabled={!hasItems || !isPending || !drawerOpen}
|
||||||
|
onClick={() => setPaymentMethod('card_present')}
|
||||||
|
>
|
||||||
|
<CreditCard className="h-4 w-4" />
|
||||||
|
Card
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="h-12 text-sm gap-2"
|
||||||
|
disabled={!hasItems || !isPending || !drawerOpen}
|
||||||
|
onClick={() => setPaymentMethod('check')}
|
||||||
|
>
|
||||||
|
<FileText className="h-4 w-4" />
|
||||||
|
Check
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="destructive"
|
||||||
|
className="h-12 text-sm gap-2"
|
||||||
|
disabled={!hasItems || !isPending}
|
||||||
|
onClick={() => {
|
||||||
|
if (requiresOverride('void_transaction')) {
|
||||||
|
setOverrideOpen(true)
|
||||||
|
} else {
|
||||||
|
voidMutation.mutate()
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Ban className="h-4 w-4" />
|
||||||
|
Void
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Payment dialog */}
|
||||||
|
{paymentMethod && transaction && (
|
||||||
|
<POSPaymentDialog
|
||||||
|
open={!!paymentMethod}
|
||||||
|
onOpenChange={(open) => { if (!open) setPaymentMethod(null) }}
|
||||||
|
paymentMethod={paymentMethod}
|
||||||
|
transaction={transaction}
|
||||||
|
onComplete={handlePaymentComplete}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Customer dialog */}
|
||||||
|
<POSCustomerDialog open={customerOpen} onOpenChange={setCustomerOpen} />
|
||||||
|
|
||||||
|
{/* Manager override for void */}
|
||||||
|
<ManagerOverrideDialog
|
||||||
|
open={overrideOpen}
|
||||||
|
onOpenChange={setOverrideOpen}
|
||||||
|
action="Void transaction"
|
||||||
|
onAuthorized={() => voidMutation.mutate()}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Manager override for discount */}
|
||||||
|
<ManagerOverrideDialog
|
||||||
|
open={discountOverrideOpen}
|
||||||
|
onOpenChange={setDiscountOverrideOpen}
|
||||||
|
action="Price adjustment"
|
||||||
|
onAuthorized={() => {
|
||||||
|
if (pendingDiscount) {
|
||||||
|
discountMutation.mutate(pendingDiscount)
|
||||||
|
setPendingDiscount(null)
|
||||||
|
} else if (pendingOrderDiscount) {
|
||||||
|
orderDiscountMutation.mutate(pendingOrderDiscount)
|
||||||
|
setPendingOrderDiscount(null)
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Order Discount Button ---
|
||||||
|
|
||||||
|
function OrderDiscountButton({ subtotal, onApply, isPending }: {
|
||||||
|
subtotal: number
|
||||||
|
onApply: (amount: number, reason: string) => void
|
||||||
|
isPending: boolean
|
||||||
|
}) {
|
||||||
|
const [open, setOpen] = useState(false)
|
||||||
|
const [mode, setMode] = useState<AdjustMode>('percent')
|
||||||
|
const [value, setValue] = useState('')
|
||||||
|
|
||||||
|
function calculate() {
|
||||||
|
const v = parseFloat(value) || 0
|
||||||
|
if (mode === 'amount_off') return Math.min(v, subtotal)
|
||||||
|
if (mode === 'set_price') return Math.max(0, subtotal - v)
|
||||||
|
return Math.round(subtotal * (v / 100) * 100) / 100
|
||||||
|
}
|
||||||
|
|
||||||
|
const discountAmount = calculate()
|
||||||
|
|
||||||
|
function handleApply() {
|
||||||
|
if (discountAmount <= 0) return
|
||||||
|
const reason = mode === 'percent' ? `${parseFloat(value)}% order discount` : mode === 'set_price' ? `Order total set to $${parseFloat(value).toFixed(2)}` : `$${parseFloat(value).toFixed(2)} order discount`
|
||||||
|
onApply(discountAmount, reason)
|
||||||
|
setValue('')
|
||||||
|
setOpen(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Popover open={open} onOpenChange={(o) => { setOpen(o); if (!o) setValue('') }}>
|
||||||
|
<PopoverTrigger asChild>
|
||||||
|
<Button variant="outline" size="sm" className="w-full gap-2 text-xs h-8">
|
||||||
|
<Tag className="h-3 w-3" />Order Discount
|
||||||
|
</Button>
|
||||||
|
</PopoverTrigger>
|
||||||
|
<PopoverContent className="w-64 p-3" side="top" align="center">
|
||||||
|
<div className="space-y-3">
|
||||||
|
<div className="text-xs text-muted-foreground">
|
||||||
|
Subtotal: <span className="font-medium text-foreground">${subtotal.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex rounded-md border overflow-hidden text-xs">
|
||||||
|
{([
|
||||||
|
{ key: 'percent' as const, label: '% Off' },
|
||||||
|
{ key: 'amount_off' as const, label: '$ Off' },
|
||||||
|
{ key: 'set_price' as const, label: 'Set Total' },
|
||||||
|
]).map((m) => (
|
||||||
|
<button
|
||||||
|
key={m.key}
|
||||||
|
type="button"
|
||||||
|
className={`flex-1 py-1.5 transition-colors ${mode === m.key ? 'bg-primary text-primary-foreground' : 'hover:bg-muted'}`}
|
||||||
|
onClick={() => { setMode(m.key); setValue('') }}
|
||||||
|
>
|
||||||
|
{m.label}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0"
|
||||||
|
placeholder={mode === 'percent' ? 'e.g. 10' : '0.00'}
|
||||||
|
value={value}
|
||||||
|
onChange={(e) => setValue(e.target.value)}
|
||||||
|
className="h-9"
|
||||||
|
autoFocus
|
||||||
|
onKeyDown={(e) => { if (e.key === 'Enter') handleApply() }}
|
||||||
|
/>
|
||||||
|
{value && discountAmount > 0 && (
|
||||||
|
<div className="text-xs flex justify-between font-medium">
|
||||||
|
<span className="text-green-600">-${discountAmount.toFixed(2)}</span>
|
||||||
|
<span>New total: ${(subtotal - discountAmount).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<Button size="sm" className="w-full" onClick={handleApply} disabled={isPending || discountAmount <= 0}>
|
||||||
|
{isPending ? 'Applying...' : 'Apply Discount'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</PopoverContent>
|
||||||
|
</Popover>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Price Adjuster Popover ---
|
||||||
|
|
||||||
|
type AdjustMode = 'amount_off' | 'set_price' | 'percent'
|
||||||
|
|
||||||
|
function PriceAdjuster({ item, open, onOpenChange, onApply, isPending }: {
|
||||||
|
item: TransactionLineItem
|
||||||
|
open: boolean
|
||||||
|
onOpenChange: (open: boolean) => void
|
||||||
|
onApply: (amount: number, reason: string) => void
|
||||||
|
isPending: boolean
|
||||||
|
}) {
|
||||||
|
const [mode, setMode] = useState<AdjustMode>('percent')
|
||||||
|
const [value, setValue] = useState('')
|
||||||
|
|
||||||
|
const unitPrice = parseFloat(item.unitPrice)
|
||||||
|
const listTotal = unitPrice * item.qty
|
||||||
|
|
||||||
|
function calculate(): { discountAmount: number; salePrice: number; pct: number } {
|
||||||
|
const v = parseFloat(value) || 0
|
||||||
|
if (mode === 'amount_off') {
|
||||||
|
const d = Math.min(v, listTotal)
|
||||||
|
return { discountAmount: d, salePrice: listTotal - d, pct: listTotal > 0 ? (d / listTotal) * 100 : 0 }
|
||||||
|
}
|
||||||
|
if (mode === 'set_price') {
|
||||||
|
const d = Math.max(0, listTotal - v)
|
||||||
|
return { discountAmount: d, salePrice: v, pct: listTotal > 0 ? (d / listTotal) * 100 : 0 }
|
||||||
|
}
|
||||||
|
// percent
|
||||||
|
const d = Math.round(listTotal * (v / 100) * 100) / 100
|
||||||
|
return { discountAmount: d, salePrice: listTotal - d, pct: v }
|
||||||
|
}
|
||||||
|
|
||||||
|
const calc = calculate()
|
||||||
|
|
||||||
|
function handleApply() {
|
||||||
|
if (calc.discountAmount <= 0) return
|
||||||
|
const reason = mode === 'percent' ? `${parseFloat(value)}% off` : mode === 'set_price' ? `Price set to $${parseFloat(value).toFixed(2)}` : `$${parseFloat(value).toFixed(2)} off`
|
||||||
|
onApply(calc.discountAmount, reason)
|
||||||
|
setValue('')
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Popover open={open} onOpenChange={(o) => { onOpenChange(o); if (!o) setValue('') }}>
|
||||||
|
<PopoverTrigger asChild>
|
||||||
|
<Button variant="ghost" size="icon" className="h-8 w-8">
|
||||||
|
<Tag className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
</PopoverTrigger>
|
||||||
|
<PopoverContent className="w-64 p-3" side="left" align="start">
|
||||||
|
<div className="space-y-3">
|
||||||
|
<div className="text-xs text-muted-foreground">
|
||||||
|
List: <span className="font-medium text-foreground">${listTotal.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Mode tabs */}
|
||||||
|
<div className="flex rounded-md border overflow-hidden text-xs">
|
||||||
|
{([
|
||||||
|
{ key: 'percent' as const, label: '% Off' },
|
||||||
|
{ key: 'amount_off' as const, label: '$ Off' },
|
||||||
|
{ key: 'set_price' as const, label: 'Set Price' },
|
||||||
|
]).map((m) => (
|
||||||
|
<button
|
||||||
|
key={m.key}
|
||||||
|
type="button"
|
||||||
|
className={`flex-1 py-1.5 transition-colors ${mode === m.key ? 'bg-primary text-primary-foreground' : 'hover:bg-muted'}`}
|
||||||
|
onClick={() => { setMode(m.key); setValue('') }}
|
||||||
|
>
|
||||||
|
{m.label}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0"
|
||||||
|
placeholder={mode === 'percent' ? 'e.g. 10' : '0.00'}
|
||||||
|
value={value}
|
||||||
|
onChange={(e) => setValue(e.target.value)}
|
||||||
|
className="h-9"
|
||||||
|
autoFocus
|
||||||
|
onKeyDown={(e) => { if (e.key === 'Enter') handleApply() }}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{value && parseFloat(value) > 0 && (
|
||||||
|
<div className="text-xs space-y-0.5">
|
||||||
|
<div className="flex justify-between">
|
||||||
|
<span className="text-muted-foreground">Discount</span>
|
||||||
|
<span className="text-green-600">-${calc.discountAmount.toFixed(2)} ({calc.pct.toFixed(0)}%)</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between font-medium">
|
||||||
|
<span>Sale Price</span>
|
||||||
|
<span>${calc.salePrice.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
className="w-full"
|
||||||
|
onClick={handleApply}
|
||||||
|
disabled={isPending || !value || calc.discountAmount <= 0}
|
||||||
|
>
|
||||||
|
{isPending ? 'Applying...' : 'Apply'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</PopoverContent>
|
||||||
|
</Popover>
|
||||||
|
)
|
||||||
|
}
|
||||||
254
packages/admin/src/components/pos/pos-customer-dialog.tsx
Normal file
254
packages/admin/src/components/pos/pos-customer-dialog.tsx
Normal file
@@ -0,0 +1,254 @@
|
|||||||
|
import { useState, useCallback } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { Search, X, History } from 'lucide-react'
|
||||||
|
|
||||||
|
interface Account {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
email: string | null
|
||||||
|
phone: string | null
|
||||||
|
accountNumber: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TransactionLineItem {
|
||||||
|
id: string
|
||||||
|
description: string
|
||||||
|
qty: number
|
||||||
|
unitPrice: string
|
||||||
|
lineTotal: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Transaction {
|
||||||
|
id: string
|
||||||
|
transactionNumber: string
|
||||||
|
total: string
|
||||||
|
status: string
|
||||||
|
paymentMethod: string | null
|
||||||
|
transactionType: string
|
||||||
|
completedAt: string | null
|
||||||
|
createdAt: string
|
||||||
|
lineItems?: TransactionLineItem[]
|
||||||
|
}
|
||||||
|
|
||||||
|
function accountSearchOptions(search: string) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['pos', 'accounts', search],
|
||||||
|
queryFn: () => api.get<{ data: Account[] }>('/v1/accounts', { q: search, limit: 10 }),
|
||||||
|
enabled: search.length >= 2,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function customerHistoryOptions(accountId: string | null, itemSearch?: string) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['pos', 'customer-history', accountId, itemSearch ?? ''],
|
||||||
|
queryFn: () => api.get<{ data: Transaction[] }>('/v1/transactions', {
|
||||||
|
accountId,
|
||||||
|
limit: 10,
|
||||||
|
sort: 'created_at',
|
||||||
|
order: 'desc',
|
||||||
|
...(itemSearch ? { itemSearch } : {}),
|
||||||
|
}),
|
||||||
|
enabled: !!accountId,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
interface POSCustomerDialogProps {
|
||||||
|
open: boolean
|
||||||
|
onOpenChange: (open: boolean) => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSCustomerDialog({ open, onOpenChange }: POSCustomerDialogProps) {
|
||||||
|
const { accountId, accountName, setAccount, clearAccount } = usePOSStore()
|
||||||
|
const [search, setSearch] = useState('')
|
||||||
|
const [showHistory, setShowHistory] = useState(false)
|
||||||
|
const [historySearch, setHistorySearch] = useState('')
|
||||||
|
|
||||||
|
const { data: searchData, isLoading } = useQuery(accountSearchOptions(search))
|
||||||
|
const accounts = searchData?.data ?? []
|
||||||
|
|
||||||
|
const { data: historyData } = useQuery(customerHistoryOptions(showHistory ? accountId : null, historySearch || undefined))
|
||||||
|
const history = historyData?.data ?? []
|
||||||
|
|
||||||
|
function handleSelect(account: Account) {
|
||||||
|
setAccount(account.id, account.name, account.phone, account.email)
|
||||||
|
setSearch('')
|
||||||
|
setShowHistory(false)
|
||||||
|
onOpenChange(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleClear() {
|
||||||
|
clearAccount()
|
||||||
|
setSearch('')
|
||||||
|
setShowHistory(false)
|
||||||
|
onOpenChange(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
const [expandedTxn, setExpandedTxn] = useState<string | null>(null)
|
||||||
|
|
||||||
|
// Fetch detail for expanded transaction
|
||||||
|
const { data: txnDetail } = useQuery({
|
||||||
|
queryKey: ['pos', 'transaction-detail', expandedTxn],
|
||||||
|
queryFn: () => api.get<Transaction>(`/v1/transactions/${expandedTxn}`),
|
||||||
|
enabled: !!expandedTxn,
|
||||||
|
})
|
||||||
|
|
||||||
|
const toggleExpand = useCallback((id: string) => {
|
||||||
|
setExpandedTxn((prev) => prev === id ? null : id)
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
// History view
|
||||||
|
if (showHistory && accountId) {
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-md max-h-[80vh] flex flex-col">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle className="flex items-center justify-between">
|
||||||
|
<span>Order History — {accountName}</span>
|
||||||
|
<Button variant="ghost" size="sm" onClick={() => { setShowHistory(false); setExpandedTxn(null) }}>Back</Button>
|
||||||
|
</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
{/* Search items in history */}
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
value={historySearch}
|
||||||
|
onChange={(e) => setHistorySearch(e.target.value)}
|
||||||
|
placeholder="Search items (e.g. strings, bow)..."
|
||||||
|
className="pl-10 h-10 text-sm"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex-1 overflow-y-auto">
|
||||||
|
{history.length === 0 ? (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-8">
|
||||||
|
{historySearch ? `No orders with "${historySearch}"` : 'No transactions found'}
|
||||||
|
</p>
|
||||||
|
) : (
|
||||||
|
<div className="divide-y divide-border">
|
||||||
|
{history.map((txn) => (
|
||||||
|
<div key={txn.id}>
|
||||||
|
<button
|
||||||
|
onClick={() => toggleExpand(txn.id)}
|
||||||
|
className="w-full text-left py-2.5 px-1 hover:bg-accent/50 rounded transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<span className="text-sm font-mono">{txn.transactionNumber}</span>
|
||||||
|
<span className="text-sm font-semibold">${parseFloat(txn.total).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2 mt-0.5">
|
||||||
|
<Badge variant={txn.status === 'completed' ? 'default' : 'outline'} className="text-[10px]">
|
||||||
|
{txn.status}
|
||||||
|
</Badge>
|
||||||
|
{txn.paymentMethod && (
|
||||||
|
<span className="text-xs text-muted-foreground">{txn.paymentMethod.replace('_', ' ')}</span>
|
||||||
|
)}
|
||||||
|
<span className="text-xs text-muted-foreground ml-auto">
|
||||||
|
{new Date(txn.completedAt ?? txn.createdAt).toLocaleDateString()}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
{expandedTxn === txn.id && txnDetail?.lineItems && (
|
||||||
|
<div className="px-3 pb-2 space-y-1">
|
||||||
|
{txnDetail.lineItems.map((item) => (
|
||||||
|
<div key={item.id} className="flex justify-between text-xs text-muted-foreground">
|
||||||
|
<span>{item.qty} x {item.description}</span>
|
||||||
|
<span>${parseFloat(item.lineTotal).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-md max-h-[80vh] flex flex-col">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Customer</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
{/* Current selection */}
|
||||||
|
{accountId && (
|
||||||
|
<>
|
||||||
|
<div className="flex items-center justify-between p-3 rounded-md border bg-muted/30">
|
||||||
|
<div>
|
||||||
|
<p className="font-medium text-sm">{accountName}</p>
|
||||||
|
<p className="text-xs text-muted-foreground">Selected customer</p>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-1">
|
||||||
|
<Button variant="ghost" size="sm" onClick={() => setShowHistory(true)}>
|
||||||
|
<History className="h-4 w-4 mr-1" />
|
||||||
|
History
|
||||||
|
</Button>
|
||||||
|
<Button variant="ghost" size="icon" className="h-8 w-8" onClick={handleClear}>
|
||||||
|
<X className="h-4 w-4 text-destructive" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Separator />
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Search */}
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
value={search}
|
||||||
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
placeholder="Search by name, phone, email, account #..."
|
||||||
|
className="pl-10 h-11"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Results */}
|
||||||
|
<div className="flex-1 overflow-y-auto">
|
||||||
|
{isLoading ? (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">Searching...</p>
|
||||||
|
) : search.length >= 2 && accounts.length === 0 ? (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">No customers found</p>
|
||||||
|
) : (
|
||||||
|
<div className="divide-y divide-border">
|
||||||
|
{accounts.map((account) => (
|
||||||
|
<button
|
||||||
|
key={account.id}
|
||||||
|
onClick={() => handleSelect(account)}
|
||||||
|
className="w-full text-left px-2 py-3 hover:bg-accent rounded-md transition-colors"
|
||||||
|
>
|
||||||
|
<p className="font-medium text-sm">{account.name}</p>
|
||||||
|
<div className="flex gap-3 text-xs text-muted-foreground mt-0.5">
|
||||||
|
{account.phone && <span>{account.phone}</span>}
|
||||||
|
{account.email && <span>{account.email}</span>}
|
||||||
|
{account.accountNumber && <span>#{account.accountNumber}</span>}
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Walk-in button */}
|
||||||
|
{accountId && (
|
||||||
|
<Button variant="outline" className="w-full h-11" onClick={handleClear}>
|
||||||
|
Clear Customer (Walk-in)
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
471
packages/admin/src/components/pos/pos-drawer-dialog.tsx
Normal file
471
packages/admin/src/components/pos/pos-drawer-dialog.tsx
Normal file
@@ -0,0 +1,471 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { posMutations, posKeys, drawerReportOptions, type DrawerSession } from '@/api/pos'
|
||||||
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { ArrowDownToLine, ArrowUpFromLine } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
import { ManagerOverrideDialog, requiresOverride } from './pos-manager-override'
|
||||||
|
|
||||||
|
interface POSDrawerDialogProps {
|
||||||
|
open: boolean
|
||||||
|
onOpenChange: (open: boolean) => void
|
||||||
|
drawer: DrawerSession | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSDrawerDialog({ open, onOpenChange, drawer }: POSDrawerDialogProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const { locationId, registerId, setDrawerSession } = usePOSStore()
|
||||||
|
const isOpen = drawer?.status === 'open'
|
||||||
|
|
||||||
|
const [openingBalance, setOpeningBalance] = useState('200')
|
||||||
|
const [closingBalance, setClosingBalance] = useState('')
|
||||||
|
const [notes, setNotes] = useState('')
|
||||||
|
const [adjustView, setAdjustView] = useState<'cash_in' | 'cash_out' | null>(null)
|
||||||
|
const [adjAmount, setAdjAmount] = useState('')
|
||||||
|
const [adjReason, setAdjReason] = useState('')
|
||||||
|
const [overrideOpen, setOverrideOpen] = useState(false)
|
||||||
|
const [pendingAdjustView, setPendingAdjustView] = useState<'cash_in' | 'cash_out' | null>(null)
|
||||||
|
const [showZReport, setShowZReport] = useState(false)
|
||||||
|
const [closedDrawerId, setClosedDrawerId] = useState<string | null>(null)
|
||||||
|
const [showXReport, setShowXReport] = useState(false)
|
||||||
|
|
||||||
|
// Z Report data (after close)
|
||||||
|
const { data: reportData } = useQuery(drawerReportOptions(closedDrawerId))
|
||||||
|
|
||||||
|
// X Report data (live, for open drawer)
|
||||||
|
const { data: xReportData } = useQuery(drawerReportOptions(showXReport ? drawer?.id ?? null : null))
|
||||||
|
|
||||||
|
// Fetch adjustments for open drawer
|
||||||
|
const { data: adjData } = useQuery({
|
||||||
|
queryKey: posKeys.drawerAdjustments(drawer?.id ?? ''),
|
||||||
|
queryFn: () => posMutations.getAdjustments(drawer!.id),
|
||||||
|
enabled: !!drawer?.id && isOpen,
|
||||||
|
})
|
||||||
|
const adjustments = adjData?.data ?? []
|
||||||
|
|
||||||
|
const openMutation = useMutation({
|
||||||
|
mutationFn: () =>
|
||||||
|
posMutations.openDrawer({
|
||||||
|
locationId: locationId ?? undefined,
|
||||||
|
registerId: registerId ?? undefined,
|
||||||
|
openingBalance: parseFloat(openingBalance) || 0,
|
||||||
|
}),
|
||||||
|
onSuccess: async (session) => {
|
||||||
|
setDrawerSession(session.id)
|
||||||
|
await queryClient.invalidateQueries({ queryKey: posKeys.drawer(locationId ?? '') })
|
||||||
|
toast.success('Drawer opened')
|
||||||
|
onOpenChange(false)
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const closeMutation = useMutation({
|
||||||
|
mutationFn: () =>
|
||||||
|
posMutations.closeDrawer(drawer!.id, {
|
||||||
|
closingBalance: parseFloat(closingBalance) || 0,
|
||||||
|
notes: notes || undefined,
|
||||||
|
}),
|
||||||
|
onSuccess: async (session) => {
|
||||||
|
setDrawerSession(null)
|
||||||
|
const overShort = parseFloat(session.overShort ?? '0')
|
||||||
|
if (Math.abs(overShort) < 0.01) {
|
||||||
|
toast.success('Drawer closed - balanced')
|
||||||
|
} else {
|
||||||
|
toast.warning(`Drawer closed - ${overShort > 0 ? 'over' : 'short'} $${Math.abs(overShort).toFixed(2)}`)
|
||||||
|
}
|
||||||
|
// Show Z report
|
||||||
|
setClosedDrawerId(session.id)
|
||||||
|
setShowZReport(true)
|
||||||
|
await queryClient.invalidateQueries({ queryKey: posKeys.drawer(locationId ?? '') })
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const adjustMutation = useMutation({
|
||||||
|
mutationFn: () =>
|
||||||
|
posMutations.addAdjustment(drawer!.id, {
|
||||||
|
type: adjustView!,
|
||||||
|
amount: parseFloat(adjAmount) || 0,
|
||||||
|
reason: adjReason,
|
||||||
|
}),
|
||||||
|
onSuccess: (adj) => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.drawerAdjustments(drawer!.id) })
|
||||||
|
toast.success(`${adj.type === 'cash_in' ? 'Cash added' : 'Cash removed'}: $${parseFloat(adj.amount).toFixed(2)}`)
|
||||||
|
setAdjustView(null)
|
||||||
|
setAdjAmount('')
|
||||||
|
setAdjReason('')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
// Z Report view (shown after drawer close)
|
||||||
|
if (showZReport && reportData) {
|
||||||
|
const r = reportData
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Dialog open={open} onOpenChange={(o) => { onOpenChange(o); if (!o) { setShowZReport(false); setClosedDrawerId(null) } }}>
|
||||||
|
<DialogContent className="max-w-md max-h-[90vh] overflow-y-auto">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Z Report — Drawer Closed</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
<DrawerReportView report={r} />
|
||||||
|
<Button variant="outline" className="w-full" onClick={() => { setShowZReport(false); setClosedDrawerId(null); onOpenChange(false) }}>
|
||||||
|
Done
|
||||||
|
</Button>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// X Report view (mid-shift snapshot)
|
||||||
|
if (showXReport && xReportData) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-md max-h-[90vh] overflow-y-auto">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>X Report — Current Shift</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
<DrawerReportView report={xReportData} />
|
||||||
|
<Button variant="outline" className="w-full" onClick={() => setShowXReport(false)}>
|
||||||
|
Back
|
||||||
|
</Button>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Adjustment entry view
|
||||||
|
if (adjustView && isOpen) {
|
||||||
|
const isCashIn = adjustView === 'cash_in'
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-sm">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>{isCashIn ? 'Cash In' : 'Cash Out'}</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Amount *</Label>
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0.01"
|
||||||
|
value={adjAmount}
|
||||||
|
onChange={(e) => setAdjAmount(e.target.value)}
|
||||||
|
placeholder="0.00"
|
||||||
|
className="h-11 text-lg"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Reason *</Label>
|
||||||
|
<Input
|
||||||
|
value={adjReason}
|
||||||
|
onChange={(e) => setAdjReason(e.target.value)}
|
||||||
|
placeholder={isCashIn ? 'e.g. Extra change' : 'e.g. Bank deposit'}
|
||||||
|
className="h-11"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button
|
||||||
|
className="flex-1 h-12"
|
||||||
|
onClick={() => adjustMutation.mutate()}
|
||||||
|
disabled={!adjAmount || !adjReason || adjustMutation.isPending}
|
||||||
|
>
|
||||||
|
{adjustMutation.isPending ? 'Saving...' : isCashIn ? 'Add Cash' : 'Remove Cash'}
|
||||||
|
</Button>
|
||||||
|
<Button variant="outline" className="h-12" onClick={() => setAdjustView(null)}>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-sm">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>{isOpen ? 'Drawer' : 'Open Drawer'}</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
{isOpen ? (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="text-sm space-y-1">
|
||||||
|
<div className="flex justify-between">
|
||||||
|
<span className="text-muted-foreground">Opening Balance</span>
|
||||||
|
<span>${parseFloat(drawer!.openingBalance).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between">
|
||||||
|
<span className="text-muted-foreground">Opened</span>
|
||||||
|
<span>{new Date(drawer!.openedAt).toLocaleTimeString()}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Cash In / Cash Out buttons */}
|
||||||
|
<div className="grid grid-cols-2 gap-2">
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="h-11 gap-2"
|
||||||
|
onClick={() => {
|
||||||
|
if (requiresOverride('cash_in_out')) {
|
||||||
|
setPendingAdjustView('cash_in')
|
||||||
|
setOverrideOpen(true)
|
||||||
|
} else {
|
||||||
|
setAdjustView('cash_in')
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ArrowDownToLine className="h-4 w-4 text-green-600" />
|
||||||
|
Cash In
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="h-11 gap-2"
|
||||||
|
onClick={() => {
|
||||||
|
if (requiresOverride('cash_in_out')) {
|
||||||
|
setPendingAdjustView('cash_out')
|
||||||
|
setOverrideOpen(true)
|
||||||
|
} else {
|
||||||
|
setAdjustView('cash_out')
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ArrowUpFromLine className="h-4 w-4 text-red-600" />
|
||||||
|
Cash Out
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* X Report button */}
|
||||||
|
<Button variant="outline" className="w-full h-10 gap-2 text-sm" onClick={() => setShowXReport(true)}>
|
||||||
|
Current Shift Report
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
{/* Adjustment history */}
|
||||||
|
{adjustments.length > 0 && (
|
||||||
|
<>
|
||||||
|
<Separator />
|
||||||
|
<div className="space-y-1">
|
||||||
|
<span className="text-xs font-medium text-muted-foreground">Adjustments</span>
|
||||||
|
{adjustments.map((adj) => (
|
||||||
|
<div key={adj.id} className="flex items-center justify-between text-sm py-1">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Badge variant={adj.type === 'cash_in' ? 'default' : 'destructive'} className="text-[10px]">
|
||||||
|
{adj.type === 'cash_in' ? 'IN' : 'OUT'}
|
||||||
|
</Badge>
|
||||||
|
<span className="text-muted-foreground truncate max-w-[140px]">{adj.reason}</span>
|
||||||
|
</div>
|
||||||
|
<span className={adj.type === 'cash_in' ? 'text-green-600' : 'text-red-600'}>
|
||||||
|
{adj.type === 'cash_in' ? '+' : '-'}${parseFloat(adj.amount).toFixed(2)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
{/* Close drawer */}
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Closing Balance *</Label>
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0"
|
||||||
|
value={closingBalance}
|
||||||
|
onChange={(e) => setClosingBalance(e.target.value)}
|
||||||
|
placeholder="Count the cash in the drawer"
|
||||||
|
className="h-11 text-lg"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Notes</Label>
|
||||||
|
<Input
|
||||||
|
value={notes}
|
||||||
|
onChange={(e) => setNotes(e.target.value)}
|
||||||
|
placeholder="End of shift notes"
|
||||||
|
className="h-11"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<Button
|
||||||
|
className="w-full h-12"
|
||||||
|
onClick={() => closeMutation.mutate()}
|
||||||
|
disabled={!closingBalance || closeMutation.isPending}
|
||||||
|
>
|
||||||
|
{closeMutation.isPending ? 'Closing...' : 'Close Drawer'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Opening Balance *</Label>
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0"
|
||||||
|
value={openingBalance}
|
||||||
|
onChange={(e) => setOpeningBalance(e.target.value)}
|
||||||
|
placeholder="Starting cash amount"
|
||||||
|
className="h-11 text-lg"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<Button
|
||||||
|
className="w-full h-12"
|
||||||
|
onClick={() => openMutation.mutate()}
|
||||||
|
disabled={!openingBalance || openMutation.isPending}
|
||||||
|
>
|
||||||
|
{openMutation.isPending ? 'Opening...' : 'Open Drawer'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
<ManagerOverrideDialog
|
||||||
|
open={overrideOpen}
|
||||||
|
onOpenChange={setOverrideOpen}
|
||||||
|
action={pendingAdjustView === 'cash_in' ? 'Cash In' : 'Cash Out'}
|
||||||
|
onAuthorized={() => {
|
||||||
|
if (pendingAdjustView) setAdjustView(pendingAdjustView)
|
||||||
|
setPendingAdjustView(null)
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Shared report view used by both X and Z reports ---
|
||||||
|
|
||||||
|
const PAYMENT_LABELS: Record<string, string> = {
|
||||||
|
cash: 'Cash',
|
||||||
|
card_present: 'Card (Present)',
|
||||||
|
card_keyed: 'Card (Keyed)',
|
||||||
|
check: 'Check',
|
||||||
|
account_charge: 'Account',
|
||||||
|
unknown: 'Other',
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerReportView({ report }: { report: any }) {
|
||||||
|
const { session, sales, payments, discounts, cash, adjustments } = report
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="space-y-4 text-sm">
|
||||||
|
{/* Session info */}
|
||||||
|
<div className="space-y-1">
|
||||||
|
{session.register && <div className="flex justify-between"><span className="text-muted-foreground">Register</span><span>{session.register.name}</span></div>}
|
||||||
|
{session.openedBy && <div className="flex justify-between"><span className="text-muted-foreground">Opened by</span><span>{session.openedBy.firstName} {session.openedBy.lastName}</span></div>}
|
||||||
|
<div className="flex justify-between"><span className="text-muted-foreground">Opened</span><span>{new Date(session.openedAt).toLocaleString()}</span></div>
|
||||||
|
{session.closedAt && (
|
||||||
|
<>
|
||||||
|
{session.closedBy && <div className="flex justify-between"><span className="text-muted-foreground">Closed by</span><span>{session.closedBy.firstName} {session.closedBy.lastName}</span></div>}
|
||||||
|
<div className="flex justify-between"><span className="text-muted-foreground">Closed</span><span>{new Date(session.closedAt).toLocaleString()}</span></div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
{/* Sales */}
|
||||||
|
<div>
|
||||||
|
<h4 className="font-semibold text-xs uppercase text-muted-foreground mb-2">Sales</h4>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<div className="flex justify-between"><span>Transactions</span><span>{sales.transactionCount}</span></div>
|
||||||
|
<div className="flex justify-between"><span>Gross Sales</span><span className="tabular-nums">${sales.grossSales.toFixed(2)}</span></div>
|
||||||
|
{sales.refundTotal > 0 && <div className="flex justify-between text-red-600"><span>Refunds</span><span className="tabular-nums">-${sales.refundTotal.toFixed(2)}</span></div>}
|
||||||
|
<div className="flex justify-between font-medium"><span>Net Sales</span><span className="tabular-nums">${sales.netSales.toFixed(2)}</span></div>
|
||||||
|
{sales.voidCount > 0 && <div className="flex justify-between text-muted-foreground"><span>Voided</span><span>{sales.voidCount}</span></div>}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
{/* Payment breakdown */}
|
||||||
|
<div>
|
||||||
|
<h4 className="font-semibold text-xs uppercase text-muted-foreground mb-2">Payments</h4>
|
||||||
|
<div className="space-y-1">
|
||||||
|
{Object.entries(payments as Record<string, { count: number; total: number }>).map(([method, data]) => (
|
||||||
|
<div key={method} className="flex justify-between">
|
||||||
|
<span>{PAYMENT_LABELS[method] ?? method} ({data.count})</span>
|
||||||
|
<span className="tabular-nums">${data.total.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
{Object.keys(payments).length === 0 && <p className="text-muted-foreground">No payments</p>}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Discounts */}
|
||||||
|
{discounts.count > 0 && (
|
||||||
|
<>
|
||||||
|
<Separator />
|
||||||
|
<div>
|
||||||
|
<h4 className="font-semibold text-xs uppercase text-muted-foreground mb-2">Discounts</h4>
|
||||||
|
<div className="flex justify-between"><span>Total ({discounts.count})</span><span className="tabular-nums text-green-600">-${discounts.total.toFixed(2)}</span></div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
{/* Cash accountability */}
|
||||||
|
<div>
|
||||||
|
<h4 className="font-semibold text-xs uppercase text-muted-foreground mb-2">Cash</h4>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<div className="flex justify-between"><span>Opening Balance</span><span className="tabular-nums">${cash.openingBalance.toFixed(2)}</span></div>
|
||||||
|
<div className="flex justify-between"><span>Cash Sales</span><span className="tabular-nums">${cash.cashSales.toFixed(2)}</span></div>
|
||||||
|
{cash.cashIn > 0 && <div className="flex justify-between text-green-600"><span>Cash In</span><span className="tabular-nums">+${cash.cashIn.toFixed(2)}</span></div>}
|
||||||
|
{cash.cashOut > 0 && <div className="flex justify-between text-red-600"><span>Cash Out</span><span className="tabular-nums">-${cash.cashOut.toFixed(2)}</span></div>}
|
||||||
|
<Separator />
|
||||||
|
<div className="flex justify-between font-medium"><span>Expected</span><span className="tabular-nums">${cash.expectedBalance.toFixed(2)}</span></div>
|
||||||
|
{cash.actualBalance !== null && (
|
||||||
|
<>
|
||||||
|
<div className="flex justify-between"><span>Actual Count</span><span className="tabular-nums">${cash.actualBalance.toFixed(2)}</span></div>
|
||||||
|
<div className={`flex justify-between font-bold ${cash.overShort === 0 ? 'text-green-600' : 'text-red-600'}`}>
|
||||||
|
<span>{cash.overShort! >= 0 ? 'Over' : 'Short'}</span>
|
||||||
|
<span className="tabular-nums">${Math.abs(cash.overShort!).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Adjustments */}
|
||||||
|
{adjustments.length > 0 && (
|
||||||
|
<>
|
||||||
|
<Separator />
|
||||||
|
<div>
|
||||||
|
<h4 className="font-semibold text-xs uppercase text-muted-foreground mb-2">Adjustments</h4>
|
||||||
|
<div className="space-y-1">
|
||||||
|
{adjustments.map((adj: any) => (
|
||||||
|
<div key={adj.id} className="flex items-center justify-between text-xs">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Badge variant={adj.type === 'cash_in' ? 'default' : 'destructive'} className="text-[10px]">
|
||||||
|
{adj.type === 'cash_in' ? 'IN' : 'OUT'}
|
||||||
|
</Badge>
|
||||||
|
<span className="text-muted-foreground truncate max-w-[150px]">{adj.reason}</span>
|
||||||
|
</div>
|
||||||
|
<span className="tabular-nums">${parseFloat(adj.amount).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
285
packages/admin/src/components/pos/pos-item-panel.tsx
Normal file
285
packages/admin/src/components/pos/pos-item-panel.tsx
Normal file
@@ -0,0 +1,285 @@
|
|||||||
|
import { useState, useRef, useCallback } from 'react'
|
||||||
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { productSearchOptions, posMutations, posKeys, type Transaction, type Product } from '@/api/pos'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { Skeleton } from '@/components/ui/skeleton'
|
||||||
|
import { Search, ScanBarcode, Wrench, PenLine, ClipboardList } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
import { POSTransactionsDialog } from './pos-transactions-dialog'
|
||||||
|
import { POSRepairDialog } from './pos-repair-dialog'
|
||||||
|
|
||||||
|
interface POSItemPanelProps {
|
||||||
|
transaction: Transaction | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSItemPanel({ transaction: _transaction }: POSItemPanelProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const { currentTransactionId, setTransaction, locationId, accountId } = usePOSStore()
|
||||||
|
const [search, setSearch] = useState('')
|
||||||
|
const [customOpen, setCustomOpen] = useState(false)
|
||||||
|
const [txnDialogOpen, setTxnDialogOpen] = useState(false)
|
||||||
|
const [repairOpen, setRepairOpen] = useState(false)
|
||||||
|
const [customDesc, setCustomDesc] = useState('')
|
||||||
|
const [customPrice, setCustomPrice] = useState('')
|
||||||
|
const [customQty, setCustomQty] = useState('1')
|
||||||
|
const searchRef = useRef<HTMLInputElement>(null)
|
||||||
|
|
||||||
|
// Debounced product search
|
||||||
|
const { data: productsData, isLoading: searchLoading } = useQuery({
|
||||||
|
...productSearchOptions(search),
|
||||||
|
enabled: search.length >= 1,
|
||||||
|
})
|
||||||
|
const products = productsData?.data ?? []
|
||||||
|
|
||||||
|
// Add line item mutation
|
||||||
|
const addItemMutation = useMutation({
|
||||||
|
mutationFn: async (product: Product) => {
|
||||||
|
let txnId = currentTransactionId
|
||||||
|
// Auto-create transaction if none exists
|
||||||
|
if (!txnId) {
|
||||||
|
const txn = await posMutations.createTransaction({
|
||||||
|
transactionType: 'sale',
|
||||||
|
locationId: locationId ?? undefined,
|
||||||
|
accountId: accountId ?? undefined,
|
||||||
|
})
|
||||||
|
txnId = txn.id
|
||||||
|
setTransaction(txnId)
|
||||||
|
}
|
||||||
|
return posMutations.addLineItem(txnId, {
|
||||||
|
productId: product.id,
|
||||||
|
description: product.name,
|
||||||
|
qty: 1,
|
||||||
|
unitPrice: parseFloat(product.price ?? '0'),
|
||||||
|
})
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
const txnId = usePOSStore.getState().currentTransactionId
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(txnId ?? '') })
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
// Custom item mutation
|
||||||
|
const addCustomMutation = useMutation({
|
||||||
|
mutationFn: async () => {
|
||||||
|
let txnId = currentTransactionId
|
||||||
|
if (!txnId) {
|
||||||
|
const txn = await posMutations.createTransaction({
|
||||||
|
transactionType: 'sale',
|
||||||
|
locationId: locationId ?? undefined,
|
||||||
|
accountId: accountId ?? undefined,
|
||||||
|
})
|
||||||
|
txnId = txn.id
|
||||||
|
setTransaction(txnId)
|
||||||
|
}
|
||||||
|
return posMutations.addLineItem(txnId, {
|
||||||
|
description: customDesc,
|
||||||
|
qty: parseInt(customQty) || 1,
|
||||||
|
unitPrice: parseFloat(customPrice) || 0,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
const txnId = usePOSStore.getState().currentTransactionId
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(txnId ?? '') })
|
||||||
|
setCustomOpen(false)
|
||||||
|
setCustomDesc('')
|
||||||
|
setCustomPrice('')
|
||||||
|
setCustomQty('1')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
// UPC scan
|
||||||
|
const scanMutation = useMutation({
|
||||||
|
mutationFn: async (upc: string) => {
|
||||||
|
const product = await posMutations.lookupUpc(upc)
|
||||||
|
let txnId = currentTransactionId
|
||||||
|
if (!txnId) {
|
||||||
|
const txn = await posMutations.createTransaction({
|
||||||
|
transactionType: 'sale',
|
||||||
|
locationId: locationId ?? undefined,
|
||||||
|
accountId: accountId ?? undefined,
|
||||||
|
})
|
||||||
|
txnId = txn.id
|
||||||
|
setTransaction(txnId)
|
||||||
|
}
|
||||||
|
return posMutations.addLineItem(txnId, {
|
||||||
|
productId: product.id,
|
||||||
|
description: product.name,
|
||||||
|
qty: 1,
|
||||||
|
unitPrice: parseFloat(product.price ?? '0'),
|
||||||
|
})
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(currentTransactionId ?? '') })
|
||||||
|
setSearch('')
|
||||||
|
toast.success('Item scanned')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const handleSearchKeyDown = useCallback((e: React.KeyboardEvent<HTMLInputElement>) => {
|
||||||
|
// Barcode scanners typically send Enter after the code
|
||||||
|
if (e.key === 'Enter' && search.length >= 6) {
|
||||||
|
// Looks like a UPC — try scanning
|
||||||
|
scanMutation.mutate(search)
|
||||||
|
}
|
||||||
|
}, [search, scanMutation])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Search bar */}
|
||||||
|
<div className="p-3 border-b border-border">
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
ref={searchRef}
|
||||||
|
value={search}
|
||||||
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
onKeyDown={handleSearchKeyDown}
|
||||||
|
placeholder="Search products or scan barcode..."
|
||||||
|
className="pl-10 h-11 text-base"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Product grid */}
|
||||||
|
<div className="flex-1 overflow-y-auto p-3">
|
||||||
|
{searchLoading ? (
|
||||||
|
<div className="grid grid-cols-3 gap-3">
|
||||||
|
{Array.from({ length: 6 }).map((_, i) => (
|
||||||
|
<Skeleton key={i} className="h-24 rounded-lg" />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
) : products.length > 0 ? (
|
||||||
|
<div className="grid grid-cols-3 gap-3">
|
||||||
|
{products.map((product) => (
|
||||||
|
<button
|
||||||
|
key={product.id}
|
||||||
|
onClick={() => addItemMutation.mutate(product)}
|
||||||
|
disabled={addItemMutation.isPending}
|
||||||
|
className="flex flex-col items-start p-3 rounded-lg border border-border bg-card hover:bg-accent active:bg-accent/80 transition-colors text-left min-h-[80px]"
|
||||||
|
>
|
||||||
|
<span className="font-medium text-sm line-clamp-2">{product.name}</span>
|
||||||
|
<div className="mt-auto flex items-center justify-between w-full pt-1">
|
||||||
|
<span className="text-base font-semibold">${parseFloat(product.price ?? '0').toFixed(2)}</span>
|
||||||
|
{product.sku && <span className="text-xs text-muted-foreground">{product.sku}</span>}
|
||||||
|
</div>
|
||||||
|
{product.isSerialized ? (
|
||||||
|
<span className="text-[10px] text-muted-foreground">Serialized</span>
|
||||||
|
) : product.qtyOnHand !== null ? (
|
||||||
|
<span className="text-[10px] text-muted-foreground">{product.qtyOnHand} in stock</span>
|
||||||
|
) : null}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
) : search.length >= 1 ? (
|
||||||
|
<div className="flex items-center justify-center h-32 text-muted-foreground text-sm">
|
||||||
|
No products found for "{search}"
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="flex items-center justify-center h-32 text-muted-foreground text-sm">
|
||||||
|
Search for products to add to the sale
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Quick action buttons */}
|
||||||
|
<div className="p-3 border-t border-border flex gap-2">
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex-1 h-11 text-sm gap-2"
|
||||||
|
onClick={() => searchRef.current?.focus()}
|
||||||
|
>
|
||||||
|
<ScanBarcode className="h-4 w-4" />
|
||||||
|
Scan
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex-1 h-11 text-sm gap-2"
|
||||||
|
onClick={() => setRepairOpen(true)}
|
||||||
|
>
|
||||||
|
<Wrench className="h-4 w-4" />
|
||||||
|
Repairs
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex-1 h-11 text-sm gap-2"
|
||||||
|
onClick={() => setCustomOpen(true)}
|
||||||
|
>
|
||||||
|
<PenLine className="h-4 w-4" />
|
||||||
|
Custom
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex-1 h-11 text-sm gap-2"
|
||||||
|
onClick={() => setTxnDialogOpen(true)}
|
||||||
|
>
|
||||||
|
<ClipboardList className="h-4 w-4" />
|
||||||
|
Orders
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Custom item dialog */}
|
||||||
|
<Dialog open={customOpen} onOpenChange={setCustomOpen}>
|
||||||
|
<DialogContent>
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Add Custom Item</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
<form
|
||||||
|
onSubmit={(e) => { e.preventDefault(); addCustomMutation.mutate() }}
|
||||||
|
className="space-y-4"
|
||||||
|
>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Description *</Label>
|
||||||
|
<Input
|
||||||
|
value={customDesc}
|
||||||
|
onChange={(e) => setCustomDesc(e.target.value)}
|
||||||
|
placeholder="Item description"
|
||||||
|
required
|
||||||
|
className="h-11"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Price *</Label>
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0"
|
||||||
|
value={customPrice}
|
||||||
|
onChange={(e) => setCustomPrice(e.target.value)}
|
||||||
|
placeholder="0.00"
|
||||||
|
required
|
||||||
|
className="h-11"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Qty</Label>
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
min="1"
|
||||||
|
value={customQty}
|
||||||
|
onChange={(e) => setCustomQty(e.target.value)}
|
||||||
|
className="h-11"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Button type="submit" className="w-full h-11" disabled={addCustomMutation.isPending}>
|
||||||
|
{addCustomMutation.isPending ? 'Adding...' : 'Add Item'}
|
||||||
|
</Button>
|
||||||
|
</form>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
{/* Transactions dialog */}
|
||||||
|
<POSTransactionsDialog open={txnDialogOpen} onOpenChange={setTxnDialogOpen} />
|
||||||
|
<POSRepairDialog open={repairOpen} onOpenChange={setRepairOpen} />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
168
packages/admin/src/components/pos/pos-lock-screen.tsx
Normal file
168
packages/admin/src/components/pos/pos-lock-screen.tsx
Normal file
@@ -0,0 +1,168 @@
|
|||||||
|
import { useState, useCallback, useEffect, useRef } from 'react'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Delete, Lock } from 'lucide-react'
|
||||||
|
|
||||||
|
interface PinUser {
|
||||||
|
id: string
|
||||||
|
email: string
|
||||||
|
firstName: string
|
||||||
|
lastName: string
|
||||||
|
role: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSLockScreen() {
|
||||||
|
const unlock = usePOSStore((s) => s.unlock)
|
||||||
|
const [code, setCode] = useState('')
|
||||||
|
const [error, setError] = useState('')
|
||||||
|
const [loading, setLoading] = useState(false)
|
||||||
|
const containerRef = useRef<HTMLDivElement>(null)
|
||||||
|
|
||||||
|
// Auto-focus on mount
|
||||||
|
useEffect(() => {
|
||||||
|
containerRef.current?.focus()
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const handleDigit = useCallback((digit: string) => {
|
||||||
|
setError('')
|
||||||
|
setCode((p) => {
|
||||||
|
if (p.length >= 10) return p
|
||||||
|
return p + digit
|
||||||
|
})
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const handleBackspace = useCallback(() => {
|
||||||
|
setError('')
|
||||||
|
setCode((p) => p.slice(0, -1))
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const handleClear = useCallback(() => {
|
||||||
|
setError('')
|
||||||
|
setCode('')
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const handleSubmit = useCallback(async (submitCode: string) => {
|
||||||
|
if (submitCode.length < 8) {
|
||||||
|
setError('Enter your employee # (4) + PIN (4)')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
setLoading(true)
|
||||||
|
setError('')
|
||||||
|
try {
|
||||||
|
const res = await api.post<{ user: PinUser; token: string }>('/v1/auth/pin-login', { code: submitCode })
|
||||||
|
unlock(res.user, res.token)
|
||||||
|
setCode('')
|
||||||
|
} catch {
|
||||||
|
setError('Invalid code')
|
||||||
|
setCode('')
|
||||||
|
} finally {
|
||||||
|
setLoading(false)
|
||||||
|
}
|
||||||
|
}, [unlock])
|
||||||
|
|
||||||
|
// Auto-submit when 8 digits entered
|
||||||
|
useEffect(() => {
|
||||||
|
if (code.length === 8) {
|
||||||
|
handleSubmit(code)
|
||||||
|
}
|
||||||
|
}, [code, handleSubmit])
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback((e: React.KeyboardEvent) => {
|
||||||
|
if (e.key >= '0' && e.key <= '9') handleDigit(e.key)
|
||||||
|
else if (e.key === 'Backspace') handleBackspace()
|
||||||
|
else if (e.key === 'Enter' && code.length >= 8) handleSubmit(code)
|
||||||
|
else if (e.key === 'Escape') handleClear()
|
||||||
|
}, [handleDigit, handleBackspace, handleSubmit, handleClear, code])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={containerRef}
|
||||||
|
className="absolute inset-0 z-50 bg-background flex items-center justify-center"
|
||||||
|
onKeyDown={handleKeyDown}
|
||||||
|
tabIndex={0}
|
||||||
|
>
|
||||||
|
<div className="w-80 space-y-6">
|
||||||
|
{/* Header */}
|
||||||
|
<div className="text-center space-y-2">
|
||||||
|
<Lock className="h-10 w-10 mx-auto text-muted-foreground" />
|
||||||
|
<h1 className="text-xl font-semibold">POS Locked</h1>
|
||||||
|
<p className="text-sm text-muted-foreground">Employee # + PIN</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Code dots — 4 employee + 4 PIN with separator */}
|
||||||
|
<div className="flex justify-center items-center gap-2">
|
||||||
|
<div className="flex gap-1.5">
|
||||||
|
{Array.from({ length: 4 }).map((_, i) => (
|
||||||
|
<div
|
||||||
|
key={`e${i}`}
|
||||||
|
className={`w-3.5 h-3.5 rounded-full border-2 ${
|
||||||
|
i < Math.min(code.length, 4) ? 'bg-foreground border-foreground' : 'border-muted-foreground/30'
|
||||||
|
}`}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<span className="text-muted-foreground/40 text-lg">-</span>
|
||||||
|
<div className="flex gap-1.5">
|
||||||
|
{Array.from({ length: 4 }).map((_, i) => (
|
||||||
|
<div
|
||||||
|
key={`p${i}`}
|
||||||
|
className={`w-3.5 h-3.5 rounded-full border-2 ${
|
||||||
|
i < Math.max(0, code.length - 4) ? 'bg-foreground border-foreground' : 'border-muted-foreground/30'
|
||||||
|
}`}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Error */}
|
||||||
|
{error && (
|
||||||
|
<p className="text-sm text-destructive text-center">{error}</p>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Numpad */}
|
||||||
|
<div className="grid grid-cols-3 gap-2">
|
||||||
|
{['1', '2', '3', '4', '5', '6', '7', '8', '9'].map((d) => (
|
||||||
|
<Button
|
||||||
|
key={d}
|
||||||
|
variant="outline"
|
||||||
|
className="h-14 text-xl font-medium"
|
||||||
|
onClick={() => handleDigit(d)}
|
||||||
|
disabled={loading}
|
||||||
|
>
|
||||||
|
{d}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="h-14 text-sm"
|
||||||
|
onClick={handleClear}
|
||||||
|
disabled={loading}
|
||||||
|
>
|
||||||
|
Clear
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="h-14 text-xl font-medium"
|
||||||
|
onClick={() => handleDigit('0')}
|
||||||
|
disabled={loading}
|
||||||
|
>
|
||||||
|
0
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="h-14"
|
||||||
|
onClick={handleBackspace}
|
||||||
|
disabled={loading}
|
||||||
|
>
|
||||||
|
<Delete className="h-5 w-5" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{loading && (
|
||||||
|
<p className="text-sm text-muted-foreground text-center">Verifying...</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
201
packages/admin/src/components/pos/pos-manager-override.tsx
Normal file
201
packages/admin/src/components/pos/pos-manager-override.tsx
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
import { useState, useCallback, useEffect, useRef } from 'react'
|
||||||
|
import { Dialog, DialogContent, DialogTitle } from '@/components/ui/dialog'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { Delete, ShieldCheck } from 'lucide-react'
|
||||||
|
|
||||||
|
interface ManagerOverrideDialogProps {
|
||||||
|
open: boolean
|
||||||
|
onOpenChange: (open: boolean) => void
|
||||||
|
action: string
|
||||||
|
onAuthorized: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PinUser {
|
||||||
|
id: string
|
||||||
|
role: string
|
||||||
|
firstName: string
|
||||||
|
lastName: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ManagerOverrideDialog({ open, onOpenChange, action, onAuthorized }: ManagerOverrideDialogProps) {
|
||||||
|
const [code, setCode] = useState('')
|
||||||
|
const [error, setError] = useState('')
|
||||||
|
const [loading, setLoading] = useState(false)
|
||||||
|
const containerRef = useRef<HTMLDivElement>(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open) {
|
||||||
|
setCode('')
|
||||||
|
setError('')
|
||||||
|
containerRef.current?.focus()
|
||||||
|
}
|
||||||
|
}, [open])
|
||||||
|
|
||||||
|
const handleDigit = useCallback((digit: string) => {
|
||||||
|
setError('')
|
||||||
|
setCode((p) => (p.length >= 10 ? p : p + digit))
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const handleBackspace = useCallback(() => {
|
||||||
|
setError('')
|
||||||
|
setCode((p) => p.slice(0, -1))
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const handleClear = useCallback(() => {
|
||||||
|
setError('')
|
||||||
|
setCode('')
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const handleSubmit = useCallback(async (submitCode: string) => {
|
||||||
|
if (submitCode.length < 8) {
|
||||||
|
setError('Enter manager employee # + PIN')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
setLoading(true)
|
||||||
|
setError('')
|
||||||
|
try {
|
||||||
|
const res = await api.post<{ user: PinUser; token: string }>('/v1/auth/pin-login', { code: submitCode })
|
||||||
|
if (res.user.role === 'admin' || res.user.role === 'manager') {
|
||||||
|
onAuthorized()
|
||||||
|
onOpenChange(false)
|
||||||
|
} else {
|
||||||
|
setError('Manager or admin access required')
|
||||||
|
setCode('')
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
setError('Invalid code')
|
||||||
|
setCode('')
|
||||||
|
} finally {
|
||||||
|
setLoading(false)
|
||||||
|
}
|
||||||
|
}, [onAuthorized, onOpenChange])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (code.length === 8) {
|
||||||
|
handleSubmit(code)
|
||||||
|
}
|
||||||
|
}, [code, handleSubmit])
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback((e: React.KeyboardEvent) => {
|
||||||
|
if (e.key >= '0' && e.key <= '9') handleDigit(e.key)
|
||||||
|
else if (e.key === 'Backspace') handleBackspace()
|
||||||
|
else if (e.key === 'Enter' && code.length >= 8) handleSubmit(code)
|
||||||
|
else if (e.key === 'Escape') handleClear()
|
||||||
|
}, [handleDigit, handleBackspace, handleSubmit, handleClear, code])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-xs">
|
||||||
|
<div
|
||||||
|
ref={containerRef}
|
||||||
|
onKeyDown={handleKeyDown}
|
||||||
|
tabIndex={0}
|
||||||
|
className="outline-none space-y-4"
|
||||||
|
>
|
||||||
|
<div className="text-center space-y-1">
|
||||||
|
<ShieldCheck className="h-8 w-8 mx-auto text-amber-500" />
|
||||||
|
<DialogTitle className="text-base">Manager Override</DialogTitle>
|
||||||
|
<p className="text-xs text-muted-foreground">{action}</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Code dots */}
|
||||||
|
<div className="flex justify-center items-center gap-2">
|
||||||
|
<div className="flex gap-1.5">
|
||||||
|
{Array.from({ length: 4 }).map((_, i) => (
|
||||||
|
<div
|
||||||
|
key={`e${i}`}
|
||||||
|
className={`w-3 h-3 rounded-full border-2 ${
|
||||||
|
i < Math.min(code.length, 4) ? 'bg-foreground border-foreground' : 'border-muted-foreground/30'
|
||||||
|
}`}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<span className="text-muted-foreground/40">-</span>
|
||||||
|
<div className="flex gap-1.5">
|
||||||
|
{Array.from({ length: 4 }).map((_, i) => (
|
||||||
|
<div
|
||||||
|
key={`p${i}`}
|
||||||
|
className={`w-3 h-3 rounded-full border-2 ${
|
||||||
|
i < Math.max(0, code.length - 4) ? 'bg-foreground border-foreground' : 'border-muted-foreground/30'
|
||||||
|
}`}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{error && <p className="text-xs text-destructive text-center">{error}</p>}
|
||||||
|
|
||||||
|
{/* Numpad */}
|
||||||
|
<div className="grid grid-cols-3 gap-1.5">
|
||||||
|
{['1', '2', '3', '4', '5', '6', '7', '8', '9'].map((d) => (
|
||||||
|
<Button key={d} variant="outline" className="h-12 text-lg font-medium" onClick={() => handleDigit(d)} disabled={loading}>
|
||||||
|
{d}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
<Button variant="outline" className="h-12 text-xs" onClick={handleClear} disabled={loading}>Clear</Button>
|
||||||
|
<Button variant="outline" className="h-12 text-lg font-medium" onClick={() => handleDigit('0')} disabled={loading}>0</Button>
|
||||||
|
<Button variant="outline" className="h-12" onClick={handleBackspace} disabled={loading}>
|
||||||
|
<Delete className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{loading && <p className="text-xs text-muted-foreground text-center">Verifying...</p>}
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Config types & helpers ---
|
||||||
|
|
||||||
|
export const OVERRIDE_ACTIONS = [
|
||||||
|
{ key: 'void_transaction', label: 'Void Transaction', description: 'Cancel an in-progress sale' },
|
||||||
|
{ key: 'refund', label: 'Refund', description: 'Process a return or refund' },
|
||||||
|
{ key: 'manual_discount', label: 'Manual Discount', description: 'Apply a discount not from a preset' },
|
||||||
|
{ key: 'price_override', label: 'Price Override', description: 'Change an item price at the register' },
|
||||||
|
{ key: 'no_sale_drawer', label: 'No-Sale Drawer Open', description: 'Open the drawer without a transaction' },
|
||||||
|
{ key: 'cash_in_out', label: 'Cash In / Cash Out', description: 'Add or remove cash from the drawer' },
|
||||||
|
] as const
|
||||||
|
|
||||||
|
export type OverrideAction = typeof OVERRIDE_ACTIONS[number]['key']
|
||||||
|
|
||||||
|
const STORAGE_KEY = 'pos_manager_overrides'
|
||||||
|
|
||||||
|
export function getRequiredOverrides(): Set<OverrideAction> {
|
||||||
|
try {
|
||||||
|
const stored = localStorage.getItem(STORAGE_KEY)
|
||||||
|
if (!stored) return new Set()
|
||||||
|
return new Set(JSON.parse(stored) as OverrideAction[])
|
||||||
|
} catch {
|
||||||
|
return new Set()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function setRequiredOverrides(actions: Set<OverrideAction>) {
|
||||||
|
localStorage.setItem(STORAGE_KEY, JSON.stringify([...actions]))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function requiresOverride(action: OverrideAction): boolean {
|
||||||
|
return getRequiredOverrides().has(action)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Discount threshold — discounts above this percentage require manager override
|
||||||
|
const DISCOUNT_THRESHOLD_KEY = 'pos_discount_threshold_pct'
|
||||||
|
|
||||||
|
export function getDiscountThreshold(): number {
|
||||||
|
const stored = localStorage.getItem(DISCOUNT_THRESHOLD_KEY)
|
||||||
|
return stored ? parseInt(stored, 10) : 0 // 0 = disabled
|
||||||
|
}
|
||||||
|
|
||||||
|
export function setDiscountThreshold(pct: number) {
|
||||||
|
localStorage.setItem(DISCOUNT_THRESHOLD_KEY, String(pct))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function requiresDiscountOverride(discountPct: number): boolean {
|
||||||
|
// Check percentage threshold first
|
||||||
|
const threshold = getDiscountThreshold()
|
||||||
|
if (threshold > 0 && discountPct >= threshold) return true
|
||||||
|
// Fall back to the blanket manual_discount toggle
|
||||||
|
return requiresOverride('manual_discount')
|
||||||
|
}
|
||||||
298
packages/admin/src/components/pos/pos-payment-dialog.tsx
Normal file
298
packages/admin/src/components/pos/pos-payment-dialog.tsx
Normal file
@@ -0,0 +1,298 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { posMutations, posKeys, type Transaction } from '@/api/pos'
|
||||||
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { CheckCircle, Printer, Mail } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
import { POSReceipt, downloadReceiptPDF, printReceipt } from './pos-receipt'
|
||||||
|
|
||||||
|
interface POSPaymentDialogProps {
|
||||||
|
open: boolean
|
||||||
|
onOpenChange: (open: boolean) => void
|
||||||
|
paymentMethod: string
|
||||||
|
transaction: Transaction
|
||||||
|
onComplete: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSPaymentDialog({ open, onOpenChange, paymentMethod, transaction, onComplete }: POSPaymentDialogProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const { currentTransactionId } = usePOSStore()
|
||||||
|
const total = parseFloat(transaction.total)
|
||||||
|
const [amountTendered, setAmountTendered] = useState('')
|
||||||
|
const [checkNumber, setCheckNumber] = useState('')
|
||||||
|
const [completed, setCompleted] = useState(false)
|
||||||
|
const [result, setResult] = useState<Transaction | null>(null)
|
||||||
|
|
||||||
|
const completeMutation = useMutation({
|
||||||
|
mutationFn: () => {
|
||||||
|
const data: { paymentMethod: string; amountTendered?: number; checkNumber?: string } = {
|
||||||
|
paymentMethod,
|
||||||
|
}
|
||||||
|
if (paymentMethod === 'cash') {
|
||||||
|
data.amountTendered = parseFloat(amountTendered) || 0
|
||||||
|
}
|
||||||
|
if (paymentMethod === 'check') {
|
||||||
|
data.checkNumber = checkNumber || undefined
|
||||||
|
}
|
||||||
|
return posMutations.complete(currentTransactionId!, data)
|
||||||
|
},
|
||||||
|
onSuccess: (txn) => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(currentTransactionId!) })
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['pos', 'products'] })
|
||||||
|
setResult(txn)
|
||||||
|
setCompleted(true)
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const tenderedAmount = parseFloat(amountTendered) || 0
|
||||||
|
const changeDue = paymentMethod === 'cash' ? Math.max(0, tenderedAmount - total) : 0
|
||||||
|
const canComplete = paymentMethod === 'cash'
|
||||||
|
? tenderedAmount >= total
|
||||||
|
: true
|
||||||
|
|
||||||
|
function handleDone() {
|
||||||
|
onComplete()
|
||||||
|
onOpenChange(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
const QUICK_AMOUNTS = [1, 5, 10, 20, 50, 100]
|
||||||
|
|
||||||
|
// Fetch receipt config
|
||||||
|
interface AppConfigEntry { key: string; value: string | null }
|
||||||
|
const { data: configData } = useQuery({
|
||||||
|
queryKey: ['config'],
|
||||||
|
queryFn: () => api.get<{ data: AppConfigEntry[] }>('/v1/config'),
|
||||||
|
enabled: !!result?.id,
|
||||||
|
})
|
||||||
|
const receiptFormat = usePOSStore((s) => s.receiptFormat)
|
||||||
|
const receiptConfig = {
|
||||||
|
header: configData?.data?.find((c) => c.key === 'receipt_header')?.value || undefined,
|
||||||
|
footer: configData?.data?.find((c) => c.key === 'receipt_footer')?.value || undefined,
|
||||||
|
returnPolicy: configData?.data?.find((c) => c.key === 'receipt_return_policy')?.value || undefined,
|
||||||
|
social: configData?.data?.find((c) => c.key === 'receipt_social')?.value || undefined,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fetch full receipt data after completion
|
||||||
|
const { data: receiptData } = useQuery({
|
||||||
|
queryKey: ['pos', 'receipt', result?.id],
|
||||||
|
queryFn: () => api.get<{
|
||||||
|
transaction: Transaction & { lineItems: { description: string; qty: number; unitPrice: string; taxAmount: string; lineTotal: string; discountAmount: string }[] }
|
||||||
|
customerEmail: string | null
|
||||||
|
company: { name: string; phone: string | null; email: string | null; address: { street?: string; city?: string; state?: string; zip?: string } | null }
|
||||||
|
location: { name: string; phone: string | null; email: string | null; address: { street?: string; city?: string; state?: string; zip?: string } | null }
|
||||||
|
}>(`/v1/transactions/${result!.id}/receipt`),
|
||||||
|
enabled: !!result?.id,
|
||||||
|
})
|
||||||
|
|
||||||
|
const [showReceipt, setShowReceipt] = useState(false)
|
||||||
|
const [emailMode, setEmailMode] = useState(false)
|
||||||
|
const [emailAddress, setEmailAddress] = useState('')
|
||||||
|
const [emailSent, setEmailSent] = useState(false)
|
||||||
|
|
||||||
|
const emailReceiptMutation = useMutation({
|
||||||
|
mutationFn: () => api.post<{ message: string }>(`/v1/transactions/${result!.id}/email-receipt`, { email: emailAddress }),
|
||||||
|
onSuccess: () => {
|
||||||
|
toast.success('Receipt emailed')
|
||||||
|
setEmailMode(false)
|
||||||
|
setEmailSent(true)
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
if (completed && result) {
|
||||||
|
const changeGiven = parseFloat(result.changeGiven ?? '0')
|
||||||
|
|
||||||
|
// Receipt print view
|
||||||
|
if (showReceipt && receiptData) {
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={() => { setShowReceipt(false); handleDone() }}>
|
||||||
|
<DialogContent className={`${receiptFormat === 'full' ? 'max-w-2xl' : 'max-w-sm'} max-h-[90vh] overflow-y-auto print:max-w-none print:max-h-none print:overflow-visible print:shadow-none print:border-none`}>
|
||||||
|
<div className="flex justify-between items-center mb-2">
|
||||||
|
<Button variant="ghost" size="sm" onClick={() => setShowReceipt(false)}>Back</Button>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button variant="outline" size="sm" onClick={() => downloadReceiptPDF(result.transactionNumber, receiptFormat)} className="gap-2">
|
||||||
|
Save PDF
|
||||||
|
</Button>
|
||||||
|
<Button size="sm" onClick={printReceipt} className="gap-2">
|
||||||
|
<Printer className="h-4 w-4" />Print
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="pos-receipt-print">
|
||||||
|
<POSReceipt data={receiptData} size={receiptFormat} config={receiptConfig} />
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={() => handleDone()}>
|
||||||
|
<DialogContent className="max-w-sm">
|
||||||
|
<div className="flex flex-col items-center text-center space-y-4 py-4">
|
||||||
|
<CheckCircle className="h-12 w-12 text-green-500" />
|
||||||
|
<h2 className="text-xl font-bold">Sale Complete</h2>
|
||||||
|
<p className="text-muted-foreground text-sm">{result.transactionNumber}</p>
|
||||||
|
|
||||||
|
<div className="w-full text-sm space-y-1">
|
||||||
|
<div className="flex justify-between font-semibold text-base">
|
||||||
|
<span>Total</span>
|
||||||
|
<span>${parseFloat(result.total).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
{paymentMethod === 'cash' && changeGiven > 0 && (
|
||||||
|
<div className="flex justify-between text-lg font-bold text-green-600">
|
||||||
|
<span>Change Due</span>
|
||||||
|
<span>${changeGiven.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{emailMode ? (
|
||||||
|
<div className="w-full space-y-2">
|
||||||
|
<Label className="text-xs text-muted-foreground">Email receipt to:</Label>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Input
|
||||||
|
type="email"
|
||||||
|
value={emailAddress}
|
||||||
|
onChange={(e) => setEmailAddress(e.target.value)}
|
||||||
|
placeholder="customer@example.com"
|
||||||
|
className="h-9"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
className="h-9 px-4"
|
||||||
|
onClick={() => emailReceiptMutation.mutate()}
|
||||||
|
disabled={!emailAddress || emailReceiptMutation.isPending}
|
||||||
|
>
|
||||||
|
{emailReceiptMutation.isPending ? 'Sending...' : 'Send'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
<Button variant="ghost" size="sm" className="text-xs" onClick={() => setEmailMode(false)}>Cancel</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="w-full grid grid-cols-2 gap-2">
|
||||||
|
<Button variant="outline" className="h-11 gap-2" onClick={() => setShowReceipt(true)}>
|
||||||
|
<Printer className="h-4 w-4" />Receipt
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="h-11 gap-2"
|
||||||
|
onClick={() => {
|
||||||
|
setEmailAddress(receiptData?.customerEmail ?? '')
|
||||||
|
setEmailMode(true)
|
||||||
|
}}
|
||||||
|
disabled={emailSent}
|
||||||
|
>
|
||||||
|
<Mail className="h-4 w-4" />{emailSent ? 'Sent' : 'Email'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Button className="w-full h-12 text-base" onClick={handleDone}>
|
||||||
|
New Sale
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-sm">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>
|
||||||
|
{paymentMethod === 'cash' ? 'Cash Payment' : paymentMethod === 'check' ? 'Check Payment' : 'Card Payment'}
|
||||||
|
</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="flex justify-between text-lg font-bold">
|
||||||
|
<span>Total Due</span>
|
||||||
|
<span>${total.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
{paymentMethod === 'cash' && (
|
||||||
|
<>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Amount Tendered</Label>
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
step="0.01"
|
||||||
|
min="0"
|
||||||
|
value={amountTendered}
|
||||||
|
onChange={(e) => setAmountTendered(e.target.value)}
|
||||||
|
placeholder="0.00"
|
||||||
|
className="h-12 text-xl text-right font-mono"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-3 gap-2">
|
||||||
|
{QUICK_AMOUNTS.map((amt) => (
|
||||||
|
<Button
|
||||||
|
key={amt}
|
||||||
|
variant="outline"
|
||||||
|
className="h-11"
|
||||||
|
onClick={() => setAmountTendered(String(amt))}
|
||||||
|
>
|
||||||
|
${amt}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="w-full h-11"
|
||||||
|
onClick={() => setAmountTendered(total.toFixed(2))}
|
||||||
|
>
|
||||||
|
Exact ${total.toFixed(2)}
|
||||||
|
</Button>
|
||||||
|
{tenderedAmount >= total && (
|
||||||
|
<div className="flex justify-between text-lg font-bold text-green-600">
|
||||||
|
<span>Change</span>
|
||||||
|
<span>${changeDue.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{paymentMethod === 'check' && (
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Check Number</Label>
|
||||||
|
<Input
|
||||||
|
value={checkNumber}
|
||||||
|
onChange={(e) => setCheckNumber(e.target.value)}
|
||||||
|
placeholder="Check #"
|
||||||
|
className="h-11"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{paymentMethod === 'card_present' && (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">
|
||||||
|
Process card payment on terminal, then confirm below.
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Button
|
||||||
|
className="w-full h-12 text-base"
|
||||||
|
disabled={!canComplete || completeMutation.isPending}
|
||||||
|
onClick={() => completeMutation.mutate()}
|
||||||
|
>
|
||||||
|
{completeMutation.isPending ? 'Processing...' : `Complete ${paymentMethod === 'cash' ? 'Cash' : paymentMethod === 'check' ? 'Check' : 'Card'} Sale`}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
443
packages/admin/src/components/pos/pos-receipt.tsx
Normal file
443
packages/admin/src/components/pos/pos-receipt.tsx
Normal file
@@ -0,0 +1,443 @@
|
|||||||
|
import { useEffect, useRef, useState } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import JsBarcode from 'jsbarcode'
|
||||||
|
|
||||||
|
interface ReceiptLineItem {
|
||||||
|
description: string
|
||||||
|
qty: number
|
||||||
|
unitPrice: string
|
||||||
|
taxAmount: string
|
||||||
|
lineTotal: string
|
||||||
|
discountAmount?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ReceiptData {
|
||||||
|
transaction: {
|
||||||
|
transactionNumber: string
|
||||||
|
transactionType: string
|
||||||
|
status: string
|
||||||
|
subtotal: string
|
||||||
|
discountTotal: string
|
||||||
|
taxTotal: string
|
||||||
|
total: string
|
||||||
|
paymentMethod: string | null
|
||||||
|
amountTendered: string | null
|
||||||
|
changeGiven: string | null
|
||||||
|
roundingAdjustment: string
|
||||||
|
completedAt: string | null
|
||||||
|
createdAt: string
|
||||||
|
lineItems: ReceiptLineItem[]
|
||||||
|
}
|
||||||
|
company: {
|
||||||
|
name: string
|
||||||
|
phone: string | null
|
||||||
|
email: string | null
|
||||||
|
address: { street?: string; city?: string; state?: string; zip?: string } | null
|
||||||
|
}
|
||||||
|
location: {
|
||||||
|
name: string
|
||||||
|
phone: string | null
|
||||||
|
email: string | null
|
||||||
|
address: { street?: string; city?: string; state?: string; zip?: string } | null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ReceiptConfig {
|
||||||
|
header?: string
|
||||||
|
footer?: string
|
||||||
|
returnPolicy?: string
|
||||||
|
social?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface POSReceiptProps {
|
||||||
|
data: ReceiptData
|
||||||
|
size?: 'thermal' | 'full'
|
||||||
|
footerText?: string
|
||||||
|
config?: ReceiptConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
function useStoreLogo(companyId?: string) {
|
||||||
|
const token = usePOSStore((s) => s.token)
|
||||||
|
const [logoSrc, setLogoSrc] = useState<string | null>(null)
|
||||||
|
|
||||||
|
const { data: storeData } = useQuery(queryOptions({
|
||||||
|
queryKey: ['store'],
|
||||||
|
queryFn: () => api.get<{ id: string }>('/v1/store'),
|
||||||
|
enabled: !!token,
|
||||||
|
}))
|
||||||
|
|
||||||
|
const storeId = companyId ?? storeData?.id
|
||||||
|
const { data: filesData } = useQuery(queryOptions({
|
||||||
|
queryKey: ['files', 'company', storeId ?? ''],
|
||||||
|
queryFn: () => api.get<{ data: { id: string; path: string }[] }>('/v1/files', { entityType: 'company', entityId: storeId }),
|
||||||
|
enabled: !!storeId,
|
||||||
|
}))
|
||||||
|
|
||||||
|
const logoFile = filesData?.data?.find((f) => f.path.includes('/logo-'))
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!logoFile || !token) { setLogoSrc(null); return }
|
||||||
|
let cancelled = false
|
||||||
|
let blobUrl: string | null = null
|
||||||
|
async function load() {
|
||||||
|
try {
|
||||||
|
const res = await fetch(`/v1/files/serve/${logoFile!.path}`, {
|
||||||
|
headers: { Authorization: `Bearer ${token}` },
|
||||||
|
})
|
||||||
|
if (!res.ok || cancelled) return
|
||||||
|
const blob = await res.blob()
|
||||||
|
if (!cancelled) { blobUrl = URL.createObjectURL(blob); setLogoSrc(blobUrl) }
|
||||||
|
} catch { /* ignore */ }
|
||||||
|
}
|
||||||
|
load()
|
||||||
|
return () => { cancelled = true; if (blobUrl) URL.revokeObjectURL(blobUrl) }
|
||||||
|
}, [logoFile?.path, token])
|
||||||
|
|
||||||
|
return logoSrc
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSReceipt({ data, size = 'thermal', footerText, config }: POSReceiptProps) {
|
||||||
|
const isThermal = size === 'thermal'
|
||||||
|
|
||||||
|
if (!isThermal) {
|
||||||
|
return <FullPageReceipt data={data} config={config} footerText={footerText} />
|
||||||
|
}
|
||||||
|
|
||||||
|
return <ThermalReceipt data={data} config={config} footerText={footerText} />
|
||||||
|
}
|
||||||
|
|
||||||
|
function useReceiptData(data: POSReceiptProps['data']) {
|
||||||
|
const { transaction: txn, company, location } = data
|
||||||
|
return {
|
||||||
|
txn,
|
||||||
|
company,
|
||||||
|
location,
|
||||||
|
date: new Date(txn.completedAt ?? txn.createdAt),
|
||||||
|
subtotal: parseFloat(txn.subtotal),
|
||||||
|
discountTotal: parseFloat(txn.discountTotal),
|
||||||
|
taxTotal: parseFloat(txn.taxTotal),
|
||||||
|
total: parseFloat(txn.total),
|
||||||
|
rounding: parseFloat(txn.roundingAdjustment),
|
||||||
|
tendered: txn.amountTendered ? parseFloat(txn.amountTendered) : null,
|
||||||
|
change: txn.changeGiven ? parseFloat(txn.changeGiven) : null,
|
||||||
|
addr: location.address ?? company.address,
|
||||||
|
phone: location.phone ?? company.phone,
|
||||||
|
email: location.email ?? company.email,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function useBarcode(ref: React.RefObject<SVGSVGElement | null>, value: string, opts: { width: number; height: number; fontSize: number }) {
|
||||||
|
useEffect(() => {
|
||||||
|
if (ref.current) {
|
||||||
|
try {
|
||||||
|
JsBarcode(ref.current, value, { format: 'CODE128', displayValue: true, margin: 4, ...opts })
|
||||||
|
} catch { /* barcode generation failed — show text fallback */ }
|
||||||
|
}
|
||||||
|
}, [value])
|
||||||
|
}
|
||||||
|
|
||||||
|
function ThermalReceipt({ data, config, footerText }: { data: POSReceiptProps['data']; config?: ReceiptConfig; footerText?: string }) {
|
||||||
|
const barcodeRef = useRef<SVGSVGElement>(null)
|
||||||
|
const logoSrc = useStoreLogo()
|
||||||
|
const { txn, company, location, date, subtotal, discountTotal, taxTotal, total, rounding, tendered, change, addr, phone } = useReceiptData(data)
|
||||||
|
useBarcode(barcodeRef, txn.transactionNumber, { width: 1.5, height: 40, fontSize: 10 })
|
||||||
|
|
||||||
|
const s = {
|
||||||
|
row: { display: 'flex', justifyContent: 'space-between' } as const,
|
||||||
|
section: { padding: '8px 0', borderBottom: '1px dashed #999' } as const,
|
||||||
|
gray: { color: '#666' } as const,
|
||||||
|
light: { color: '#999' } as const,
|
||||||
|
bold: { fontWeight: 'bold' } as const,
|
||||||
|
center: { textAlign: 'center' } as const,
|
||||||
|
nums: { fontVariantNumeric: 'tabular-nums' } as const,
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{
|
||||||
|
background: '#fff', color: '#000', fontFamily: 'monospace',
|
||||||
|
width: 260, maxWidth: 260, fontSize: 10, lineHeight: '1.3', margin: '0 auto',
|
||||||
|
}}>
|
||||||
|
{/* Store header */}
|
||||||
|
<div style={{ ...s.section, ...s.center }}>
|
||||||
|
{logoSrc ? (
|
||||||
|
<img src={logoSrc} alt={company.name} style={{ display: 'block', margin: '0 auto 4px', maxHeight: 48, maxWidth: 200, objectFit: 'contain' }} />
|
||||||
|
) : (
|
||||||
|
<div style={{ ...s.bold, fontSize: 14 }}>{company.name}</div>
|
||||||
|
)}
|
||||||
|
{location.name !== company.name && <div style={s.gray}>{location.name}</div>}
|
||||||
|
{addr?.street && <div>{addr.street}</div>}
|
||||||
|
{(addr?.city || addr?.state || addr?.zip) && (
|
||||||
|
<div>{[addr?.city, addr?.state].filter(Boolean).join(', ')} {addr?.zip}</div>
|
||||||
|
)}
|
||||||
|
{phone && <div>{phone}</div>}
|
||||||
|
{config?.header && <div style={{ ...s.gray, marginTop: 4 }}>{config.header}</div>}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Transaction info */}
|
||||||
|
<div style={s.section}>
|
||||||
|
<div style={s.row}>
|
||||||
|
<span>{txn.transactionNumber}</span>
|
||||||
|
<span>{txn.transactionType.replace('_', ' ')}</span>
|
||||||
|
</div>
|
||||||
|
<div style={{ ...s.row, ...s.gray }}>
|
||||||
|
<span>{date.toLocaleDateString()}</span>
|
||||||
|
<span>{date.toLocaleTimeString()}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Line items */}
|
||||||
|
<div style={s.section}>
|
||||||
|
{txn.lineItems.map((item, i) => (
|
||||||
|
<div key={i} style={{ padding: '2px 0' }}>
|
||||||
|
<div style={s.row}>
|
||||||
|
<span style={{ flex: 1, paddingRight: 8 }}>{item.description}</span>
|
||||||
|
<span style={s.nums}>${parseFloat(item.lineTotal).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
{(item.qty > 1 || parseFloat(item.discountAmount ?? '0') > 0) && (
|
||||||
|
<div style={{ ...s.light, paddingLeft: 8 }}>
|
||||||
|
{item.qty > 1 && <span>{item.qty} x ${parseFloat(item.unitPrice).toFixed(2)}</span>}
|
||||||
|
{parseFloat(item.discountAmount ?? '0') > 0 && (
|
||||||
|
<span style={{ marginLeft: 8 }}>disc -${parseFloat(item.discountAmount!).toFixed(2)}</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Totals */}
|
||||||
|
<div style={s.section}>
|
||||||
|
<div style={s.row}><span>Subtotal</span><span style={s.nums}>${subtotal.toFixed(2)}</span></div>
|
||||||
|
{discountTotal > 0 && (
|
||||||
|
<div style={s.row}><span>Discount</span><span style={s.nums}>-${discountTotal.toFixed(2)}</span></div>
|
||||||
|
)}
|
||||||
|
<div style={s.row}><span>Tax</span><span style={s.nums}>${taxTotal.toFixed(2)}</span></div>
|
||||||
|
{rounding !== 0 && (
|
||||||
|
<div style={{ ...s.row, ...s.gray }}><span>Rounding</span><span style={s.nums}>{rounding > 0 ? '+' : ''}{rounding.toFixed(2)}</span></div>
|
||||||
|
)}
|
||||||
|
<div style={{ ...s.row, ...s.bold, fontSize: 14, paddingTop: 4 }}>
|
||||||
|
<span>TOTAL</span><span style={s.nums}>${total.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Payment */}
|
||||||
|
<div style={s.section}>
|
||||||
|
<div style={s.row}><span>Payment</span><span style={{ textTransform: 'capitalize' }}>{txn.paymentMethod?.replace('_', ' ') ?? 'N/A'}</span></div>
|
||||||
|
{tendered !== null && (
|
||||||
|
<div style={s.row}><span>Tendered</span><span style={s.nums}>${tendered.toFixed(2)}</span></div>
|
||||||
|
)}
|
||||||
|
{change !== null && change > 0 && (
|
||||||
|
<div style={{ ...s.row, ...s.bold }}><span>Change</span><span style={s.nums}>${change.toFixed(2)}</span></div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Barcode */}
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'center', padding: '12px 0' }}>
|
||||||
|
<svg ref={barcodeRef} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Footer */}
|
||||||
|
{(config?.footer || footerText) && (
|
||||||
|
<div style={{ ...s.center, ...s.light, paddingBottom: 4 }}>{config?.footer || footerText}</div>
|
||||||
|
)}
|
||||||
|
{config?.returnPolicy && (
|
||||||
|
<div style={{ ...s.center, color: '#aaa', fontSize: 10, paddingBottom: 4 }}>{config.returnPolicy}</div>
|
||||||
|
)}
|
||||||
|
{config?.social && (
|
||||||
|
<div style={{ ...s.center, ...s.light, paddingBottom: 8 }}>{config.social}</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function FullPageReceipt({ data, config, footerText }: { data: POSReceiptProps['data']; config?: ReceiptConfig; footerText?: string }) {
|
||||||
|
const barcodeRef = useRef<SVGSVGElement>(null)
|
||||||
|
const logoSrc = useStoreLogo()
|
||||||
|
const { txn, company, location, date, subtotal, discountTotal, taxTotal, total, rounding, tendered, change, addr, phone, email } = useReceiptData(data)
|
||||||
|
useBarcode(barcodeRef, txn.transactionNumber, { width: 2, height: 50, fontSize: 12 })
|
||||||
|
|
||||||
|
const f = (n: number) => `$${n.toFixed(2)}`
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{
|
||||||
|
background: '#fff', color: '#000', fontFamily: 'Helvetica, Arial, sans-serif',
|
||||||
|
width: '100%', maxWidth: 600, margin: '0 auto', fontSize: 13, lineHeight: '1.5',
|
||||||
|
}}>
|
||||||
|
{/* Header — company left, transaction right */}
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-start', paddingBottom: 16 }}>
|
||||||
|
<div>
|
||||||
|
{logoSrc ? (
|
||||||
|
<img src={logoSrc} alt={company.name} style={{ maxHeight: 56, maxWidth: 200, objectFit: 'contain', marginBottom: 4 }} />
|
||||||
|
) : (
|
||||||
|
<div style={{ fontSize: 20, fontWeight: 'bold' }}>{company.name}</div>
|
||||||
|
)}
|
||||||
|
{location.name !== company.name && <div style={{ color: '#555', fontSize: 12 }}>{location.name}</div>}
|
||||||
|
{addr?.street && <div style={{ fontSize: 12 }}>{addr.street}</div>}
|
||||||
|
{(addr?.city || addr?.state || addr?.zip) && (
|
||||||
|
<div style={{ fontSize: 12 }}>{[addr?.city, addr?.state].filter(Boolean).join(', ')} {addr?.zip}</div>
|
||||||
|
)}
|
||||||
|
{phone && <div style={{ fontSize: 12 }}>{phone}</div>}
|
||||||
|
{email && <div style={{ fontSize: 12 }}>{email}</div>}
|
||||||
|
{config?.header && <div style={{ fontSize: 12, color: '#555', marginTop: 2 }}>{config.header}</div>}
|
||||||
|
</div>
|
||||||
|
<div style={{ textAlign: 'right' }}>
|
||||||
|
<div style={{ fontSize: 16, fontWeight: 'bold' }}>{txn.transactionNumber}</div>
|
||||||
|
<div style={{ fontSize: 12, color: '#555', textTransform: 'capitalize' }}>{txn.transactionType.replace('_', ' ')}</div>
|
||||||
|
<div style={{ fontSize: 12, color: '#555' }}>{date.toLocaleDateString()}</div>
|
||||||
|
<div style={{ fontSize: 12, color: '#555' }}>{date.toLocaleTimeString()}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Divider */}
|
||||||
|
<div style={{ borderBottom: '1px solid #ddd', marginBottom: 16 }} />
|
||||||
|
|
||||||
|
{/* Line items table */}
|
||||||
|
<table style={{ width: '100%', borderCollapse: 'collapse', fontSize: 13 }}>
|
||||||
|
<thead>
|
||||||
|
<tr style={{ background: '#f5f5f5' }}>
|
||||||
|
<th style={{ textAlign: 'left', padding: '6px 8px', fontWeight: 600, fontSize: 11, textTransform: 'uppercase', color: '#555' }}>Item</th>
|
||||||
|
<th style={{ textAlign: 'right', padding: '6px 8px', fontWeight: 600, fontSize: 11, textTransform: 'uppercase', color: '#555', width: 50 }}>Qty</th>
|
||||||
|
<th style={{ textAlign: 'right', padding: '6px 8px', fontWeight: 600, fontSize: 11, textTransform: 'uppercase', color: '#555', width: 80 }}>Price</th>
|
||||||
|
<th style={{ textAlign: 'right', padding: '6px 8px', fontWeight: 600, fontSize: 11, textTransform: 'uppercase', color: '#555', width: 80 }}>Total</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{txn.lineItems.map((item, i) => (
|
||||||
|
<tr key={i} style={{ borderBottom: '1px solid #eee' }}>
|
||||||
|
<td style={{ padding: '6px 8px' }}>
|
||||||
|
{item.description}
|
||||||
|
{parseFloat(item.discountAmount ?? '0') > 0 && (
|
||||||
|
<div style={{ fontSize: 11, color: '#999' }}>Discount: -{f(parseFloat(item.discountAmount!))}</div>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
|
<td style={{ padding: '6px 8px', textAlign: 'right', fontVariantNumeric: 'tabular-nums' }}>{item.qty}</td>
|
||||||
|
<td style={{ padding: '6px 8px', textAlign: 'right', fontVariantNumeric: 'tabular-nums' }}>{f(parseFloat(item.unitPrice))}</td>
|
||||||
|
<td style={{ padding: '6px 8px', textAlign: 'right', fontVariantNumeric: 'tabular-nums' }}>{f(parseFloat(item.lineTotal))}</td>
|
||||||
|
</tr>
|
||||||
|
))}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
{/* Totals — right aligned */}
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: 12 }}>
|
||||||
|
<div style={{ width: 220 }}>
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between', padding: '3px 0' }}>
|
||||||
|
<span>Subtotal</span><span style={{ fontVariantNumeric: 'tabular-nums' }}>{f(subtotal)}</span>
|
||||||
|
</div>
|
||||||
|
{discountTotal > 0 && (
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between', padding: '3px 0', color: '#555' }}>
|
||||||
|
<span>Discount</span><span style={{ fontVariantNumeric: 'tabular-nums' }}>-{f(discountTotal)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between', padding: '3px 0' }}>
|
||||||
|
<span>Tax</span><span style={{ fontVariantNumeric: 'tabular-nums' }}>{f(taxTotal)}</span>
|
||||||
|
</div>
|
||||||
|
{rounding !== 0 && (
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between', padding: '3px 0', color: '#888', fontSize: 12 }}>
|
||||||
|
<span>Rounding</span><span style={{ fontVariantNumeric: 'tabular-nums' }}>{rounding > 0 ? '+' : ''}{rounding.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div style={{ borderTop: '1px solid #ddd', marginTop: 4, paddingTop: 6, display: 'flex', justifyContent: 'space-between', fontWeight: 'bold', fontSize: 16 }}>
|
||||||
|
<span>Total</span><span style={{ fontVariantNumeric: 'tabular-nums' }}>{f(total)}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Payment info */}
|
||||||
|
<div style={{ marginTop: 16, padding: '12px 0', borderTop: '1px solid #ddd' }}>
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
|
||||||
|
<span>Payment Method</span>
|
||||||
|
<span style={{ textTransform: 'capitalize', fontWeight: 500 }}>{txn.paymentMethod?.replace('_', ' ') ?? 'N/A'}</span>
|
||||||
|
</div>
|
||||||
|
{tendered !== null && (
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between', color: '#555', fontSize: 12, marginTop: 2 }}>
|
||||||
|
<span>Tendered</span><span style={{ fontVariantNumeric: 'tabular-nums' }}>{f(tendered)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{change !== null && change > 0 && (
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'space-between', fontWeight: 'bold', marginTop: 2 }}>
|
||||||
|
<span>Change</span><span style={{ fontVariantNumeric: 'tabular-nums' }}>{f(change)}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Barcode */}
|
||||||
|
<div style={{ display: 'flex', justifyContent: 'center', padding: '16px 0' }}>
|
||||||
|
<svg ref={barcodeRef} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Footer */}
|
||||||
|
<div style={{ borderTop: '1px solid #eee', paddingTop: 12, textAlign: 'center', fontSize: 11, color: '#999' }}>
|
||||||
|
{(config?.footer || footerText) && <div>{config?.footer || footerText}</div>}
|
||||||
|
{config?.returnPolicy && <div style={{ marginTop: 4 }}>{config.returnPolicy}</div>}
|
||||||
|
{config?.social && <div style={{ marginTop: 4 }}>{config.social}</div>}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function printReceipt() {
|
||||||
|
const el = document.getElementById('pos-receipt-print')
|
||||||
|
if (!el) return
|
||||||
|
|
||||||
|
// Clone the receipt into an iframe for clean printing
|
||||||
|
const iframe = document.createElement('iframe')
|
||||||
|
iframe.style.cssText = 'position:fixed;left:-9999px;width:400px;height:800px;border:none;'
|
||||||
|
document.body.appendChild(iframe)
|
||||||
|
|
||||||
|
const doc = iframe.contentDocument
|
||||||
|
if (!doc) { document.body.removeChild(iframe); return }
|
||||||
|
|
||||||
|
doc.open()
|
||||||
|
doc.write(`<!DOCTYPE html><html><head><style>body{margin:0;padding:8px;background:#fff;}</style></head><body>${el.innerHTML}</body></html>`)
|
||||||
|
doc.close()
|
||||||
|
|
||||||
|
// Wait for content to render then print
|
||||||
|
setTimeout(() => {
|
||||||
|
try {
|
||||||
|
iframe.contentWindow?.focus()
|
||||||
|
iframe.contentWindow?.print()
|
||||||
|
} catch {
|
||||||
|
// Fallback: just use window.print
|
||||||
|
window.print()
|
||||||
|
}
|
||||||
|
setTimeout(() => document.body.removeChild(iframe), 2000)
|
||||||
|
}, 300)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function downloadReceiptPDF(txnNumber?: string, format: 'thermal' | 'full' = 'thermal') {
|
||||||
|
const el = document.getElementById('pos-receipt-print')
|
||||||
|
if (!el) return
|
||||||
|
|
||||||
|
const html2pdf = (await import('html2pdf.js')).default
|
||||||
|
|
||||||
|
if (format === 'full') {
|
||||||
|
html2pdf()
|
||||||
|
.set({
|
||||||
|
margin: [10, 10, 10, 10],
|
||||||
|
filename: `receipt-${txnNumber ?? 'unknown'}.pdf`,
|
||||||
|
image: { type: 'jpeg', quality: 0.95 },
|
||||||
|
html2canvas: { scale: 2, useCORS: true },
|
||||||
|
jsPDF: { unit: 'mm', format: 'letter', orientation: 'portrait' },
|
||||||
|
})
|
||||||
|
.from(el)
|
||||||
|
.save()
|
||||||
|
} else {
|
||||||
|
// Thermal — dynamic height based on content
|
||||||
|
const heightPx = el.scrollHeight + 16
|
||||||
|
const heightMm = Math.ceil(heightPx * 0.265) + 8
|
||||||
|
html2pdf()
|
||||||
|
.set({
|
||||||
|
margin: [2, 2, 2, 2],
|
||||||
|
filename: `receipt-${txnNumber ?? 'unknown'}.pdf`,
|
||||||
|
image: { type: 'jpeg', quality: 0.95 },
|
||||||
|
html2canvas: { scale: 2, useCORS: true, width: 280 },
|
||||||
|
jsPDF: { unit: 'mm', format: [72, heightMm], orientation: 'portrait' },
|
||||||
|
})
|
||||||
|
.from(el)
|
||||||
|
.save()
|
||||||
|
}
|
||||||
|
}
|
||||||
158
packages/admin/src/components/pos/pos-register.tsx
Normal file
158
packages/admin/src/components/pos/pos-register.tsx
Normal file
@@ -0,0 +1,158 @@
|
|||||||
|
import { useEffect, useRef, useCallback } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { currentDrawerOptions, transactionOptions } from '@/api/pos'
|
||||||
|
import { POSTopBar } from './pos-top-bar'
|
||||||
|
import { POSItemPanel } from './pos-item-panel'
|
||||||
|
import { POSCartPanel } from './pos-cart-panel'
|
||||||
|
import { POSLockScreen } from './pos-lock-screen'
|
||||||
|
|
||||||
|
interface Location {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AppConfigEntry {
|
||||||
|
key: string
|
||||||
|
value: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
function locationsOptions() {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['locations'],
|
||||||
|
queryFn: () => api.get<{ data: Location[] }>('/v1/locations'),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function configOptions(key: string) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['config', key],
|
||||||
|
queryFn: async (): Promise<string | null> => {
|
||||||
|
try {
|
||||||
|
const entry = await api.get<AppConfigEntry>(`/v1/config/${key}`)
|
||||||
|
return entry.value
|
||||||
|
} catch {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
interface POSRegisterProps {
|
||||||
|
embedded?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSRegister({ embedded }: POSRegisterProps = {}) {
|
||||||
|
const { locationId, setLocation, currentTransactionId, setDrawerSession, locked, lock, touchActivity, token } = usePOSStore()
|
||||||
|
|
||||||
|
// Fetch lock timeout from config (standalone only)
|
||||||
|
const { data: lockTimeoutStr } = useQuery({
|
||||||
|
...configOptions('pos_lock_timeout'),
|
||||||
|
enabled: !!token && !embedded,
|
||||||
|
})
|
||||||
|
const lockTimeoutMinutes = parseInt(lockTimeoutStr ?? '15') || 15
|
||||||
|
|
||||||
|
// Auto-lock timer (standalone only — station shell handles this when embedded)
|
||||||
|
const timerRef = useRef<ReturnType<typeof setInterval> | null>(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (embedded) return
|
||||||
|
if (locked || lockTimeoutMinutes === 0) {
|
||||||
|
if (timerRef.current) clearInterval(timerRef.current)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
timerRef.current = setInterval(() => {
|
||||||
|
const { lastActivity, locked: isLocked } = usePOSStore.getState()
|
||||||
|
if (!isLocked && Date.now() - lastActivity > lockTimeoutMinutes * 60_000) {
|
||||||
|
lock()
|
||||||
|
}
|
||||||
|
}, 30_000)
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
if (timerRef.current) clearInterval(timerRef.current)
|
||||||
|
}
|
||||||
|
}, [embedded, locked, lockTimeoutMinutes, lock])
|
||||||
|
|
||||||
|
// Track activity (standalone only)
|
||||||
|
const handleActivity = useCallback(() => {
|
||||||
|
if (!embedded && !locked) touchActivity()
|
||||||
|
}, [embedded, locked, touchActivity])
|
||||||
|
|
||||||
|
// Fetch locations (standalone only — station shell handles this when embedded)
|
||||||
|
const { data: locationsData } = useQuery({
|
||||||
|
...locationsOptions(),
|
||||||
|
enabled: !!token && !embedded,
|
||||||
|
})
|
||||||
|
const locations = locationsData?.data ?? []
|
||||||
|
|
||||||
|
// Auto-select first location (standalone only)
|
||||||
|
useEffect(() => {
|
||||||
|
if (embedded) return
|
||||||
|
if (!locationId && locations.length > 0) {
|
||||||
|
setLocation(locations[0].id)
|
||||||
|
}
|
||||||
|
}, [embedded, locationId, locations, setLocation])
|
||||||
|
|
||||||
|
// Fetch current drawer for selected location
|
||||||
|
const { data: drawer } = useQuery({
|
||||||
|
...currentDrawerOptions(locationId),
|
||||||
|
retry: false,
|
||||||
|
enabled: !!locationId && !!token,
|
||||||
|
})
|
||||||
|
|
||||||
|
// Sync drawer session ID
|
||||||
|
useEffect(() => {
|
||||||
|
if (drawer?.id && drawer.status === 'open') {
|
||||||
|
setDrawerSession(drawer.id)
|
||||||
|
} else {
|
||||||
|
setDrawerSession(null)
|
||||||
|
}
|
||||||
|
}, [drawer, setDrawerSession])
|
||||||
|
|
||||||
|
// Fetch current transaction
|
||||||
|
const { data: transaction } = useQuery({
|
||||||
|
...transactionOptions(currentTransactionId),
|
||||||
|
enabled: !!currentTransactionId && !!token,
|
||||||
|
})
|
||||||
|
|
||||||
|
// Embedded mode: just the content panels, no wrapper/lock/topbar
|
||||||
|
if (embedded) {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-1 h-full min-h-0">
|
||||||
|
<div className="w-[60%] border-r border-border overflow-hidden">
|
||||||
|
<POSItemPanel transaction={transaction ?? null} />
|
||||||
|
</div>
|
||||||
|
<div className="w-[40%] overflow-hidden">
|
||||||
|
<POSCartPanel transaction={transaction ?? null} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className="relative flex flex-col h-full"
|
||||||
|
onPointerDown={handleActivity}
|
||||||
|
onKeyDown={handleActivity}
|
||||||
|
>
|
||||||
|
{locked && <POSLockScreen />}
|
||||||
|
<POSTopBar
|
||||||
|
locations={locations}
|
||||||
|
locationId={locationId}
|
||||||
|
onLocationChange={setLocation}
|
||||||
|
drawer={drawer ?? null}
|
||||||
|
/>
|
||||||
|
<div className="flex flex-1 min-h-0">
|
||||||
|
<div className="w-[60%] border-r border-border overflow-hidden">
|
||||||
|
<POSItemPanel transaction={transaction ?? null} />
|
||||||
|
</div>
|
||||||
|
<div className="w-[40%] overflow-hidden">
|
||||||
|
<POSCartPanel transaction={transaction ?? null} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
263
packages/admin/src/components/pos/pos-repair-dialog.tsx
Normal file
263
packages/admin/src/components/pos/pos-repair-dialog.tsx
Normal file
@@ -0,0 +1,263 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { posMutations, posKeys } from '@/api/pos'
|
||||||
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'
|
||||||
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { Textarea } from '@/components/ui/textarea'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Search, Wrench, Plus } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
|
||||||
|
interface Account {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
email: string | null
|
||||||
|
phone: string | null
|
||||||
|
accountNumber: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
interface RepairTicketSummary {
|
||||||
|
id: string
|
||||||
|
ticketNumber: string | null
|
||||||
|
customerName: string
|
||||||
|
customerPhone: string | null
|
||||||
|
itemDescription: string | null
|
||||||
|
estimatedCost: string | null
|
||||||
|
status: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface POSRepairDialogProps {
|
||||||
|
open: boolean
|
||||||
|
onOpenChange: (open: boolean) => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSRepairDialog({ open, onOpenChange }: POSRepairDialogProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const { locationId, setTransaction, setAccount } = usePOSStore()
|
||||||
|
const [search, setSearch] = useState('')
|
||||||
|
const [tab, setTab] = useState('pickup')
|
||||||
|
|
||||||
|
// --- Pickup tab ---
|
||||||
|
const { data, isLoading } = useQuery({
|
||||||
|
queryKey: ['pos', 'repair-tickets-ready', search],
|
||||||
|
queryFn: () => api.get<{ data: RepairTicketSummary[] }>('/v1/repair-tickets/ready', { q: search || undefined, limit: 20 }),
|
||||||
|
enabled: open && tab === 'pickup',
|
||||||
|
})
|
||||||
|
const tickets = data?.data ?? []
|
||||||
|
|
||||||
|
const pickupMutation = useMutation({
|
||||||
|
mutationFn: (ticketId: string) => posMutations.createFromRepair(ticketId, locationId ?? undefined),
|
||||||
|
onSuccess: (txn) => {
|
||||||
|
setTransaction(txn.id)
|
||||||
|
if (txn.accountId) {
|
||||||
|
const ticket = tickets.find((t) => t.id === pickupMutation.variables)
|
||||||
|
if (ticket) setAccount(txn.accountId, ticket.customerName, ticket.customerPhone)
|
||||||
|
}
|
||||||
|
queryClient.invalidateQueries({ queryKey: posKeys.transaction(txn.id) })
|
||||||
|
toast.success(`Repair payment loaded — ${txn.transactionNumber}`)
|
||||||
|
close()
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
// --- New intake tab ---
|
||||||
|
const [customerName, setCustomerName] = useState('')
|
||||||
|
const [customerPhone, setCustomerPhone] = useState('')
|
||||||
|
const [itemDescription, setItemDescription] = useState('')
|
||||||
|
const [problemDescription, setProblemDescription] = useState('')
|
||||||
|
const [estimatedCost, setEstimatedCost] = useState('')
|
||||||
|
const [accountId, setAccountId] = useState<string | null>(null)
|
||||||
|
const [customerSearch, setCustomerSearch] = useState('')
|
||||||
|
const [showCustomers, setShowCustomers] = useState(false)
|
||||||
|
|
||||||
|
const { data: customerData } = useQuery({
|
||||||
|
queryKey: ['pos', 'accounts', customerSearch],
|
||||||
|
queryFn: () => api.get<{ data: Account[] }>('/v1/accounts', { q: customerSearch, limit: 10 }),
|
||||||
|
enabled: customerSearch.length >= 2 && tab === 'intake',
|
||||||
|
})
|
||||||
|
const customerResults = customerData?.data ?? []
|
||||||
|
|
||||||
|
function selectCustomer(account: Account) {
|
||||||
|
setAccountId(account.id)
|
||||||
|
setCustomerName(account.name)
|
||||||
|
setCustomerPhone(account.phone ?? '')
|
||||||
|
setCustomerSearch('')
|
||||||
|
setShowCustomers(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearCustomer() {
|
||||||
|
setAccountId(null)
|
||||||
|
setCustomerName('')
|
||||||
|
setCustomerPhone('')
|
||||||
|
}
|
||||||
|
|
||||||
|
const intakeMutation = useMutation({
|
||||||
|
mutationFn: (data: Record<string, unknown>) =>
|
||||||
|
api.post<{ id: string; ticketNumber: string }>('/v1/repair-tickets', data),
|
||||||
|
onSuccess: (ticket) => {
|
||||||
|
toast.success(`Repair ticket #${ticket.ticketNumber} created`)
|
||||||
|
close()
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
function handleIntakeSubmit(e: React.FormEvent) {
|
||||||
|
e.preventDefault()
|
||||||
|
intakeMutation.mutate({
|
||||||
|
customerName,
|
||||||
|
customerPhone: customerPhone || undefined,
|
||||||
|
accountId: accountId ?? undefined,
|
||||||
|
itemDescription: itemDescription || undefined,
|
||||||
|
problemDescription,
|
||||||
|
estimatedCost: estimatedCost ? parseFloat(estimatedCost) : undefined,
|
||||||
|
locationId: locationId ?? undefined,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function close() {
|
||||||
|
onOpenChange(false)
|
||||||
|
setSearch('')
|
||||||
|
setCustomerName('')
|
||||||
|
setCustomerPhone('')
|
||||||
|
setItemDescription('')
|
||||||
|
setProblemDescription('')
|
||||||
|
setEstimatedCost('')
|
||||||
|
setAccountId(null)
|
||||||
|
setCustomerSearch('')
|
||||||
|
setShowCustomers(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={(o) => { if (!o) close(); else onOpenChange(true) }}>
|
||||||
|
<DialogContent className="max-w-md">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle className="flex items-center gap-2">
|
||||||
|
<Wrench className="h-5 w-5" />Repairs
|
||||||
|
</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
<Tabs value={tab} onValueChange={setTab}>
|
||||||
|
<TabsList className="w-full">
|
||||||
|
<TabsTrigger value="pickup" className="flex-1">Pickup</TabsTrigger>
|
||||||
|
<TabsTrigger value="intake" className="flex-1">New Intake</TabsTrigger>
|
||||||
|
</TabsList>
|
||||||
|
|
||||||
|
<TabsContent value="pickup" className="mt-3 space-y-3">
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
placeholder="Search by ticket #, name, or phone..."
|
||||||
|
value={search}
|
||||||
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
className="pl-9"
|
||||||
|
autoFocus={tab === 'pickup'}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="max-h-64 overflow-y-auto space-y-1">
|
||||||
|
{isLoading ? (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">Loading...</p>
|
||||||
|
) : tickets.length === 0 ? (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">
|
||||||
|
{search ? 'No ready tickets found' : 'No tickets ready for pickup'}
|
||||||
|
</p>
|
||||||
|
) : (
|
||||||
|
tickets.map((ticket) => (
|
||||||
|
<button
|
||||||
|
key={ticket.id}
|
||||||
|
type="button"
|
||||||
|
className="w-full text-left rounded-md border p-3 hover:bg-accent transition-colors"
|
||||||
|
onClick={() => pickupMutation.mutate(ticket.id)}
|
||||||
|
disabled={pickupMutation.isPending}
|
||||||
|
>
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<span className="font-medium text-sm">#{ticket.ticketNumber}</span>
|
||||||
|
<Badge variant="outline" className="text-xs">Ready</Badge>
|
||||||
|
</div>
|
||||||
|
<div className="text-sm mt-0.5">{ticket.customerName}</div>
|
||||||
|
{ticket.itemDescription && (
|
||||||
|
<div className="text-xs text-muted-foreground mt-0.5 truncate">{ticket.itemDescription}</div>
|
||||||
|
)}
|
||||||
|
{ticket.estimatedCost && (
|
||||||
|
<div className="text-xs text-muted-foreground mt-0.5">Est: ${ticket.estimatedCost}</div>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="intake" className="mt-3">
|
||||||
|
<form onSubmit={handleIntakeSubmit} className="space-y-3">
|
||||||
|
{/* Customer lookup */}
|
||||||
|
<div className="relative space-y-1">
|
||||||
|
<Label className="text-xs">Customer Lookup</Label>
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-3.5 w-3.5 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
placeholder="Search by name, phone, or email..."
|
||||||
|
value={customerSearch}
|
||||||
|
onChange={(e) => { setCustomerSearch(e.target.value); setShowCustomers(true) }}
|
||||||
|
onFocus={() => customerSearch.length >= 2 && setShowCustomers(true)}
|
||||||
|
className="pl-9 h-8 text-sm"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{accountId && (
|
||||||
|
<div className="flex items-center gap-1 text-xs text-muted-foreground">
|
||||||
|
<Badge variant="secondary" className="text-[10px]">Linked</Badge>
|
||||||
|
<span>{customerName}</span>
|
||||||
|
<button type="button" className="underline text-destructive ml-1" onClick={clearCustomer}>clear</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{showCustomers && customerSearch.length >= 2 && (
|
||||||
|
<div className="absolute z-50 mt-1 w-full rounded-md border bg-popover shadow-lg max-h-40 overflow-auto">
|
||||||
|
{customerResults.length === 0 ? (
|
||||||
|
<div className="p-2 text-xs text-muted-foreground">No accounts found</div>
|
||||||
|
) : customerResults.map((a) => (
|
||||||
|
<button key={a.id} type="button" className="w-full text-left px-3 py-2 text-sm hover:bg-accent" onClick={() => selectCustomer(a)}>
|
||||||
|
<div className="font-medium">{a.name}</div>
|
||||||
|
<div className="text-xs text-muted-foreground">{[a.phone, a.email].filter(Boolean).join(' · ')}</div>
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-2 gap-3">
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs">Customer Name *</Label>
|
||||||
|
<Input value={customerName} onChange={(e) => setCustomerName(e.target.value)} required />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs">Phone</Label>
|
||||||
|
<Input value={customerPhone} onChange={(e) => setCustomerPhone(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs">Item Description</Label>
|
||||||
|
<Input value={itemDescription} onChange={(e) => setItemDescription(e.target.value)} placeholder="e.g. Violin, iPhone 12, Trek bicycle" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs">Problem *</Label>
|
||||||
|
<Textarea value={problemDescription} onChange={(e) => setProblemDescription(e.target.value)} rows={2} placeholder="What needs to be fixed?" required />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs">Estimated Cost</Label>
|
||||||
|
<Input type="number" step="0.01" min="0" value={estimatedCost} onChange={(e) => setEstimatedCost(e.target.value)} placeholder="0.00" />
|
||||||
|
</div>
|
||||||
|
<Button type="submit" className="w-full gap-2" disabled={intakeMutation.isPending}>
|
||||||
|
<Plus className="h-4 w-4" />
|
||||||
|
{intakeMutation.isPending ? 'Creating...' : 'Create Repair Ticket'}
|
||||||
|
</Button>
|
||||||
|
</form>
|
||||||
|
</TabsContent>
|
||||||
|
</Tabs>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
98
packages/admin/src/components/pos/pos-top-bar.tsx
Normal file
98
packages/admin/src/components/pos/pos-top-bar.tsx
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
import { Link } from '@tanstack/react-router'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
|
import { ArrowLeft, Lock, DollarSign, Receipt, FileText } from 'lucide-react'
|
||||||
|
import type { DrawerSession } from '@/api/pos'
|
||||||
|
import { useState } from 'react'
|
||||||
|
import { POSDrawerDialog } from './pos-drawer-dialog'
|
||||||
|
|
||||||
|
interface POSTopBarProps {
|
||||||
|
locations: { id: string; name: string }[]
|
||||||
|
locationId: string | null
|
||||||
|
onLocationChange: (id: string) => void
|
||||||
|
drawer: DrawerSession | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSTopBar({ locations, locationId, onLocationChange, drawer }: POSTopBarProps) {
|
||||||
|
const cashier = usePOSStore((s) => s.cashier)
|
||||||
|
const lockFn = usePOSStore((s) => s.lock)
|
||||||
|
const receiptFormat = usePOSStore((s) => s.receiptFormat)
|
||||||
|
const setReceiptFormat = usePOSStore((s) => s.setReceiptFormat)
|
||||||
|
const [drawerDialogOpen, setDrawerDialogOpen] = useState(false)
|
||||||
|
|
||||||
|
const drawerOpen = drawer?.status === 'open'
|
||||||
|
const isThermal = receiptFormat === 'thermal'
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="h-12 border-b border-border bg-card flex items-center justify-between px-3 shrink-0">
|
||||||
|
{/* Left: back + location */}
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Link to="/login" className="flex items-center gap-1 text-sm text-muted-foreground hover:text-foreground">
|
||||||
|
<ArrowLeft className="h-4 w-4" />
|
||||||
|
<span className="hidden sm:inline">Admin</span>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
{locations.length > 1 ? (
|
||||||
|
<Select value={locationId ?? ''} onValueChange={onLocationChange}>
|
||||||
|
<SelectTrigger className="h-8 w-48 text-sm">
|
||||||
|
<SelectValue placeholder="Select location" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{locations.map((loc) => (
|
||||||
|
<SelectItem key={loc.id} value={loc.id}>{loc.name}</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
) : locations.length === 1 ? (
|
||||||
|
<span className="text-sm font-medium">{locations[0].name}</span>
|
||||||
|
) : null}
|
||||||
|
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
className="h-8 gap-1.5 text-xs text-muted-foreground hover:text-foreground"
|
||||||
|
onClick={() => setReceiptFormat(isThermal ? 'full' : 'thermal')}
|
||||||
|
title={isThermal ? 'Receipt: Thermal — click to switch to Full Page' : 'Receipt: Full Page — click to switch to Thermal'}
|
||||||
|
>
|
||||||
|
{isThermal ? <Receipt className="h-3.5 w-3.5" /> : <FileText className="h-3.5 w-3.5" />}
|
||||||
|
<span className="hidden sm:inline">{isThermal ? 'Thermal' : 'Full Page'}</span>
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Center: drawer status */}
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
className="flex items-center gap-2"
|
||||||
|
onClick={() => setDrawerDialogOpen(true)}
|
||||||
|
>
|
||||||
|
<DollarSign className="h-4 w-4" />
|
||||||
|
{drawerOpen ? (
|
||||||
|
<Badge variant="default" className="text-xs">Drawer Open</Badge>
|
||||||
|
) : (
|
||||||
|
<Badge variant="outline" className="text-xs">Drawer Closed</Badge>
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
{/* Right: cashier + lock */}
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
{cashier && (
|
||||||
|
<span className="text-sm text-muted-foreground">{cashier.firstName}</span>
|
||||||
|
)}
|
||||||
|
<Button variant="ghost" size="icon" className="h-8 w-8" onClick={lockFn} title="Lock POS">
|
||||||
|
<Lock className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<POSDrawerDialog
|
||||||
|
open={drawerDialogOpen}
|
||||||
|
onOpenChange={setDrawerDialogOpen}
|
||||||
|
drawer={drawer}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
145
packages/admin/src/components/pos/pos-transactions-dialog.tsx
Normal file
145
packages/admin/src/components/pos/pos-transactions-dialog.tsx
Normal file
@@ -0,0 +1,145 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Printer } from 'lucide-react'
|
||||||
|
import { POSReceipt, printReceipt, downloadReceiptPDF } from './pos-receipt'
|
||||||
|
import type { Transaction } from '@/api/pos'
|
||||||
|
|
||||||
|
interface ReceiptData {
|
||||||
|
transaction: Transaction & { lineItems: { description: string; qty: number; unitPrice: string; taxAmount: string; lineTotal: string; discountAmount: string }[] }
|
||||||
|
company: { name: string; phone: string | null; email: string | null; address: { street?: string; city?: string; state?: string; zip?: string } | null }
|
||||||
|
location: { name: string; phone: string | null; email: string | null; address: { street?: string; city?: string; state?: string; zip?: string } | null }
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AppConfigEntry { key: string; value: string | null }
|
||||||
|
|
||||||
|
function recentTransactionsOptions(search: string) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['pos', 'recent-transactions', search],
|
||||||
|
queryFn: () => api.get<{ data: Transaction[] }>('/v1/transactions', {
|
||||||
|
limit: 15,
|
||||||
|
sort: 'created_at',
|
||||||
|
order: 'desc',
|
||||||
|
...(search ? { q: search } : {}),
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
interface POSTransactionsDialogProps {
|
||||||
|
open: boolean
|
||||||
|
onOpenChange: (open: boolean) => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export function POSTransactionsDialog({ open, onOpenChange }: POSTransactionsDialogProps) {
|
||||||
|
const [search, setSearch] = useState('')
|
||||||
|
const [receiptTxnId, setReceiptTxnId] = useState<string | null>(null)
|
||||||
|
|
||||||
|
const { data: txnData } = useQuery({
|
||||||
|
...recentTransactionsOptions(search),
|
||||||
|
enabled: open,
|
||||||
|
})
|
||||||
|
const transactions = txnData?.data ?? []
|
||||||
|
|
||||||
|
// Fetch receipt for selected transaction
|
||||||
|
const { data: receiptData } = useQuery({
|
||||||
|
queryKey: ['pos', 'receipt', receiptTxnId],
|
||||||
|
queryFn: () => api.get<ReceiptData>(`/v1/transactions/${receiptTxnId}/receipt`),
|
||||||
|
enabled: !!receiptTxnId,
|
||||||
|
})
|
||||||
|
|
||||||
|
const { data: configData } = useQuery({
|
||||||
|
queryKey: ['config'],
|
||||||
|
queryFn: () => api.get<{ data: AppConfigEntry[] }>('/v1/config'),
|
||||||
|
enabled: !!receiptTxnId,
|
||||||
|
})
|
||||||
|
const receiptFormat = usePOSStore((s) => s.receiptFormat)
|
||||||
|
const receiptConfig = {
|
||||||
|
header: configData?.data?.find((c) => c.key === 'receipt_header')?.value || undefined,
|
||||||
|
footer: configData?.data?.find((c) => c.key === 'receipt_footer')?.value || undefined,
|
||||||
|
returnPolicy: configData?.data?.find((c) => c.key === 'receipt_return_policy')?.value || undefined,
|
||||||
|
social: configData?.data?.find((c) => c.key === 'receipt_social')?.value || undefined,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Receipt view
|
||||||
|
if (receiptTxnId && receiptData) {
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className={`${receiptFormat === 'full' ? 'max-w-2xl' : 'max-w-sm'} max-h-[90vh] overflow-y-auto`}>
|
||||||
|
<div className="flex justify-between items-center mb-2">
|
||||||
|
<Button variant="ghost" size="sm" onClick={() => setReceiptTxnId(null)}>Back</Button>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button variant="outline" size="sm" onClick={() => downloadReceiptPDF(receiptData.transaction.transactionNumber, receiptFormat)}>
|
||||||
|
Save PDF
|
||||||
|
</Button>
|
||||||
|
<Button size="sm" onClick={printReceipt} className="gap-2">
|
||||||
|
<Printer className="h-4 w-4" />Print
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="pos-receipt-print">
|
||||||
|
<POSReceipt data={receiptData} size={receiptFormat} config={receiptConfig} />
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="max-w-md max-h-[80vh] flex flex-col">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Recent Transactions</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
<Input
|
||||||
|
value={search}
|
||||||
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
placeholder="Search by transaction number..."
|
||||||
|
className="h-10"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="flex-1 overflow-y-auto">
|
||||||
|
{transactions.length === 0 ? (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-8">No transactions found</p>
|
||||||
|
) : (
|
||||||
|
<div className="divide-y divide-border">
|
||||||
|
{transactions.map((txn) => (
|
||||||
|
<button
|
||||||
|
key={txn.id}
|
||||||
|
onClick={() => setReceiptTxnId(txn.id)}
|
||||||
|
className="w-full text-left py-2.5 px-1 hover:bg-accent/50 rounded transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<span className="text-sm font-mono">{txn.transactionNumber}</span>
|
||||||
|
<span className="text-sm font-semibold">${parseFloat(txn.total).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2 mt-0.5">
|
||||||
|
<Badge
|
||||||
|
variant={txn.status === 'completed' ? 'default' : txn.status === 'voided' ? 'destructive' : 'outline'}
|
||||||
|
className="text-[10px]"
|
||||||
|
>
|
||||||
|
{txn.status}
|
||||||
|
</Badge>
|
||||||
|
{txn.paymentMethod && (
|
||||||
|
<span className="text-xs text-muted-foreground">{txn.paymentMethod.replace('_', ' ')}</span>
|
||||||
|
)}
|
||||||
|
<span className="text-xs text-muted-foreground ml-auto">
|
||||||
|
{new Date(txn.completedAt ?? txn.createdAt).toLocaleString()}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -85,8 +85,9 @@ export function generateRepairPdf({ ticket, lineItems, notes, includeNotes, comp
|
|||||||
doc.text(dateInfo, 14, y)
|
doc.text(dateInfo, 14, y)
|
||||||
y += 8
|
y += 8
|
||||||
|
|
||||||
// Line items table
|
// Line items table (exclude consumables — internal only)
|
||||||
if (lineItems.length > 0) {
|
const billableItems = lineItems.filter((i) => i.itemType !== 'consumable')
|
||||||
|
if (billableItems.length > 0) {
|
||||||
doc.setDrawColor(200)
|
doc.setDrawColor(200)
|
||||||
doc.line(14, y, 196, y)
|
doc.line(14, y, 196, y)
|
||||||
y += 6
|
y += 6
|
||||||
@@ -109,7 +110,7 @@ export function generateRepairPdf({ ticket, lineItems, notes, includeNotes, comp
|
|||||||
|
|
||||||
// Table rows
|
// Table rows
|
||||||
doc.setFont('helvetica', 'normal')
|
doc.setFont('helvetica', 'normal')
|
||||||
for (const item of lineItems) {
|
for (const item of billableItems) {
|
||||||
if (y > 270) { doc.addPage(); y = 20 }
|
if (y > 270) { doc.addPage(); y = 20 }
|
||||||
doc.text(item.itemType.replace('_', ' '), 16, y)
|
doc.text(item.itemType.replace('_', ' '), 16, y)
|
||||||
const descLines = doc.splitTextToSize(item.description, 85)
|
const descLines = doc.splitTextToSize(item.description, 85)
|
||||||
@@ -127,7 +128,7 @@ export function generateRepairPdf({ ticket, lineItems, notes, includeNotes, comp
|
|||||||
y += 5
|
y += 5
|
||||||
doc.setFont('helvetica', 'bold')
|
doc.setFont('helvetica', 'bold')
|
||||||
doc.setFontSize(10)
|
doc.setFontSize(10)
|
||||||
const total = lineItems.reduce((sum, i) => sum + parseFloat(i.totalPrice), 0)
|
const total = billableItems.reduce((sum, i) => sum + parseFloat(i.totalPrice), 0)
|
||||||
doc.text('Total:', 155, y, { align: 'right' })
|
doc.text('Total:', 155, y, { align: 'right' })
|
||||||
doc.text(`$${total.toFixed(2)}`, 190, y, { align: 'right' })
|
doc.text(`$${total.toFixed(2)}`, 190, y, { align: 'right' })
|
||||||
y += 4
|
y += 4
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { CalendarDays, Calendar } from 'lucide-react'
|
||||||
|
import { LessonsTodayOverview } from './lessons-today-overview'
|
||||||
|
import { LessonsScheduleView } from './lessons-schedule-view'
|
||||||
|
|
||||||
|
interface LessonsDeskViewProps {
|
||||||
|
canEdit: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export function LessonsDeskView({ canEdit }: LessonsDeskViewProps) {
|
||||||
|
const [subView, setSubView] = useState<'today' | 'schedule'>('today')
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Sub-view toggle */}
|
||||||
|
<div className="flex items-center gap-1 px-3 py-2 border-b border-border shrink-0 bg-card/50">
|
||||||
|
<Button
|
||||||
|
variant={subView === 'today' ? 'default' : 'ghost'}
|
||||||
|
size="sm"
|
||||||
|
className="h-8 gap-1.5"
|
||||||
|
onClick={() => setSubView('today')}
|
||||||
|
>
|
||||||
|
<CalendarDays className="h-3.5 w-3.5" />
|
||||||
|
Today
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant={subView === 'schedule' ? 'default' : 'ghost'}
|
||||||
|
size="sm"
|
||||||
|
className="h-8 gap-1.5"
|
||||||
|
onClick={() => setSubView('schedule')}
|
||||||
|
>
|
||||||
|
<Calendar className="h-3.5 w-3.5" />
|
||||||
|
Schedule
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Content */}
|
||||||
|
<div className="flex-1 min-h-0 overflow-hidden">
|
||||||
|
{subView === 'today' && <LessonsTodayOverview canEdit={canEdit} />}
|
||||||
|
{subView === 'schedule' && <LessonsScheduleView />}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { CalendarDays, CalendarRange } from 'lucide-react'
|
||||||
|
import { LessonsTodayOverview } from './lessons-today-overview'
|
||||||
|
import { LessonsWeekView } from './lessons-week-view'
|
||||||
|
|
||||||
|
interface LessonsInstructorViewProps {
|
||||||
|
canEdit: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export function LessonsInstructorView({ canEdit }: LessonsInstructorViewProps) {
|
||||||
|
const [subView, setSubView] = useState<'today' | 'week'>('today')
|
||||||
|
const cashier = usePOSStore((s) => s.cashier)
|
||||||
|
|
||||||
|
// TODO: Map cashier user ID to instructor ID
|
||||||
|
// For now, the instructor view shows the same data as desk view
|
||||||
|
// but filtered by the logged-in user's instructor record
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Sub-view toggle */}
|
||||||
|
<div className="flex items-center gap-1 px-3 py-2 border-b border-border shrink-0 bg-card/50">
|
||||||
|
<Button
|
||||||
|
variant={subView === 'today' ? 'default' : 'ghost'}
|
||||||
|
size="sm"
|
||||||
|
className="h-8 gap-1.5"
|
||||||
|
onClick={() => setSubView('today')}
|
||||||
|
>
|
||||||
|
<CalendarDays className="h-3.5 w-3.5" />
|
||||||
|
My Sessions
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant={subView === 'week' ? 'default' : 'ghost'}
|
||||||
|
size="sm"
|
||||||
|
className="h-8 gap-1.5"
|
||||||
|
onClick={() => setSubView('week')}
|
||||||
|
>
|
||||||
|
<CalendarRange className="h-3.5 w-3.5" />
|
||||||
|
Week
|
||||||
|
</Button>
|
||||||
|
{cashier && (
|
||||||
|
<span className="text-xs text-muted-foreground ml-auto">
|
||||||
|
{cashier.firstName} {cashier.lastName}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Content */}
|
||||||
|
<div className="flex-1 min-h-0 overflow-hidden">
|
||||||
|
{subView === 'today' && <LessonsTodayOverview canEdit={canEdit} />}
|
||||||
|
{subView === 'week' && <LessonsWeekView canEdit={canEdit} />}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { instructorListOptions, scheduleSlotListOptions } from '@/api/lessons'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import type { ScheduleSlot, Instructor } from '@/types/lesson'
|
||||||
|
|
||||||
|
const DAYS = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
|
||||||
|
const HOURS = Array.from({ length: 14 }, (_, i) => i + 7) // 7 AM to 8 PM
|
||||||
|
|
||||||
|
export function LessonsScheduleView() {
|
||||||
|
const [selectedInstructorId, setSelectedInstructorId] = useState<string>('all')
|
||||||
|
|
||||||
|
const { data: instructorsData } = useQuery({
|
||||||
|
...instructorListOptions({ page: 1, limit: 100, q: undefined, sort: 'name', order: 'asc' }),
|
||||||
|
})
|
||||||
|
const instructors = (instructorsData?.data ?? []).filter((i: Instructor) => i.isActive !== false)
|
||||||
|
|
||||||
|
const { data: slotsData } = useQuery({
|
||||||
|
...scheduleSlotListOptions(
|
||||||
|
{ page: 1, limit: 500, q: undefined, sort: undefined, order: 'asc' },
|
||||||
|
selectedInstructorId !== 'all' ? { instructorId: selectedInstructorId } : undefined,
|
||||||
|
),
|
||||||
|
})
|
||||||
|
const slots = slotsData?.data ?? []
|
||||||
|
|
||||||
|
// Group slots by day
|
||||||
|
function getSlotsForDay(dayOfWeek: number) {
|
||||||
|
return slots.filter((s: ScheduleSlot) => s.dayOfWeek === dayOfWeek)
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatTime(time: string) {
|
||||||
|
const [h, m] = time.split(':').map(Number)
|
||||||
|
const ampm = h >= 12 ? 'PM' : 'AM'
|
||||||
|
const hour = h > 12 ? h - 12 : h === 0 ? 12 : h
|
||||||
|
return `${hour}:${m.toString().padStart(2, '0')} ${ampm}`
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Controls */}
|
||||||
|
<div className="flex items-center gap-3 px-3 py-2 border-b border-border shrink-0 bg-card/50">
|
||||||
|
<span className="text-sm font-medium">Weekly Schedule</span>
|
||||||
|
<Select value={selectedInstructorId} onValueChange={setSelectedInstructorId}>
|
||||||
|
<SelectTrigger className="h-8 w-48">
|
||||||
|
<SelectValue placeholder="All Instructors" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="all">All Instructors</SelectItem>
|
||||||
|
{instructors.map((inst: Instructor) => (
|
||||||
|
<SelectItem key={inst.id} value={inst.id}>{inst.displayName}</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<Badge variant="outline" className="text-xs">{slots.length} slots</Badge>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Weekly grid */}
|
||||||
|
<div className="flex-1 overflow-auto">
|
||||||
|
<div className="grid grid-cols-8 min-w-[800px]">
|
||||||
|
{/* Header row */}
|
||||||
|
<div className="sticky top-0 bg-card border-b border-r border-border p-2 text-xs font-medium text-muted-foreground z-10" />
|
||||||
|
{DAYS.map((day) => (
|
||||||
|
<div key={day} className="sticky top-0 bg-card border-b border-border p-2 text-xs font-medium text-center z-10">
|
||||||
|
{day.slice(0, 3)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
|
||||||
|
{/* Time rows */}
|
||||||
|
{HOURS.map((hour) => (
|
||||||
|
<>
|
||||||
|
<div key={`h-${hour}`} className="border-r border-b border-border p-1 text-xs text-muted-foreground text-right pr-2">
|
||||||
|
{hour > 12 ? hour - 12 : hour}{hour >= 12 ? 'p' : 'a'}
|
||||||
|
</div>
|
||||||
|
{DAYS.map((_, dayIdx) => {
|
||||||
|
const daySlots = getSlotsForDay(dayIdx).filter((s: ScheduleSlot) => {
|
||||||
|
const slotHour = parseInt(s.startTime.split(':')[0])
|
||||||
|
return slotHour === hour
|
||||||
|
})
|
||||||
|
return (
|
||||||
|
<div key={`${hour}-${dayIdx}`} className="border-b border-border min-h-[48px] p-0.5">
|
||||||
|
{daySlots.map((slot: ScheduleSlot) => {
|
||||||
|
const instructor = instructors.find((i: Instructor) => i.id === slot.instructorId)
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={slot.id}
|
||||||
|
className="bg-primary/10 border border-primary/20 rounded px-1.5 py-0.5 text-xs mb-0.5"
|
||||||
|
>
|
||||||
|
<div className="font-medium truncate">{formatTime(slot.startTime)}</div>
|
||||||
|
{instructor && <div className="text-muted-foreground truncate">{instructor.displayName}</div>}
|
||||||
|
<Badge variant="outline" className="text-[9px] h-4">Open</Badge>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
import { LessonsDeskView } from './lessons-desk-view'
|
||||||
|
import { LessonsInstructorView } from './lessons-instructor-view'
|
||||||
|
|
||||||
|
interface LessonsStationProps {
|
||||||
|
permissions: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export function LessonsStation({ permissions }: LessonsStationProps) {
|
||||||
|
const canEdit = permissions.includes('lessons.edit') || permissions.includes('lessons.admin')
|
||||||
|
|
||||||
|
// Front desk (admin/edit) gets desk view with full overview
|
||||||
|
// Instructor (view only) gets focused instructor view
|
||||||
|
if (canEdit) {
|
||||||
|
return <LessonsDeskView canEdit={canEdit} />
|
||||||
|
}
|
||||||
|
|
||||||
|
return <LessonsInstructorView canEdit={false} />
|
||||||
|
}
|
||||||
@@ -0,0 +1,189 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { sessionListOptions } from '@/api/lessons'
|
||||||
|
import type { LessonSession } from '@/types/lesson'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { SessionDetailPanel } from './session-detail-panel'
|
||||||
|
import { CheckCircle, Clock, XCircle, AlertCircle } from 'lucide-react'
|
||||||
|
|
||||||
|
const STATUS_CONFIG: Record<string, { label: string; color: string; icon: typeof CheckCircle }> = {
|
||||||
|
scheduled: { label: 'Scheduled', color: 'bg-blue-500/10 text-blue-500', icon: Clock },
|
||||||
|
attended: { label: 'Attended', color: 'bg-green-500/10 text-green-500', icon: CheckCircle },
|
||||||
|
missed: { label: 'Missed', color: 'bg-red-500/10 text-red-500', icon: XCircle },
|
||||||
|
makeup: { label: 'Makeup', color: 'bg-purple-500/10 text-purple-500', icon: Clock },
|
||||||
|
cancelled: { label: 'Cancelled', color: 'bg-muted text-muted-foreground', icon: XCircle },
|
||||||
|
}
|
||||||
|
|
||||||
|
interface LessonsTodayOverviewProps {
|
||||||
|
canEdit: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export function LessonsTodayOverview({ canEdit }: LessonsTodayOverviewProps) {
|
||||||
|
const [selectedSessionId, setSelectedSessionId] = useState<string | null>(null)
|
||||||
|
const [groupBy, setGroupBy] = useState<'time' | 'instructor'>('time')
|
||||||
|
|
||||||
|
const today = new Date().toISOString().slice(0, 10)
|
||||||
|
|
||||||
|
const { data, isLoading } = useQuery({
|
||||||
|
...sessionListOptions({
|
||||||
|
page: 1,
|
||||||
|
limit: 100,
|
||||||
|
sort: 'scheduled_time',
|
||||||
|
order: 'asc',
|
||||||
|
scheduledDateFrom: today,
|
||||||
|
scheduledDateTo: today,
|
||||||
|
}),
|
||||||
|
staleTime: 30_000,
|
||||||
|
refetchInterval: 60_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
const sessions = data?.data ?? []
|
||||||
|
|
||||||
|
// Check if a session is upcoming (within next 30 min)
|
||||||
|
function isUpcoming(session: LessonSession) {
|
||||||
|
if (session.status !== 'scheduled') return false
|
||||||
|
const now = new Date()
|
||||||
|
const [hours, minutes] = session.scheduledTime.split(':').map(Number)
|
||||||
|
const sessionTime = new Date(session.scheduledDate + 'T00:00:00')
|
||||||
|
sessionTime.setHours(hours, minutes)
|
||||||
|
const diff = sessionTime.getTime() - now.getTime()
|
||||||
|
return diff > 0 && diff <= 30 * 60_000
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if overdue (scheduled, past time)
|
||||||
|
function isOverdue(session: LessonSession) {
|
||||||
|
if (session.status !== 'scheduled') return false
|
||||||
|
const now = new Date()
|
||||||
|
const [hours, minutes] = session.scheduledTime.split(':').map(Number)
|
||||||
|
const sessionTime = new Date(session.scheduledDate + 'T00:00:00')
|
||||||
|
sessionTime.setHours(hours, minutes)
|
||||||
|
return sessionTime.getTime() < now.getTime()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Group by instructor
|
||||||
|
const byInstructor = sessions.reduce((acc, s) => {
|
||||||
|
const name = s.instructorName ?? 'Unassigned'
|
||||||
|
if (!acc[name]) acc[name] = []
|
||||||
|
acc[name].push(s)
|
||||||
|
return acc
|
||||||
|
}, {} as Record<string, LessonSession[]>)
|
||||||
|
|
||||||
|
// Status counts
|
||||||
|
const scheduled = sessions.filter(s => s.status === 'scheduled').length
|
||||||
|
const attended = sessions.filter(s => s.status === 'attended').length
|
||||||
|
const missed = sessions.filter(s => s.status === 'missed').length
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Summary bar */}
|
||||||
|
<div className="flex items-center gap-3 px-3 py-2 border-b border-border shrink-0 bg-card/50">
|
||||||
|
<span className="text-sm font-medium">Today</span>
|
||||||
|
<Badge variant="outline" className="text-xs">{sessions.length} sessions</Badge>
|
||||||
|
{scheduled > 0 && <Badge variant="outline" className="text-xs bg-blue-500/10 text-blue-500">{scheduled} scheduled</Badge>}
|
||||||
|
{attended > 0 && <Badge variant="outline" className="text-xs bg-green-500/10 text-green-500">{attended} attended</Badge>}
|
||||||
|
{missed > 0 && <Badge variant="outline" className="text-xs bg-red-500/10 text-red-500">{missed} missed</Badge>}
|
||||||
|
<div className="flex-1" />
|
||||||
|
<div className="flex gap-1">
|
||||||
|
<Button variant={groupBy === 'time' ? 'default' : 'ghost'} size="sm" className="h-7 text-xs" onClick={() => setGroupBy('time')}>By Time</Button>
|
||||||
|
<Button variant={groupBy === 'instructor' ? 'default' : 'ghost'} size="sm" className="h-7 text-xs" onClick={() => setGroupBy('instructor')}>By Instructor</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Split view */}
|
||||||
|
<div className="flex flex-1 min-h-0">
|
||||||
|
{/* Session list */}
|
||||||
|
<div className="w-[40%] border-r border-border overflow-y-auto">
|
||||||
|
{isLoading ? (
|
||||||
|
<div className="p-3 space-y-2">
|
||||||
|
{Array.from({ length: 5 }).map((_, i) => (
|
||||||
|
<div key={i} className="h-14 bg-muted animate-pulse rounded-lg" />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
) : sessions.length === 0 ? (
|
||||||
|
<div className="flex items-center justify-center h-full text-muted-foreground">
|
||||||
|
<p className="text-sm">No sessions today</p>
|
||||||
|
</div>
|
||||||
|
) : groupBy === 'time' ? (
|
||||||
|
<div className="px-2 py-2 space-y-1">
|
||||||
|
{sessions.map((session) => (
|
||||||
|
<SessionRow
|
||||||
|
key={session.id}
|
||||||
|
session={session}
|
||||||
|
selected={selectedSessionId === session.id}
|
||||||
|
upcoming={isUpcoming(session)}
|
||||||
|
overdue={isOverdue(session)}
|
||||||
|
onClick={() => setSelectedSessionId(session.id)}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="px-2 py-2 space-y-3">
|
||||||
|
{Object.entries(byInstructor).map(([instructor, instructorSessions]) => (
|
||||||
|
<div key={instructor}>
|
||||||
|
<p className="text-xs font-semibold text-muted-foreground px-2 mb-1">{instructor}</p>
|
||||||
|
<div className="space-y-1">
|
||||||
|
{instructorSessions.map((session) => (
|
||||||
|
<SessionRow
|
||||||
|
key={session.id}
|
||||||
|
session={session}
|
||||||
|
selected={selectedSessionId === session.id}
|
||||||
|
upcoming={isUpcoming(session)}
|
||||||
|
overdue={isOverdue(session)}
|
||||||
|
onClick={() => setSelectedSessionId(session.id)}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Detail panel */}
|
||||||
|
<div className="w-[60%] overflow-hidden">
|
||||||
|
<SessionDetailPanel sessionId={selectedSessionId} canEdit={canEdit} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SessionRow({ session, selected, upcoming, overdue, onClick }: {
|
||||||
|
session: LessonSession
|
||||||
|
selected: boolean
|
||||||
|
upcoming: boolean
|
||||||
|
overdue: boolean
|
||||||
|
onClick: () => void
|
||||||
|
}) {
|
||||||
|
const cfg = STATUS_CONFIG[session.status] ?? { label: session.status, color: '', icon: Clock }
|
||||||
|
const StatusIcon = cfg.icon
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
className={`w-full text-left p-3 rounded-lg transition-colors ${
|
||||||
|
selected ? 'bg-primary/10 border border-primary/20' :
|
||||||
|
upcoming ? 'bg-yellow-500/5 border border-yellow-500/20 hover:bg-yellow-500/10' :
|
||||||
|
overdue ? 'bg-red-500/5 border border-red-500/20 hover:bg-red-500/10' :
|
||||||
|
'hover:bg-muted border border-transparent'
|
||||||
|
}`}
|
||||||
|
onClick={onClick}
|
||||||
|
>
|
||||||
|
<div className="flex items-center justify-between mb-0.5">
|
||||||
|
<span className="text-sm font-medium">{session.scheduledTime}</span>
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
{overdue && <AlertCircle className="h-3.5 w-3.5 text-red-500" />}
|
||||||
|
<Badge variant="outline" className={`text-[10px] ${cfg.color}`}>
|
||||||
|
<StatusIcon className="h-2.5 w-2.5 mr-0.5" />
|
||||||
|
{cfg.label}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-sm">{session.memberName ?? 'Unknown'}</div>
|
||||||
|
<div className="flex items-center justify-between text-xs text-muted-foreground mt-0.5">
|
||||||
|
<span>{session.lessonTypeName ?? 'Lesson'}</span>
|
||||||
|
<span>{session.instructorName ?? ''}</span>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,140 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { sessionListOptions } from '@/api/lessons'
|
||||||
|
import type { LessonSession } from '@/types/lesson'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Dialog, DialogContent } from '@/components/ui/dialog'
|
||||||
|
import { SessionDetailPanel } from './session-detail-panel'
|
||||||
|
import { ChevronLeft, ChevronRight } from 'lucide-react'
|
||||||
|
|
||||||
|
const DAYS = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
|
||||||
|
const STATUS_COLORS: Record<string, string> = {
|
||||||
|
scheduled: 'bg-blue-500/15 border-blue-500/30 text-blue-700 dark:text-blue-300',
|
||||||
|
attended: 'bg-green-500/15 border-green-500/30 text-green-700 dark:text-green-300',
|
||||||
|
missed: 'bg-red-500/15 border-red-500/30 text-red-700 dark:text-red-300',
|
||||||
|
makeup: 'bg-purple-500/15 border-purple-500/30 text-purple-700 dark:text-purple-300',
|
||||||
|
cancelled: 'bg-muted border-border text-muted-foreground',
|
||||||
|
}
|
||||||
|
|
||||||
|
interface LessonsWeekViewProps {
|
||||||
|
canEdit: boolean
|
||||||
|
instructorId?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export function LessonsWeekView({ canEdit, instructorId }: LessonsWeekViewProps) {
|
||||||
|
const [weekOffset, setWeekOffset] = useState(0)
|
||||||
|
const [selectedSessionId, setSelectedSessionId] = useState<string | null>(null)
|
||||||
|
|
||||||
|
// Get week start (Monday) and end (Sunday)
|
||||||
|
const now = new Date()
|
||||||
|
const monday = new Date(now)
|
||||||
|
monday.setDate(now.getDate() - ((now.getDay() + 6) % 7) + weekOffset * 7)
|
||||||
|
monday.setHours(0, 0, 0, 0)
|
||||||
|
const sunday = new Date(monday)
|
||||||
|
sunday.setDate(monday.getDate() + 6)
|
||||||
|
|
||||||
|
const weekStart = monday.toISOString().slice(0, 10)
|
||||||
|
const weekEnd = sunday.toISOString().slice(0, 10)
|
||||||
|
|
||||||
|
const { data } = useQuery({
|
||||||
|
...sessionListOptions({
|
||||||
|
page: 1,
|
||||||
|
limit: 200,
|
||||||
|
sort: 'scheduled_time',
|
||||||
|
order: 'asc',
|
||||||
|
scheduledDateFrom: weekStart,
|
||||||
|
scheduledDateTo: weekEnd,
|
||||||
|
...(instructorId ? { instructorId } : {}),
|
||||||
|
}),
|
||||||
|
staleTime: 30_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
const sessions = data?.data ?? []
|
||||||
|
|
||||||
|
// Group sessions by date
|
||||||
|
const byDate = new Map<string, LessonSession[]>()
|
||||||
|
for (const s of sessions) {
|
||||||
|
const existing = byDate.get(s.scheduledDate) ?? []
|
||||||
|
existing.push(s)
|
||||||
|
byDate.set(s.scheduledDate, existing)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate week dates
|
||||||
|
const weekDates = Array.from({ length: 7 }, (_, i) => {
|
||||||
|
const d = new Date(monday)
|
||||||
|
d.setDate(monday.getDate() + i)
|
||||||
|
return d.toISOString().slice(0, 10)
|
||||||
|
})
|
||||||
|
|
||||||
|
const todayStr = new Date().toISOString().slice(0, 10)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Week navigation */}
|
||||||
|
<div className="flex items-center justify-between px-3 py-2 border-b border-border shrink-0 bg-card/50">
|
||||||
|
<Button variant="ghost" size="icon" className="h-8 w-8" onClick={() => setWeekOffset(weekOffset - 1)}>
|
||||||
|
<ChevronLeft className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
<div className="text-sm font-medium">
|
||||||
|
{monday.toLocaleDateString('en-US', { month: 'short', day: 'numeric' })} — {sunday.toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' })}
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-1">
|
||||||
|
{weekOffset !== 0 && (
|
||||||
|
<Button variant="ghost" size="sm" className="h-8 text-xs" onClick={() => setWeekOffset(0)}>Today</Button>
|
||||||
|
)}
|
||||||
|
<Button variant="ghost" size="icon" className="h-8 w-8" onClick={() => setWeekOffset(weekOffset + 1)}>
|
||||||
|
<ChevronRight className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Calendar grid */}
|
||||||
|
<div className="flex-1 overflow-auto">
|
||||||
|
<div className="grid grid-cols-7 min-h-full">
|
||||||
|
{weekDates.map((dateStr, i) => {
|
||||||
|
const daySessions = byDate.get(dateStr) ?? []
|
||||||
|
const isToday = dateStr === todayStr
|
||||||
|
const dayDate = new Date(dateStr + 'T00:00:00')
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div key={dateStr} className={`border-r border-border ${i === 6 ? 'border-r-0' : ''}`}>
|
||||||
|
{/* Day header */}
|
||||||
|
<div className={`sticky top-0 z-10 p-2 border-b border-border text-center ${isToday ? 'bg-primary/5' : 'bg-card'}`}>
|
||||||
|
<div className="text-xs text-muted-foreground">{DAYS[dayDate.getDay()]}</div>
|
||||||
|
<div className={`text-sm font-medium ${isToday ? 'text-primary' : ''}`}>
|
||||||
|
{dayDate.getDate()}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Sessions */}
|
||||||
|
<div className="p-1 space-y-1">
|
||||||
|
{daySessions.map((session) => (
|
||||||
|
<button
|
||||||
|
key={session.id}
|
||||||
|
className={`w-full text-left p-2 rounded border text-xs transition-colors hover:opacity-80 ${STATUS_COLORS[session.status] ?? ''}`}
|
||||||
|
onClick={() => setSelectedSessionId(session.id)}
|
||||||
|
>
|
||||||
|
<div className="font-medium">{session.scheduledTime}</div>
|
||||||
|
<div className="truncate">{session.memberName ?? 'Unknown'}</div>
|
||||||
|
<div className="truncate text-muted-foreground">{session.lessonTypeName ?? ''}</div>
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
{daySessions.length === 0 && (
|
||||||
|
<div className="text-xs text-muted-foreground text-center py-4 opacity-30">—</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Session detail dialog */}
|
||||||
|
<Dialog open={!!selectedSessionId} onOpenChange={(open) => { if (!open) setSelectedSessionId(null) }}>
|
||||||
|
<DialogContent className="max-w-lg max-h-[80vh] overflow-hidden p-0">
|
||||||
|
<SessionDetailPanel sessionId={selectedSessionId} canEdit={canEdit} />
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,201 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { sessionDetailOptions, sessionKeys, sessionMutations, sessionPlanItemsOptions } from '@/api/lessons'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Textarea } from '@/components/ui/textarea'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { CheckCircle, XCircle, Clock, GraduationCap } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
|
||||||
|
const STATUS_CONFIG: Record<string, { label: string; color: string }> = {
|
||||||
|
scheduled: { label: 'Scheduled', color: 'bg-blue-500/10 text-blue-500' },
|
||||||
|
attended: { label: 'Attended', color: 'bg-green-500/10 text-green-500' },
|
||||||
|
missed: { label: 'Missed', color: 'bg-red-500/10 text-red-500' },
|
||||||
|
makeup: { label: 'Makeup', color: 'bg-purple-500/10 text-purple-500' },
|
||||||
|
cancelled: { label: 'Cancelled', color: 'bg-muted text-muted-foreground' },
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SessionDetailPanelProps {
|
||||||
|
sessionId: string | null
|
||||||
|
canEdit: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export function SessionDetailPanel({ sessionId, canEdit }: SessionDetailPanelProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const [notes, setNotes] = useState('')
|
||||||
|
const [notesLoaded, setNotesLoaded] = useState(false)
|
||||||
|
|
||||||
|
const { data: session, isLoading } = useQuery({
|
||||||
|
...sessionDetailOptions(sessionId ?? ''),
|
||||||
|
enabled: !!sessionId,
|
||||||
|
})
|
||||||
|
|
||||||
|
const { data: planItems } = useQuery({
|
||||||
|
...sessionPlanItemsOptions(sessionId ?? ''),
|
||||||
|
enabled: !!sessionId,
|
||||||
|
})
|
||||||
|
|
||||||
|
// Sync notes from session data
|
||||||
|
if (session && !notesLoaded) {
|
||||||
|
setNotes(session.instructorNotes ?? '')
|
||||||
|
setNotesLoaded(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
const statusMutation = useMutation({
|
||||||
|
mutationFn: (status: string) => sessionMutations.updateStatus(sessionId!, status),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: sessionKeys.detail(sessionId!) })
|
||||||
|
queryClient.invalidateQueries({ queryKey: sessionKeys.all })
|
||||||
|
toast.success('Attendance recorded')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const notesMutation = useMutation({
|
||||||
|
mutationFn: () => sessionMutations.updateNotes(sessionId!, { instructorNotes: notes }),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: sessionKeys.detail(sessionId!) })
|
||||||
|
toast.success('Notes saved')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!sessionId) {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center justify-center h-full text-muted-foreground">
|
||||||
|
<div className="text-center space-y-2">
|
||||||
|
<GraduationCap className="h-10 w-10 mx-auto opacity-20" />
|
||||||
|
<p className="text-sm">Select a session</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isLoading || !session) {
|
||||||
|
return (
|
||||||
|
<div className="p-4 space-y-4">
|
||||||
|
<div className="h-8 bg-muted animate-pulse rounded" />
|
||||||
|
<div className="h-20 bg-muted animate-pulse rounded" />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const status = STATUS_CONFIG[session.status] ?? { label: session.status, color: '' }
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full overflow-hidden">
|
||||||
|
{/* Header */}
|
||||||
|
<div className="p-4 border-b border-border shrink-0">
|
||||||
|
<div className="flex items-center justify-between mb-2">
|
||||||
|
<div>
|
||||||
|
<h3 className="text-lg font-semibold">{session.memberName ?? 'Unknown Student'}</h3>
|
||||||
|
<p className="text-sm text-muted-foreground">
|
||||||
|
{session.lessonTypeName ?? 'Lesson'} — {session.instructorName ?? 'No instructor'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Badge variant="outline" className={status.color}>{status.label}</Badge>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-4 text-sm text-muted-foreground">
|
||||||
|
<span>{new Date(session.scheduledDate + 'T00:00:00').toLocaleDateString('en-US', { weekday: 'short', month: 'short', day: 'numeric' })}</span>
|
||||||
|
<span>{session.scheduledTime}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Attendance buttons */}
|
||||||
|
{canEdit && session.status === 'scheduled' && (
|
||||||
|
<div className="flex gap-2 p-3 border-b border-border shrink-0 bg-muted/30">
|
||||||
|
<Button
|
||||||
|
className="flex-1 h-12 gap-2 bg-green-600 hover:bg-green-700"
|
||||||
|
onClick={() => statusMutation.mutate('attended')}
|
||||||
|
disabled={statusMutation.isPending}
|
||||||
|
>
|
||||||
|
<CheckCircle className="h-5 w-5" />
|
||||||
|
Attended
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex-1 h-12 gap-2 text-red-500 border-red-500/30 hover:bg-red-500/10"
|
||||||
|
onClick={() => statusMutation.mutate('missed')}
|
||||||
|
disabled={statusMutation.isPending}
|
||||||
|
>
|
||||||
|
<XCircle className="h-5 w-5" />
|
||||||
|
Missed
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex-1 h-12 gap-2"
|
||||||
|
onClick={() => statusMutation.mutate('cancelled')}
|
||||||
|
disabled={statusMutation.isPending}
|
||||||
|
>
|
||||||
|
<Clock className="h-5 w-5" />
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Content */}
|
||||||
|
<div className="flex-1 overflow-y-auto p-4 space-y-4">
|
||||||
|
{/* Plan items */}
|
||||||
|
{planItems && planItems.length > 0 && (
|
||||||
|
<div>
|
||||||
|
<Label className="text-xs text-muted-foreground">Lesson Plan Items</Label>
|
||||||
|
<div className="mt-2 space-y-1">
|
||||||
|
{planItems.map((item) => (
|
||||||
|
<div key={item.id} className="flex items-center gap-2 py-1 text-sm">
|
||||||
|
<div className="h-4 w-4 rounded border border-border" />
|
||||||
|
<span>{item.lessonPlanItemId}</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Notes */}
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label className="text-xs text-muted-foreground">Instructor Notes</Label>
|
||||||
|
<Textarea
|
||||||
|
value={notes}
|
||||||
|
onChange={(e) => setNotes(e.target.value)}
|
||||||
|
placeholder="Session notes, observations, homework..."
|
||||||
|
rows={4}
|
||||||
|
disabled={!canEdit}
|
||||||
|
/>
|
||||||
|
{canEdit && (
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
onClick={() => notesMutation.mutate()}
|
||||||
|
disabled={notesMutation.isPending || notes === (session.instructorNotes ?? '')}
|
||||||
|
>
|
||||||
|
{notesMutation.isPending ? 'Saving...' : 'Save Notes'}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Previous notes */}
|
||||||
|
{session.homeworkAssigned && (
|
||||||
|
<div>
|
||||||
|
<Label className="text-xs text-muted-foreground">Homework Assigned</Label>
|
||||||
|
<p className="text-sm mt-1">{session.homeworkAssigned}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{session.nextLessonGoals && (
|
||||||
|
<div>
|
||||||
|
<Label className="text-xs text-muted-foreground">Next Lesson Goals</Label>
|
||||||
|
<p className="text-sm mt-1">{session.nextLessonGoals}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{session.topicsCovered && session.topicsCovered.length > 0 && (
|
||||||
|
<div>
|
||||||
|
<Label className="text-xs text-muted-foreground">Topics Covered</Label>
|
||||||
|
<div className="flex gap-1.5 flex-wrap mt-1">
|
||||||
|
{session.topicsCovered.map((topic, i) => (
|
||||||
|
<Badge key={i} variant="outline" className="text-xs">{topic}</Badge>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { RepairStatusBar } from './repair-status-bar'
|
||||||
|
import { RepairQueuePanel } from './repair-queue-panel'
|
||||||
|
import { RepairDetailPanel } from './repair-detail-panel'
|
||||||
|
import { RepairIntakeForm } from './repair-intake-form'
|
||||||
|
|
||||||
|
interface RepairDeskViewProps {
|
||||||
|
canEdit: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RepairDeskView({ canEdit }: RepairDeskViewProps) {
|
||||||
|
const [selectedTicketId, setSelectedTicketId] = useState<string | null>(null)
|
||||||
|
const [intakeMode, setIntakeMode] = useState(false)
|
||||||
|
const [statusFilter, setStatusFilter] = useState<string[] | null>(null)
|
||||||
|
const [activeFilterLabel, setActiveFilterLabel] = useState<string | null>(null)
|
||||||
|
|
||||||
|
function handleFilterChange(statuses: string[] | null) {
|
||||||
|
setStatusFilter(statuses)
|
||||||
|
// Track which group label is active for the status bar highlight
|
||||||
|
if (!statuses) {
|
||||||
|
setActiveFilterLabel(null)
|
||||||
|
} else {
|
||||||
|
// Map statuses back to group label
|
||||||
|
const groups: Record<string, string> = {
|
||||||
|
new: 'New', in_transit: 'New', intake: 'New',
|
||||||
|
diagnosing: 'Diagnosing', pending_approval: 'Diagnosing',
|
||||||
|
approved: 'In Progress', in_progress: 'In Progress', pending_parts: 'In Progress',
|
||||||
|
ready: 'Ready',
|
||||||
|
}
|
||||||
|
setActiveFilterLabel(groups[statuses[0]] ?? null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (intakeMode) {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
<RepairIntakeForm
|
||||||
|
onComplete={(ticketId) => {
|
||||||
|
setIntakeMode(false)
|
||||||
|
setSelectedTicketId(ticketId)
|
||||||
|
}}
|
||||||
|
onCancel={() => setIntakeMode(false)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
<RepairStatusBar activeFilter={activeFilterLabel} onFilterChange={handleFilterChange} />
|
||||||
|
<div className="flex flex-1 min-h-0">
|
||||||
|
<div className="w-[35%] border-r border-border overflow-hidden">
|
||||||
|
<RepairQueuePanel
|
||||||
|
selectedTicketId={selectedTicketId}
|
||||||
|
onSelectTicket={setSelectedTicketId}
|
||||||
|
onNewIntake={() => setIntakeMode(true)}
|
||||||
|
statusFilter={statusFilter}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="w-[65%] overflow-hidden">
|
||||||
|
<RepairDetailPanel ticketId={selectedTicketId} canEdit={canEdit} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,216 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import {
|
||||||
|
repairTicketDetailOptions, repairTicketKeys, repairTicketMutations,
|
||||||
|
repairLineItemListOptions,
|
||||||
|
} from '@/api/repairs'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { StatusProgress } from '@/components/repairs/status-progress'
|
||||||
|
import { TicketNotes } from '@/components/repairs/ticket-notes'
|
||||||
|
import { TicketPhotos } from '@/components/repairs/ticket-photos'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { Mail, ChevronRight, Wrench } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
|
||||||
|
const STATUS_FLOW = ['new', 'intake', 'diagnosing', 'pending_approval', 'approved', 'in_progress', 'ready', 'picked_up']
|
||||||
|
|
||||||
|
interface RepairDetailPanelProps {
|
||||||
|
ticketId: string | null
|
||||||
|
canEdit: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RepairDetailPanel({ ticketId, canEdit }: RepairDetailPanelProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const [activeSection, setActiveSection] = useState<'details' | 'notes' | 'photos'>('details')
|
||||||
|
|
||||||
|
const { data: ticket, isLoading } = useQuery({
|
||||||
|
...repairTicketDetailOptions(ticketId ?? ''),
|
||||||
|
enabled: !!ticketId,
|
||||||
|
})
|
||||||
|
|
||||||
|
const { data: lineItemsData } = useQuery({
|
||||||
|
...repairLineItemListOptions(ticketId ?? '', { page: 1, limit: 100, q: undefined, sort: undefined, order: 'asc' }),
|
||||||
|
enabled: !!ticketId,
|
||||||
|
})
|
||||||
|
|
||||||
|
const statusMutation = useMutation({
|
||||||
|
mutationFn: (status: string) => repairTicketMutations.updateStatus(ticketId!, status),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: repairTicketKeys.detail(ticketId!) })
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['repair-tickets', 'station-all'] })
|
||||||
|
toast.success('Status updated')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const emailEstimateMutation = useMutation({
|
||||||
|
mutationFn: (email: string) => api.post(`/v1/repair-tickets/${ticketId}/email-estimate`, { email }),
|
||||||
|
onSuccess: () => toast.success('Estimate emailed'),
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!ticketId) {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center justify-center h-full text-muted-foreground">
|
||||||
|
<div className="text-center space-y-2">
|
||||||
|
<Wrench className="h-10 w-10 mx-auto opacity-20" />
|
||||||
|
<p className="text-sm">Select a ticket from the queue</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isLoading || !ticket) {
|
||||||
|
return (
|
||||||
|
<div className="p-4 space-y-4">
|
||||||
|
<div className="h-8 bg-muted animate-pulse rounded" />
|
||||||
|
<div className="h-20 bg-muted animate-pulse rounded" />
|
||||||
|
<div className="h-40 bg-muted animate-pulse rounded" />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const lineItems = lineItemsData?.data ?? []
|
||||||
|
const currentIdx = STATUS_FLOW.indexOf(ticket.status)
|
||||||
|
const nextStatus = currentIdx >= 0 && currentIdx < STATUS_FLOW.length - 1 ? STATUS_FLOW[currentIdx + 1] : null
|
||||||
|
const isTerminal = ['picked_up', 'delivered', 'cancelled'].includes(ticket.status)
|
||||||
|
|
||||||
|
function handleStatusClick(status: string) {
|
||||||
|
if (canEdit && !isTerminal) statusMutation.mutate(status)
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleEmailEstimate() {
|
||||||
|
const email = (ticket as any).customerEmail
|
||||||
|
if (email) {
|
||||||
|
emailEstimateMutation.mutate(email)
|
||||||
|
} else {
|
||||||
|
toast.error('No customer email on file')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full overflow-hidden">
|
||||||
|
{/* Header */}
|
||||||
|
<div className="p-3 border-b border-border shrink-0">
|
||||||
|
<div className="flex items-center justify-between mb-2">
|
||||||
|
<div>
|
||||||
|
<h3 className="text-lg font-semibold">#{ticket.ticketNumber}</h3>
|
||||||
|
<p className="text-sm text-muted-foreground">{ticket.customerName}</p>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button variant="outline" size="sm" className="gap-1.5" onClick={handleEmailEstimate}>
|
||||||
|
<Mail className="h-3.5 w-3.5" />
|
||||||
|
<span className="hidden lg:inline">Email Estimate</span>
|
||||||
|
</Button>
|
||||||
|
{canEdit && nextStatus && !isTerminal && (
|
||||||
|
<Button size="sm" className="gap-1.5" onClick={() => statusMutation.mutate(nextStatus)}>
|
||||||
|
Next <ChevronRight className="h-3.5 w-3.5" />
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<StatusProgress
|
||||||
|
currentStatus={ticket.status}
|
||||||
|
onStatusClick={canEdit && !isTerminal ? handleStatusClick : undefined}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Section toggle */}
|
||||||
|
<div className="flex gap-1 px-3 py-2 border-b border-border shrink-0 bg-muted/30">
|
||||||
|
{(['details', 'notes', 'photos'] as const).map((s) => (
|
||||||
|
<Button
|
||||||
|
key={s}
|
||||||
|
variant={activeSection === s ? 'default' : 'ghost'}
|
||||||
|
size="sm"
|
||||||
|
className="h-7 text-xs capitalize"
|
||||||
|
onClick={() => setActiveSection(s)}
|
||||||
|
>
|
||||||
|
{s}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Content */}
|
||||||
|
<div className="flex-1 overflow-y-auto p-3">
|
||||||
|
{activeSection === 'details' && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
{/* Item info */}
|
||||||
|
<div className="space-y-1">
|
||||||
|
<p className="text-sm"><span className="text-muted-foreground">Item:</span> {ticket.itemDescription ?? 'N/A'}</p>
|
||||||
|
{ticket.serialNumber && <p className="text-sm"><span className="text-muted-foreground">S/N:</span> {ticket.serialNumber}</p>}
|
||||||
|
{ticket.conditionIn && <p className="text-sm"><span className="text-muted-foreground">Condition:</span> {ticket.conditionIn}</p>}
|
||||||
|
{ticket.conditionInNotes && <p className="text-sm text-muted-foreground">{ticket.conditionInNotes}</p>}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
{/* Problem */}
|
||||||
|
<div>
|
||||||
|
<p className="text-xs font-medium text-muted-foreground mb-1">Problem</p>
|
||||||
|
<p className="text-sm">{ticket.problemDescription}</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Dates */}
|
||||||
|
<div className="flex gap-4">
|
||||||
|
{ticket.promisedDate && (
|
||||||
|
<div>
|
||||||
|
<p className="text-xs text-muted-foreground">Promised</p>
|
||||||
|
<p className="text-sm font-medium">{new Date(ticket.promisedDate).toLocaleDateString()}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{ticket.estimatedCost && (
|
||||||
|
<div>
|
||||||
|
<p className="text-xs text-muted-foreground">Estimate</p>
|
||||||
|
<p className="text-sm font-medium">${ticket.estimatedCost}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{ticket.actualCost && (
|
||||||
|
<div>
|
||||||
|
<p className="text-xs text-muted-foreground">Actual</p>
|
||||||
|
<p className="text-sm font-medium">${ticket.actualCost}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Line items */}
|
||||||
|
{lineItems.length > 0 && (
|
||||||
|
<>
|
||||||
|
<Separator />
|
||||||
|
<div>
|
||||||
|
<p className="text-xs font-medium text-muted-foreground mb-2">Line Items</p>
|
||||||
|
<div className="space-y-1">
|
||||||
|
{lineItems.map((item) => (
|
||||||
|
<div key={item.id} className="flex items-center justify-between text-sm py-1">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Badge variant="outline" className="text-[10px] h-5">{item.itemType}</Badge>
|
||||||
|
<span>{item.description}</span>
|
||||||
|
</div>
|
||||||
|
<span className="font-medium">${item.totalPrice}</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
<Separator />
|
||||||
|
<div className="flex justify-between text-sm font-semibold pt-1">
|
||||||
|
<span>Total</span>
|
||||||
|
<span>${lineItems.reduce((sum, i) => sum + parseFloat(i.totalPrice), 0).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{activeSection === 'notes' && ticketId && (
|
||||||
|
<TicketNotes ticketId={ticketId} />
|
||||||
|
)}
|
||||||
|
|
||||||
|
{activeSection === 'photos' && ticketId && (
|
||||||
|
<TicketPhotos ticketId={ticketId} currentStatus={ticket.status} />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,392 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { repairTicketMutations, repairLineItemMutations, repairServiceTemplateListOptions } from '@/api/repairs'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { Textarea } from '@/components/ui/textarea'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { ArrowLeft, ArrowRight, Plus, Trash2, Check, Search } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
import type { RepairServiceTemplate } from '@/types/repair'
|
||||||
|
import type { PaginatedResponse } from '@lunarfront/shared/schemas'
|
||||||
|
|
||||||
|
interface RepairIntakeFormProps {
|
||||||
|
onComplete: (ticketId: string) => void
|
||||||
|
onCancel: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
interface LineItemDraft {
|
||||||
|
id: string
|
||||||
|
itemType: string
|
||||||
|
description: string
|
||||||
|
qty: number
|
||||||
|
unitPrice: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const STEPS = ['Customer', 'Item', 'Problem & Estimate', 'Review']
|
||||||
|
const CONDITIONS = [
|
||||||
|
{ value: 'excellent', label: 'Excellent' },
|
||||||
|
{ value: 'good', label: 'Good' },
|
||||||
|
{ value: 'fair', label: 'Fair' },
|
||||||
|
{ value: 'poor', label: 'Poor' },
|
||||||
|
]
|
||||||
|
|
||||||
|
export function RepairIntakeForm({ onComplete, onCancel }: RepairIntakeFormProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const [step, setStep] = useState(0)
|
||||||
|
|
||||||
|
// Customer
|
||||||
|
const [customerName, setCustomerName] = useState('')
|
||||||
|
const [customerPhone, setCustomerPhone] = useState('')
|
||||||
|
const [customerEmail, setCustomerEmail] = useState('')
|
||||||
|
const [accountId, setAccountId] = useState<string | null>(null)
|
||||||
|
|
||||||
|
// Account search
|
||||||
|
const [accountSearch, setAccountSearch] = useState('')
|
||||||
|
const { data: accountResults } = useQuery({
|
||||||
|
queryKey: ['accounts', 'search', accountSearch],
|
||||||
|
queryFn: () => api.get<PaginatedResponse<{ id: string; name: string; email: string | null; phone: string | null }>>('/v1/accounts', { page: 1, limit: 10, q: accountSearch }),
|
||||||
|
enabled: accountSearch.length >= 2,
|
||||||
|
staleTime: 10_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
// Item
|
||||||
|
const [itemDescription, setItemDescription] = useState('')
|
||||||
|
const [serialNumber, setSerialNumber] = useState('')
|
||||||
|
const [conditionIn, setConditionIn] = useState('')
|
||||||
|
const [conditionInNotes, setConditionInNotes] = useState('')
|
||||||
|
|
||||||
|
// Problem & Estimate
|
||||||
|
const [problemDescription, setProblemDescription] = useState('')
|
||||||
|
const [estimatedCost, setEstimatedCost] = useState('')
|
||||||
|
const [promisedDate, setPromisedDate] = useState('')
|
||||||
|
const [lineItems, setLineItems] = useState<LineItemDraft[]>([])
|
||||||
|
|
||||||
|
// Templates for quick-add
|
||||||
|
const { data: templatesData } = useQuery({
|
||||||
|
...repairServiceTemplateListOptions({ page: 1, limit: 100, q: undefined, sort: 'sort_order', order: 'asc' }),
|
||||||
|
})
|
||||||
|
const templates = templatesData?.data ?? []
|
||||||
|
|
||||||
|
function addLineItem(template?: RepairServiceTemplate) {
|
||||||
|
setLineItems([...lineItems, {
|
||||||
|
id: crypto.randomUUID(),
|
||||||
|
itemType: template?.itemType ?? 'labor',
|
||||||
|
description: template?.description ?? template?.name ?? '',
|
||||||
|
qty: 1,
|
||||||
|
unitPrice: parseFloat(template?.defaultPrice ?? '0'),
|
||||||
|
}])
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeLineItem(id: string) {
|
||||||
|
setLineItems(lineItems.filter(i => i.id !== id))
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateLineItem(id: string, field: string, value: string | number) {
|
||||||
|
setLineItems(lineItems.map(i => i.id === id ? { ...i, [field]: value } : i))
|
||||||
|
}
|
||||||
|
|
||||||
|
const lineItemTotal = lineItems.reduce((sum, i) => sum + i.qty * i.unitPrice, 0)
|
||||||
|
|
||||||
|
const createMutation = useMutation({
|
||||||
|
mutationFn: async () => {
|
||||||
|
const ticket = await repairTicketMutations.create({
|
||||||
|
customerName,
|
||||||
|
customerPhone: customerPhone || undefined,
|
||||||
|
accountId: accountId || undefined,
|
||||||
|
itemDescription: itemDescription || undefined,
|
||||||
|
serialNumber: serialNumber || undefined,
|
||||||
|
conditionIn: conditionIn || undefined,
|
||||||
|
conditionInNotes: conditionInNotes || undefined,
|
||||||
|
problemDescription,
|
||||||
|
estimatedCost: estimatedCost ? parseFloat(estimatedCost) : undefined,
|
||||||
|
promisedDate: promisedDate || undefined,
|
||||||
|
})
|
||||||
|
|
||||||
|
// Create line items
|
||||||
|
for (const item of lineItems) {
|
||||||
|
await repairLineItemMutations.create(ticket.id, {
|
||||||
|
itemType: item.itemType,
|
||||||
|
description: item.description,
|
||||||
|
qty: item.qty,
|
||||||
|
unitPrice: item.unitPrice,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return ticket
|
||||||
|
},
|
||||||
|
onSuccess: (ticket) => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['repair-tickets'] })
|
||||||
|
toast.success(`Ticket #${ticket.ticketNumber} created`)
|
||||||
|
onComplete(ticket.id)
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
function selectAccount(acct: { id: string; name: string; email: string | null; phone: string | null }) {
|
||||||
|
setAccountId(acct.id)
|
||||||
|
setCustomerName(acct.name)
|
||||||
|
if (acct.phone) setCustomerPhone(acct.phone)
|
||||||
|
if (acct.email) setCustomerEmail(acct.email)
|
||||||
|
setAccountSearch('')
|
||||||
|
}
|
||||||
|
|
||||||
|
function canProceed() {
|
||||||
|
if (step === 0) return customerName.trim().length > 0
|
||||||
|
if (step === 1) return true
|
||||||
|
if (step === 2) return problemDescription.trim().length > 0
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Step indicator */}
|
||||||
|
<div className="flex items-center gap-2 px-4 py-3 border-b border-border shrink-0">
|
||||||
|
<Button variant="ghost" size="sm" onClick={onCancel}>
|
||||||
|
<ArrowLeft className="h-4 w-4 mr-1" />Cancel
|
||||||
|
</Button>
|
||||||
|
<div className="flex-1" />
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
{STEPS.map((s, i) => (
|
||||||
|
<div key={s} className="flex items-center gap-1">
|
||||||
|
<div className={`h-7 px-3 rounded-full text-xs flex items-center font-medium ${
|
||||||
|
i === step ? 'bg-primary text-primary-foreground' :
|
||||||
|
i < step ? 'bg-primary/20 text-primary' : 'bg-muted text-muted-foreground'
|
||||||
|
}`}>
|
||||||
|
{i < step ? <Check className="h-3 w-3" /> : i + 1}
|
||||||
|
<span className="ml-1.5 hidden md:inline">{s}</span>
|
||||||
|
</div>
|
||||||
|
{i < STEPS.length - 1 && <div className="w-4 h-px bg-border" />}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<div className="flex-1" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Step content */}
|
||||||
|
<div className="flex-1 overflow-y-auto p-4 max-w-2xl mx-auto w-full">
|
||||||
|
{step === 0 && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<h3 className="text-lg font-semibold">Customer</h3>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Search existing accounts</Label>
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
placeholder="Search by name..."
|
||||||
|
value={accountSearch}
|
||||||
|
onChange={(e) => setAccountSearch(e.target.value)}
|
||||||
|
className="pl-9"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{accountSearch.length >= 2 && accountResults?.data && accountResults.data.length > 0 && (
|
||||||
|
<div className="border rounded-md max-h-40 overflow-y-auto">
|
||||||
|
{accountResults.data.map((acct) => (
|
||||||
|
<button
|
||||||
|
key={acct.id}
|
||||||
|
className="w-full text-left px-3 py-2 text-sm hover:bg-muted transition-colors"
|
||||||
|
onClick={() => selectAccount(acct)}
|
||||||
|
>
|
||||||
|
<span className="font-medium">{acct.name}</span>
|
||||||
|
{acct.phone && <span className="text-muted-foreground ml-2">{acct.phone}</span>}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<Separator />
|
||||||
|
<p className="text-sm text-muted-foreground">Or enter walk-in customer info:</p>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Name *</Label>
|
||||||
|
<Input value={customerName} onChange={(e) => setCustomerName(e.target.value)} placeholder="Customer name" />
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Phone</Label>
|
||||||
|
<Input value={customerPhone} onChange={(e) => setCustomerPhone(e.target.value)} placeholder="555-1234" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Email</Label>
|
||||||
|
<Input type="email" value={customerEmail} onChange={(e) => setCustomerEmail(e.target.value)} placeholder="email@example.com" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{step === 1 && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<h3 className="text-lg font-semibold">Item Details</h3>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Item Description</Label>
|
||||||
|
<Input value={itemDescription} onChange={(e) => setItemDescription(e.target.value)} placeholder="e.g. Fender Stratocaster, iPhone 15, etc." />
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Serial Number</Label>
|
||||||
|
<Input value={serialNumber} onChange={(e) => setSerialNumber(e.target.value)} placeholder="Optional" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Condition</Label>
|
||||||
|
<Select value={conditionIn} onValueChange={setConditionIn}>
|
||||||
|
<SelectTrigger><SelectValue placeholder="Select condition" /></SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{CONDITIONS.map(c => <SelectItem key={c.value} value={c.value}>{c.label}</SelectItem>)}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Condition Notes</Label>
|
||||||
|
<Textarea value={conditionInNotes} onChange={(e) => setConditionInNotes(e.target.value)} placeholder="Describe any existing damage, scratches, etc." rows={3} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{step === 2 && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<h3 className="text-lg font-semibold">Problem & Estimate</h3>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Problem Description *</Label>
|
||||||
|
<Textarea value={problemDescription} onChange={(e) => setProblemDescription(e.target.value)} placeholder="Describe what needs to be repaired..." rows={3} />
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Estimated Cost</Label>
|
||||||
|
<Input type="number" step="0.01" value={estimatedCost} onChange={(e) => setEstimatedCost(e.target.value)} placeholder="0.00" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Promised Date</Label>
|
||||||
|
<Input type="date" value={promisedDate} onChange={(e) => setPromisedDate(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<Label>Line Items</Label>
|
||||||
|
<Button variant="outline" size="sm" onClick={() => addLineItem()}>
|
||||||
|
<Plus className="h-3.5 w-3.5 mr-1" />Add Item
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Template quick-add */}
|
||||||
|
{templates.length > 0 && (
|
||||||
|
<div className="flex gap-1.5 flex-wrap">
|
||||||
|
{templates.slice(0, 10).map(t => (
|
||||||
|
<Button key={t.id} variant="outline" size="sm" className="h-7 text-xs" onClick={() => addLineItem(t)}>
|
||||||
|
{t.name} — ${t.defaultPrice}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{lineItems.map((item) => (
|
||||||
|
<div key={item.id} className="flex items-end gap-2">
|
||||||
|
<div className="w-24 space-y-1">
|
||||||
|
<Label className="text-xs">Type</Label>
|
||||||
|
<Select value={item.itemType} onValueChange={(v) => updateLineItem(item.id, 'itemType', v)}>
|
||||||
|
<SelectTrigger className="h-8 text-xs"><SelectValue /></SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="labor">Labor</SelectItem>
|
||||||
|
<SelectItem value="part">Part</SelectItem>
|
||||||
|
<SelectItem value="flat_rate">Flat Rate</SelectItem>
|
||||||
|
<SelectItem value="misc">Misc</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 space-y-1">
|
||||||
|
<Label className="text-xs">Description</Label>
|
||||||
|
<Input className="h-8 text-sm" value={item.description} onChange={(e) => updateLineItem(item.id, 'description', e.target.value)} />
|
||||||
|
</div>
|
||||||
|
<div className="w-16 space-y-1">
|
||||||
|
<Label className="text-xs">Qty</Label>
|
||||||
|
<Input className="h-8 text-sm" type="number" min={1} value={item.qty} onChange={(e) => updateLineItem(item.id, 'qty', parseInt(e.target.value) || 1)} />
|
||||||
|
</div>
|
||||||
|
<div className="w-24 space-y-1">
|
||||||
|
<Label className="text-xs">Price</Label>
|
||||||
|
<Input className="h-8 text-sm" type="number" step="0.01" value={item.unitPrice} onChange={(e) => updateLineItem(item.id, 'unitPrice', parseFloat(e.target.value) || 0)} />
|
||||||
|
</div>
|
||||||
|
<Button variant="ghost" size="icon" className="h-8 w-8 shrink-0" onClick={() => removeLineItem(item.id)}>
|
||||||
|
<Trash2 className="h-3.5 w-3.5" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
|
||||||
|
{lineItems.length > 0 && (
|
||||||
|
<div className="text-right text-sm font-semibold">
|
||||||
|
Line Item Total: ${lineItemTotal.toFixed(2)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{step === 3 && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<h3 className="text-lg font-semibold">Review</h3>
|
||||||
|
<div className="space-y-3 text-sm">
|
||||||
|
<div>
|
||||||
|
<p className="text-muted-foreground text-xs">Customer</p>
|
||||||
|
<p className="font-medium">{customerName}</p>
|
||||||
|
{customerPhone && <p className="text-muted-foreground">{customerPhone}</p>}
|
||||||
|
</div>
|
||||||
|
{itemDescription && (
|
||||||
|
<div>
|
||||||
|
<p className="text-muted-foreground text-xs">Item</p>
|
||||||
|
<p>{itemDescription}{serialNumber ? ` (S/N: ${serialNumber})` : ''}</p>
|
||||||
|
{conditionIn && <Badge variant="outline" className="text-xs mt-1">{conditionIn}</Badge>}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div>
|
||||||
|
<p className="text-muted-foreground text-xs">Problem</p>
|
||||||
|
<p>{problemDescription}</p>
|
||||||
|
</div>
|
||||||
|
{(estimatedCost || promisedDate) && (
|
||||||
|
<div className="flex gap-6">
|
||||||
|
{estimatedCost && <div><p className="text-muted-foreground text-xs">Estimate</p><p className="font-medium">${estimatedCost}</p></div>}
|
||||||
|
{promisedDate && <div><p className="text-muted-foreground text-xs">Promised</p><p>{new Date(promisedDate + 'T00:00:00').toLocaleDateString()}</p></div>}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{lineItems.length > 0 && (
|
||||||
|
<div>
|
||||||
|
<p className="text-muted-foreground text-xs mb-1">Line Items</p>
|
||||||
|
{lineItems.map(i => (
|
||||||
|
<div key={i.id} className="flex justify-between py-0.5">
|
||||||
|
<span>{i.description} x{i.qty}</span>
|
||||||
|
<span className="font-medium">${(i.qty * i.unitPrice).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
<Separator className="my-1" />
|
||||||
|
<div className="flex justify-between font-semibold">
|
||||||
|
<span>Total</span>
|
||||||
|
<span>${lineItemTotal.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Navigation */}
|
||||||
|
<div className="flex items-center justify-between p-4 border-t border-border shrink-0">
|
||||||
|
<Button variant="outline" onClick={() => step > 0 ? setStep(step - 1) : onCancel()}>
|
||||||
|
<ArrowLeft className="h-4 w-4 mr-1" />
|
||||||
|
{step === 0 ? 'Cancel' : 'Back'}
|
||||||
|
</Button>
|
||||||
|
{step < STEPS.length - 1 ? (
|
||||||
|
<Button onClick={() => setStep(step + 1)} disabled={!canProceed()}>
|
||||||
|
Next <ArrowRight className="h-4 w-4 ml-1" />
|
||||||
|
</Button>
|
||||||
|
) : (
|
||||||
|
<Button onClick={() => createMutation.mutate()} disabled={createMutation.isPending}>
|
||||||
|
{createMutation.isPending ? 'Creating...' : 'Create Ticket'}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import type { RepairTicket } from '@/types/repair'
|
||||||
|
import type { PaginatedResponse } from '@lunarfront/shared/schemas'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Plus, Search } from 'lucide-react'
|
||||||
|
import { useState } from 'react'
|
||||||
|
|
||||||
|
const STATUS_COLORS: Record<string, string> = {
|
||||||
|
new: 'bg-blue-500/10 text-blue-500',
|
||||||
|
in_transit: 'bg-blue-500/10 text-blue-500',
|
||||||
|
intake: 'bg-blue-500/10 text-blue-500',
|
||||||
|
diagnosing: 'bg-yellow-500/10 text-yellow-500',
|
||||||
|
pending_approval: 'bg-yellow-500/10 text-yellow-500',
|
||||||
|
approved: 'bg-orange-500/10 text-orange-500',
|
||||||
|
in_progress: 'bg-orange-500/10 text-orange-500',
|
||||||
|
pending_parts: 'bg-orange-500/10 text-orange-500',
|
||||||
|
ready: 'bg-green-500/10 text-green-500',
|
||||||
|
picked_up: 'bg-muted text-muted-foreground',
|
||||||
|
delivered: 'bg-muted text-muted-foreground',
|
||||||
|
cancelled: 'bg-destructive/10 text-destructive',
|
||||||
|
}
|
||||||
|
|
||||||
|
const STATUS_LABELS: Record<string, string> = {
|
||||||
|
new: 'New',
|
||||||
|
in_transit: 'In Transit',
|
||||||
|
intake: 'Intake',
|
||||||
|
diagnosing: 'Diagnosing',
|
||||||
|
pending_approval: 'Pending Approval',
|
||||||
|
approved: 'Approved',
|
||||||
|
in_progress: 'In Progress',
|
||||||
|
pending_parts: 'Pending Parts',
|
||||||
|
ready: 'Ready',
|
||||||
|
picked_up: 'Picked Up',
|
||||||
|
delivered: 'Delivered',
|
||||||
|
cancelled: 'Cancelled',
|
||||||
|
}
|
||||||
|
|
||||||
|
interface RepairQueuePanelProps {
|
||||||
|
selectedTicketId: string | null
|
||||||
|
onSelectTicket: (id: string) => void
|
||||||
|
onNewIntake: () => void
|
||||||
|
statusFilter: string[] | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RepairQueuePanel({ selectedTicketId, onSelectTicket, onNewIntake, statusFilter }: RepairQueuePanelProps) {
|
||||||
|
const [search, setSearch] = useState('')
|
||||||
|
|
||||||
|
const { data, isLoading } = useQuery({
|
||||||
|
queryKey: ['repair-tickets', 'station-queue', search, statusFilter],
|
||||||
|
queryFn: () => api.get<PaginatedResponse<RepairTicket>>('/v1/repair-tickets', {
|
||||||
|
page: 1,
|
||||||
|
limit: 100,
|
||||||
|
q: search || undefined,
|
||||||
|
sort: 'created_at',
|
||||||
|
order: 'desc',
|
||||||
|
...(statusFilter ? { status: statusFilter.join(',') } : {}),
|
||||||
|
}),
|
||||||
|
staleTime: 30_000,
|
||||||
|
refetchInterval: 30_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
const tickets = data?.data ?? []
|
||||||
|
|
||||||
|
function timeAgo(dateStr: string) {
|
||||||
|
const diff = Date.now() - new Date(dateStr).getTime()
|
||||||
|
const hours = Math.floor(diff / 3600000)
|
||||||
|
if (hours < 1) return 'Just now'
|
||||||
|
if (hours < 24) return `${hours}h ago`
|
||||||
|
const days = Math.floor(hours / 24)
|
||||||
|
return `${days}d ago`
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
<div className="p-3 space-y-2 shrink-0">
|
||||||
|
<Button className="w-full h-11 gap-2" onClick={onNewIntake}>
|
||||||
|
<Plus className="h-4 w-4" />
|
||||||
|
New Intake
|
||||||
|
</Button>
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
placeholder="Search tickets..."
|
||||||
|
value={search}
|
||||||
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
className="pl-9 h-9"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex-1 overflow-y-auto">
|
||||||
|
{isLoading ? (
|
||||||
|
<div className="p-3 space-y-2">
|
||||||
|
{Array.from({ length: 5 }).map((_, i) => (
|
||||||
|
<div key={i} className="h-16 bg-muted animate-pulse rounded-lg" />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
) : tickets.length === 0 ? (
|
||||||
|
<div className="p-6 text-center text-muted-foreground text-sm">
|
||||||
|
No tickets found
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="px-2 pb-2 space-y-1">
|
||||||
|
{tickets.map((ticket) => (
|
||||||
|
<button
|
||||||
|
key={ticket.id}
|
||||||
|
className={`w-full text-left p-3 rounded-lg transition-colors ${
|
||||||
|
selectedTicketId === ticket.id
|
||||||
|
? 'bg-primary/10 border border-primary/20'
|
||||||
|
: 'hover:bg-muted border border-transparent'
|
||||||
|
}`}
|
||||||
|
onClick={() => onSelectTicket(ticket.id)}
|
||||||
|
>
|
||||||
|
<div className="flex items-center justify-between mb-1">
|
||||||
|
<span className="text-sm font-medium">#{ticket.ticketNumber}</span>
|
||||||
|
<Badge variant="outline" className={`text-[10px] ${STATUS_COLORS[ticket.status] ?? ''}`}>
|
||||||
|
{STATUS_LABELS[ticket.status] ?? ticket.status}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
<div className="text-sm text-foreground truncate">{ticket.customerName}</div>
|
||||||
|
<div className="flex items-center justify-between mt-1">
|
||||||
|
<span className="text-xs text-muted-foreground truncate">{ticket.itemDescription ?? 'No item'}</span>
|
||||||
|
<span className="text-xs text-muted-foreground shrink-0 ml-2">{timeAgo(ticket.createdAt)}</span>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import type { RepairTicket } from '@/types/repair'
|
||||||
|
import type { PaginatedResponse } from '@lunarfront/shared/schemas'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
|
||||||
|
const STATUS_GROUPS = [
|
||||||
|
{ label: 'New', statuses: ['new', 'in_transit', 'intake'], color: 'bg-blue-500/10 text-blue-500 border-blue-500/20' },
|
||||||
|
{ label: 'Diagnosing', statuses: ['diagnosing', 'pending_approval'], color: 'bg-yellow-500/10 text-yellow-500 border-yellow-500/20' },
|
||||||
|
{ label: 'In Progress', statuses: ['approved', 'in_progress', 'pending_parts'], color: 'bg-orange-500/10 text-orange-500 border-orange-500/20' },
|
||||||
|
{ label: 'Ready', statuses: ['ready'], color: 'bg-green-500/10 text-green-500 border-green-500/20' },
|
||||||
|
]
|
||||||
|
|
||||||
|
interface RepairStatusBarProps {
|
||||||
|
activeFilter: string | null
|
||||||
|
onFilterChange: (statuses: string[] | null) => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RepairStatusBar({ activeFilter, onFilterChange }: RepairStatusBarProps) {
|
||||||
|
// Fetch all non-terminal tickets for counts
|
||||||
|
const { data } = useQuery({
|
||||||
|
queryKey: ['repair-tickets', 'station-counts'],
|
||||||
|
queryFn: () => api.get<PaginatedResponse<RepairTicket>>('/v1/repair-tickets', { page: 1, limit: 1, q: undefined, sort: undefined, order: 'asc' }),
|
||||||
|
staleTime: 30_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
// We need per-status counts — fetch a larger list for counting
|
||||||
|
const { data: allData } = useQuery({
|
||||||
|
queryKey: ['repair-tickets', 'station-all'],
|
||||||
|
queryFn: () => api.get<PaginatedResponse<RepairTicket>>('/v1/repair-tickets', { page: 1, limit: 500, q: undefined, sort: undefined, order: 'asc' }),
|
||||||
|
staleTime: 30_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
const tickets = allData?.data ?? []
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex items-center gap-2 px-3 py-2 border-b border-border bg-card/50 shrink-0">
|
||||||
|
<button
|
||||||
|
className={`text-xs px-2 py-1 rounded-md transition-colors ${!activeFilter ? 'bg-primary text-primary-foreground' : 'text-muted-foreground hover:text-foreground'}`}
|
||||||
|
onClick={() => onFilterChange(null)}
|
||||||
|
>
|
||||||
|
All ({data?.pagination?.total ?? tickets.length})
|
||||||
|
</button>
|
||||||
|
{STATUS_GROUPS.map((group) => {
|
||||||
|
const count = tickets.filter(t => group.statuses.includes(t.status)).length
|
||||||
|
const isActive = activeFilter === group.label
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
key={group.label}
|
||||||
|
className={`flex items-center gap-1.5 text-xs px-2 py-1 rounded-md transition-colors ${isActive ? 'bg-primary text-primary-foreground' : 'text-muted-foreground hover:text-foreground'}`}
|
||||||
|
onClick={() => onFilterChange(isActive ? null : group.statuses)}
|
||||||
|
>
|
||||||
|
{group.label}
|
||||||
|
{count > 0 && (
|
||||||
|
<Badge variant="outline" className={`text-[10px] h-4 px-1 ${group.color}`}>
|
||||||
|
{count}
|
||||||
|
</Badge>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import type { RepairTicket } from '@/types/repair'
|
||||||
|
import type { PaginatedResponse } from '@lunarfront/shared/schemas'
|
||||||
|
import { RepairWorkbench } from './repair-workbench'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Wrench } from 'lucide-react'
|
||||||
|
|
||||||
|
const STATUS_LABELS: Record<string, string> = {
|
||||||
|
new: 'New', intake: 'Intake', diagnosing: 'Diagnosing',
|
||||||
|
pending_approval: 'Pending', approved: 'Approved',
|
||||||
|
in_progress: 'In Progress', pending_parts: 'Parts',
|
||||||
|
ready: 'Ready',
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RepairTechView() {
|
||||||
|
const cashier = usePOSStore((s) => s.cashier)
|
||||||
|
const [selectedTicketId, setSelectedTicketId] = useState<string | null>(null)
|
||||||
|
|
||||||
|
// Fetch tickets assigned to current user (active statuses only)
|
||||||
|
const { data } = useQuery({
|
||||||
|
queryKey: ['repair-tickets', 'tech-assigned', cashier?.id],
|
||||||
|
queryFn: () => api.get<PaginatedResponse<RepairTicket>>('/v1/repair-tickets', {
|
||||||
|
page: 1,
|
||||||
|
limit: 50,
|
||||||
|
sort: 'created_at',
|
||||||
|
order: 'asc',
|
||||||
|
q: undefined,
|
||||||
|
// Filter to active statuses — the API will return all if no status filter, we filter client-side
|
||||||
|
}),
|
||||||
|
enabled: !!cashier?.id,
|
||||||
|
staleTime: 15_000,
|
||||||
|
refetchInterval: 30_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
// Filter to tickets assigned to this technician in active statuses
|
||||||
|
const activeStatuses = ['diagnosing', 'pending_approval', 'approved', 'in_progress', 'pending_parts', 'ready']
|
||||||
|
const myTickets = (data?.data ?? []).filter(t =>
|
||||||
|
t.assignedTechnicianId === cashier?.id && activeStatuses.includes(t.status)
|
||||||
|
)
|
||||||
|
|
||||||
|
// Auto-select first ticket
|
||||||
|
if (!selectedTicketId && myTickets.length > 0) {
|
||||||
|
setSelectedTicketId(myTickets[0].id)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (myTickets.length === 0) {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center justify-center h-full text-muted-foreground">
|
||||||
|
<div className="text-center space-y-2">
|
||||||
|
<Wrench className="h-12 w-12 mx-auto opacity-20" />
|
||||||
|
<p className="text-lg font-medium">No assigned tickets</p>
|
||||||
|
<p className="text-sm">Tickets assigned to you will appear here</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Ticket selector */}
|
||||||
|
{myTickets.length > 1 && (
|
||||||
|
<div className="flex items-center gap-2 px-4 py-2 border-b border-border shrink-0 bg-muted/30">
|
||||||
|
<span className="text-sm text-muted-foreground">Ticket:</span>
|
||||||
|
<Select value={selectedTicketId ?? ''} onValueChange={setSelectedTicketId}>
|
||||||
|
<SelectTrigger className="h-8 w-72">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{myTickets.map(t => (
|
||||||
|
<SelectItem key={t.id} value={t.id}>
|
||||||
|
<span className="flex items-center gap-2">
|
||||||
|
#{t.ticketNumber} — {t.customerName}
|
||||||
|
<Badge variant="outline" className="text-[10px]">{STATUS_LABELS[t.status] ?? t.status}</Badge>
|
||||||
|
</span>
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<span className="text-xs text-muted-foreground">{myTickets.length} active</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Workbench */}
|
||||||
|
<div className="flex-1 min-h-0 overflow-hidden">
|
||||||
|
{selectedTicketId && <RepairWorkbench ticketId={selectedTicketId} />}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,323 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import {
|
||||||
|
repairTicketDetailOptions, repairTicketKeys, repairTicketMutations,
|
||||||
|
repairLineItemListOptions, repairLineItemMutations,
|
||||||
|
repairServiceTemplateListOptions,
|
||||||
|
repairNoteListOptions, repairNoteMutations,
|
||||||
|
} from '@/api/repairs'
|
||||||
|
import { StatusProgress } from '@/components/repairs/status-progress'
|
||||||
|
import { TicketPhotos } from '@/components/repairs/ticket-photos'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { Textarea } from '@/components/ui/textarea'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { ChevronRight, Plus, Camera, MessageSquare, Wrench, Trash2 } from 'lucide-react'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
|
||||||
|
const STATUS_FLOW = ['new', 'intake', 'diagnosing', 'pending_approval', 'approved', 'in_progress', 'ready', 'picked_up']
|
||||||
|
|
||||||
|
interface RepairWorkbenchProps {
|
||||||
|
ticketId: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RepairWorkbench({ ticketId }: RepairWorkbenchProps) {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const [activeSection, setActiveSection] = useState<'work' | 'parts' | 'photos' | 'notes'>('work')
|
||||||
|
const [newNote, setNewNote] = useState('')
|
||||||
|
|
||||||
|
// Add line item state
|
||||||
|
const [addingItem, setAddingItem] = useState(false)
|
||||||
|
const [newItemType, setNewItemType] = useState('part')
|
||||||
|
const [newItemDesc, setNewItemDesc] = useState('')
|
||||||
|
const [newItemQty, setNewItemQty] = useState('1')
|
||||||
|
const [newItemPrice, setNewItemPrice] = useState('')
|
||||||
|
|
||||||
|
const { data: ticket } = useQuery({
|
||||||
|
...repairTicketDetailOptions(ticketId),
|
||||||
|
staleTime: 15_000,
|
||||||
|
})
|
||||||
|
|
||||||
|
const { data: lineItemsData } = useQuery({
|
||||||
|
...repairLineItemListOptions(ticketId, { page: 1, limit: 100, q: undefined, sort: undefined, order: 'asc' }),
|
||||||
|
})
|
||||||
|
|
||||||
|
const { data: notesData } = useQuery(repairNoteListOptions(ticketId))
|
||||||
|
|
||||||
|
const { data: templatesData } = useQuery({
|
||||||
|
...repairServiceTemplateListOptions({ page: 1, limit: 50, q: undefined, sort: 'sort_order', order: 'asc' }),
|
||||||
|
})
|
||||||
|
|
||||||
|
const statusMutation = useMutation({
|
||||||
|
mutationFn: (status: string) => repairTicketMutations.updateStatus(ticketId, status),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: repairTicketKeys.detail(ticketId) })
|
||||||
|
toast.success('Status updated')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const addNoteMutation = useMutation({
|
||||||
|
mutationFn: () => repairNoteMutations.create(ticketId, { content: newNote, visibility: 'internal' }),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['repair-tickets', ticketId, 'notes'] })
|
||||||
|
setNewNote('')
|
||||||
|
toast.success('Note added')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const addLineItemMutation = useMutation({
|
||||||
|
mutationFn: () => repairLineItemMutations.create(ticketId, {
|
||||||
|
itemType: newItemType,
|
||||||
|
description: newItemDesc,
|
||||||
|
qty: parseInt(newItemQty) || 1,
|
||||||
|
unitPrice: parseFloat(newItemPrice) || 0,
|
||||||
|
}),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['repair-tickets', ticketId, 'line-items'] })
|
||||||
|
setAddingItem(false)
|
||||||
|
setNewItemDesc('')
|
||||||
|
setNewItemPrice('')
|
||||||
|
toast.success('Item added')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const deleteLineItemMutation = useMutation({
|
||||||
|
mutationFn: (id: string) => repairLineItemMutations.delete(id),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['repair-tickets', ticketId, 'line-items'] })
|
||||||
|
toast.success('Item removed')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!ticket) {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center justify-center h-full">
|
||||||
|
<div className="h-8 w-8 animate-spin rounded-full border-2 border-primary border-t-transparent" />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const lineItems = lineItemsData?.data ?? []
|
||||||
|
const notes = notesData?.data ?? []
|
||||||
|
const templates = templatesData?.data ?? []
|
||||||
|
const currentIdx = STATUS_FLOW.indexOf(ticket.status)
|
||||||
|
const nextStatus = currentIdx >= 0 && currentIdx < STATUS_FLOW.length - 1 ? STATUS_FLOW[currentIdx + 1] : null
|
||||||
|
const isTerminal = ['picked_up', 'delivered', 'cancelled'].includes(ticket.status)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
{/* Header */}
|
||||||
|
<div className="p-4 border-b border-border shrink-0 space-y-3">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<div>
|
||||||
|
<h2 className="text-xl font-bold">#{ticket.ticketNumber}</h2>
|
||||||
|
<p className="text-sm text-muted-foreground">{ticket.customerName} — {ticket.itemDescription ?? 'No item'}</p>
|
||||||
|
</div>
|
||||||
|
{nextStatus && !isTerminal && (
|
||||||
|
<Button size="lg" className="h-12 gap-2 text-base" onClick={() => statusMutation.mutate(nextStatus)}>
|
||||||
|
Next Step <ChevronRight className="h-5 w-5" />
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<StatusProgress currentStatus={ticket.status} onStatusClick={(s) => !isTerminal && statusMutation.mutate(s)} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Section toggle */}
|
||||||
|
<div className="flex gap-1 px-4 py-2 border-b border-border shrink-0 bg-muted/30">
|
||||||
|
{[
|
||||||
|
{ key: 'work' as const, icon: Wrench, label: 'Work' },
|
||||||
|
{ key: 'parts' as const, icon: Plus, label: 'Parts' },
|
||||||
|
{ key: 'photos' as const, icon: Camera, label: 'Photos' },
|
||||||
|
{ key: 'notes' as const, icon: MessageSquare, label: `Notes (${notes.length})` },
|
||||||
|
].map((s) => (
|
||||||
|
<Button
|
||||||
|
key={s.key}
|
||||||
|
variant={activeSection === s.key ? 'default' : 'ghost'}
|
||||||
|
size="sm"
|
||||||
|
className="h-9 gap-1.5"
|
||||||
|
onClick={() => setActiveSection(s.key)}
|
||||||
|
>
|
||||||
|
<s.icon className="h-3.5 w-3.5" />
|
||||||
|
{s.label}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Content */}
|
||||||
|
<div className="flex-1 overflow-y-auto p-4">
|
||||||
|
{activeSection === 'work' && (
|
||||||
|
<div className="space-y-4 max-w-2xl">
|
||||||
|
<div>
|
||||||
|
<p className="text-xs font-medium text-muted-foreground mb-1">Problem Description</p>
|
||||||
|
<p className="text-sm">{ticket.problemDescription}</p>
|
||||||
|
</div>
|
||||||
|
{ticket.conditionIn && (
|
||||||
|
<div>
|
||||||
|
<p className="text-xs font-medium text-muted-foreground mb-1">Condition at Intake</p>
|
||||||
|
<Badge variant="outline">{ticket.conditionIn}</Badge>
|
||||||
|
{ticket.conditionInNotes && <p className="text-sm text-muted-foreground mt-1">{ticket.conditionInNotes}</p>}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{ticket.technicianNotes && (
|
||||||
|
<div>
|
||||||
|
<p className="text-xs font-medium text-muted-foreground mb-1">Technician Notes</p>
|
||||||
|
<p className="text-sm">{ticket.technicianNotes}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<Separator />
|
||||||
|
<div className="flex gap-4">
|
||||||
|
{ticket.estimatedCost && <div><p className="text-xs text-muted-foreground">Estimate</p><p className="text-lg font-bold">${ticket.estimatedCost}</p></div>}
|
||||||
|
{ticket.actualCost && <div><p className="text-xs text-muted-foreground">Actual</p><p className="text-lg font-bold">${ticket.actualCost}</p></div>}
|
||||||
|
{ticket.promisedDate && <div><p className="text-xs text-muted-foreground">Promised</p><p className="text-lg font-bold">{new Date(ticket.promisedDate).toLocaleDateString()}</p></div>}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{activeSection === 'parts' && (
|
||||||
|
<div className="space-y-4 max-w-2xl">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<h3 className="font-medium">Line Items</h3>
|
||||||
|
<Button size="sm" onClick={() => setAddingItem(true)}>
|
||||||
|
<Plus className="h-3.5 w-3.5 mr-1" />Add
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Template quick-add */}
|
||||||
|
{templates.length > 0 && (
|
||||||
|
<div className="flex gap-1.5 flex-wrap">
|
||||||
|
{templates.slice(0, 8).map(t => (
|
||||||
|
<Button
|
||||||
|
key={t.id}
|
||||||
|
variant="outline"
|
||||||
|
size="sm"
|
||||||
|
className="h-8 text-xs"
|
||||||
|
onClick={async () => {
|
||||||
|
await repairLineItemMutations.create(ticketId, {
|
||||||
|
itemType: t.itemType,
|
||||||
|
description: t.description ?? t.name,
|
||||||
|
qty: 1,
|
||||||
|
unitPrice: parseFloat(t.defaultPrice),
|
||||||
|
})
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['repair-tickets', ticketId, 'line-items'] })
|
||||||
|
toast.success(`Added ${t.name}`)
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{t.name}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{addingItem && (
|
||||||
|
<div className="flex items-end gap-2 p-3 border rounded-lg bg-muted/30">
|
||||||
|
<div className="w-24 space-y-1">
|
||||||
|
<Label className="text-xs">Type</Label>
|
||||||
|
<Select value={newItemType} onValueChange={setNewItemType}>
|
||||||
|
<SelectTrigger className="h-8 text-xs"><SelectValue /></SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="labor">Labor</SelectItem>
|
||||||
|
<SelectItem value="part">Part</SelectItem>
|
||||||
|
<SelectItem value="flat_rate">Flat Rate</SelectItem>
|
||||||
|
<SelectItem value="misc">Misc</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 space-y-1">
|
||||||
|
<Label className="text-xs">Description</Label>
|
||||||
|
<Input className="h-8" value={newItemDesc} onChange={(e) => setNewItemDesc(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
<div className="w-16 space-y-1">
|
||||||
|
<Label className="text-xs">Qty</Label>
|
||||||
|
<Input className="h-8" type="number" value={newItemQty} onChange={(e) => setNewItemQty(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
<div className="w-24 space-y-1">
|
||||||
|
<Label className="text-xs">Price</Label>
|
||||||
|
<Input className="h-8" type="number" step="0.01" value={newItemPrice} onChange={(e) => setNewItemPrice(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
<Button size="sm" className="h-8" onClick={() => addLineItemMutation.mutate()} disabled={!newItemDesc}>Add</Button>
|
||||||
|
<Button variant="ghost" size="sm" className="h-8" onClick={() => setAddingItem(false)}>Cancel</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="space-y-1">
|
||||||
|
{lineItems.map((item) => (
|
||||||
|
<div key={item.id} className="flex items-center justify-between py-2 px-3 rounded hover:bg-muted/50">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Badge variant="outline" className="text-[10px] h-5">{item.itemType}</Badge>
|
||||||
|
<span className="text-sm">{item.description}</span>
|
||||||
|
<span className="text-xs text-muted-foreground">x{item.qty}</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<span className="text-sm font-medium">${item.totalPrice}</span>
|
||||||
|
<Button variant="ghost" size="icon" className="h-7 w-7" onClick={() => deleteLineItemMutation.mutate(item.id)}>
|
||||||
|
<Trash2 className="h-3 w-3" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
{lineItems.length > 0 && (
|
||||||
|
<>
|
||||||
|
<Separator />
|
||||||
|
<div className="flex justify-between px-3 py-2 font-semibold">
|
||||||
|
<span>Total</span>
|
||||||
|
<span>${lineItems.reduce((s, i) => s + parseFloat(i.totalPrice), 0).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{lineItems.length === 0 && !addingItem && (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">No line items yet</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{activeSection === 'photos' && (
|
||||||
|
<TicketPhotos ticketId={ticketId} currentStatus={ticket.status} />
|
||||||
|
)}
|
||||||
|
|
||||||
|
{activeSection === 'notes' && (
|
||||||
|
<div className="space-y-4 max-w-2xl">
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Textarea
|
||||||
|
value={newNote}
|
||||||
|
onChange={(e) => setNewNote(e.target.value)}
|
||||||
|
placeholder="Add a note..."
|
||||||
|
rows={2}
|
||||||
|
className="flex-1"
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
className="shrink-0"
|
||||||
|
onClick={() => addNoteMutation.mutate()}
|
||||||
|
disabled={!newNote.trim() || addNoteMutation.isPending}
|
||||||
|
>
|
||||||
|
Add
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-3">
|
||||||
|
{notes.map((note) => (
|
||||||
|
<div key={note.id} className="border rounded-lg p-3">
|
||||||
|
<div className="flex items-center justify-between mb-1">
|
||||||
|
<span className="text-sm font-medium">{note.authorName}</span>
|
||||||
|
<span className="text-xs text-muted-foreground">{new Date(note.createdAt).toLocaleString()}</span>
|
||||||
|
</div>
|
||||||
|
<p className="text-sm">{note.content}</p>
|
||||||
|
{note.visibility === 'internal' && <Badge variant="outline" className="text-[10px] mt-1">Internal</Badge>}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
{notes.length === 0 && (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">No notes yet</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
import { RepairDeskView } from './repair-desk-view'
|
||||||
|
import { RepairTechView } from './repair-tech-view'
|
||||||
|
|
||||||
|
interface RepairsStationProps {
|
||||||
|
permissions: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RepairsStation({ permissions }: RepairsStationProps) {
|
||||||
|
const canEdit = permissions.includes('repairs.edit')
|
||||||
|
|
||||||
|
// Front desk (can edit/intake) gets the desk view with queue + intake
|
||||||
|
// Technician (view only) gets the focused workbench
|
||||||
|
if (canEdit) {
|
||||||
|
return <RepairDeskView canEdit={canEdit} />
|
||||||
|
}
|
||||||
|
|
||||||
|
return <RepairTechView />
|
||||||
|
}
|
||||||
177
packages/admin/src/components/station/station-shell.tsx
Normal file
177
packages/admin/src/components/station/station-shell.tsx
Normal file
@@ -0,0 +1,177 @@
|
|||||||
|
import { useEffect, useRef, useCallback, useState } from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { useStationStore } from '@/stores/station.store'
|
||||||
|
import { moduleListOptions } from '@/api/modules'
|
||||||
|
import { currentDrawerOptions } from '@/api/pos'
|
||||||
|
import { POSRegister } from '@/components/pos/pos-register'
|
||||||
|
import { POSLockScreen } from '@/components/pos/pos-lock-screen'
|
||||||
|
import { StationTopBar } from './station-top-bar'
|
||||||
|
import { RepairsStation } from '@/components/station-repairs/repairs-station'
|
||||||
|
import { LessonsStation } from '@/components/station-lessons/lessons-station'
|
||||||
|
|
||||||
|
interface Location {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AppConfigEntry {
|
||||||
|
key: string
|
||||||
|
value: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
function locationsOptions() {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['locations'],
|
||||||
|
queryFn: () => api.get<{ data: Location[] }>('/v1/locations'),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function configOptions(key: string) {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['config', key],
|
||||||
|
queryFn: async (): Promise<string | null> => {
|
||||||
|
try {
|
||||||
|
const entry = await api.get<AppConfigEntry>(`/v1/config/${key}`)
|
||||||
|
return entry.value
|
||||||
|
} catch {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function StationShell() {
|
||||||
|
const { locationId, setLocation, locked, lock, touchActivity, token, setDrawerSession } = usePOSStore()
|
||||||
|
const { activeTab, setActiveTab } = useStationStore()
|
||||||
|
|
||||||
|
// Fetch lock timeout from config
|
||||||
|
const { data: lockTimeoutStr } = useQuery({
|
||||||
|
...configOptions('pos_lock_timeout'),
|
||||||
|
enabled: !!token,
|
||||||
|
})
|
||||||
|
const lockTimeoutMinutes = parseInt(lockTimeoutStr ?? '15') || 15
|
||||||
|
|
||||||
|
// Auto-lock timer
|
||||||
|
const timerRef = useRef<ReturnType<typeof setInterval> | null>(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (locked || lockTimeoutMinutes === 0) {
|
||||||
|
if (timerRef.current) clearInterval(timerRef.current)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
timerRef.current = setInterval(() => {
|
||||||
|
const { lastActivity, locked: isLocked } = usePOSStore.getState()
|
||||||
|
if (!isLocked && Date.now() - lastActivity > lockTimeoutMinutes * 60_000) {
|
||||||
|
lock()
|
||||||
|
}
|
||||||
|
}, 30_000)
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
if (timerRef.current) clearInterval(timerRef.current)
|
||||||
|
}
|
||||||
|
}, [locked, lockTimeoutMinutes, lock])
|
||||||
|
|
||||||
|
// Track activity
|
||||||
|
const handleActivity = useCallback(() => {
|
||||||
|
if (!locked) touchActivity()
|
||||||
|
}, [locked, touchActivity])
|
||||||
|
|
||||||
|
// Fetch locations
|
||||||
|
const { data: locationsData } = useQuery({
|
||||||
|
...locationsOptions(),
|
||||||
|
enabled: !!token,
|
||||||
|
})
|
||||||
|
const locations = locationsData?.data ?? []
|
||||||
|
|
||||||
|
// Auto-select first location
|
||||||
|
useEffect(() => {
|
||||||
|
if (!locationId && locations.length > 0) {
|
||||||
|
setLocation(locations[0].id)
|
||||||
|
}
|
||||||
|
}, [locationId, locations, setLocation])
|
||||||
|
|
||||||
|
// Fetch enabled modules
|
||||||
|
const { data: modulesData } = useQuery({
|
||||||
|
...moduleListOptions(),
|
||||||
|
enabled: !!token,
|
||||||
|
})
|
||||||
|
const enabledModules = new Set(
|
||||||
|
(modulesData?.data ?? []).filter((m) => m.enabled && m.licensed).map((m) => m.slug),
|
||||||
|
)
|
||||||
|
|
||||||
|
// Fetch permissions for current user
|
||||||
|
const [permissions, setPermissions] = useState<string[]>([])
|
||||||
|
const { data: permData } = useQuery({
|
||||||
|
queryKey: ['me', 'permissions'],
|
||||||
|
queryFn: () => api.get<{ permissions: string[] }>('/v1/me/permissions'),
|
||||||
|
enabled: !!token,
|
||||||
|
})
|
||||||
|
useEffect(() => {
|
||||||
|
if (permData?.permissions) setPermissions(permData.permissions)
|
||||||
|
}, [permData])
|
||||||
|
|
||||||
|
// Auto-select first available tab based on permissions + modules
|
||||||
|
useEffect(() => {
|
||||||
|
if (!token || !permData) return
|
||||||
|
const perms = permData.permissions ?? []
|
||||||
|
const tabs = [
|
||||||
|
{ key: 'pos' as const, perm: 'pos.view', mod: 'pos' },
|
||||||
|
{ key: 'repairs' as const, perm: 'repairs.view', mod: 'repairs' },
|
||||||
|
{ key: 'lessons' as const, perm: 'lessons.view', mod: 'lessons' },
|
||||||
|
]
|
||||||
|
const available = tabs.filter(t => perms.includes(t.perm) && enabledModules.has(t.mod))
|
||||||
|
if (available.length > 0 && !available.find(t => t.key === activeTab)) {
|
||||||
|
setActiveTab(available[0].key)
|
||||||
|
}
|
||||||
|
}, [token, permData, enabledModules, activeTab, setActiveTab])
|
||||||
|
|
||||||
|
// Fetch drawer for POS tab (needed in top bar)
|
||||||
|
const { data: drawer } = useQuery({
|
||||||
|
...currentDrawerOptions(locationId),
|
||||||
|
retry: false,
|
||||||
|
enabled: !!locationId && !!token,
|
||||||
|
})
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (drawer?.id && drawer.status === 'open') {
|
||||||
|
setDrawerSession(drawer.id)
|
||||||
|
} else {
|
||||||
|
setDrawerSession(null)
|
||||||
|
}
|
||||||
|
}, [drawer, setDrawerSession])
|
||||||
|
|
||||||
|
const hasPermission = (perm: string) => permissions.includes(perm)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className="relative flex flex-col h-full"
|
||||||
|
onPointerDown={handleActivity}
|
||||||
|
onKeyDown={handleActivity}
|
||||||
|
>
|
||||||
|
{locked && <POSLockScreen />}
|
||||||
|
<StationTopBar
|
||||||
|
locations={locations}
|
||||||
|
locationId={locationId}
|
||||||
|
onLocationChange={setLocation}
|
||||||
|
drawer={drawer ?? null}
|
||||||
|
permissions={permissions}
|
||||||
|
enabledModules={enabledModules}
|
||||||
|
/>
|
||||||
|
<div className="flex-1 min-h-0 overflow-hidden">
|
||||||
|
{activeTab === 'pos' && enabledModules.has('pos') && hasPermission('pos.view') && (
|
||||||
|
<POSRegister embedded />
|
||||||
|
)}
|
||||||
|
{activeTab === 'repairs' && enabledModules.has('repairs') && hasPermission('repairs.view') && (
|
||||||
|
<RepairsStation permissions={permissions} />
|
||||||
|
)}
|
||||||
|
{activeTab === 'lessons' && enabledModules.has('lessons') && hasPermission('lessons.view') && (
|
||||||
|
<LessonsStation permissions={permissions} />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
127
packages/admin/src/components/station/station-top-bar.tsx
Normal file
127
packages/admin/src/components/station/station-top-bar.tsx
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
import { Link } from '@tanstack/react-router'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
import { useStationStore } from '@/stores/station.store'
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
|
import { ArrowLeft, Lock, DollarSign, Receipt, FileText, ShoppingCart, Wrench, GraduationCap } from 'lucide-react'
|
||||||
|
import type { DrawerSession } from '@/api/pos'
|
||||||
|
import { useState } from 'react'
|
||||||
|
import { POSDrawerDialog } from '@/components/pos/pos-drawer-dialog'
|
||||||
|
|
||||||
|
type StationTab = 'pos' | 'repairs' | 'lessons'
|
||||||
|
|
||||||
|
const TAB_CONFIG: { key: StationTab; label: string; icon: typeof ShoppingCart; permission: string; module: string }[] = [
|
||||||
|
{ key: 'pos', label: 'POS', icon: ShoppingCart, permission: 'pos.view', module: 'pos' },
|
||||||
|
{ key: 'repairs', label: 'Repairs', icon: Wrench, permission: 'repairs.view', module: 'repairs' },
|
||||||
|
{ key: 'lessons', label: 'Lessons', icon: GraduationCap, permission: 'lessons.view', module: 'lessons' },
|
||||||
|
]
|
||||||
|
|
||||||
|
interface StationTopBarProps {
|
||||||
|
locations: { id: string; name: string }[]
|
||||||
|
locationId: string | null
|
||||||
|
onLocationChange: (id: string) => void
|
||||||
|
drawer: DrawerSession | null
|
||||||
|
permissions: string[]
|
||||||
|
enabledModules: Set<string>
|
||||||
|
}
|
||||||
|
|
||||||
|
export function StationTopBar({ locations, locationId, onLocationChange, drawer, permissions, enabledModules }: StationTopBarProps) {
|
||||||
|
const cashier = usePOSStore((s) => s.cashier)
|
||||||
|
const lockFn = usePOSStore((s) => s.lock)
|
||||||
|
const receiptFormat = usePOSStore((s) => s.receiptFormat)
|
||||||
|
const setReceiptFormat = usePOSStore((s) => s.setReceiptFormat)
|
||||||
|
const { activeTab, setActiveTab } = useStationStore()
|
||||||
|
const [drawerDialogOpen, setDrawerDialogOpen] = useState(false)
|
||||||
|
|
||||||
|
const drawerOpen = drawer?.status === 'open'
|
||||||
|
const isThermal = receiptFormat === 'thermal'
|
||||||
|
|
||||||
|
const hasPermission = (perm: string) => permissions.includes(perm)
|
||||||
|
const visibleTabs = TAB_CONFIG.filter(t => hasPermission(t.permission) && enabledModules.has(t.module))
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="h-12 border-b border-border bg-card flex items-center px-3 shrink-0 gap-2">
|
||||||
|
{/* Left: back link */}
|
||||||
|
<Link to="/login" className="flex items-center gap-1 text-sm text-muted-foreground hover:text-foreground mr-2">
|
||||||
|
<ArrowLeft className="h-4 w-4" />
|
||||||
|
<span className="hidden sm:inline">Admin</span>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
{/* Tabs */}
|
||||||
|
<div className="flex items-center gap-1 bg-muted rounded-lg p-0.5">
|
||||||
|
{visibleTabs.map((tab) => (
|
||||||
|
<Button
|
||||||
|
key={tab.key}
|
||||||
|
variant={activeTab === tab.key ? 'default' : 'ghost'}
|
||||||
|
size="sm"
|
||||||
|
className={`h-8 gap-1.5 text-xs ${activeTab === tab.key ? '' : 'text-muted-foreground hover:text-foreground'}`}
|
||||||
|
onClick={() => setActiveTab(tab.key)}
|
||||||
|
>
|
||||||
|
<tab.icon className="h-3.5 w-3.5" />
|
||||||
|
{tab.label}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Spacer */}
|
||||||
|
<div className="flex-1" />
|
||||||
|
|
||||||
|
{/* Location */}
|
||||||
|
{locations.length > 1 ? (
|
||||||
|
<Select value={locationId ?? ''} onValueChange={onLocationChange}>
|
||||||
|
<SelectTrigger className="h-8 w-40 text-sm">
|
||||||
|
<SelectValue placeholder="Location" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{locations.map((loc) => (
|
||||||
|
<SelectItem key={loc.id} value={loc.id}>{loc.name}</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
) : locations.length === 1 ? (
|
||||||
|
<span className="text-sm text-muted-foreground">{locations[0].name}</span>
|
||||||
|
) : null}
|
||||||
|
|
||||||
|
{/* POS-specific controls */}
|
||||||
|
{activeTab === 'pos' && (
|
||||||
|
<>
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
className="h-8 gap-1.5 text-xs text-muted-foreground"
|
||||||
|
onClick={() => setReceiptFormat(isThermal ? 'full' : 'thermal')}
|
||||||
|
title={isThermal ? 'Thermal' : 'Full Page'}
|
||||||
|
>
|
||||||
|
{isThermal ? <Receipt className="h-3.5 w-3.5" /> : <FileText className="h-3.5 w-3.5" />}
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Button variant="ghost" size="sm" className="gap-1.5" onClick={() => setDrawerDialogOpen(true)}>
|
||||||
|
<DollarSign className="h-4 w-4" />
|
||||||
|
{drawerOpen ? (
|
||||||
|
<Badge variant="default" className="text-xs">Open</Badge>
|
||||||
|
) : (
|
||||||
|
<Badge variant="outline" className="text-xs">Closed</Badge>
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Cashier + Lock */}
|
||||||
|
{cashier && (
|
||||||
|
<span className="text-sm text-muted-foreground">{cashier.firstName}</span>
|
||||||
|
)}
|
||||||
|
<Button variant="ghost" size="icon" className="h-8 w-8" onClick={lockFn} title="Lock Station">
|
||||||
|
<Lock className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<POSDrawerDialog
|
||||||
|
open={drawerDialogOpen}
|
||||||
|
onOpenChange={setDrawerDialogOpen}
|
||||||
|
drawer={drawer}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
66
packages/admin/src/components/ui/alert.tsx
Normal file
66
packages/admin/src/components/ui/alert.tsx
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import { cva, type VariantProps } from "class-variance-authority"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
const alertVariants = cva(
|
||||||
|
"relative grid w-full grid-cols-[0_1fr] items-start gap-y-0.5 rounded-lg border px-4 py-3 text-sm has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] has-[>svg]:gap-x-3 [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current",
|
||||||
|
{
|
||||||
|
variants: {
|
||||||
|
variant: {
|
||||||
|
default: "bg-card text-card-foreground",
|
||||||
|
destructive:
|
||||||
|
"bg-card text-destructive *:data-[slot=alert-description]:text-destructive/90 [&>svg]:text-current",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
defaultVariants: {
|
||||||
|
variant: "default",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
function Alert({
|
||||||
|
className,
|
||||||
|
variant,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<"div"> & VariantProps<typeof alertVariants>) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="alert"
|
||||||
|
role="alert"
|
||||||
|
className={cn(alertVariants({ variant }), className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AlertTitle({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="alert-title"
|
||||||
|
className={cn(
|
||||||
|
"col-start-2 line-clamp-1 min-h-4 font-medium tracking-tight",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AlertDescription({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="alert-description"
|
||||||
|
className={cn(
|
||||||
|
"col-start-2 grid justify-items-start gap-1 text-sm text-muted-foreground [&_p]:leading-relaxed",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Alert, AlertTitle, AlertDescription }
|
||||||
46
packages/admin/src/components/ui/popover.tsx
Normal file
46
packages/admin/src/components/ui/popover.tsx
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import { Popover as PopoverPrimitive } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Popover({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof PopoverPrimitive.Root>) {
|
||||||
|
return <PopoverPrimitive.Root data-slot="popover" {...props} />
|
||||||
|
}
|
||||||
|
|
||||||
|
function PopoverTrigger({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof PopoverPrimitive.Trigger>) {
|
||||||
|
return <PopoverPrimitive.Trigger data-slot="popover-trigger" {...props} />
|
||||||
|
}
|
||||||
|
|
||||||
|
function PopoverContent({
|
||||||
|
className,
|
||||||
|
align = "center",
|
||||||
|
sideOffset = 4,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof PopoverPrimitive.Content>) {
|
||||||
|
return (
|
||||||
|
<PopoverPrimitive.Portal>
|
||||||
|
<PopoverPrimitive.Content
|
||||||
|
data-slot="popover-content"
|
||||||
|
align={align}
|
||||||
|
sideOffset={sideOffset}
|
||||||
|
className={cn(
|
||||||
|
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-72 rounded-md border p-4 shadow-md outline-hidden",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
</PopoverPrimitive.Portal>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function PopoverAnchor({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof PopoverPrimitive.Anchor>) {
|
||||||
|
return <PopoverPrimitive.Anchor data-slot="popover-anchor" {...props} />
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor }
|
||||||
@@ -23,12 +23,13 @@ export function usePagination() {
|
|||||||
|
|
||||||
function setParams(updates: Partial<PaginationSearch>) {
|
function setParams(updates: Partial<PaginationSearch>) {
|
||||||
navigate({
|
navigate({
|
||||||
search: ((prev: PaginationSearch) => ({
|
// @ts-expect-error: navigate without a route context resolves search as never; safe here since we use strict:false
|
||||||
|
search: (prev: any) => ({
|
||||||
...prev,
|
...prev,
|
||||||
...updates,
|
...updates,
|
||||||
// Reset to page 1 when search or sort changes
|
// Reset to page 1 when search or sort changes
|
||||||
page: updates.q !== undefined || updates.sort !== undefined ? 1 : (updates.page ?? prev.page),
|
page: updates.q !== undefined || updates.sort !== undefined ? 1 : (updates.page ?? (prev as PaginationSearch).page),
|
||||||
})) as any,
|
}),
|
||||||
replace: true,
|
replace: true,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { useAuthStore } from '@/stores/auth.store'
|
import { useAuthStore } from '@/stores/auth.store'
|
||||||
|
import { usePOSStore } from '@/stores/pos.store'
|
||||||
|
|
||||||
class ApiError extends Error {
|
class ApiError extends Error {
|
||||||
statusCode: number
|
statusCode: number
|
||||||
@@ -13,7 +14,8 @@ class ApiError extends Error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function request<T>(method: string, path: string, body?: unknown): Promise<T> {
|
async function request<T>(method: string, path: string, body?: unknown): Promise<T> {
|
||||||
const { token } = useAuthStore.getState()
|
// Use POS token if available (POS screen), otherwise admin token
|
||||||
|
const token = usePOSStore.getState().token ?? useAuthStore.getState().token
|
||||||
|
|
||||||
const headers: Record<string, string> = {}
|
const headers: Record<string, string> = {}
|
||||||
|
|
||||||
@@ -32,9 +34,12 @@ async function request<T>(method: string, path: string, body?: unknown): Promise
|
|||||||
})
|
})
|
||||||
|
|
||||||
if (res.status === 401) {
|
if (res.status === 401) {
|
||||||
useAuthStore.getState().logout()
|
// On POS, lock the screen instead of logging out admin
|
||||||
// Don't use window.location — that causes a full reload and flash
|
if (usePOSStore.getState().token) {
|
||||||
// The router's beforeLoad guard will redirect to /login on next navigation
|
usePOSStore.getState().lock()
|
||||||
|
} else {
|
||||||
|
useAuthStore.getState().logout()
|
||||||
|
}
|
||||||
throw new ApiError('Unauthorized', 401)
|
throw new ApiError('Unauthorized', 401)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,9 @@
|
|||||||
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
||||||
|
|
||||||
import { Route as rootRouteImport } from './routes/__root'
|
import { Route as rootRouteImport } from './routes/__root'
|
||||||
|
import { Route as StationRouteImport } from './routes/station'
|
||||||
|
import { Route as ResetPasswordRouteImport } from './routes/reset-password'
|
||||||
|
import { Route as PosRouteImport } from './routes/pos'
|
||||||
import { Route as LoginRouteImport } from './routes/login'
|
import { Route as LoginRouteImport } from './routes/login'
|
||||||
import { Route as AuthenticatedRouteImport } from './routes/_authenticated'
|
import { Route as AuthenticatedRouteImport } from './routes/_authenticated'
|
||||||
import { Route as AuthenticatedIndexRouteImport } from './routes/_authenticated/index'
|
import { Route as AuthenticatedIndexRouteImport } from './routes/_authenticated/index'
|
||||||
@@ -26,6 +29,7 @@ import { Route as AuthenticatedFilesIndexRouteImport } from './routes/_authentic
|
|||||||
import { Route as AuthenticatedAccountsIndexRouteImport } from './routes/_authenticated/accounts/index'
|
import { Route as AuthenticatedAccountsIndexRouteImport } from './routes/_authenticated/accounts/index'
|
||||||
import { Route as AuthenticatedRolesNewRouteImport } from './routes/_authenticated/roles/new'
|
import { Route as AuthenticatedRolesNewRouteImport } from './routes/_authenticated/roles/new'
|
||||||
import { Route as AuthenticatedRolesRoleIdRouteImport } from './routes/_authenticated/roles/$roleId'
|
import { Route as AuthenticatedRolesRoleIdRouteImport } from './routes/_authenticated/roles/$roleId'
|
||||||
|
import { Route as AuthenticatedReportsDailyRouteImport } from './routes/_authenticated/reports/daily'
|
||||||
import { Route as AuthenticatedRepairsTemplatesRouteImport } from './routes/_authenticated/repairs/templates'
|
import { Route as AuthenticatedRepairsTemplatesRouteImport } from './routes/_authenticated/repairs/templates'
|
||||||
import { Route as AuthenticatedRepairsNewRouteImport } from './routes/_authenticated/repairs/new'
|
import { Route as AuthenticatedRepairsNewRouteImport } from './routes/_authenticated/repairs/new'
|
||||||
import { Route as AuthenticatedRepairsTicketIdRouteImport } from './routes/_authenticated/repairs/$ticketId'
|
import { Route as AuthenticatedRepairsTicketIdRouteImport } from './routes/_authenticated/repairs/$ticketId'
|
||||||
@@ -56,6 +60,21 @@ import { Route as AuthenticatedAccountsAccountIdMembersRouteImport } from './rou
|
|||||||
import { Route as AuthenticatedAccountsAccountIdEnrollmentsRouteImport } from './routes/_authenticated/accounts/$accountId/enrollments'
|
import { Route as AuthenticatedAccountsAccountIdEnrollmentsRouteImport } from './routes/_authenticated/accounts/$accountId/enrollments'
|
||||||
import { Route as AuthenticatedLessonsScheduleInstructorsInstructorIdRouteImport } from './routes/_authenticated/lessons/schedule/instructors/$instructorId'
|
import { Route as AuthenticatedLessonsScheduleInstructorsInstructorIdRouteImport } from './routes/_authenticated/lessons/schedule/instructors/$instructorId'
|
||||||
|
|
||||||
|
const StationRoute = StationRouteImport.update({
|
||||||
|
id: '/station',
|
||||||
|
path: '/station',
|
||||||
|
getParentRoute: () => rootRouteImport,
|
||||||
|
} as any)
|
||||||
|
const ResetPasswordRoute = ResetPasswordRouteImport.update({
|
||||||
|
id: '/reset-password',
|
||||||
|
path: '/reset-password',
|
||||||
|
getParentRoute: () => rootRouteImport,
|
||||||
|
} as any)
|
||||||
|
const PosRoute = PosRouteImport.update({
|
||||||
|
id: '/pos',
|
||||||
|
path: '/pos',
|
||||||
|
getParentRoute: () => rootRouteImport,
|
||||||
|
} as any)
|
||||||
const LoginRoute = LoginRouteImport.update({
|
const LoginRoute = LoginRouteImport.update({
|
||||||
id: '/login',
|
id: '/login',
|
||||||
path: '/login',
|
path: '/login',
|
||||||
@@ -146,6 +165,12 @@ const AuthenticatedRolesRoleIdRoute =
|
|||||||
path: '/roles/$roleId',
|
path: '/roles/$roleId',
|
||||||
getParentRoute: () => AuthenticatedRoute,
|
getParentRoute: () => AuthenticatedRoute,
|
||||||
} as any)
|
} as any)
|
||||||
|
const AuthenticatedReportsDailyRoute =
|
||||||
|
AuthenticatedReportsDailyRouteImport.update({
|
||||||
|
id: '/reports/daily',
|
||||||
|
path: '/reports/daily',
|
||||||
|
getParentRoute: () => AuthenticatedRoute,
|
||||||
|
} as any)
|
||||||
const AuthenticatedRepairsTemplatesRoute =
|
const AuthenticatedRepairsTemplatesRoute =
|
||||||
AuthenticatedRepairsTemplatesRouteImport.update({
|
AuthenticatedRepairsTemplatesRouteImport.update({
|
||||||
id: '/repairs/templates',
|
id: '/repairs/templates',
|
||||||
@@ -323,6 +348,9 @@ const AuthenticatedLessonsScheduleInstructorsInstructorIdRoute =
|
|||||||
export interface FileRoutesByFullPath {
|
export interface FileRoutesByFullPath {
|
||||||
'/': typeof AuthenticatedIndexRoute
|
'/': typeof AuthenticatedIndexRoute
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
|
'/pos': typeof PosRoute
|
||||||
|
'/reset-password': typeof ResetPasswordRoute
|
||||||
|
'/station': typeof StationRoute
|
||||||
'/help': typeof AuthenticatedHelpRoute
|
'/help': typeof AuthenticatedHelpRoute
|
||||||
'/profile': typeof AuthenticatedProfileRoute
|
'/profile': typeof AuthenticatedProfileRoute
|
||||||
'/settings': typeof AuthenticatedSettingsRoute
|
'/settings': typeof AuthenticatedSettingsRoute
|
||||||
@@ -337,6 +365,7 @@ export interface FileRoutesByFullPath {
|
|||||||
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
||||||
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
||||||
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
'/reports/daily': typeof AuthenticatedReportsDailyRoute
|
||||||
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
||||||
'/roles/new': typeof AuthenticatedRolesNewRoute
|
'/roles/new': typeof AuthenticatedRolesNewRoute
|
||||||
'/accounts/': typeof AuthenticatedAccountsIndexRoute
|
'/accounts/': typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -369,6 +398,9 @@ export interface FileRoutesByFullPath {
|
|||||||
}
|
}
|
||||||
export interface FileRoutesByTo {
|
export interface FileRoutesByTo {
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
|
'/pos': typeof PosRoute
|
||||||
|
'/reset-password': typeof ResetPasswordRoute
|
||||||
|
'/station': typeof StationRoute
|
||||||
'/help': typeof AuthenticatedHelpRoute
|
'/help': typeof AuthenticatedHelpRoute
|
||||||
'/profile': typeof AuthenticatedProfileRoute
|
'/profile': typeof AuthenticatedProfileRoute
|
||||||
'/settings': typeof AuthenticatedSettingsRoute
|
'/settings': typeof AuthenticatedSettingsRoute
|
||||||
@@ -383,6 +415,7 @@ export interface FileRoutesByTo {
|
|||||||
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
||||||
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
||||||
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
'/reports/daily': typeof AuthenticatedReportsDailyRoute
|
||||||
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
||||||
'/roles/new': typeof AuthenticatedRolesNewRoute
|
'/roles/new': typeof AuthenticatedRolesNewRoute
|
||||||
'/accounts': typeof AuthenticatedAccountsIndexRoute
|
'/accounts': typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -417,6 +450,9 @@ export interface FileRoutesById {
|
|||||||
__root__: typeof rootRouteImport
|
__root__: typeof rootRouteImport
|
||||||
'/_authenticated': typeof AuthenticatedRouteWithChildren
|
'/_authenticated': typeof AuthenticatedRouteWithChildren
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
|
'/pos': typeof PosRoute
|
||||||
|
'/reset-password': typeof ResetPasswordRoute
|
||||||
|
'/station': typeof StationRoute
|
||||||
'/_authenticated/help': typeof AuthenticatedHelpRoute
|
'/_authenticated/help': typeof AuthenticatedHelpRoute
|
||||||
'/_authenticated/profile': typeof AuthenticatedProfileRoute
|
'/_authenticated/profile': typeof AuthenticatedProfileRoute
|
||||||
'/_authenticated/settings': typeof AuthenticatedSettingsRoute
|
'/_authenticated/settings': typeof AuthenticatedSettingsRoute
|
||||||
@@ -432,6 +468,7 @@ export interface FileRoutesById {
|
|||||||
'/_authenticated/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
'/_authenticated/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
||||||
'/_authenticated/repairs/new': typeof AuthenticatedRepairsNewRoute
|
'/_authenticated/repairs/new': typeof AuthenticatedRepairsNewRoute
|
||||||
'/_authenticated/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
'/_authenticated/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
'/_authenticated/reports/daily': typeof AuthenticatedReportsDailyRoute
|
||||||
'/_authenticated/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
'/_authenticated/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
||||||
'/_authenticated/roles/new': typeof AuthenticatedRolesNewRoute
|
'/_authenticated/roles/new': typeof AuthenticatedRolesNewRoute
|
||||||
'/_authenticated/accounts/': typeof AuthenticatedAccountsIndexRoute
|
'/_authenticated/accounts/': typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -467,6 +504,9 @@ export interface FileRouteTypes {
|
|||||||
fullPaths:
|
fullPaths:
|
||||||
| '/'
|
| '/'
|
||||||
| '/login'
|
| '/login'
|
||||||
|
| '/pos'
|
||||||
|
| '/reset-password'
|
||||||
|
| '/station'
|
||||||
| '/help'
|
| '/help'
|
||||||
| '/profile'
|
| '/profile'
|
||||||
| '/settings'
|
| '/settings'
|
||||||
@@ -481,6 +521,7 @@ export interface FileRouteTypes {
|
|||||||
| '/repairs/$ticketId'
|
| '/repairs/$ticketId'
|
||||||
| '/repairs/new'
|
| '/repairs/new'
|
||||||
| '/repairs/templates'
|
| '/repairs/templates'
|
||||||
|
| '/reports/daily'
|
||||||
| '/roles/$roleId'
|
| '/roles/$roleId'
|
||||||
| '/roles/new'
|
| '/roles/new'
|
||||||
| '/accounts/'
|
| '/accounts/'
|
||||||
@@ -513,6 +554,9 @@ export interface FileRouteTypes {
|
|||||||
fileRoutesByTo: FileRoutesByTo
|
fileRoutesByTo: FileRoutesByTo
|
||||||
to:
|
to:
|
||||||
| '/login'
|
| '/login'
|
||||||
|
| '/pos'
|
||||||
|
| '/reset-password'
|
||||||
|
| '/station'
|
||||||
| '/help'
|
| '/help'
|
||||||
| '/profile'
|
| '/profile'
|
||||||
| '/settings'
|
| '/settings'
|
||||||
@@ -527,6 +571,7 @@ export interface FileRouteTypes {
|
|||||||
| '/repairs/$ticketId'
|
| '/repairs/$ticketId'
|
||||||
| '/repairs/new'
|
| '/repairs/new'
|
||||||
| '/repairs/templates'
|
| '/repairs/templates'
|
||||||
|
| '/reports/daily'
|
||||||
| '/roles/$roleId'
|
| '/roles/$roleId'
|
||||||
| '/roles/new'
|
| '/roles/new'
|
||||||
| '/accounts'
|
| '/accounts'
|
||||||
@@ -560,6 +605,9 @@ export interface FileRouteTypes {
|
|||||||
| '__root__'
|
| '__root__'
|
||||||
| '/_authenticated'
|
| '/_authenticated'
|
||||||
| '/login'
|
| '/login'
|
||||||
|
| '/pos'
|
||||||
|
| '/reset-password'
|
||||||
|
| '/station'
|
||||||
| '/_authenticated/help'
|
| '/_authenticated/help'
|
||||||
| '/_authenticated/profile'
|
| '/_authenticated/profile'
|
||||||
| '/_authenticated/settings'
|
| '/_authenticated/settings'
|
||||||
@@ -575,6 +623,7 @@ export interface FileRouteTypes {
|
|||||||
| '/_authenticated/repairs/$ticketId'
|
| '/_authenticated/repairs/$ticketId'
|
||||||
| '/_authenticated/repairs/new'
|
| '/_authenticated/repairs/new'
|
||||||
| '/_authenticated/repairs/templates'
|
| '/_authenticated/repairs/templates'
|
||||||
|
| '/_authenticated/reports/daily'
|
||||||
| '/_authenticated/roles/$roleId'
|
| '/_authenticated/roles/$roleId'
|
||||||
| '/_authenticated/roles/new'
|
| '/_authenticated/roles/new'
|
||||||
| '/_authenticated/accounts/'
|
| '/_authenticated/accounts/'
|
||||||
@@ -609,10 +658,34 @@ export interface FileRouteTypes {
|
|||||||
export interface RootRouteChildren {
|
export interface RootRouteChildren {
|
||||||
AuthenticatedRoute: typeof AuthenticatedRouteWithChildren
|
AuthenticatedRoute: typeof AuthenticatedRouteWithChildren
|
||||||
LoginRoute: typeof LoginRoute
|
LoginRoute: typeof LoginRoute
|
||||||
|
PosRoute: typeof PosRoute
|
||||||
|
ResetPasswordRoute: typeof ResetPasswordRoute
|
||||||
|
StationRoute: typeof StationRoute
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module '@tanstack/react-router' {
|
declare module '@tanstack/react-router' {
|
||||||
interface FileRoutesByPath {
|
interface FileRoutesByPath {
|
||||||
|
'/station': {
|
||||||
|
id: '/station'
|
||||||
|
path: '/station'
|
||||||
|
fullPath: '/station'
|
||||||
|
preLoaderRoute: typeof StationRouteImport
|
||||||
|
parentRoute: typeof rootRouteImport
|
||||||
|
}
|
||||||
|
'/reset-password': {
|
||||||
|
id: '/reset-password'
|
||||||
|
path: '/reset-password'
|
||||||
|
fullPath: '/reset-password'
|
||||||
|
preLoaderRoute: typeof ResetPasswordRouteImport
|
||||||
|
parentRoute: typeof rootRouteImport
|
||||||
|
}
|
||||||
|
'/pos': {
|
||||||
|
id: '/pos'
|
||||||
|
path: '/pos'
|
||||||
|
fullPath: '/pos'
|
||||||
|
preLoaderRoute: typeof PosRouteImport
|
||||||
|
parentRoute: typeof rootRouteImport
|
||||||
|
}
|
||||||
'/login': {
|
'/login': {
|
||||||
id: '/login'
|
id: '/login'
|
||||||
path: '/login'
|
path: '/login'
|
||||||
@@ -732,6 +805,13 @@ declare module '@tanstack/react-router' {
|
|||||||
preLoaderRoute: typeof AuthenticatedRolesRoleIdRouteImport
|
preLoaderRoute: typeof AuthenticatedRolesRoleIdRouteImport
|
||||||
parentRoute: typeof AuthenticatedRoute
|
parentRoute: typeof AuthenticatedRoute
|
||||||
}
|
}
|
||||||
|
'/_authenticated/reports/daily': {
|
||||||
|
id: '/_authenticated/reports/daily'
|
||||||
|
path: '/reports/daily'
|
||||||
|
fullPath: '/reports/daily'
|
||||||
|
preLoaderRoute: typeof AuthenticatedReportsDailyRouteImport
|
||||||
|
parentRoute: typeof AuthenticatedRoute
|
||||||
|
}
|
||||||
'/_authenticated/repairs/templates': {
|
'/_authenticated/repairs/templates': {
|
||||||
id: '/_authenticated/repairs/templates'
|
id: '/_authenticated/repairs/templates'
|
||||||
path: '/repairs/templates'
|
path: '/repairs/templates'
|
||||||
@@ -984,6 +1064,7 @@ interface AuthenticatedRouteChildren {
|
|||||||
AuthenticatedRepairsTicketIdRoute: typeof AuthenticatedRepairsTicketIdRoute
|
AuthenticatedRepairsTicketIdRoute: typeof AuthenticatedRepairsTicketIdRoute
|
||||||
AuthenticatedRepairsNewRoute: typeof AuthenticatedRepairsNewRoute
|
AuthenticatedRepairsNewRoute: typeof AuthenticatedRepairsNewRoute
|
||||||
AuthenticatedRepairsTemplatesRoute: typeof AuthenticatedRepairsTemplatesRoute
|
AuthenticatedRepairsTemplatesRoute: typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
AuthenticatedReportsDailyRoute: typeof AuthenticatedReportsDailyRoute
|
||||||
AuthenticatedRolesRoleIdRoute: typeof AuthenticatedRolesRoleIdRoute
|
AuthenticatedRolesRoleIdRoute: typeof AuthenticatedRolesRoleIdRoute
|
||||||
AuthenticatedRolesNewRoute: typeof AuthenticatedRolesNewRoute
|
AuthenticatedRolesNewRoute: typeof AuthenticatedRolesNewRoute
|
||||||
AuthenticatedAccountsIndexRoute: typeof AuthenticatedAccountsIndexRoute
|
AuthenticatedAccountsIndexRoute: typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -1027,6 +1108,7 @@ const AuthenticatedRouteChildren: AuthenticatedRouteChildren = {
|
|||||||
AuthenticatedRepairsTicketIdRoute: AuthenticatedRepairsTicketIdRoute,
|
AuthenticatedRepairsTicketIdRoute: AuthenticatedRepairsTicketIdRoute,
|
||||||
AuthenticatedRepairsNewRoute: AuthenticatedRepairsNewRoute,
|
AuthenticatedRepairsNewRoute: AuthenticatedRepairsNewRoute,
|
||||||
AuthenticatedRepairsTemplatesRoute: AuthenticatedRepairsTemplatesRoute,
|
AuthenticatedRepairsTemplatesRoute: AuthenticatedRepairsTemplatesRoute,
|
||||||
|
AuthenticatedReportsDailyRoute: AuthenticatedReportsDailyRoute,
|
||||||
AuthenticatedRolesRoleIdRoute: AuthenticatedRolesRoleIdRoute,
|
AuthenticatedRolesRoleIdRoute: AuthenticatedRolesRoleIdRoute,
|
||||||
AuthenticatedRolesNewRoute: AuthenticatedRolesNewRoute,
|
AuthenticatedRolesNewRoute: AuthenticatedRolesNewRoute,
|
||||||
AuthenticatedAccountsIndexRoute: AuthenticatedAccountsIndexRoute,
|
AuthenticatedAccountsIndexRoute: AuthenticatedAccountsIndexRoute,
|
||||||
@@ -1069,6 +1151,9 @@ const AuthenticatedRouteWithChildren = AuthenticatedRoute._addFileChildren(
|
|||||||
const rootRouteChildren: RootRouteChildren = {
|
const rootRouteChildren: RootRouteChildren = {
|
||||||
AuthenticatedRoute: AuthenticatedRouteWithChildren,
|
AuthenticatedRoute: AuthenticatedRouteWithChildren,
|
||||||
LoginRoute: LoginRoute,
|
LoginRoute: LoginRoute,
|
||||||
|
PosRoute: PosRoute,
|
||||||
|
ResetPasswordRoute: ResetPasswordRoute,
|
||||||
|
StationRoute: StationRoute,
|
||||||
}
|
}
|
||||||
export const routeTree = rootRouteImport
|
export const routeTree = rootRouteImport
|
||||||
._addFileChildren(rootRouteChildren)
|
._addFileChildren(rootRouteChildren)
|
||||||
|
|||||||
@@ -1,11 +1,29 @@
|
|||||||
import { createRootRoute, Outlet } from '@tanstack/react-router'
|
import { createRootRoute, Outlet } from '@tanstack/react-router'
|
||||||
import { Toaster } from 'sonner'
|
import { Toaster } from 'sonner'
|
||||||
|
import { useEffect } from 'react'
|
||||||
|
|
||||||
export const Route = createRootRoute({
|
export const Route = createRootRoute({
|
||||||
component: RootLayout,
|
component: RootLayout,
|
||||||
})
|
})
|
||||||
|
|
||||||
function RootLayout() {
|
function RootLayout() {
|
||||||
|
useEffect(() => {
|
||||||
|
fetch('/v1/store/branding')
|
||||||
|
.then((r) => r.ok ? r.json() : null)
|
||||||
|
.then((data: { name: string | null; hasLogo: boolean } | null) => {
|
||||||
|
if (!data) return
|
||||||
|
if (data.name) document.title = data.name
|
||||||
|
if (data.hasLogo) {
|
||||||
|
const link = document.querySelector<HTMLLinkElement>('link[rel="icon"]')
|
||||||
|
?? document.createElement('link')
|
||||||
|
link.rel = 'icon'
|
||||||
|
link.href = '/v1/store/logo'
|
||||||
|
document.head.appendChild(link)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {})
|
||||||
|
}, [])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Outlet />
|
<Outlet />
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { createFileRoute, Outlet, Link, redirect, useRouter } from '@tanstack/react-router'
|
import { createFileRoute, Outlet, Link, redirect, useRouter } from '@tanstack/react-router'
|
||||||
import { useQuery } from '@tanstack/react-query'
|
import { useQuery, useQueryClient, useMutation } from '@tanstack/react-query'
|
||||||
import { queryOptions } from '@tanstack/react-query'
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
import { useEffect, useState } from 'react'
|
import { useEffect, useState } from 'react'
|
||||||
import { api } from '@/lib/api-client'
|
import { api } from '@/lib/api-client'
|
||||||
@@ -8,7 +8,10 @@ import { myPermissionsOptions } from '@/api/rbac'
|
|||||||
import { moduleListOptions } from '@/api/modules'
|
import { moduleListOptions } from '@/api/modules'
|
||||||
import { Avatar } from '@/components/shared/avatar-upload'
|
import { Avatar } from '@/components/shared/avatar-upload'
|
||||||
import { Button } from '@/components/ui/button'
|
import { Button } from '@/components/ui/button'
|
||||||
import { Users, UserRound, HelpCircle, Shield, UserCog, LogOut, User, Wrench, Package, ClipboardList, FolderOpen, KeyRound, Settings, PanelLeftClose, PanelLeft, CalendarDays, GraduationCap, CalendarRange, BookOpen, BookMarked, Package2, Tag, Truck } from 'lucide-react'
|
import { Users, UserRound, HelpCircle, Shield, UserCog, LogOut, User, Wrench, Package, ClipboardList, FolderOpen, KeyRound, Settings, PanelLeftClose, PanelLeft, CalendarDays, GraduationCap, CalendarRange, BookOpen, BookMarked, Package2, Tag, Truck, ShoppingCart } from 'lucide-react'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { toast } from 'sonner'
|
||||||
|
|
||||||
export const Route = createFileRoute('/_authenticated')({
|
export const Route = createFileRoute('/_authenticated')({
|
||||||
beforeLoad: () => {
|
beforeLoad: () => {
|
||||||
@@ -67,7 +70,7 @@ function NavLink({ to, icon, label, collapsed }: { to: string; icon: React.React
|
|||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
to={to as '/accounts'}
|
to={to as '/accounts'}
|
||||||
search={{} as any}
|
search={{ page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const }}
|
||||||
className="flex items-center gap-2 px-3 py-2 rounded-md text-sm text-sidebar-foreground hover:bg-sidebar-accent"
|
className="flex items-center gap-2 px-3 py-2 rounded-md text-sm text-sidebar-foreground hover:bg-sidebar-accent"
|
||||||
activeProps={{ className: 'flex items-center gap-2 px-3 py-2 rounded-md text-sm bg-sidebar-accent text-sidebar-accent-foreground' }}
|
activeProps={{ className: 'flex items-center gap-2 px-3 py-2 rounded-md text-sm bg-sidebar-accent text-sidebar-accent-foreground' }}
|
||||||
title={collapsed ? label : undefined}
|
title={collapsed ? label : undefined}
|
||||||
@@ -104,6 +107,58 @@ function NavGroup({ label, children, collapsed }: { label: string; children: Rea
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function SetPinModal() {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const [pin, setPin] = useState('')
|
||||||
|
const [confirmPin, setConfirmPin] = useState('')
|
||||||
|
const [error, setError] = useState('')
|
||||||
|
|
||||||
|
const setPinMutation = useMutation({
|
||||||
|
mutationFn: () => api.post('/v1/auth/set-pin', { pin }),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['auth', 'me'] })
|
||||||
|
toast.success('PIN set successfully')
|
||||||
|
},
|
||||||
|
onError: (err) => setError(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
function handleSubmit(e: React.FormEvent) {
|
||||||
|
e.preventDefault()
|
||||||
|
setError('')
|
||||||
|
if (pin.length < 4 || pin.length > 6) { setError('PIN must be 4-6 digits'); return }
|
||||||
|
if (!/^\d+$/.test(pin)) { setError('PIN must be digits only'); return }
|
||||||
|
if (pin !== confirmPin) { setError('PINs do not match'); return }
|
||||||
|
setPinMutation.mutate()
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/60">
|
||||||
|
<div className="w-full max-w-sm rounded-xl border bg-card p-6 shadow-xl">
|
||||||
|
<h2 className="text-lg font-semibold mb-1">Set your POS PIN</h2>
|
||||||
|
<p className="text-sm text-muted-foreground mb-4">
|
||||||
|
A PIN is required to use the Point of Sale. Choose a 4-6 digit PIN you'll use to unlock the terminal.
|
||||||
|
</p>
|
||||||
|
<form onSubmit={handleSubmit} className="space-y-4">
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>PIN</Label>
|
||||||
|
<Input type="password" inputMode="numeric" maxLength={6} value={pin} onChange={(e) => setPin(e.target.value)} placeholder="****" autoFocus />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Confirm PIN</Label>
|
||||||
|
<Input type="password" inputMode="numeric" maxLength={6} value={confirmPin} onChange={(e) => setConfirmPin(e.target.value)} placeholder="****" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{error && <p className="text-sm text-destructive">{error}</p>}
|
||||||
|
<Button type="submit" className="w-full" disabled={setPinMutation.isPending}>
|
||||||
|
{setPinMutation.isPending ? 'Setting...' : 'Set PIN'}
|
||||||
|
</Button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
function AuthenticatedLayout() {
|
function AuthenticatedLayout() {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const user = useAuthStore((s) => s.user)
|
const user = useAuthStore((s) => s.user)
|
||||||
@@ -112,6 +167,13 @@ function AuthenticatedLayout() {
|
|||||||
const setPermissions = useAuthStore((s) => s.setPermissions)
|
const setPermissions = useAuthStore((s) => s.setPermissions)
|
||||||
const permissionsLoaded = useAuthStore((s) => s.permissionsLoaded)
|
const permissionsLoaded = useAuthStore((s) => s.permissionsLoaded)
|
||||||
|
|
||||||
|
// Fetch profile for PIN warning
|
||||||
|
const { data: profile } = useQuery(queryOptions({
|
||||||
|
queryKey: ['auth', 'me'],
|
||||||
|
queryFn: () => api.get<{ hasPin: boolean }>('/v1/auth/me'),
|
||||||
|
enabled: !!useAuthStore.getState().token,
|
||||||
|
}))
|
||||||
|
|
||||||
// Fetch permissions on mount
|
// Fetch permissions on mount
|
||||||
const { data: permData } = useQuery({
|
const { data: permData } = useQuery({
|
||||||
...myPermissionsOptions(),
|
...myPermissionsOptions(),
|
||||||
@@ -145,6 +207,7 @@ function AuthenticatedLayout() {
|
|||||||
const canViewLessons = !permissionsLoaded || hasPermission('lessons.view')
|
const canViewLessons = !permissionsLoaded || hasPermission('lessons.view')
|
||||||
const canViewInventory = !permissionsLoaded || hasPermission('inventory.view')
|
const canViewInventory = !permissionsLoaded || hasPermission('inventory.view')
|
||||||
const canViewUsers = !permissionsLoaded || hasPermission('users.view')
|
const canViewUsers = !permissionsLoaded || hasPermission('users.view')
|
||||||
|
const canViewPOS = !permissionsLoaded || hasPermission('pos.view')
|
||||||
|
|
||||||
const [collapsed, setCollapsed] = useState(false)
|
const [collapsed, setCollapsed] = useState(false)
|
||||||
|
|
||||||
@@ -173,6 +236,18 @@ function AuthenticatedLayout() {
|
|||||||
|
|
||||||
{/* Scrollable nav links */}
|
{/* Scrollable nav links */}
|
||||||
<div className="flex-1 overflow-y-auto px-2 space-y-1 scrollbar-thin">
|
<div className="flex-1 overflow-y-auto px-2 space-y-1 scrollbar-thin">
|
||||||
|
{isModuleEnabled('pos') && canViewPOS && (
|
||||||
|
<div className="mb-2">
|
||||||
|
<button
|
||||||
|
onClick={() => { logout(); router.navigate({ to: '/station' }) }}
|
||||||
|
className="flex items-center gap-2 px-3 py-2 rounded-md text-sm text-sidebar-foreground hover:bg-sidebar-accent w-full"
|
||||||
|
title={collapsed ? 'Point of Sale' : undefined}
|
||||||
|
>
|
||||||
|
<ShoppingCart className="h-4 w-4" />
|
||||||
|
{!collapsed && 'Point of Sale'}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
{canViewAccounts && (
|
{canViewAccounts && (
|
||||||
<NavGroup label="Customers" collapsed={collapsed}>
|
<NavGroup label="Customers" collapsed={collapsed}>
|
||||||
<NavLink to="/accounts" icon={<Users className="h-4 w-4" />} label="Accounts" collapsed={collapsed} />
|
<NavLink to="/accounts" icon={<Users className="h-4 w-4" />} label="Accounts" collapsed={collapsed} />
|
||||||
@@ -250,6 +325,7 @@ function AuthenticatedLayout() {
|
|||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
<main className="flex-1 p-6 min-h-screen">
|
<main className="flex-1 p-6 min-h-screen">
|
||||||
|
{profile && !profile.hasPin && <SetPinModal />}
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ function statusBadge(status: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const columns: Column<Enrollment & { memberName?: string }>[] = [
|
const columns: Column<Enrollment & { memberName?: string }>[] = [
|
||||||
{ key: 'member_name', header: 'Member', sortable: true, render: (e) => <span className="font-medium">{(e as any).memberName ?? e.memberId}</span> },
|
{ key: 'member_name', header: 'Member', sortable: true, render: (e) => <span className="font-medium">{e.memberName ?? e.memberId}</span> },
|
||||||
{ key: 'status', header: 'Status', sortable: true, render: (e) => statusBadge(e.status) },
|
{ key: 'status', header: 'Status', sortable: true, render: (e) => statusBadge(e.status) },
|
||||||
{ key: 'start_date', header: 'Start', sortable: true, render: (e) => <>{new Date(e.startDate + 'T00:00:00').toLocaleDateString()}</> },
|
{ key: 'start_date', header: 'Start', sortable: true, render: (e) => <>{new Date(e.startDate + 'T00:00:00').toLocaleDateString()}</> },
|
||||||
{ key: 'rate', header: 'Rate', render: (e) => <>{e.rate ? `$${e.rate}${e.billingInterval ? ` / ${e.billingInterval} ${e.billingUnit}` : ''}` : <span className="text-muted-foreground">—</span>}</> },
|
{ key: 'rate', header: 'Rate', render: (e) => <>{e.rate ? `$${e.rate}${e.billingInterval ? ` / ${e.billingInterval} ${e.billingUnit}` : ''}` : <span className="text-muted-foreground">—</span>}</> },
|
||||||
@@ -41,7 +41,7 @@ function AccountEnrollmentsTab() {
|
|||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<p className="text-sm text-muted-foreground">{data?.pagination.total ?? 0} enrollment(s)</p>
|
<p className="text-sm text-muted-foreground">{data?.pagination.total ?? 0} enrollment(s)</p>
|
||||||
{hasPermission('lessons.edit') && (
|
{hasPermission('lessons.edit') && (
|
||||||
<Button size="sm" onClick={() => navigate({ to: '/lessons/enrollments/new', search: {} as any })}>
|
<Button size="sm" onClick={() => navigate({ to: '/lessons/enrollments/new', search: { memberId: undefined, accountId: undefined } })}>
|
||||||
<Plus className="h-4 w-4 mr-1" />Enroll a Member
|
<Plus className="h-4 w-4 mr-1" />Enroll a Member
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
@@ -55,7 +55,7 @@ function AccountEnrollmentsTab() {
|
|||||||
total={data?.data?.length ?? 0}
|
total={data?.data?.length ?? 0}
|
||||||
onPageChange={() => {}}
|
onPageChange={() => {}}
|
||||||
onSort={() => {}}
|
onSort={() => {}}
|
||||||
onRowClick={(e) => navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: e.id }, search: {} as any })}
|
onRowClick={(e) => navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: e.id }, search: { tab: 'details' } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -281,7 +281,7 @@ function MembersTab() {
|
|||||||
<DropdownMenuItem onClick={() => navigate({
|
<DropdownMenuItem onClick={() => navigate({
|
||||||
to: '/members/$memberId',
|
to: '/members/$memberId',
|
||||||
params: { memberId: m.id },
|
params: { memberId: m.id },
|
||||||
search: {} as any,
|
search: { tab: 'details' },
|
||||||
})}>
|
})}>
|
||||||
<Pencil className="mr-2 h-4 w-4" />
|
<Pencil className="mr-2 h-4 w-4" />
|
||||||
Edit
|
Edit
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ function FileManagerPage() {
|
|||||||
})
|
})
|
||||||
if (!res.ok) {
|
if (!res.ok) {
|
||||||
const err = await res.json().catch(() => ({}))
|
const err = await res.json().catch(() => ({}))
|
||||||
toast.error(`Upload failed: ${(err as any).error?.message ?? file.name}`)
|
toast.error(`Upload failed: ${(err as { error?: { message?: string } }).error?.message ?? file.name}`)
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
toast.error(`Upload failed: ${file.name}`)
|
toast.error(`Upload failed: ${file.name}`)
|
||||||
|
|||||||
@@ -2,6 +2,6 @@ import { createFileRoute, redirect } from '@tanstack/react-router'
|
|||||||
|
|
||||||
export const Route = createFileRoute('/_authenticated/')({
|
export const Route = createFileRoute('/_authenticated/')({
|
||||||
beforeLoad: () => {
|
beforeLoad: () => {
|
||||||
throw redirect({ to: '/accounts', search: {} as any })
|
throw redirect({ to: '/accounts', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ function ProductDetailPage() {
|
|||||||
})
|
})
|
||||||
|
|
||||||
function setTab(t: string) {
|
function setTab(t: string) {
|
||||||
navigate({ to: '/inventory/$productId', params: { productId }, search: { tab: t } as any })
|
navigate({ to: '/inventory/$productId', params: { productId }, search: { tab: t } })
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleQtySave() {
|
function handleQtySave() {
|
||||||
@@ -192,7 +192,7 @@ function ProductDetailPage() {
|
|||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/inventory', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/inventory', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const, categoryId: undefined, isActive: undefined, type: undefined, lowStock: undefined } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div className="min-w-0">
|
<div className="min-w-0">
|
||||||
@@ -507,12 +507,12 @@ function SuppliersTab({
|
|||||||
setAddOpen: (v: boolean) => void
|
setAddOpen: (v: boolean) => void
|
||||||
editTarget: ProductSupplier | null
|
editTarget: ProductSupplier | null
|
||||||
setEditTarget: (v: ProductSupplier | null) => void
|
setEditTarget: (v: ProductSupplier | null) => void
|
||||||
addMutation: any
|
addMutation: { mutate: (data: Record<string, unknown>) => void; isPending: boolean }
|
||||||
updateMutation: any
|
updateMutation: { mutate: (args: { id: string; data: Record<string, unknown> }) => void; isPending: boolean }
|
||||||
removeMutation: any
|
removeMutation: { mutate: (id: string) => void; isPending: boolean }
|
||||||
canEdit: boolean
|
canEdit: boolean
|
||||||
}) {
|
}) {
|
||||||
const { data: allSuppliersData } = useQuery(supplierListOptions({ page: 1, limit: 500, order: 'asc', sort: 'name' } as any))
|
const { data: allSuppliersData } = useQuery(supplierListOptions({ page: 1, limit: 500, order: 'asc', sort: 'name' }))
|
||||||
const allSuppliers = allSuppliersData?.data ?? []
|
const allSuppliers = allSuppliersData?.data ?? []
|
||||||
const linkedIds = new Set(linkedSuppliers.map((s) => s.supplierId))
|
const linkedIds = new Set(linkedSuppliers.map((s) => s.supplierId))
|
||||||
const availableSuppliers = allSuppliers.filter((s) => !linkedIds.has(s.id))
|
const availableSuppliers = allSuppliers.filter((s) => !linkedIds.has(s.id))
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ function InventoryPage() {
|
|||||||
queryClient.invalidateQueries({ queryKey: productKeys.all })
|
queryClient.invalidateQueries({ queryKey: productKeys.all })
|
||||||
toast.success('Product created')
|
toast.success('Product created')
|
||||||
setCreateOpen(false)
|
setCreateOpen(false)
|
||||||
navigate({ to: '/inventory/$productId', params: { productId: product.id }, search: {} as any })
|
navigate({ to: '/inventory/$productId', params: { productId: product.id }, search: { tab: 'details' } })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -83,23 +83,23 @@ function InventoryPage() {
|
|||||||
|
|
||||||
function handleCategoryChange(v: string) {
|
function handleCategoryChange(v: string) {
|
||||||
setCategoryFilter(v === 'all' ? '' : v)
|
setCategoryFilter(v === 'all' ? '' : v)
|
||||||
navigate({ to: '/inventory', search: { ...search, categoryId: v === 'all' ? undefined : v, page: 1 } as any })
|
navigate({ to: '/inventory', search: { ...search, categoryId: v === 'all' ? undefined : v, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleActiveChange(v: string) {
|
function handleActiveChange(v: string) {
|
||||||
setActiveFilter(v === 'all' ? '' : v)
|
setActiveFilter(v === 'all' ? '' : v)
|
||||||
navigate({ to: '/inventory', search: { ...search, isActive: v === 'all' ? undefined : v, page: 1 } as any })
|
navigate({ to: '/inventory', search: { ...search, isActive: v === 'all' ? undefined : v, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleTypeChange(v: string) {
|
function handleTypeChange(v: string) {
|
||||||
setTypeFilter(v === 'all' ? '' : v)
|
setTypeFilter(v === 'all' ? '' : v)
|
||||||
navigate({ to: '/inventory', search: { ...search, type: v === 'all' ? undefined : v, page: 1 } as any })
|
navigate({ to: '/inventory', search: { ...search, type: v === 'all' ? undefined : v, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleLowStockChange(v: string) {
|
function handleLowStockChange(v: string) {
|
||||||
const on = v === 'true'
|
const on = v === 'true'
|
||||||
setLowStockFilter(on)
|
setLowStockFilter(on)
|
||||||
navigate({ to: '/inventory', search: { ...search, lowStock: on ? 'true' : undefined, page: 1 } as any })
|
navigate({ to: '/inventory', search: { ...search, lowStock: on ? 'true' : undefined, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
const columns: Column<Product>[] = [
|
const columns: Column<Product>[] = [
|
||||||
@@ -246,7 +246,7 @@ function InventoryPage() {
|
|||||||
order={params.order}
|
order={params.order}
|
||||||
onPageChange={setPage}
|
onPageChange={setPage}
|
||||||
onSort={setSort}
|
onSort={setSort}
|
||||||
onRowClick={(p) => navigate({ to: '/inventory/$productId', params: { productId: p.id }, search: {} as any })}
|
onRowClick={(p) => navigate({ to: '/inventory/$productId', params: { productId: p.id }, search: { tab: 'details' } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ function SuppliersPage() {
|
|||||||
<DialogContent>
|
<DialogContent>
|
||||||
<DialogHeader><DialogTitle>New Supplier</DialogTitle></DialogHeader>
|
<DialogHeader><DialogTitle>New Supplier</DialogTitle></DialogHeader>
|
||||||
<SupplierForm
|
<SupplierForm
|
||||||
onSubmit={supplierMutations.create.bind(null) as any}
|
onSubmit={(data) => { createMutation.mutate(data) }}
|
||||||
loading={createMutation.isPending}
|
loading={createMutation.isPending}
|
||||||
/>
|
/>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/u
|
|||||||
import { ArrowLeft, RefreshCw } from 'lucide-react'
|
import { ArrowLeft, RefreshCw } from 'lucide-react'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
import { useAuthStore } from '@/stores/auth.store'
|
import { useAuthStore } from '@/stores/auth.store'
|
||||||
import type { LessonSession, LessonPlan, LessonPlanTemplate } from '@/types/lesson'
|
import type { Enrollment, LessonSession, LessonPlan, LessonPlanTemplate } from '@/types/lesson'
|
||||||
|
|
||||||
export const Route = createFileRoute('/_authenticated/lessons/enrollments/$enrollmentId')({
|
export const Route = createFileRoute('/_authenticated/lessons/enrollments/$enrollmentId')({
|
||||||
validateSearch: (search: Record<string, unknown>) => ({
|
validateSearch: (search: Record<string, unknown>) => ({
|
||||||
@@ -81,7 +81,7 @@ function EnrollmentDetailPage() {
|
|||||||
const tab = search.tab
|
const tab = search.tab
|
||||||
|
|
||||||
function setTab(t: string) {
|
function setTab(t: string) {
|
||||||
navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId }, search: { tab: t } as any })
|
navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId }, search: { tab: t } })
|
||||||
}
|
}
|
||||||
|
|
||||||
const { data: enrollment, isLoading } = useQuery(enrollmentDetailOptions(enrollmentId))
|
const { data: enrollment, isLoading } = useQuery(enrollmentDetailOptions(enrollmentId))
|
||||||
@@ -131,7 +131,7 @@ function EnrollmentDetailPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/enrollments', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/enrollments', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'desc' as const, status: undefined, instructorId: undefined } })}>
|
||||||
<ArrowLeft className="h-4 w-4 mr-1" />Back
|
<ArrowLeft className="h-4 w-4 mr-1" />Back
|
||||||
</Button>
|
</Button>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
@@ -193,7 +193,17 @@ const BILLING_UNITS = [
|
|||||||
function DetailsTab({
|
function DetailsTab({
|
||||||
enrollment, slotLabel, lessonTypeName, instructorName,
|
enrollment, slotLabel, lessonTypeName, instructorName,
|
||||||
canEdit, onSave, saving, onStatusChange, statusChanging,
|
canEdit, onSave, saving, onStatusChange, statusChanging,
|
||||||
}: any) {
|
}: {
|
||||||
|
enrollment: Enrollment
|
||||||
|
slotLabel: string
|
||||||
|
lessonTypeName: string | undefined
|
||||||
|
instructorName: string | undefined
|
||||||
|
canEdit: boolean
|
||||||
|
onSave: (data: Record<string, unknown>) => void
|
||||||
|
saving: boolean
|
||||||
|
onStatusChange: (status: string) => void
|
||||||
|
statusChanging: boolean
|
||||||
|
}) {
|
||||||
const [rate, setRate] = useState(enrollment.rate ?? '')
|
const [rate, setRate] = useState(enrollment.rate ?? '')
|
||||||
const [billingInterval, setBillingInterval] = useState(String(enrollment.billingInterval ?? 1))
|
const [billingInterval, setBillingInterval] = useState(String(enrollment.billingInterval ?? 1))
|
||||||
const [billingUnit, setBillingUnit] = useState(enrollment.billingUnit ?? 'month')
|
const [billingUnit, setBillingUnit] = useState(enrollment.billingUnit ?? 'month')
|
||||||
@@ -255,7 +265,7 @@ function DetailsTab({
|
|||||||
onChange={(e) => setBillingInterval(e.target.value)}
|
onChange={(e) => setBillingInterval(e.target.value)}
|
||||||
className="w-20"
|
className="w-20"
|
||||||
/>
|
/>
|
||||||
<Select value={billingUnit} onValueChange={setBillingUnit}>
|
<Select value={billingUnit} onValueChange={(v) => setBillingUnit(v as typeof billingUnit)}>
|
||||||
<SelectTrigger className="w-36"><SelectValue /></SelectTrigger>
|
<SelectTrigger className="w-36"><SelectValue /></SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
{BILLING_UNITS.map((u) => (
|
{BILLING_UNITS.map((u) => (
|
||||||
@@ -334,7 +344,7 @@ function SessionsTab({ enrollmentId, onGenerate, generating }: { enrollmentId: s
|
|||||||
total={data?.data?.length ?? 0}
|
total={data?.data?.length ?? 0}
|
||||||
onPageChange={() => {}}
|
onPageChange={() => {}}
|
||||||
onSort={() => {}}
|
onSort={() => {}}
|
||||||
onRowClick={(s) => navigate({ to: '/lessons/sessions/$sessionId', params: { sessionId: s.id }, search: {} as any })}
|
onRowClick={(s) => navigate({ to: '/lessons/sessions/$sessionId', params: { sessionId: s.id }, search: {} })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
@@ -373,7 +383,7 @@ function LessonPlanTab({ enrollmentId, memberId, canEdit }: { enrollmentId: stri
|
|||||||
queryClient.invalidateQueries({ queryKey: lessonPlanKeys.all })
|
queryClient.invalidateQueries({ queryKey: lessonPlanKeys.all })
|
||||||
toast.success('Plan created from template')
|
toast.success('Plan created from template')
|
||||||
setTemplatePickerOpen(false)
|
setTemplatePickerOpen(false)
|
||||||
navigate({ to: '/lessons/plans/$planId', params: { planId: plan.id }, search: {} as any })
|
navigate({ to: '/lessons/plans/$planId', params: { planId: plan.id }, search: {} })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -391,7 +401,7 @@ function LessonPlanTab({ enrollmentId, memberId, canEdit }: { enrollmentId: stri
|
|||||||
{Math.round(activePlan.progress)}% complete
|
{Math.round(activePlan.progress)}% complete
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<Button variant="outline" size="sm" onClick={() => navigate({ to: '/lessons/plans/$planId', params: { planId: activePlan.id }, search: {} as any })}>
|
<Button variant="outline" size="sm" onClick={() => navigate({ to: '/lessons/plans/$planId', params: { planId: activePlan.id }, search: {} })}>
|
||||||
View Plan
|
View Plan
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -43,9 +43,9 @@ function statusBadge(status: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const columns: Column<Enrollment & { memberName?: string; instructorName?: string; slotInfo?: string; lessonTypeName?: string }>[] = [
|
const columns: Column<Enrollment & { memberName?: string; instructorName?: string; slotInfo?: string; lessonTypeName?: string }>[] = [
|
||||||
{ key: 'member_name', header: 'Member', sortable: true, render: (e) => <span className="font-medium">{(e as any).memberName ?? e.memberId}</span> },
|
{ key: 'member_name', header: 'Member', sortable: true, render: (e) => <span className="font-medium">{e.memberName ?? e.memberId}</span> },
|
||||||
{ key: 'instructor_name', header: 'Instructor', render: (e) => <>{(e as any).instructorName ?? e.instructorId}</> },
|
{ key: 'instructor_name', header: 'Instructor', render: (e) => <>{e.instructorName ?? e.instructorId}</> },
|
||||||
{ key: 'slot_info', header: 'Day / Time', render: (e) => <>{(e as any).slotInfo ?? '—'}</> },
|
{ key: 'slot_info', header: 'Day / Time', render: (e) => <>{e.slotInfo ?? '—'}</> },
|
||||||
{ key: 'status', header: 'Status', sortable: true, render: (e) => statusBadge(e.status) },
|
{ key: 'status', header: 'Status', sortable: true, render: (e) => statusBadge(e.status) },
|
||||||
{ key: 'start_date', header: 'Start', sortable: true, render: (e) => <>{new Date(e.startDate + 'T00:00:00').toLocaleDateString()}</> },
|
{ key: 'start_date', header: 'Start', sortable: true, render: (e) => <>{new Date(e.startDate + 'T00:00:00').toLocaleDateString()}</> },
|
||||||
{ key: 'rate', header: 'Rate', render: (e) => <>{e.rate ? `$${e.rate}${e.billingInterval ? ` / ${e.billingInterval} ${e.billingUnit}` : ''}` : <span className="text-muted-foreground">—</span>}</> },
|
{ key: 'rate', header: 'Rate', render: (e) => <>{e.rate ? `$${e.rate}${e.billingInterval ? ` / ${e.billingInterval} ${e.billingUnit}` : ''}` : <span className="text-muted-foreground">—</span>}</> },
|
||||||
@@ -72,7 +72,7 @@ function EnrollmentsListPage() {
|
|||||||
function handleStatusChange(v: string) {
|
function handleStatusChange(v: string) {
|
||||||
const s = v === 'all' ? '' : v
|
const s = v === 'all' ? '' : v
|
||||||
setStatusFilter(s)
|
setStatusFilter(s)
|
||||||
navigate({ to: '/lessons/enrollments', search: { ...search, status: s || undefined, page: 1 } as any })
|
navigate({ to: '/lessons/enrollments', search: { ...search, status: s || undefined, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -80,7 +80,7 @@ function EnrollmentsListPage() {
|
|||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<h1 className="text-2xl font-bold">Enrollments</h1>
|
<h1 className="text-2xl font-bold">Enrollments</h1>
|
||||||
{hasPermission('lessons.edit') && (
|
{hasPermission('lessons.edit') && (
|
||||||
<Button onClick={() => navigate({ to: '/lessons/enrollments/new', search: {} as any })}>
|
<Button onClick={() => navigate({ to: '/lessons/enrollments/new', search: { memberId: undefined, accountId: undefined } })}>
|
||||||
<Plus className="mr-2 h-4 w-4" />New Enrollment
|
<Plus className="mr-2 h-4 w-4" />New Enrollment
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
@@ -125,7 +125,7 @@ function EnrollmentsListPage() {
|
|||||||
order={params.order}
|
order={params.order}
|
||||||
onPageChange={setPage}
|
onPageChange={setPage}
|
||||||
onSort={setSort}
|
onSort={setSort}
|
||||||
onRowClick={(e) => navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: e.id }, search: {} as any })}
|
onRowClick={(e) => navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: e.id }, search: { tab: 'details' } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ function NewEnrollmentPage() {
|
|||||||
},
|
},
|
||||||
onSuccess: (enrollment) => {
|
onSuccess: (enrollment) => {
|
||||||
toast.success('Enrollment created')
|
toast.success('Enrollment created')
|
||||||
navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: enrollment.id }, search: {} as any })
|
navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: enrollment.id }, search: { tab: 'details' } })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -141,7 +141,7 @@ function NewEnrollmentPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-2xl">
|
<div className="space-y-6 max-w-2xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/enrollments', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/enrollments', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'desc' as const, status: undefined, instructorId: undefined } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<h1 className="text-2xl font-bold">New Enrollment</h1>
|
<h1 className="text-2xl font-bold">New Enrollment</h1>
|
||||||
@@ -282,7 +282,7 @@ function NewEnrollmentPage() {
|
|||||||
<Button type="submit" disabled={mutation.isPending || !selectedMember || !selectedSlotId || !startDate} size="lg">
|
<Button type="submit" disabled={mutation.isPending || !selectedMember || !selectedSlotId || !startDate} size="lg">
|
||||||
{mutation.isPending ? 'Creating...' : 'Create Enrollment'}
|
{mutation.isPending ? 'Creating...' : 'Create Enrollment'}
|
||||||
</Button>
|
</Button>
|
||||||
<Button variant="secondary" type="button" size="lg" onClick={() => navigate({ to: '/lessons/enrollments', search: {} as any })}>
|
<Button variant="secondary" type="button" size="lg" onClick={() => navigate({ to: '/lessons/enrollments', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'desc' as const, status: undefined, instructorId: undefined } })}>
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ function LessonPlanDetailPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-3xl">
|
<div className="space-y-6 max-w-3xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/plans', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/plans', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ function LessonPlansPage() {
|
|||||||
order={params.order}
|
order={params.order}
|
||||||
onPageChange={setPage}
|
onPageChange={setPage}
|
||||||
onSort={setSort}
|
onSort={setSort}
|
||||||
onRowClick={(p) => navigate({ to: '/lessons/plans/$planId', params: { planId: p.id }, search: {} as any })}
|
onRowClick={(p) => navigate({ to: '/lessons/plans/$planId', params: { planId: p.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ function ScheduleHubPage() {
|
|||||||
const canAdmin = hasPermission('lessons.admin')
|
const canAdmin = hasPermission('lessons.admin')
|
||||||
|
|
||||||
function setTab(t: string) {
|
function setTab(t: string) {
|
||||||
navigate({ to: '/lessons/schedule', search: { ...search, tab: t, page: 1 } as any })
|
navigate({ to: '/lessons/schedule', search: { ...search, tab: t, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -90,7 +90,7 @@ const instructorColumns: Column<Instructor>[] = [
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
function InstructorsTab({ canAdmin, search: _search }: { canAdmin: boolean; search: any }) {
|
function InstructorsTab({ canAdmin, search: _search }: { canAdmin: boolean; search: Record<string, unknown> }) {
|
||||||
const navigate = useNavigate()
|
const navigate = useNavigate()
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
const { params, setPage, setSearch, setSort } = usePagination()
|
const { params, setPage, setSearch, setSort } = usePagination()
|
||||||
@@ -152,7 +152,7 @@ function InstructorsTab({ canAdmin, search: _search }: { canAdmin: boolean; sear
|
|||||||
order={params.order}
|
order={params.order}
|
||||||
onPageChange={setPage}
|
onPageChange={setPage}
|
||||||
onSort={setSort}
|
onSort={setSort}
|
||||||
onRowClick={(i) => navigate({ to: '/lessons/schedule/instructors/$instructorId', params: { instructorId: i.id }, search: {} as any })}
|
onRowClick={(i) => navigate({ to: '/lessons/schedule/instructors/$instructorId', params: { instructorId: i.id }, search: { tab: 'overview' } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
@@ -169,7 +169,7 @@ const lessonTypeColumns: Column<LessonType>[] = [
|
|||||||
{ key: 'is_active', header: 'Status', render: (lt) => <Badge variant={lt.isActive ? 'default' : 'secondary'}>{lt.isActive ? 'Active' : 'Inactive'}</Badge> },
|
{ key: 'is_active', header: 'Status', render: (lt) => <Badge variant={lt.isActive ? 'default' : 'secondary'}>{lt.isActive ? 'Active' : 'Inactive'}</Badge> },
|
||||||
]
|
]
|
||||||
|
|
||||||
function LessonTypesTab({ canAdmin, search: _search }: { canAdmin: boolean; search: any }) {
|
function LessonTypesTab({ canAdmin, search: _search }: { canAdmin: boolean; search: Record<string, unknown> }) {
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
const { params, setPage, setSearch, setSort } = usePagination()
|
const { params, setPage, setSearch, setSort } = usePagination()
|
||||||
const [searchInput, setSearchInput] = useState(params.q ?? '')
|
const [searchInput, setSearchInput] = useState(params.q ?? '')
|
||||||
@@ -215,8 +215,8 @@ function LessonTypesTab({ canAdmin, search: _search }: { canAdmin: boolean; sear
|
|||||||
const columnsWithActions: Column<LessonType>[] = [
|
const columnsWithActions: Column<LessonType>[] = [
|
||||||
...lessonTypeColumns,
|
...lessonTypeColumns,
|
||||||
...(canAdmin ? [{
|
...(canAdmin ? [{
|
||||||
key: 'actions' as any,
|
key: 'actions',
|
||||||
header: '' as any,
|
header: '',
|
||||||
render: (lt: LessonType) => (
|
render: (lt: LessonType) => (
|
||||||
<div className="flex gap-1 justify-end">
|
<div className="flex gap-1 justify-end">
|
||||||
<Button variant="ghost" size="sm" onClick={(e) => { e.stopPropagation(); setEditTarget(lt) }}>Edit</Button>
|
<Button variant="ghost" size="sm" onClick={(e) => { e.stopPropagation(); setEditTarget(lt) }}>Edit</Button>
|
||||||
@@ -298,7 +298,7 @@ const gradingScaleColumns: Column<GradingScale>[] = [
|
|||||||
{ key: 'is_active', header: 'Status', render: (gs) => <Badge variant={gs.isActive ? 'default' : 'secondary'}>{gs.isActive ? 'Active' : 'Inactive'}</Badge> },
|
{ key: 'is_active', header: 'Status', render: (gs) => <Badge variant={gs.isActive ? 'default' : 'secondary'}>{gs.isActive ? 'Active' : 'Inactive'}</Badge> },
|
||||||
]
|
]
|
||||||
|
|
||||||
function GradingScalesTab({ canAdmin, search: _search }: { canAdmin: boolean; search: any }) {
|
function GradingScalesTab({ canAdmin, search: _search }: { canAdmin: boolean; search: Record<string, unknown> }) {
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
const { params, setPage, setSort } = usePagination()
|
const { params, setPage, setSort } = usePagination()
|
||||||
const [createOpen, setCreateOpen] = useState(false)
|
const [createOpen, setCreateOpen] = useState(false)
|
||||||
@@ -327,8 +327,8 @@ function GradingScalesTab({ canAdmin, search: _search }: { canAdmin: boolean; se
|
|||||||
const columnsWithActions: Column<GradingScale>[] = [
|
const columnsWithActions: Column<GradingScale>[] = [
|
||||||
...gradingScaleColumns,
|
...gradingScaleColumns,
|
||||||
...(canAdmin ? [{
|
...(canAdmin ? [{
|
||||||
key: 'actions' as any,
|
key: 'actions',
|
||||||
header: '' as any,
|
header: '',
|
||||||
render: (gs: GradingScale) => (
|
render: (gs: GradingScale) => (
|
||||||
<Button variant="ghost" size="sm" onClick={(e) => { e.stopPropagation(); deleteMutation.mutate(gs.id) }}>
|
<Button variant="ghost" size="sm" onClick={(e) => { e.stopPropagation(); deleteMutation.mutate(gs.id) }}>
|
||||||
<Trash2 className="h-4 w-4 text-destructive" />
|
<Trash2 className="h-4 w-4 text-destructive" />
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ function InstructorDetailPage() {
|
|||||||
const tab = search.tab
|
const tab = search.tab
|
||||||
|
|
||||||
function setTab(t: string) {
|
function setTab(t: string) {
|
||||||
navigate({ to: '/lessons/schedule/instructors/$instructorId', params: { instructorId }, search: { tab: t } as any })
|
navigate({ to: '/lessons/schedule/instructors/$instructorId', params: { instructorId }, search: { tab: t } })
|
||||||
}
|
}
|
||||||
|
|
||||||
const { data: instructor, isLoading } = useQuery(instructorDetailOptions(instructorId))
|
const { data: instructor, isLoading } = useQuery(instructorDetailOptions(instructorId))
|
||||||
@@ -62,7 +62,7 @@ function InstructorDetailPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/schedule', search: { tab: 'instructors' } as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/schedule', search: { tab: 'instructors', page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4 mr-1" />Back
|
<ArrowLeft className="h-4 w-4 mr-1" />Back
|
||||||
</Button>
|
</Button>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
|||||||
import { ArrowLeft, CheckSquare, Square } from 'lucide-react'
|
import { ArrowLeft, CheckSquare, Square } from 'lucide-react'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
import { useAuthStore } from '@/stores/auth.store'
|
import { useAuthStore } from '@/stores/auth.store'
|
||||||
import type { LessonPlan, LessonPlanSection } from '@/types/lesson'
|
import type { LessonPlan, LessonPlanSection, LessonSession } from '@/types/lesson'
|
||||||
|
|
||||||
export const Route = createFileRoute('/_authenticated/lessons/sessions/$sessionId')({
|
export const Route = createFileRoute('/_authenticated/lessons/sessions/$sessionId')({
|
||||||
component: SessionDetailPage,
|
component: SessionDetailPage,
|
||||||
@@ -126,7 +126,7 @@ function SessionDetailPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-3xl">
|
<div className="space-y-6 max-w-3xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/sessions', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/sessions', search: { view: 'list' as const, page: 1, limit: 25, q: undefined, sort: undefined, order: 'desc' as const, status: undefined, instructorId: undefined } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
@@ -137,7 +137,7 @@ function SessionDetailPage() {
|
|||||||
<Link
|
<Link
|
||||||
to="/lessons/enrollments/$enrollmentId"
|
to="/lessons/enrollments/$enrollmentId"
|
||||||
params={{ enrollmentId: enrollment.id }}
|
params={{ enrollmentId: enrollment.id }}
|
||||||
search={{} as any}
|
search={{ tab: 'details' }}
|
||||||
className="text-sm text-primary hover:underline"
|
className="text-sm text-primary hover:underline"
|
||||||
>
|
>
|
||||||
View Enrollment
|
View Enrollment
|
||||||
@@ -209,7 +209,12 @@ function SessionDetailPage() {
|
|||||||
|
|
||||||
// ─── Notes Card ───────────────────────────────────────────────────────────────
|
// ─── Notes Card ───────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
function NotesCard({ session, canEdit, onSave, saving }: any) {
|
function NotesCard({ session, canEdit, onSave, saving }: {
|
||||||
|
session: LessonSession
|
||||||
|
canEdit: boolean
|
||||||
|
onSave: (data: Record<string, unknown>) => void
|
||||||
|
saving: boolean
|
||||||
|
}) {
|
||||||
const [instructorNotes, setInstructorNotes] = useState(session.instructorNotes ?? '')
|
const [instructorNotes, setInstructorNotes] = useState(session.instructorNotes ?? '')
|
||||||
const [memberNotes, setMemberNotes] = useState(session.memberNotes ?? '')
|
const [memberNotes, setMemberNotes] = useState(session.memberNotes ?? '')
|
||||||
const [homeworkAssigned, setHomeworkAssigned] = useState(session.homeworkAssigned ?? '')
|
const [homeworkAssigned, setHomeworkAssigned] = useState(session.homeworkAssigned ?? '')
|
||||||
|
|||||||
@@ -92,13 +92,13 @@ function SessionsPage() {
|
|||||||
const weekEnd = endOfWeek(weekStart, { weekStartsOn: 0 })
|
const weekEnd = endOfWeek(weekStart, { weekStartsOn: 0 })
|
||||||
|
|
||||||
function setView(v: 'list' | 'week') {
|
function setView(v: 'list' | 'week') {
|
||||||
navigate({ to: '/lessons/sessions', search: { ...search, view: v, page: 1 } as any })
|
navigate({ to: '/lessons/sessions', search: { ...search, view: v, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleStatusChange(v: string) {
|
function handleStatusChange(v: string) {
|
||||||
const s = v === 'all' ? '' : v
|
const s = v === 'all' ? '' : v
|
||||||
setStatusFilter(s)
|
setStatusFilter(s)
|
||||||
navigate({ to: '/lessons/sessions', search: { ...search, status: s || undefined, page: 1 } as any })
|
navigate({ to: '/lessons/sessions', search: { ...search, status: s || undefined, page: 1 } })
|
||||||
}
|
}
|
||||||
|
|
||||||
// List query
|
// List query
|
||||||
@@ -189,7 +189,7 @@ function SessionsPage() {
|
|||||||
order={params.order}
|
order={params.order}
|
||||||
onPageChange={setPage}
|
onPageChange={setPage}
|
||||||
onSort={setSort}
|
onSort={setSort}
|
||||||
onRowClick={(s) => navigate({ to: '/lessons/sessions/$sessionId', params: { sessionId: s.id }, search: {} as any })}
|
onRowClick={(s) => navigate({ to: '/lessons/sessions/$sessionId', params: { sessionId: s.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
@@ -249,7 +249,7 @@ function SessionsPage() {
|
|||||||
{daySessions.map((s) => (
|
{daySessions.map((s) => (
|
||||||
<button
|
<button
|
||||||
key={s.id}
|
key={s.id}
|
||||||
onClick={() => navigate({ to: '/lessons/sessions/$sessionId', params: { sessionId: s.id }, search: {} as any })}
|
onClick={() => navigate({ to: '/lessons/sessions/$sessionId', params: { sessionId: s.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}
|
||||||
className={`w-full text-left rounded border px-1.5 py-1 text-xs hover:opacity-80 transition-opacity ${STATUS_COLORS[s.status] ?? STATUS_COLORS.scheduled}`}
|
className={`w-full text-left rounded border px-1.5 py-1 text-xs hover:opacity-80 transition-opacity ${STATUS_COLORS[s.status] ?? STATUS_COLORS.scheduled}`}
|
||||||
>
|
>
|
||||||
<p className="font-semibold">{formatTime(s.scheduledTime)}</p>
|
<p className="font-semibold">{formatTime(s.scheduledTime)}</p>
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/u
|
|||||||
import { ArrowLeft, Search, X, Zap } from 'lucide-react'
|
import { ArrowLeft, Search, X, Zap } from 'lucide-react'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
import { useAuthStore } from '@/stores/auth.store'
|
import { useAuthStore } from '@/stores/auth.store'
|
||||||
import type { LessonPlanTemplate } from '@/types/lesson'
|
import type { Enrollment, LessonPlanTemplate } from '@/types/lesson'
|
||||||
import type { MemberWithAccount } from '@/api/members'
|
import type { MemberWithAccount } from '@/api/members'
|
||||||
|
|
||||||
export const Route = createFileRoute('/_authenticated/lessons/templates/$templateId')({
|
export const Route = createFileRoute('/_authenticated/lessons/templates/$templateId')({
|
||||||
@@ -42,7 +42,7 @@ function TemplateDetailPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-3xl">
|
<div className="space-y-6 max-w-3xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/templates', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/templates', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
@@ -93,7 +93,7 @@ function TemplateDetailPage() {
|
|||||||
|
|
||||||
// ─── Edit Form ────────────────────────────────────────────────────────────────
|
// ─── Edit Form ────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
function EditTemplateForm({ template, templateId, queryClient }: { template: LessonPlanTemplate; templateId: string; queryClient: any }) {
|
function EditTemplateForm({ template, templateId, queryClient }: { template: LessonPlanTemplate; templateId: string; queryClient: ReturnType<typeof useQueryClient> }) {
|
||||||
const [name, setName] = useState(template.name)
|
const [name, setName] = useState(template.name)
|
||||||
const [description, setDescription] = useState(template.description ?? '')
|
const [description, setDescription] = useState(template.description ?? '')
|
||||||
const [instrument, setInstrument] = useState(template.instrument ?? '')
|
const [instrument, setInstrument] = useState(template.instrument ?? '')
|
||||||
@@ -218,7 +218,7 @@ function InstantiateDialog({ template, templateId, open, onClose }: {
|
|||||||
}),
|
}),
|
||||||
onSuccess: (plan) => {
|
onSuccess: (plan) => {
|
||||||
toast.success('Plan created from template')
|
toast.success('Plan created from template')
|
||||||
navigate({ to: '/lessons/plans/$planId', params: { planId: plan.id }, search: {} as any })
|
navigate({ to: '/lessons/plans/$planId', params: { planId: plan.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -293,7 +293,7 @@ function InstantiateDialog({ template, templateId, open, onClose }: {
|
|||||||
<SelectTrigger><SelectValue placeholder="Not linked to enrollment" /></SelectTrigger>
|
<SelectTrigger><SelectValue placeholder="Not linked to enrollment" /></SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="none">Not linked to enrollment</SelectItem>
|
<SelectItem value="none">Not linked to enrollment</SelectItem>
|
||||||
{enrollments.map((e: any) => (
|
{enrollments.map((e: Enrollment) => (
|
||||||
<SelectItem key={e.id} value={e.id}>Enrollment {e.id.slice(-6)}</SelectItem>
|
<SelectItem key={e.id} value={e.id}>Enrollment {e.id.slice(-6)}</SelectItem>
|
||||||
))}
|
))}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
|
|||||||
@@ -81,8 +81,8 @@ function TemplatesListPage() {
|
|||||||
const columnsWithActions: Column<LessonPlanTemplate>[] = [
|
const columnsWithActions: Column<LessonPlanTemplate>[] = [
|
||||||
...columns,
|
...columns,
|
||||||
...(canAdmin ? [{
|
...(canAdmin ? [{
|
||||||
key: 'actions' as any,
|
key: 'actions',
|
||||||
header: '' as any,
|
header: '',
|
||||||
render: (t: LessonPlanTemplate) => (
|
render: (t: LessonPlanTemplate) => (
|
||||||
<Button variant="ghost" size="sm" onClick={(e) => { e.stopPropagation(); deleteMutation.mutate(t.id) }}>
|
<Button variant="ghost" size="sm" onClick={(e) => { e.stopPropagation(); deleteMutation.mutate(t.id) }}>
|
||||||
<Trash2 className="h-4 w-4 text-destructive" />
|
<Trash2 className="h-4 w-4 text-destructive" />
|
||||||
@@ -96,7 +96,7 @@ function TemplatesListPage() {
|
|||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<h1 className="text-2xl font-bold">Lesson Plan Templates</h1>
|
<h1 className="text-2xl font-bold">Lesson Plan Templates</h1>
|
||||||
{canAdmin && (
|
{canAdmin && (
|
||||||
<Button onClick={() => navigate({ to: '/lessons/templates/new', search: {} as any })}>
|
<Button onClick={() => navigate({ to: '/lessons/templates/new', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<Plus className="mr-2 h-4 w-4" />New Template
|
<Plus className="mr-2 h-4 w-4" />New Template
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
@@ -126,7 +126,7 @@ function TemplatesListPage() {
|
|||||||
order={params.order}
|
order={params.order}
|
||||||
onPageChange={setPage}
|
onPageChange={setPage}
|
||||||
onSort={setSort}
|
onSort={setSort}
|
||||||
onRowClick={(t) => navigate({ to: '/lessons/templates/$templateId', params: { templateId: t.id }, search: {} as any })}
|
onRowClick={(t) => navigate({ to: '/lessons/templates/$templateId', params: { templateId: t.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ function NewTemplatePage() {
|
|||||||
}),
|
}),
|
||||||
onSuccess: (template) => {
|
onSuccess: (template) => {
|
||||||
toast.success('Template created')
|
toast.success('Template created')
|
||||||
navigate({ to: '/lessons/templates/$templateId', params: { templateId: template.id }, search: {} as any })
|
navigate({ to: '/lessons/templates/$templateId', params: { templateId: template.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -63,7 +63,7 @@ function NewTemplatePage() {
|
|||||||
return (
|
return (
|
||||||
<form onSubmit={handleSubmit} className="space-y-6 max-w-3xl">
|
<form onSubmit={handleSubmit} className="space-y-6 max-w-3xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button type="button" variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/templates', search: {} as any })}>
|
<Button type="button" variant="ghost" size="sm" onClick={() => navigate({ to: '/lessons/templates', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<h1 className="text-2xl font-bold">New Template</h1>
|
<h1 className="text-2xl font-bold">New Template</h1>
|
||||||
@@ -112,7 +112,7 @@ function NewTemplatePage() {
|
|||||||
<Button type="submit" disabled={mutation.isPending || !name.trim() || !allSectionsValid} size="lg">
|
<Button type="submit" disabled={mutation.isPending || !name.trim() || !allSectionsValid} size="lg">
|
||||||
{mutation.isPending ? 'Creating...' : 'Create Template'}
|
{mutation.isPending ? 'Creating...' : 'Create Template'}
|
||||||
</Button>
|
</Button>
|
||||||
<Button type="button" variant="secondary" size="lg" onClick={() => navigate({ to: '/lessons/templates', search: {} as any })}>
|
<Button type="button" variant="secondary" size="lg" onClick={() => navigate({ to: '/lessons/templates', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -70,11 +70,11 @@ function statusBadge(status: string) {
|
|||||||
return <Badge variant={variants[status] ?? 'outline'}>{status}</Badge>
|
return <Badge variant={variants[status] ?? 'outline'}>{status}</Badge>
|
||||||
}
|
}
|
||||||
|
|
||||||
const enrollmentColumns: Column<Enrollment>[] = [
|
const enrollmentColumns: Column<Enrollment & { instructorName?: string; slotInfo?: string; lessonTypeName?: string }>[] = [
|
||||||
{ key: 'status', header: 'Status', sortable: true, render: (e) => statusBadge(e.status) },
|
{ key: 'status', header: 'Status', sortable: true, render: (e) => statusBadge(e.status) },
|
||||||
{ key: 'instructor_name', header: 'Instructor', render: (e) => <>{(e as any).instructorName ?? e.instructorId}</> },
|
{ key: 'instructor_name', header: 'Instructor', render: (e) => <>{e.instructorName ?? e.instructorId}</> },
|
||||||
{ key: 'slot_info', header: 'Day / Time', render: (e) => <>{(e as any).slotInfo ?? '—'}</> },
|
{ key: 'slot_info', header: 'Day / Time', render: (e) => <>{e.slotInfo ?? '—'}</> },
|
||||||
{ key: 'lesson_type', header: 'Lesson', render: (e) => <>{(e as any).lessonTypeName ?? '—'}</> },
|
{ key: 'lesson_type', header: 'Lesson', render: (e) => <>{e.lessonTypeName ?? '—'}</> },
|
||||||
{ key: 'start_date', header: 'Start', sortable: true, render: (e) => <>{new Date(e.startDate + 'T00:00:00').toLocaleDateString()}</> },
|
{ key: 'start_date', header: 'Start', sortable: true, render: (e) => <>{new Date(e.startDate + 'T00:00:00').toLocaleDateString()}</> },
|
||||||
{ key: 'rate', header: 'Rate', render: (e) => <>{e.rate ? `$${e.rate} / ${e.billingInterval} ${e.billingUnit}` : <span className="text-muted-foreground">—</span>}</> },
|
{ key: 'rate', header: 'Rate', render: (e) => <>{e.rate ? `$${e.rate} / ${e.billingInterval} ${e.billingUnit}` : <span className="text-muted-foreground">—</span>}</> },
|
||||||
]
|
]
|
||||||
@@ -161,7 +161,7 @@ function MemberDetailPage() {
|
|||||||
})
|
})
|
||||||
|
|
||||||
function setTab(t: string) {
|
function setTab(t: string) {
|
||||||
navigate({ to: '/members/$memberId', params: { memberId }, search: { tab: t } as any })
|
navigate({ to: '/members/$memberId', params: { memberId }, search: { tab: t } })
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
@@ -188,7 +188,7 @@ function MemberDetailPage() {
|
|||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/accounts/$accountId/members', params: { accountId: member.accountId }, search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/accounts/$accountId/members', params: { accountId: member.accountId }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div>
|
<div>
|
||||||
@@ -293,7 +293,7 @@ function MemberDetailPage() {
|
|||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<p className="text-sm text-muted-foreground">{enrollmentsData?.pagination.total ?? 0} enrollment(s)</p>
|
<p className="text-sm text-muted-foreground">{enrollmentsData?.pagination.total ?? 0} enrollment(s)</p>
|
||||||
{hasPermission('lessons.edit') && (
|
{hasPermission('lessons.edit') && (
|
||||||
<Button size="sm" onClick={() => navigate({ to: '/lessons/enrollments/new', search: { memberId } as any })}>
|
<Button size="sm" onClick={() => navigate({ to: '/lessons/enrollments/new', search: { memberId, accountId: undefined } })}>
|
||||||
<Plus className="h-4 w-4 mr-1" />Enroll
|
<Plus className="h-4 w-4 mr-1" />Enroll
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
@@ -307,7 +307,7 @@ function MemberDetailPage() {
|
|||||||
total={enrollmentsData?.data?.length ?? 0}
|
total={enrollmentsData?.data?.length ?? 0}
|
||||||
onPageChange={() => {}}
|
onPageChange={() => {}}
|
||||||
onSort={() => {}}
|
onSort={() => {}}
|
||||||
onRowClick={(e) => navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: e.id }, search: {} as any })}
|
onRowClick={(e) => navigate({ to: '/lessons/enrollments/$enrollmentId', params: { enrollmentId: e.id }, search: { tab: 'details' } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ function MembersListPage() {
|
|||||||
</Button>
|
</Button>
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent align="end">
|
<DropdownMenuContent align="end">
|
||||||
<DropdownMenuItem onClick={() => navigate({ to: '/members/$memberId', params: { memberId: row.id }, search: {} as any })}>
|
<DropdownMenuItem onClick={() => navigate({ to: '/members/$memberId', params: { memberId: row.id }, search: { tab: 'details' } })}>
|
||||||
<Pencil className="mr-2 h-4 w-4" />
|
<Pencil className="mr-2 h-4 w-4" />
|
||||||
Edit
|
Edit
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
@@ -134,7 +134,7 @@ function MembersListPage() {
|
|||||||
order={params.order}
|
order={params.order}
|
||||||
onPageChange={setPage}
|
onPageChange={setPage}
|
||||||
onSort={setSort}
|
onSort={setSort}
|
||||||
onRowClick={(member) => navigate({ to: '/members/$memberId', params: { memberId: member.id }, search: {} as any })}
|
onRowClick={(member) => navigate({ to: '/members/$memberId', params: { memberId: member.id }, search: { tab: 'details' } })}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -11,10 +11,22 @@ import { Input } from '@/components/ui/input'
|
|||||||
import { Label } from '@/components/ui/label'
|
import { Label } from '@/components/ui/label'
|
||||||
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
||||||
import { Separator } from '@/components/ui/separator'
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { Tabs, TabsList, TabsTrigger, TabsContent } from '@/components/ui/tabs'
|
||||||
import { Sun, Moon, Monitor } from 'lucide-react'
|
import { Sun, Moon, Monitor } from 'lucide-react'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
import { AvatarUpload } from '@/components/shared/avatar-upload'
|
import { AvatarUpload } from '@/components/shared/avatar-upload'
|
||||||
|
|
||||||
|
interface Profile {
|
||||||
|
id: string
|
||||||
|
email: string
|
||||||
|
firstName: string
|
||||||
|
lastName: string
|
||||||
|
role: string
|
||||||
|
employeeNumber: string | null
|
||||||
|
hasPin: boolean
|
||||||
|
createdAt: string
|
||||||
|
}
|
||||||
|
|
||||||
export const Route = createFileRoute('/_authenticated/profile')({
|
export const Route = createFileRoute('/_authenticated/profile')({
|
||||||
component: ProfilePage,
|
component: ProfilePage,
|
||||||
})
|
})
|
||||||
@@ -22,21 +34,56 @@ export const Route = createFileRoute('/_authenticated/profile')({
|
|||||||
function profileOptions() {
|
function profileOptions() {
|
||||||
return queryOptions({
|
return queryOptions({
|
||||||
queryKey: ['auth', 'me'],
|
queryKey: ['auth', 'me'],
|
||||||
queryFn: () => api.get<{ id: string; email: string; firstName: string; lastName: string }>('/v1/auth/me'),
|
queryFn: () => api.get<Profile>('/v1/auth/me'),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function ProfilePage() {
|
function ProfilePage() {
|
||||||
|
const { tab } = Route.useSearch() as { tab?: string }
|
||||||
|
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
const setAuth = useAuthStore((s) => s.setAuth)
|
const setAuth = useAuthStore((s) => s.setAuth)
|
||||||
const storeUser = useAuthStore((s) => s.user)
|
const storeUser = useAuthStore((s) => s.user)
|
||||||
const storeToken = useAuthStore((s) => s.token)
|
const storeToken = useAuthStore((s) => s.token)
|
||||||
const { mode, colorTheme, setMode, setColorTheme } = useThemeStore()
|
|
||||||
|
|
||||||
const { data: profile } = useQuery(profileOptions())
|
const { data: profile } = useQuery(profileOptions())
|
||||||
|
|
||||||
const [firstName, setFirstName] = useState('')
|
return (
|
||||||
const [lastName, setLastName] = useState('')
|
<div className="space-y-6 max-w-2xl">
|
||||||
|
<h1 className="text-2xl font-bold">Profile</h1>
|
||||||
|
|
||||||
|
<Tabs defaultValue={tab === 'security' || tab === 'appearance' ? tab : 'account'}>
|
||||||
|
<TabsList>
|
||||||
|
<TabsTrigger value="account">Account</TabsTrigger>
|
||||||
|
<TabsTrigger value="security">Security</TabsTrigger>
|
||||||
|
<TabsTrigger value="appearance">Appearance</TabsTrigger>
|
||||||
|
</TabsList>
|
||||||
|
|
||||||
|
<TabsContent value="account">
|
||||||
|
<AccountTab profile={profile} queryClient={queryClient} setAuth={setAuth} storeUser={storeUser} storeToken={storeToken} />
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="security">
|
||||||
|
<SecurityTab profile={profile} queryClient={queryClient} />
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="appearance">
|
||||||
|
<AppearanceTab />
|
||||||
|
</TabsContent>
|
||||||
|
</Tabs>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AccountTab({ profile, queryClient, setAuth, storeUser, storeToken }: {
|
||||||
|
profile: Profile | undefined
|
||||||
|
queryClient: ReturnType<typeof useQueryClient>
|
||||||
|
setAuth: (token: string, user: any) => void
|
||||||
|
storeUser: any
|
||||||
|
storeToken: string | null
|
||||||
|
}) {
|
||||||
|
const [firstName, setFirstName] = useState(profile?.firstName ?? '')
|
||||||
|
const [lastName, setLastName] = useState(profile?.lastName ?? '')
|
||||||
const [nameLoaded, setNameLoaded] = useState(false)
|
const [nameLoaded, setNameLoaded] = useState(false)
|
||||||
|
|
||||||
if (profile && !nameLoaded) {
|
if (profile && !nameLoaded) {
|
||||||
@@ -45,12 +92,8 @@ function ProfilePage() {
|
|||||||
setNameLoaded(true)
|
setNameLoaded(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
const [currentPassword, setCurrentPassword] = useState('')
|
|
||||||
const [newPassword, setNewPassword] = useState('')
|
|
||||||
const [confirmPassword, setConfirmPassword] = useState('')
|
|
||||||
|
|
||||||
const updateProfileMutation = useMutation({
|
const updateProfileMutation = useMutation({
|
||||||
mutationFn: (data: Record<string, unknown>) => api.patch<{ id: string; email: string; firstName: string; lastName: string }>('/v1/auth/me', data),
|
mutationFn: (data: Record<string, unknown>) => api.patch<Profile>('/v1/auth/me', data),
|
||||||
onSuccess: (updated) => {
|
onSuccess: (updated) => {
|
||||||
queryClient.invalidateQueries({ queryKey: ['auth', 'me'] })
|
queryClient.invalidateQueries({ queryKey: ['auth', 'me'] })
|
||||||
if (storeToken && storeUser) {
|
if (storeToken && storeUser) {
|
||||||
@@ -61,6 +104,59 @@ function ProfilePage() {
|
|||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-lg">Account</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-4">
|
||||||
|
{profile?.id && (
|
||||||
|
<div className="flex items-center gap-4">
|
||||||
|
<AvatarUpload entityType="user" entityId={profile.id} size="lg" />
|
||||||
|
<div>
|
||||||
|
<p className="font-medium">{profile.firstName} {profile.lastName}</p>
|
||||||
|
<p className="text-sm text-muted-foreground">{profile.email}</p>
|
||||||
|
{profile.employeeNumber && (
|
||||||
|
<p className="text-xs text-muted-foreground">Employee #{profile.employeeNumber}</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Email</Label>
|
||||||
|
<Input value={profile?.email ?? ''} disabled className="opacity-60" />
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>First Name</Label>
|
||||||
|
<Input value={firstName} onChange={(e) => setFirstName(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Last Name</Label>
|
||||||
|
<Input value={lastName} onChange={(e) => setLastName(e.target.value)} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Button
|
||||||
|
onClick={() => updateProfileMutation.mutate({ firstName, lastName })}
|
||||||
|
disabled={updateProfileMutation.isPending}
|
||||||
|
>
|
||||||
|
{updateProfileMutation.isPending ? 'Saving...' : 'Save'}
|
||||||
|
</Button>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SecurityTab({ profile, queryClient }: {
|
||||||
|
profile: Profile | undefined
|
||||||
|
queryClient: ReturnType<typeof useQueryClient>
|
||||||
|
}) {
|
||||||
|
const [currentPassword, setCurrentPassword] = useState('')
|
||||||
|
const [newPassword, setNewPassword] = useState('')
|
||||||
|
const [confirmPassword, setConfirmPassword] = useState('')
|
||||||
|
const [pin, setPin] = useState('')
|
||||||
|
const [confirmPin, setConfirmPin] = useState('')
|
||||||
|
|
||||||
const changePasswordMutation = useMutation({
|
const changePasswordMutation = useMutation({
|
||||||
mutationFn: () => api.post('/v1/auth/change-password', { currentPassword, newPassword }),
|
mutationFn: () => api.post('/v1/auth/change-password', { currentPassword, newPassword }),
|
||||||
onSuccess: () => {
|
onSuccess: () => {
|
||||||
@@ -72,6 +168,26 @@ function ProfilePage() {
|
|||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const setPinMutation = useMutation({
|
||||||
|
mutationFn: () => api.post('/v1/auth/set-pin', { pin }),
|
||||||
|
onSuccess: () => {
|
||||||
|
setPin('')
|
||||||
|
setConfirmPin('')
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['auth', 'me'] })
|
||||||
|
toast.success('PIN set')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
const removePinMutation = useMutation({
|
||||||
|
mutationFn: () => api.del('/v1/auth/pin'),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['auth', 'me'] })
|
||||||
|
toast.success('PIN removed')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
function handlePasswordChange() {
|
function handlePasswordChange() {
|
||||||
if (newPassword.length < 12) {
|
if (newPassword.length < 12) {
|
||||||
toast.error('Password must be at least 12 characters')
|
toast.error('Password must be at least 12 characters')
|
||||||
@@ -84,47 +200,24 @@ function ProfilePage() {
|
|||||||
changePasswordMutation.mutate()
|
changePasswordMutation.mutate()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function handleSetPin() {
|
||||||
|
if (pin.length < 4 || pin.length > 6) {
|
||||||
|
toast.error('PIN must be 4-6 digits')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (!/^\d+$/.test(pin)) {
|
||||||
|
toast.error('PIN must be digits only')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (pin !== confirmPin) {
|
||||||
|
toast.error('PINs do not match')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
setPinMutation.mutate()
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-2xl">
|
<div className="space-y-6">
|
||||||
<h1 className="text-2xl font-bold">Profile</h1>
|
|
||||||
|
|
||||||
<Card>
|
|
||||||
<CardHeader>
|
|
||||||
<CardTitle className="text-lg">Account</CardTitle>
|
|
||||||
</CardHeader>
|
|
||||||
<CardContent className="space-y-4">
|
|
||||||
{profile?.id && (
|
|
||||||
<div className="flex items-center gap-4">
|
|
||||||
<AvatarUpload entityType="user" entityId={profile.id} size="lg" />
|
|
||||||
<div>
|
|
||||||
<p className="font-medium">{profile.firstName} {profile.lastName}</p>
|
|
||||||
<p className="text-sm text-muted-foreground">{profile.email}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
<div className="space-y-2">
|
|
||||||
<Label>Email</Label>
|
|
||||||
<Input value={profile?.email ?? ''} disabled className="opacity-60" />
|
|
||||||
</div>
|
|
||||||
<div className="grid grid-cols-2 gap-4">
|
|
||||||
<div className="space-y-2">
|
|
||||||
<Label>First Name</Label>
|
|
||||||
<Input value={firstName} onChange={(e) => setFirstName(e.target.value)} />
|
|
||||||
</div>
|
|
||||||
<div className="space-y-2">
|
|
||||||
<Label>Last Name</Label>
|
|
||||||
<Input value={lastName} onChange={(e) => setLastName(e.target.value)} />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<Button
|
|
||||||
onClick={() => updateProfileMutation.mutate({ firstName, lastName })}
|
|
||||||
disabled={updateProfileMutation.isPending}
|
|
||||||
>
|
|
||||||
{updateProfileMutation.isPending ? 'Saving...' : 'Save'}
|
|
||||||
</Button>
|
|
||||||
</CardContent>
|
|
||||||
</Card>
|
|
||||||
|
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle className="text-lg">Change Password</CardTitle>
|
<CardTitle className="text-lg">Change Password</CardTitle>
|
||||||
@@ -150,53 +243,113 @@ function ProfilePage() {
|
|||||||
|
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle className="text-lg">Appearance</CardTitle>
|
<CardTitle className="text-lg">POS PIN</CardTitle>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="space-y-4">
|
<CardContent className="space-y-4">
|
||||||
<div className="space-y-2">
|
{profile?.employeeNumber && (
|
||||||
<Label>Mode</Label>
|
<p className="text-sm text-muted-foreground">
|
||||||
<div className="flex gap-2">
|
Your employee number is <span className="font-mono font-medium text-foreground">{profile.employeeNumber}</span>.
|
||||||
{[
|
To unlock the POS, enter your employee number followed by your PIN.
|
||||||
{ value: 'light' as const, icon: Sun, label: 'Light' },
|
</p>
|
||||||
{ value: 'dark' as const, icon: Moon, label: 'Dark' },
|
)}
|
||||||
{ value: 'system' as const, icon: Monitor, label: 'System' },
|
{profile?.hasPin ? (
|
||||||
].map((m) => (
|
<>
|
||||||
<Button
|
<p className="text-sm text-muted-foreground">You have a PIN set. You can change or remove it below.</p>
|
||||||
key={m.value}
|
<div className="grid grid-cols-2 gap-4">
|
||||||
variant={mode === m.value ? 'default' : 'secondary'}
|
<div className="space-y-2">
|
||||||
size="sm"
|
<Label>New PIN (4-6 digits)</Label>
|
||||||
onClick={() => setMode(m.value)}
|
<Input type="password" inputMode="numeric" maxLength={6} value={pin} onChange={(e) => setPin(e.target.value)} placeholder="****" />
|
||||||
>
|
</div>
|
||||||
<m.icon className="mr-2 h-4 w-4" />
|
<div className="space-y-2">
|
||||||
{m.label}
|
<Label>Confirm PIN</Label>
|
||||||
|
<Input type="password" inputMode="numeric" maxLength={6} value={confirmPin} onChange={(e) => setConfirmPin(e.target.value)} placeholder="****" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={handleSetPin} disabled={setPinMutation.isPending}>
|
||||||
|
{setPinMutation.isPending ? 'Saving...' : 'Change PIN'}
|
||||||
</Button>
|
</Button>
|
||||||
))}
|
<Button variant="outline" onClick={() => removePinMutation.mutate()} disabled={removePinMutation.isPending}>
|
||||||
</div>
|
{removePinMutation.isPending ? 'Removing...' : 'Remove PIN'}
|
||||||
</div>
|
|
||||||
|
|
||||||
<Separator />
|
|
||||||
|
|
||||||
<div className="space-y-2">
|
|
||||||
<Label>Color Theme</Label>
|
|
||||||
<div className="flex gap-2 flex-wrap">
|
|
||||||
{themes.map((t) => (
|
|
||||||
<Button
|
|
||||||
key={t.name}
|
|
||||||
variant={colorTheme === t.name ? 'default' : 'secondary'}
|
|
||||||
size="sm"
|
|
||||||
onClick={() => setColorTheme(t.name)}
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
className="mr-2 h-3 w-3 rounded-full border inline-block"
|
|
||||||
style={{ backgroundColor: `hsl(${t.light.primary})` }}
|
|
||||||
/>
|
|
||||||
{t.label}
|
|
||||||
</Button>
|
</Button>
|
||||||
))}
|
</div>
|
||||||
</div>
|
</>
|
||||||
</div>
|
) : (
|
||||||
|
<>
|
||||||
|
<p className="text-sm text-muted-foreground">Set a PIN to unlock the Point of Sale terminal.</p>
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>PIN (4-6 digits)</Label>
|
||||||
|
<Input type="password" inputMode="numeric" maxLength={6} value={pin} onChange={(e) => setPin(e.target.value)} placeholder="****" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Confirm PIN</Label>
|
||||||
|
<Input type="password" inputMode="numeric" maxLength={6} value={confirmPin} onChange={(e) => setConfirmPin(e.target.value)} placeholder="****" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Button onClick={handleSetPin} disabled={setPinMutation.isPending}>
|
||||||
|
{setPinMutation.isPending ? 'Saving...' : 'Set PIN'}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function AppearanceTab() {
|
||||||
|
const { mode, colorTheme, setMode, setColorTheme } = useThemeStore()
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-lg">Appearance</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Mode</Label>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
{[
|
||||||
|
{ value: 'light' as const, icon: Sun, label: 'Light' },
|
||||||
|
{ value: 'dark' as const, icon: Moon, label: 'Dark' },
|
||||||
|
{ value: 'system' as const, icon: Monitor, label: 'System' },
|
||||||
|
].map((m) => (
|
||||||
|
<Button
|
||||||
|
key={m.value}
|
||||||
|
variant={mode === m.value ? 'default' : 'secondary'}
|
||||||
|
size="sm"
|
||||||
|
onClick={() => setMode(m.value)}
|
||||||
|
>
|
||||||
|
<m.icon className="mr-2 h-4 w-4" />
|
||||||
|
{m.label}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Separator />
|
||||||
|
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Color Theme</Label>
|
||||||
|
<div className="flex gap-2 flex-wrap">
|
||||||
|
{themes.map((t) => (
|
||||||
|
<Button
|
||||||
|
key={t.name}
|
||||||
|
variant={colorTheme === t.name ? 'default' : 'secondary'}
|
||||||
|
size="sm"
|
||||||
|
onClick={() => setColorTheme(t.name)}
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
className="mr-2 h-3 w-3 rounded-full border inline-block"
|
||||||
|
style={{ backgroundColor: `hsl(${t.light.primary})` }}
|
||||||
|
/>
|
||||||
|
{t.label}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|||||||
@@ -96,12 +96,12 @@ function RepairBatchDetailPage() {
|
|||||||
const totalActual = tickets.reduce((sum, t) => sum + (t.actualCost ? parseFloat(t.actualCost) : 0), 0)
|
const totalActual = tickets.reduce((sum, t) => sum + (t.actualCost ? parseFloat(t.actualCost) : 0), 0)
|
||||||
|
|
||||||
function handleTicketClick(ticket: RepairTicket) {
|
function handleTicketClick(ticket: RepairTicket) {
|
||||||
navigate({ to: '/repairs/$ticketId', params: { ticketId: ticket.id }, search: {} as any })
|
navigate({ to: '/repairs/$ticketId', params: { ticketId: ticket.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleAddRepair() {
|
function handleAddRepair() {
|
||||||
// Navigate to new repair with batch and account pre-linked
|
// Navigate to new repair with batch and account pre-linked
|
||||||
navigate({ to: '/repairs/new', search: { batchId, batchName: batch!.batchNumber ?? '', accountId: batch!.accountId, contactName: batch!.contactName ?? '' } as any })
|
navigate({ to: '/repairs/new', search: { batchId, batchName: batch!.batchNumber ?? '', accountId: batch!.accountId, contactName: batch!.contactName ?? '' } })
|
||||||
}
|
}
|
||||||
|
|
||||||
async function generateBatchPdf() {
|
async function generateBatchPdf() {
|
||||||
@@ -233,7 +233,7 @@ function RepairBatchDetailPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-5xl">
|
<div className="space-y-6 max-w-5xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repair-batches', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repair-batches', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ function RepairBatchesListPage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function handleRowClick(batch: RepairBatch) {
|
function handleRowClick(batch: RepairBatch) {
|
||||||
navigate({ to: '/repair-batches/$batchId', params: { batchId: batch.id }, search: {} as any })
|
navigate({ to: '/repair-batches/$batchId', params: { batchId: batch.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ function NewRepairBatchPage() {
|
|||||||
mutationFn: repairBatchMutations.create,
|
mutationFn: repairBatchMutations.create,
|
||||||
onSuccess: (batch) => {
|
onSuccess: (batch) => {
|
||||||
toast.success('Repair batch created')
|
toast.success('Repair batch created')
|
||||||
navigate({ to: '/repair-batches/$batchId', params: { batchId: batch.id }, search: {} as any })
|
navigate({ to: '/repair-batches/$batchId', params: { batchId: batch.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -78,7 +78,7 @@ function NewRepairBatchPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-3xl">
|
<div className="space-y-6 max-w-3xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repair-batches', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repair-batches', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<h1 className="text-2xl font-bold">New Repair Batch</h1>
|
<h1 className="text-2xl font-bold">New Repair Batch</h1>
|
||||||
@@ -176,7 +176,7 @@ function NewRepairBatchPage() {
|
|||||||
<Button type="submit" disabled={mutation.isPending} size="lg">
|
<Button type="submit" disabled={mutation.isPending} size="lg">
|
||||||
{mutation.isPending ? 'Creating...' : 'Create Batch'}
|
{mutation.isPending ? 'Creating...' : 'Create Batch'}
|
||||||
</Button>
|
</Button>
|
||||||
<Button variant="secondary" type="button" size="lg" onClick={() => navigate({ to: '/repair-batches', search: {} as any })}>
|
<Button variant="secondary" type="button" size="lg" onClick={() => navigate({ to: '/repair-batches', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import {
|
|||||||
repairLineItemListOptions, repairLineItemMutations, repairLineItemKeys,
|
repairLineItemListOptions, repairLineItemMutations, repairLineItemKeys,
|
||||||
repairServiceTemplateListOptions,
|
repairServiceTemplateListOptions,
|
||||||
} from '@/api/repairs'
|
} from '@/api/repairs'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
import { usePagination } from '@/hooks/use-pagination'
|
import { usePagination } from '@/hooks/use-pagination'
|
||||||
import { StatusProgress } from '@/components/repairs/status-progress'
|
import { StatusProgress } from '@/components/repairs/status-progress'
|
||||||
import { TicketPhotos } from '@/components/repairs/ticket-photos'
|
import { TicketPhotos } from '@/components/repairs/ticket-photos'
|
||||||
@@ -20,7 +21,7 @@ import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
|||||||
import { Skeleton } from '@/components/ui/skeleton'
|
import { Skeleton } from '@/components/ui/skeleton'
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog'
|
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog'
|
||||||
import { ArrowLeft, Plus, Trash2, RotateCcw, Save, Search } from 'lucide-react'
|
import { ArrowLeft, Plus, Trash2, RotateCcw, Save, Search, Mail } from 'lucide-react'
|
||||||
import { PdfModal } from '@/components/repairs/pdf-modal'
|
import { PdfModal } from '@/components/repairs/pdf-modal'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
import { useAuthStore } from '@/stores/auth.store'
|
import { useAuthStore } from '@/stores/auth.store'
|
||||||
@@ -77,6 +78,17 @@ function RepairTicketDetailPage() {
|
|||||||
const { data: lineItemsData, isLoading: itemsLoading } = useQuery(repairLineItemListOptions(ticketId, params))
|
const { data: lineItemsData, isLoading: itemsLoading } = useQuery(repairLineItemListOptions(ticketId, params))
|
||||||
|
|
||||||
const [editFields, setEditFields] = useState<Record<string, string>>({})
|
const [editFields, setEditFields] = useState<Record<string, string>>({})
|
||||||
|
const [emailEstimateOpen, setEmailEstimateOpen] = useState(false)
|
||||||
|
const [estimateEmail, setEstimateEmail] = useState('')
|
||||||
|
|
||||||
|
const emailEstimateMutation = useMutation({
|
||||||
|
mutationFn: () => api.post<{ message: string }>(`/v1/repair-tickets/${ticketId}/email-estimate`, { email: estimateEmail }),
|
||||||
|
onSuccess: () => {
|
||||||
|
toast.success('Estimate emailed')
|
||||||
|
setEmailEstimateOpen(false)
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
const statusMutation = useMutation({
|
const statusMutation = useMutation({
|
||||||
mutationFn: (status: string) => repairTicketMutations.updateStatus(ticketId, status),
|
mutationFn: (status: string) => repairTicketMutations.updateStatus(ticketId, status),
|
||||||
@@ -157,7 +169,12 @@ function RepairTicketDetailPage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const lineItemColumns: Column<RepairLineItem>[] = [
|
const lineItemColumns: Column<RepairLineItem>[] = [
|
||||||
{ key: 'item_type', header: 'Type', sortable: true, render: (i) => <Badge variant="outline">{i.itemType.replace('_', ' ')}</Badge> },
|
{ key: 'item_type', header: 'Type', sortable: true, render: (i) => (
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
<Badge variant="outline">{i.itemType.replace('_', ' ')}</Badge>
|
||||||
|
{i.itemType === 'consumable' && <Badge variant="secondary" className="text-[10px]">Internal</Badge>}
|
||||||
|
</div>
|
||||||
|
) },
|
||||||
{ key: 'description', header: 'Description', render: (i) => <>{i.description}</> },
|
{ key: 'description', header: 'Description', render: (i) => <>{i.description}</> },
|
||||||
{ key: 'qty', header: 'Qty', render: (i) => <>{i.qty}</> },
|
{ key: 'qty', header: 'Qty', render: (i) => <>{i.qty}</> },
|
||||||
{ key: 'unit_price', header: 'Unit Price', render: (i) => <>${i.unitPrice}</> },
|
{ key: 'unit_price', header: 'Unit Price', render: (i) => <>${i.unitPrice}</> },
|
||||||
@@ -175,13 +192,44 @@ function RepairTicketDetailPage() {
|
|||||||
<div className="space-y-4 max-w-5xl">
|
<div className="space-y-4 max-w-5xl">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repairs', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repairs', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<h1 className="text-2xl font-bold">Ticket #{ticket.ticketNumber}</h1>
|
<h1 className="text-2xl font-bold">Ticket #{ticket.ticketNumber}</h1>
|
||||||
<p className="text-sm text-muted-foreground">{ticket.customerName} — {ticket.itemDescription ?? 'No item description'}</p>
|
<p className="text-sm text-muted-foreground">{ticket.customerName} — {ticket.itemDescription ?? 'No item description'}</p>
|
||||||
</div>
|
</div>
|
||||||
|
<Dialog open={emailEstimateOpen} onOpenChange={setEmailEstimateOpen}>
|
||||||
|
<DialogTrigger asChild>
|
||||||
|
<Button variant="outline" size="sm" className="gap-2" onClick={() => setEstimateEmail((ticket as any).customerEmail ?? '')}>
|
||||||
|
<Mail className="h-4 w-4" />Email Estimate
|
||||||
|
</Button>
|
||||||
|
</DialogTrigger>
|
||||||
|
<DialogContent className="max-w-sm">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Email Estimate</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Send to</Label>
|
||||||
|
<Input
|
||||||
|
type="email"
|
||||||
|
value={estimateEmail}
|
||||||
|
onChange={(e) => setEstimateEmail(e.target.value)}
|
||||||
|
placeholder="customer@example.com"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<Button
|
||||||
|
className="w-full"
|
||||||
|
onClick={() => emailEstimateMutation.mutate()}
|
||||||
|
disabled={!estimateEmail || emailEstimateMutation.isPending}
|
||||||
|
>
|
||||||
|
{emailEstimateMutation.isPending ? 'Sending...' : 'Send Estimate'}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
<PdfModal ticket={ticket} lineItems={lineItemsData?.data ?? []} ticketId={ticketId} />
|
<PdfModal ticket={ticket} lineItems={lineItemsData?.data ?? []} ticketId={ticketId} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -391,11 +439,27 @@ function AddLineItemDialog({ ticketId, open, onOpenChange }: { ticketId: string;
|
|||||||
const [qty, setQty] = useState('1')
|
const [qty, setQty] = useState('1')
|
||||||
const [unitPrice, setUnitPrice] = useState('0')
|
const [unitPrice, setUnitPrice] = useState('0')
|
||||||
const [cost, setCost] = useState('')
|
const [cost, setCost] = useState('')
|
||||||
|
const [productId, setProductId] = useState<string | null>(null)
|
||||||
|
const [productSearch, setProductSearch] = useState('')
|
||||||
|
const [showProducts, setShowProducts] = useState(false)
|
||||||
|
|
||||||
|
const showProductPicker = itemType === 'part' || itemType === 'consumable'
|
||||||
|
|
||||||
const { data: templatesData } = useQuery(
|
const { data: templatesData } = useQuery(
|
||||||
repairServiceTemplateListOptions({ page: 1, limit: 20, q: templateSearch || undefined, order: 'asc', sort: 'name' }),
|
repairServiceTemplateListOptions({ page: 1, limit: 20, q: templateSearch || undefined, order: 'asc', sort: 'name' }),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const { data: productsData } = useQuery({
|
||||||
|
queryKey: ['products', 'repair-picker', productSearch, itemType],
|
||||||
|
queryFn: () => {
|
||||||
|
const params: Record<string, string> = { q: productSearch, limit: '10', isActive: 'true' }
|
||||||
|
if (itemType === 'consumable') params.isConsumable = 'true'
|
||||||
|
else params.isDualUseRepair = 'true'
|
||||||
|
return api.get<{ data: { id: string; name: string; sku: string | null; price: string | null; brand: string | null }[] }>('/v1/products', params)
|
||||||
|
},
|
||||||
|
enabled: showProductPicker && productSearch.length >= 1,
|
||||||
|
})
|
||||||
|
|
||||||
const mutation = useMutation({
|
const mutation = useMutation({
|
||||||
mutationFn: (data: Record<string, unknown>) => repairLineItemMutations.create(ticketId, data),
|
mutationFn: (data: Record<string, unknown>) => repairLineItemMutations.create(ticketId, data),
|
||||||
onSuccess: () => {
|
onSuccess: () => {
|
||||||
@@ -408,7 +472,7 @@ function AddLineItemDialog({ ticketId, open, onOpenChange }: { ticketId: string;
|
|||||||
})
|
})
|
||||||
|
|
||||||
function resetForm() {
|
function resetForm() {
|
||||||
setDescription(''); setQty('1'); setUnitPrice('0'); setCost(''); setItemType('labor'); setTemplateSearch(''); setShowTemplates(false)
|
setDescription(''); setQty('1'); setUnitPrice('0'); setCost(''); setItemType('labor'); setTemplateSearch(''); setShowTemplates(false); setProductId(null); setProductSearch(''); setShowProducts(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectTemplate(template: { name: string; itemCategory: string | null; size: string | null; itemType: string; defaultPrice: string; defaultCost: string | null }) {
|
function selectTemplate(template: { name: string; itemCategory: string | null; size: string | null; itemType: string; defaultPrice: string; defaultCost: string | null }) {
|
||||||
@@ -416,15 +480,24 @@ function AddLineItemDialog({ ticketId, open, onOpenChange }: { ticketId: string;
|
|||||||
setDescription(desc); setItemType(template.itemType); setUnitPrice(template.defaultPrice); setCost(template.defaultCost ?? ''); setShowTemplates(false); setTemplateSearch('')
|
setDescription(desc); setItemType(template.itemType); setUnitPrice(template.defaultPrice); setCost(template.defaultCost ?? ''); setShowTemplates(false); setTemplateSearch('')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function selectProduct(product: { id: string; name: string; price: string | null; brand: string | null }) {
|
||||||
|
setProductId(product.id)
|
||||||
|
setDescription(product.brand ? `${product.brand} ${product.name}` : product.name)
|
||||||
|
setUnitPrice(product.price ?? '0')
|
||||||
|
setProductSearch('')
|
||||||
|
setShowProducts(false)
|
||||||
|
}
|
||||||
|
|
||||||
function handleSubmit(e: React.FormEvent) {
|
function handleSubmit(e: React.FormEvent) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
const q = parseFloat(qty) || 1
|
const q = parseFloat(qty) || 1
|
||||||
const up = parseFloat(unitPrice) || 0
|
const up = parseFloat(unitPrice) || 0
|
||||||
const c = cost ? parseFloat(cost) : undefined
|
const c = cost ? parseFloat(cost) : undefined
|
||||||
mutation.mutate({ itemType, description, qty: q, unitPrice: up, totalPrice: q * up, cost: c })
|
mutation.mutate({ itemType, description, qty: q, unitPrice: up, totalPrice: q * up, cost: c, productId: productId ?? undefined })
|
||||||
}
|
}
|
||||||
|
|
||||||
const templates = templatesData?.data ?? []
|
const templates = templatesData?.data ?? []
|
||||||
|
const products = productsData?.data ?? []
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open={open} onOpenChange={(o) => { onOpenChange(o); if (!o) resetForm() }}>
|
<Dialog open={open} onOpenChange={(o) => { onOpenChange(o); if (!o) resetForm() }}>
|
||||||
@@ -454,8 +527,38 @@ function AddLineItemDialog({ ticketId, open, onOpenChange }: { ticketId: string;
|
|||||||
<form onSubmit={handleSubmit} className="space-y-4">
|
<form onSubmit={handleSubmit} className="space-y-4">
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label>Type</Label>
|
<Label>Type</Label>
|
||||||
<Select value={itemType} onValueChange={setItemType}><SelectTrigger><SelectValue /></SelectTrigger><SelectContent><SelectItem value="labor">Labor</SelectItem><SelectItem value="part">Part</SelectItem><SelectItem value="flat_rate">Flat Rate</SelectItem><SelectItem value="misc">Misc</SelectItem></SelectContent></Select>
|
<Select value={itemType} onValueChange={(v) => { setItemType(v); setProductId(null); setProductSearch(''); setShowProducts(false) }}><SelectTrigger><SelectValue /></SelectTrigger><SelectContent><SelectItem value="labor">Labor</SelectItem><SelectItem value="part">Part</SelectItem><SelectItem value="flat_rate">Flat Rate</SelectItem><SelectItem value="misc">Misc</SelectItem><SelectItem value="consumable">Consumable (internal)</SelectItem></SelectContent></Select>
|
||||||
</div>
|
</div>
|
||||||
|
{showProductPicker && (
|
||||||
|
<div className="relative space-y-2">
|
||||||
|
<Label>Search Inventory</Label>
|
||||||
|
<div className="relative">
|
||||||
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
||||||
|
<Input
|
||||||
|
placeholder={itemType === 'consumable' ? 'Search consumables...' : 'Search parts...'}
|
||||||
|
value={productSearch}
|
||||||
|
onChange={(e) => { setProductSearch(e.target.value); setShowProducts(true) }}
|
||||||
|
onFocus={() => productSearch && setShowProducts(true)}
|
||||||
|
className="pl-9"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{productId && (
|
||||||
|
<div className="text-xs text-muted-foreground flex items-center gap-1">
|
||||||
|
Linked to product <button type="button" className="underline text-destructive" onClick={() => setProductId(null)}>clear</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{showProducts && productSearch.length >= 1 && (
|
||||||
|
<div className="absolute z-50 mt-1 w-full rounded-md border bg-popover shadow-lg max-h-48 overflow-auto">
|
||||||
|
{products.length === 0 ? <div className="p-3 text-sm text-muted-foreground">No products found</div> : products.map((p) => (
|
||||||
|
<button key={p.id} type="button" className="w-full text-left px-3 py-2 text-sm hover:bg-accent flex justify-between" onClick={() => selectProduct(p)}>
|
||||||
|
<span>{p.brand ? `${p.brand} ` : ''}{p.name}{p.sku ? ` (${p.sku})` : ''}</span>
|
||||||
|
{p.price && <span className="text-muted-foreground">${p.price}</span>}
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
<div className="space-y-2"><Label>Description *</Label><Input value={description} onChange={(e) => setDescription(e.target.value)} required /></div>
|
<div className="space-y-2"><Label>Description *</Label><Input value={description} onChange={(e) => setDescription(e.target.value)} required /></div>
|
||||||
<div className="grid grid-cols-3 gap-4">
|
<div className="grid grid-cols-3 gap-4">
|
||||||
<div className="space-y-2"><Label>Qty</Label><Input type="number" step="0.001" value={qty} onChange={(e) => setQty(e.target.value)} /></div>
|
<div className="space-y-2"><Label>Qty</Label><Input type="number" step="0.001" value={qty} onChange={(e) => setQty(e.target.value)} /></div>
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ function RepairsListPage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function handleRowClick(ticket: RepairTicket) {
|
function handleRowClick(ticket: RepairTicket) {
|
||||||
navigate({ to: '/repairs/$ticketId', params: { ticketId: ticket.id }, search: {} as any })
|
navigate({ to: '/repairs/$ticketId', params: { ticketId: ticket.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -137,7 +137,7 @@ function RepairsListPage() {
|
|||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<h1 className="text-2xl font-bold">Repairs</h1>
|
<h1 className="text-2xl font-bold">Repairs</h1>
|
||||||
{hasPermission('repairs.edit') && (
|
{hasPermission('repairs.edit') && (
|
||||||
<Button onClick={() => navigate({ to: '/repairs/new', search: {} as any })}>
|
<Button onClick={() => navigate({ to: '/repairs/new', search: { batchId: undefined, batchName: undefined, accountId: undefined, contactName: undefined } })}>
|
||||||
<Plus className="mr-2 h-4 w-4" />
|
<Plus className="mr-2 h-4 w-4" />
|
||||||
New Repair
|
New Repair
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ function NewRepairPage() {
|
|||||||
},
|
},
|
||||||
onSuccess: (ticket) => {
|
onSuccess: (ticket) => {
|
||||||
toast.success('Repair ticket created')
|
toast.success('Repair ticket created')
|
||||||
navigate({ to: '/repairs/$ticketId', params: { ticketId: ticket.id }, search: {} as any })
|
navigate({ to: '/repairs/$ticketId', params: { ticketId: ticket.id }, search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -210,7 +210,7 @@ function NewRepairPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-4xl">
|
<div className="space-y-6 max-w-4xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repairs', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/repairs', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<h1 className="text-2xl font-bold">New Repair Ticket</h1>
|
<h1 className="text-2xl font-bold">New Repair Ticket</h1>
|
||||||
@@ -314,7 +314,7 @@ function NewRepairPage() {
|
|||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label>Condition at Intake</Label>
|
<Label>Condition at Intake</Label>
|
||||||
<Select onValueChange={(v) => setValue('conditionIn', v as any)}>
|
<Select onValueChange={(v) => setValue('conditionIn', v as 'excellent' | 'good' | 'fair' | 'poor')}>
|
||||||
<SelectTrigger><SelectValue placeholder="Select condition" /></SelectTrigger>
|
<SelectTrigger><SelectValue placeholder="Select condition" /></SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="excellent">Excellent</SelectItem>
|
<SelectItem value="excellent">Excellent</SelectItem>
|
||||||
@@ -486,7 +486,7 @@ function NewRepairPage() {
|
|||||||
<Button type="submit" disabled={mutation.isPending} size="lg">
|
<Button type="submit" disabled={mutation.isPending} size="lg">
|
||||||
{mutation.isPending ? 'Creating...' : 'Create Ticket'}
|
{mutation.isPending ? 'Creating...' : 'Create Ticket'}
|
||||||
</Button>
|
</Button>
|
||||||
<Button variant="secondary" type="button" size="lg" onClick={() => navigate({ to: '/repairs', search: {} as any })}>
|
<Button variant="secondary" type="button" size="lg" onClick={() => navigate({ to: '/repairs', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
180
packages/admin/src/routes/_authenticated/reports/daily.tsx
Normal file
180
packages/admin/src/routes/_authenticated/reports/daily.tsx
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { createFileRoute } from '@tanstack/react-router'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
import { dailyReportOptions } from '@/api/pos'
|
||||||
|
import { api } from '@/lib/api-client'
|
||||||
|
import { queryOptions } from '@tanstack/react-query'
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
|
import { Input } from '@/components/ui/input'
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
|
import { Badge } from '@/components/ui/badge'
|
||||||
|
import { Separator } from '@/components/ui/separator'
|
||||||
|
import { Skeleton } from '@/components/ui/skeleton'
|
||||||
|
|
||||||
|
interface Location {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
}
|
||||||
|
|
||||||
|
function locationsOptions() {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['locations'],
|
||||||
|
queryFn: () => api.get<{ data: Location[] }>('/v1/locations'),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export const Route = createFileRoute('/_authenticated/reports/daily')({
|
||||||
|
component: DailyReportPage,
|
||||||
|
})
|
||||||
|
|
||||||
|
const PAYMENT_LABELS: Record<string, string> = {
|
||||||
|
cash: 'Cash',
|
||||||
|
card_present: 'Card (Present)',
|
||||||
|
card_keyed: 'Card (Keyed)',
|
||||||
|
check: 'Check',
|
||||||
|
account_charge: 'Account',
|
||||||
|
}
|
||||||
|
|
||||||
|
function DailyReportPage() {
|
||||||
|
const today = new Date().toISOString().slice(0, 10)
|
||||||
|
const [date, setDate] = useState(today)
|
||||||
|
const [locationId, setLocationId] = useState<string | null>(null)
|
||||||
|
|
||||||
|
const { data: locationsData } = useQuery(locationsOptions())
|
||||||
|
const locations = locationsData?.data ?? []
|
||||||
|
|
||||||
|
// Auto-select first location
|
||||||
|
if (!locationId && locations.length > 0) {
|
||||||
|
setLocationId(locations[0].id)
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data: report, isLoading } = useQuery(dailyReportOptions(locationId, date))
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="space-y-6 max-w-3xl">
|
||||||
|
<h1 className="text-2xl font-bold">Daily Report</h1>
|
||||||
|
|
||||||
|
<div className="flex gap-4">
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs">Date</Label>
|
||||||
|
<Input type="date" value={date} onChange={(e) => setDate(e.target.value)} className="w-44" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<Label className="text-xs">Location</Label>
|
||||||
|
<Select value={locationId ?? ''} onValueChange={setLocationId}>
|
||||||
|
<SelectTrigger className="w-48">
|
||||||
|
<SelectValue placeholder="Select location" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{locations.map((loc) => (
|
||||||
|
<SelectItem key={loc.id} value={loc.id}>{loc.name}</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{isLoading ? (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<Skeleton className="h-32 w-full" />
|
||||||
|
<Skeleton className="h-48 w-full" />
|
||||||
|
</div>
|
||||||
|
) : !report ? (
|
||||||
|
<p className="text-muted-foreground">Select a location and date to view the report.</p>
|
||||||
|
) : (
|
||||||
|
<div className="space-y-4">
|
||||||
|
{/* Sessions */}
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-base">Drawer Sessions ({report.sessions.length})</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
{report.sessions.length === 0 ? (
|
||||||
|
<p className="text-sm text-muted-foreground">No drawer sessions on this date.</p>
|
||||||
|
) : (
|
||||||
|
<div className="space-y-2">
|
||||||
|
{report.sessions.map((s: any) => (
|
||||||
|
<div key={s.id} className="flex items-center justify-between p-2 rounded border text-sm">
|
||||||
|
<div>
|
||||||
|
<span className="font-medium">{s.register?.name ?? 'Unassigned'}</span>
|
||||||
|
<span className="text-muted-foreground ml-2">
|
||||||
|
{new Date(s.openedAt).toLocaleTimeString()} — {s.closedAt ? new Date(s.closedAt).toLocaleTimeString() : 'Open'}
|
||||||
|
</span>
|
||||||
|
{s.openedBy && <span className="text-muted-foreground ml-2">({s.openedBy.firstName})</span>}
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<span className="tabular-nums text-sm">${s.grossSales.toFixed(2)}</span>
|
||||||
|
{s.overShort !== null && (
|
||||||
|
<Badge variant={s.overShort === 0 ? 'default' : 'destructive'} className="text-xs">
|
||||||
|
{s.overShort === 0 ? 'Balanced' : `${s.overShort > 0 ? '+' : ''}$${s.overShort.toFixed(2)}`}
|
||||||
|
</Badge>
|
||||||
|
)}
|
||||||
|
{s.status === 'open' && <Badge variant="outline" className="text-xs">Open</Badge>}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
{/* Sales Summary */}
|
||||||
|
<Card>
|
||||||
|
<CardHeader><CardTitle className="text-base">Sales</CardTitle></CardHeader>
|
||||||
|
<CardContent className="space-y-2 text-sm">
|
||||||
|
<div className="flex justify-between"><span>Transactions</span><span>{report.sales.transactionCount}</span></div>
|
||||||
|
<div className="flex justify-between"><span>Gross Sales</span><span className="tabular-nums">${report.sales.grossSales.toFixed(2)}</span></div>
|
||||||
|
{report.sales.refundTotal > 0 && <div className="flex justify-between text-red-600"><span>Refunds</span><span className="tabular-nums">-${report.sales.refundTotal.toFixed(2)}</span></div>}
|
||||||
|
<Separator />
|
||||||
|
<div className="flex justify-between font-semibold"><span>Net Sales</span><span className="tabular-nums">${report.sales.netSales.toFixed(2)}</span></div>
|
||||||
|
{report.sales.voidCount > 0 && <div className="flex justify-between text-muted-foreground"><span>Voided</span><span>{report.sales.voidCount}</span></div>}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
{/* Payment Breakdown */}
|
||||||
|
<Card>
|
||||||
|
<CardHeader><CardTitle className="text-base">Payments</CardTitle></CardHeader>
|
||||||
|
<CardContent className="space-y-2 text-sm">
|
||||||
|
{Object.entries(report.payments as Record<string, { count: number; total: number }>).map(([method, data]) => (
|
||||||
|
<div key={method} className="flex justify-between">
|
||||||
|
<span>{PAYMENT_LABELS[method] ?? method} ({data.count})</span>
|
||||||
|
<span className="tabular-nums">${data.total.toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
{Object.keys(report.payments).length === 0 && <p className="text-muted-foreground">No payments</p>}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
{/* Discounts */}
|
||||||
|
{report.discounts.count > 0 && (
|
||||||
|
<Card>
|
||||||
|
<CardHeader><CardTitle className="text-base">Discounts</CardTitle></CardHeader>
|
||||||
|
<CardContent className="text-sm">
|
||||||
|
<div className="flex justify-between"><span>Total ({report.discounts.count} transactions)</span><span className="tabular-nums text-green-600">-${report.discounts.total.toFixed(2)}</span></div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Cash Summary */}
|
||||||
|
<Card>
|
||||||
|
<CardHeader><CardTitle className="text-base">Cash</CardTitle></CardHeader>
|
||||||
|
<CardContent className="space-y-2 text-sm">
|
||||||
|
<div className="flex justify-between"><span>Total Opening</span><span className="tabular-nums">${report.cash.totalOpening.toFixed(2)}</span></div>
|
||||||
|
<div className="flex justify-between"><span>Cash Sales</span><span className="tabular-nums">${report.cash.totalCashSales.toFixed(2)}</span></div>
|
||||||
|
{report.cash.totalCashIn > 0 && <div className="flex justify-between text-green-600"><span>Cash In</span><span className="tabular-nums">+${report.cash.totalCashIn.toFixed(2)}</span></div>}
|
||||||
|
{report.cash.totalCashOut > 0 && <div className="flex justify-between text-red-600"><span>Cash Out</span><span className="tabular-nums">-${report.cash.totalCashOut.toFixed(2)}</span></div>}
|
||||||
|
<Separator />
|
||||||
|
<div className="flex justify-between font-medium"><span>Expected Total</span><span className="tabular-nums">${report.cash.totalExpected.toFixed(2)}</span></div>
|
||||||
|
<div className="flex justify-between"><span>Actual Total</span><span className="tabular-nums">${report.cash.totalActual.toFixed(2)}</span></div>
|
||||||
|
<div className={`flex justify-between font-bold ${report.cash.totalOverShort === 0 ? 'text-green-600' : 'text-red-600'}`}>
|
||||||
|
<span>{report.cash.totalOverShort >= 0 ? 'Over' : 'Short'}</span>
|
||||||
|
<span className="tabular-nums">${Math.abs(report.cash.totalOverShort).toFixed(2)}</span>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -100,7 +100,7 @@ function RoleDetailPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-6 max-w-2xl">
|
<div className="space-y-6 max-w-2xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/roles', search: {} as any })}>
|
<Button variant="ghost" size="sm" onClick={() => navigate({ to: '/roles', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowLeft className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<div>
|
<div>
|
||||||
@@ -177,7 +177,7 @@ function RoleDetailPage() {
|
|||||||
<Button onClick={handleSave} disabled={updateMutation.isPending}>
|
<Button onClick={handleSave} disabled={updateMutation.isPending}>
|
||||||
{updateMutation.isPending ? 'Saving...' : 'Save Changes'}
|
{updateMutation.isPending ? 'Saving...' : 'Save Changes'}
|
||||||
</Button>
|
</Button>
|
||||||
<Button variant="secondary" onClick={() => navigate({ to: '/roles', search: {} as any })}>
|
<Button variant="secondary" onClick={() => navigate({ to: '/roles', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ function NewRolePage() {
|
|||||||
onSuccess: () => {
|
onSuccess: () => {
|
||||||
queryClient.invalidateQueries({ queryKey: rbacKeys.roles })
|
queryClient.invalidateQueries({ queryKey: rbacKeys.roles })
|
||||||
toast.success('Role created')
|
toast.success('Role created')
|
||||||
navigate({ to: '/roles', search: {} as any })
|
navigate({ to: '/roles', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
},
|
},
|
||||||
onError: (err) => toast.error(err.message),
|
onError: (err) => toast.error(err.message),
|
||||||
})
|
})
|
||||||
@@ -153,7 +153,7 @@ function NewRolePage() {
|
|||||||
<Button onClick={handleSubmit} disabled={mutation.isPending}>
|
<Button onClick={handleSubmit} disabled={mutation.isPending}>
|
||||||
{mutation.isPending ? 'Creating...' : 'Create Role'}
|
{mutation.isPending ? 'Creating...' : 'Create Role'}
|
||||||
</Button>
|
</Button>
|
||||||
<Button variant="secondary" onClick={() => navigate({ to: '/roles', search: {} as any })}>
|
<Button variant="secondary" onClick={() => navigate({ to: '/roles', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })}>
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -13,8 +13,11 @@ import { Skeleton } from '@/components/ui/skeleton'
|
|||||||
import { Badge } from '@/components/ui/badge'
|
import { Badge } from '@/components/ui/badge'
|
||||||
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog'
|
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog'
|
||||||
import { Switch } from '@/components/ui/switch'
|
import { Switch } from '@/components/ui/switch'
|
||||||
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
|
||||||
import { moduleListOptions, moduleMutations, moduleKeys } from '@/api/modules'
|
import { moduleListOptions, moduleMutations, moduleKeys } from '@/api/modules'
|
||||||
import { Save, Plus, Trash2, MapPin, Building, ImageIcon, Blocks, Lock } from 'lucide-react'
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'
|
||||||
|
import { Save, Plus, Trash2, MapPin, Building, ImageIcon, Blocks, Lock, Settings2, Receipt, ShieldCheck } from 'lucide-react'
|
||||||
|
import { OVERRIDE_ACTIONS, getRequiredOverrides, setRequiredOverrides, getDiscountThreshold, setDiscountThreshold, type OverrideAction } from '@/components/pos/pos-manager-override'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
|
|
||||||
interface StoreSettings {
|
interface StoreSettings {
|
||||||
@@ -117,125 +120,150 @@ function SettingsPage() {
|
|||||||
<div className="space-y-6 max-w-3xl">
|
<div className="space-y-6 max-w-3xl">
|
||||||
<h1 className="text-2xl font-bold">Settings</h1>
|
<h1 className="text-2xl font-bold">Settings</h1>
|
||||||
|
|
||||||
{/* Store Info */}
|
<Tabs defaultValue="store">
|
||||||
<Card>
|
<TabsList>
|
||||||
<CardHeader className="flex flex-row items-center justify-between">
|
<TabsTrigger value="store">Store</TabsTrigger>
|
||||||
<CardTitle className="text-lg flex items-center gap-2">
|
<TabsTrigger value="locations">Locations</TabsTrigger>
|
||||||
<Building className="h-5 w-5" />Store Information
|
<TabsTrigger value="modules">Modules</TabsTrigger>
|
||||||
</CardTitle>
|
<TabsTrigger value="receipt">Receipt</TabsTrigger>
|
||||||
{!editing && <Button variant="outline" size="sm" onClick={startEdit}>Edit</Button>}
|
<TabsTrigger value="pos">POS Security</TabsTrigger>
|
||||||
{editing && (
|
<TabsTrigger value="advanced">Advanced</TabsTrigger>
|
||||||
<div className="flex gap-2">
|
</TabsList>
|
||||||
<Button size="sm" onClick={saveEdit} disabled={updateMutation.isPending}>
|
|
||||||
<Save className="mr-1 h-3 w-3" />{updateMutation.isPending ? 'Saving...' : 'Save'}
|
|
||||||
</Button>
|
|
||||||
<Button variant="ghost" size="sm" onClick={() => setEditing(false)}>Cancel</Button>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</CardHeader>
|
|
||||||
<CardContent className="space-y-6">
|
|
||||||
{/* Logo upload */}
|
|
||||||
<div>
|
|
||||||
<LogoUpload entityId={store.id} category="logo" label="Store Logo" description="Used on PDFs, sidebar, and login screen" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{editing ? (
|
<TabsContent value="store" className="mt-4">
|
||||||
<div className="space-y-4">
|
<Card>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<CardHeader className="flex flex-row items-center justify-between">
|
||||||
<div className="space-y-2">
|
<CardTitle className="text-lg flex items-center gap-2">
|
||||||
<Label>Store Name *</Label>
|
<Building className="h-5 w-5" />Store Information
|
||||||
<Input value={fields.name} onChange={(e) => setFields((p) => ({ ...p, name: e.target.value }))} />
|
</CardTitle>
|
||||||
</div>
|
{!editing && <Button variant="outline" size="sm" onClick={startEdit}>Edit</Button>}
|
||||||
<div className="space-y-2">
|
{editing && (
|
||||||
<Label>Timezone</Label>
|
<div className="flex gap-2">
|
||||||
<Input value={fields.timezone} onChange={(e) => setFields((p) => ({ ...p, timezone: e.target.value }))} placeholder="America/Chicago" />
|
<Button size="sm" onClick={saveEdit} disabled={updateMutation.isPending}>
|
||||||
|
<Save className="mr-1 h-3 w-3" />{updateMutation.isPending ? 'Saving...' : 'Save'}
|
||||||
|
</Button>
|
||||||
|
<Button variant="ghost" size="sm" onClick={() => setEditing(false)}>Cancel</Button>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-6">
|
||||||
|
<div>
|
||||||
|
<LogoUpload entityId={store.id} category="logo" label="Store Logo" description="Used on PDFs, sidebar, and login screen" />
|
||||||
</div>
|
</div>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
||||||
<div className="space-y-2">
|
{editing ? (
|
||||||
<Label>Phone</Label>
|
<div className="space-y-4">
|
||||||
<Input value={fields.phone} onChange={(e) => setFields((p) => ({ ...p, phone: e.target.value }))} />
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||||
</div>
|
<div className="space-y-2">
|
||||||
<div className="space-y-2">
|
<Label>Store Name *</Label>
|
||||||
<Label>Email</Label>
|
<Input value={fields.name} onChange={(e) => setFields((p) => ({ ...p, name: e.target.value }))} />
|
||||||
<Input value={fields.email} onChange={(e) => setFields((p) => ({ ...p, email: e.target.value }))} />
|
</div>
|
||||||
</div>
|
<div className="space-y-2">
|
||||||
</div>
|
<Label>Timezone</Label>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<Input value={fields.timezone} onChange={(e) => setFields((p) => ({ ...p, timezone: e.target.value }))} placeholder="America/Chicago" />
|
||||||
<div className="space-y-2">
|
</div>
|
||||||
<Label>Street</Label>
|
</div>
|
||||||
<Input value={fields.street} onChange={(e) => setFields((p) => ({ ...p, street: e.target.value }))} />
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||||
</div>
|
<div className="space-y-2">
|
||||||
<div className="grid grid-cols-3 gap-2">
|
<Label>Phone</Label>
|
||||||
<div className="space-y-2">
|
<Input value={fields.phone} onChange={(e) => setFields((p) => ({ ...p, phone: e.target.value }))} />
|
||||||
<Label>City</Label>
|
</div>
|
||||||
<Input value={fields.city} onChange={(e) => setFields((p) => ({ ...p, city: e.target.value }))} />
|
<div className="space-y-2">
|
||||||
|
<Label>Email</Label>
|
||||||
|
<Input value={fields.email} onChange={(e) => setFields((p) => ({ ...p, email: e.target.value }))} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Street</Label>
|
||||||
|
<Input value={fields.street} onChange={(e) => setFields((p) => ({ ...p, street: e.target.value }))} />
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-3 gap-2">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>City</Label>
|
||||||
|
<Input value={fields.city} onChange={(e) => setFields((p) => ({ ...p, city: e.target.value }))} />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>State</Label>
|
||||||
|
<Input value={fields.state} onChange={(e) => setFields((p) => ({ ...p, state: e.target.value }))} />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>ZIP</Label>
|
||||||
|
<Input value={fields.zip} onChange={(e) => setFields((p) => ({ ...p, zip: e.target.value }))} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label>State</Label>
|
<Label>Notes</Label>
|
||||||
<Input value={fields.state} onChange={(e) => setFields((p) => ({ ...p, state: e.target.value }))} />
|
<Textarea value={fields.notes} onChange={(e) => setFields((p) => ({ ...p, notes: e.target.value }))} rows={2} />
|
||||||
</div>
|
|
||||||
<div className="space-y-2">
|
|
||||||
<Label>ZIP</Label>
|
|
||||||
<Input value={fields.zip} onChange={(e) => setFields((p) => ({ ...p, zip: e.target.value }))} />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
) : (
|
||||||
<div className="space-y-2">
|
<div className="space-y-4">
|
||||||
<Label>Notes</Label>
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||||
<Textarea value={fields.notes} onChange={(e) => setFields((p) => ({ ...p, notes: e.target.value }))} rows={2} />
|
<div className="space-y-2 text-sm">
|
||||||
</div>
|
<div className="text-lg font-semibold">{store.name}</div>
|
||||||
</div>
|
<div><span className="text-muted-foreground">Phone:</span> {store.phone ?? '-'}</div>
|
||||||
) : (
|
<div><span className="text-muted-foreground">Email:</span> {store.email ?? '-'}</div>
|
||||||
<div className="space-y-4">
|
<div><span className="text-muted-foreground">Timezone:</span> {store.timezone}</div>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
</div>
|
||||||
<div className="space-y-2 text-sm">
|
<div className="space-y-2 text-sm">
|
||||||
<div className="text-lg font-semibold">{store.name}</div>
|
{store.address && (store.address.street || store.address.city) ? (
|
||||||
<div><span className="text-muted-foreground">Phone:</span> {store.phone ?? '-'}</div>
|
<>
|
||||||
<div><span className="text-muted-foreground">Email:</span> {store.email ?? '-'}</div>
|
<div className="font-medium flex items-center gap-1"><MapPin className="h-3 w-3" />Address</div>
|
||||||
<div><span className="text-muted-foreground">Timezone:</span> {store.timezone}</div>
|
{store.address.street && <div>{store.address.street}</div>}
|
||||||
|
<div>{[store.address.city, store.address.state, store.address.zip].filter(Boolean).join(', ')}</div>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<div className="text-muted-foreground">No address set</div>
|
||||||
|
)}
|
||||||
|
{store.notes && <div className="mt-2"><span className="text-muted-foreground">Notes:</span> {store.notes}</div>}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-2 text-sm">
|
)}
|
||||||
{store.address && (store.address.street || store.address.city) ? (
|
</CardContent>
|
||||||
<>
|
</Card>
|
||||||
<div className="font-medium flex items-center gap-1"><MapPin className="h-3 w-3" />Address</div>
|
</TabsContent>
|
||||||
{store.address.street && <div>{store.address.street}</div>}
|
|
||||||
<div>{[store.address.city, store.address.state, store.address.zip].filter(Boolean).join(', ')}</div>
|
<TabsContent value="locations" className="mt-4">
|
||||||
</>
|
<Card>
|
||||||
) : (
|
<CardHeader className="flex flex-row items-center justify-between">
|
||||||
<div className="text-muted-foreground">No address set</div>
|
<CardTitle className="text-lg flex items-center gap-2">
|
||||||
)}
|
<MapPin className="h-5 w-5" />Locations
|
||||||
{store.notes && <div className="mt-2"><span className="text-muted-foreground">Notes:</span> {store.notes}</div>}
|
</CardTitle>
|
||||||
|
<AddLocationDialog open={addLocationOpen} onOpenChange={setAddLocationOpen} />
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
{locations.length === 0 ? (
|
||||||
|
<p className="text-sm text-muted-foreground text-center py-4">No locations yet — add your first store location</p>
|
||||||
|
) : (
|
||||||
|
<div className="space-y-3">
|
||||||
|
{locations.map((loc) => (
|
||||||
|
<LocationCard key={loc.id} location={loc} />
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
)}
|
||||||
</div>
|
</CardContent>
|
||||||
)}
|
</Card>
|
||||||
</CardContent>
|
</TabsContent>
|
||||||
</Card>
|
|
||||||
|
|
||||||
{/* Locations */}
|
<TabsContent value="modules" className="mt-4">
|
||||||
<Card>
|
<ModulesCard />
|
||||||
<CardHeader className="flex flex-row items-center justify-between">
|
</TabsContent>
|
||||||
<CardTitle className="text-lg flex items-center gap-2">
|
|
||||||
<MapPin className="h-5 w-5" />Locations
|
|
||||||
</CardTitle>
|
|
||||||
<AddLocationDialog open={addLocationOpen} onOpenChange={setAddLocationOpen} />
|
|
||||||
</CardHeader>
|
|
||||||
<CardContent>
|
|
||||||
{locations.length === 0 ? (
|
|
||||||
<p className="text-sm text-muted-foreground text-center py-4">No locations yet — add your first store location</p>
|
|
||||||
) : (
|
|
||||||
<div className="space-y-3">
|
|
||||||
{locations.map((loc) => (
|
|
||||||
<LocationCard key={loc.id} location={loc} />
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</CardContent>
|
|
||||||
</Card>
|
|
||||||
|
|
||||||
{/* Modules */}
|
<TabsContent value="receipt" className="mt-4">
|
||||||
<ModulesCard />
|
<ReceiptSettingsCard />
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="pos" className="mt-4">
|
||||||
|
<ManagerOverridesCard />
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="advanced" className="mt-4">
|
||||||
|
<AppConfigCard />
|
||||||
|
</TabsContent>
|
||||||
|
</Tabs>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -296,6 +324,250 @@ function ModulesCard() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface AppConfigEntry {
|
||||||
|
key: string
|
||||||
|
value: string | null
|
||||||
|
description: string | null
|
||||||
|
updatedAt: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const LOG_LEVELS = ['fatal', 'error', 'warn', 'info', 'debug', 'trace'] as const
|
||||||
|
|
||||||
|
function configOptions() {
|
||||||
|
return queryOptions({
|
||||||
|
queryKey: ['config'],
|
||||||
|
queryFn: () => api.get<{ data: AppConfigEntry[] }>('/v1/config'),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function AppConfigCard() {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const hasPermission = useAuthStore((s) => s.hasPermission)
|
||||||
|
const canEdit = hasPermission('settings.edit')
|
||||||
|
|
||||||
|
const { data: configData, isLoading } = useQuery(configOptions())
|
||||||
|
const configs = configData?.data ?? []
|
||||||
|
const logLevel = configs.find((c) => c.key === 'log_level')?.value ?? 'info'
|
||||||
|
|
||||||
|
const updateMutation = useMutation({
|
||||||
|
mutationFn: ({ key, value }: { key: string; value: string }) =>
|
||||||
|
api.patch<AppConfigEntry>(`/v1/config/${key}`, { value }),
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['config'] })
|
||||||
|
toast.success('Configuration updated')
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-lg flex items-center gap-2">
|
||||||
|
<Settings2 className="h-5 w-5" />App Configuration
|
||||||
|
</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
{isLoading ? (
|
||||||
|
<Skeleton className="h-12 w-full" />
|
||||||
|
) : (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="flex items-center justify-between p-3 rounded-md border">
|
||||||
|
<div className="min-w-0">
|
||||||
|
<span className="font-medium text-sm">Log Level</span>
|
||||||
|
<p className="text-xs text-muted-foreground mt-0.5">Controls the verbosity of application logs</p>
|
||||||
|
</div>
|
||||||
|
<Select
|
||||||
|
value={logLevel}
|
||||||
|
onValueChange={(value) => updateMutation.mutate({ key: 'log_level', value })}
|
||||||
|
disabled={!canEdit || updateMutation.isPending}
|
||||||
|
>
|
||||||
|
<SelectTrigger className="w-32">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{LOG_LEVELS.map((level) => (
|
||||||
|
<SelectItem key={level} value={level}>
|
||||||
|
{level}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const RECEIPT_FIELDS = [
|
||||||
|
{ key: 'receipt_header', label: 'Header Text', placeholder: "e.g. San Antonio's Premier String Shop", multiline: false },
|
||||||
|
{ key: 'receipt_footer', label: 'Footer Message', placeholder: 'e.g. Thank you for your business!', multiline: false },
|
||||||
|
{ key: 'receipt_return_policy', label: 'Return Policy', placeholder: 'e.g. Returns accepted within 30 days with receipt.', multiline: true },
|
||||||
|
{ key: 'receipt_social', label: 'Website / Social', placeholder: 'e.g. www.demostore.com | @demostore', multiline: false },
|
||||||
|
]
|
||||||
|
|
||||||
|
function ReceiptSettingsCard() {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const hasPermission = useAuthStore((s) => s.hasPermission)
|
||||||
|
const canEdit = hasPermission('settings.edit')
|
||||||
|
|
||||||
|
const { data: configData, isLoading } = useQuery(configOptions())
|
||||||
|
const configs = configData?.data ?? []
|
||||||
|
|
||||||
|
const [editing, setEditing] = useState(false)
|
||||||
|
const [fields, setFields] = useState<Record<string, string>>({})
|
||||||
|
|
||||||
|
function startEdit() {
|
||||||
|
const f: Record<string, string> = {}
|
||||||
|
for (const rf of RECEIPT_FIELDS) {
|
||||||
|
f[rf.key] = configs.find((c) => c.key === rf.key)?.value ?? ''
|
||||||
|
}
|
||||||
|
setFields(f)
|
||||||
|
setEditing(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
const saveMutation = useMutation({
|
||||||
|
mutationFn: async () => {
|
||||||
|
for (const rf of RECEIPT_FIELDS) {
|
||||||
|
await api.patch(`/v1/config/${rf.key}`, { value: fields[rf.key] || '' })
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
queryClient.invalidateQueries({ queryKey: ['config'] })
|
||||||
|
toast.success('Receipt settings saved')
|
||||||
|
setEditing(false)
|
||||||
|
},
|
||||||
|
onError: (err) => toast.error(err.message),
|
||||||
|
})
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card>
|
||||||
|
<CardHeader className="flex flex-row items-center justify-between">
|
||||||
|
<CardTitle className="text-lg flex items-center gap-2">
|
||||||
|
<Receipt className="h-5 w-5" />Receipt Customization
|
||||||
|
</CardTitle>
|
||||||
|
{canEdit && !editing && <Button variant="outline" size="sm" onClick={startEdit}>Edit</Button>}
|
||||||
|
{editing && (
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button size="sm" onClick={() => saveMutation.mutate()} disabled={saveMutation.isPending}>
|
||||||
|
<Save className="mr-1 h-3 w-3" />{saveMutation.isPending ? 'Saving...' : 'Save'}
|
||||||
|
</Button>
|
||||||
|
<Button variant="ghost" size="sm" onClick={() => setEditing(false)}>Cancel</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
{isLoading ? (
|
||||||
|
<Skeleton className="h-32 w-full" />
|
||||||
|
) : editing ? (
|
||||||
|
<div className="space-y-4">
|
||||||
|
{RECEIPT_FIELDS.map((rf) => (
|
||||||
|
<div key={rf.key} className="space-y-2">
|
||||||
|
<Label>{rf.label}</Label>
|
||||||
|
{rf.multiline ? (
|
||||||
|
<Textarea
|
||||||
|
value={fields[rf.key] ?? ''}
|
||||||
|
onChange={(e) => setFields((p) => ({ ...p, [rf.key]: e.target.value }))}
|
||||||
|
placeholder={rf.placeholder}
|
||||||
|
rows={2}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<Input
|
||||||
|
value={fields[rf.key] ?? ''}
|
||||||
|
onChange={(e) => setFields((p) => ({ ...p, [rf.key]: e.target.value }))}
|
||||||
|
placeholder={rf.placeholder}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="space-y-3">
|
||||||
|
{RECEIPT_FIELDS.map((rf) => {
|
||||||
|
const value = configs.find((c) => c.key === rf.key)?.value
|
||||||
|
return (
|
||||||
|
<div key={rf.key} className="flex justify-between items-start">
|
||||||
|
<span className="text-sm text-muted-foreground">{rf.label}</span>
|
||||||
|
<span className="text-sm text-right max-w-[60%]">{value || <span className="text-muted-foreground/50">Not set</span>}</span>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function ManagerOverridesCard() {
|
||||||
|
const [overrides, setOverrides] = useState<Set<OverrideAction>>(() => getRequiredOverrides())
|
||||||
|
const [threshold, setThreshold] = useState(() => getDiscountThreshold())
|
||||||
|
|
||||||
|
function toggle(action: OverrideAction) {
|
||||||
|
setOverrides((prev) => {
|
||||||
|
const next = new Set(prev)
|
||||||
|
if (next.has(action)) next.delete(action)
|
||||||
|
else next.add(action)
|
||||||
|
setRequiredOverrides(next)
|
||||||
|
return next
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-lg flex items-center gap-2">
|
||||||
|
<ShieldCheck className="h-5 w-5" />Manager Overrides
|
||||||
|
</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<p className="text-sm text-muted-foreground mb-4">
|
||||||
|
When enabled, these actions will require a manager or admin to enter their PIN before proceeding. This setting is stored per device.
|
||||||
|
</p>
|
||||||
|
<div className="space-y-2">
|
||||||
|
{OVERRIDE_ACTIONS.map((action) => (
|
||||||
|
<div key={action.key} className="flex items-center justify-between p-3 rounded-md border">
|
||||||
|
<div className="min-w-0">
|
||||||
|
<span className="font-medium text-sm">{action.label}</span>
|
||||||
|
<p className="text-xs text-muted-foreground mt-0.5">{action.description}</p>
|
||||||
|
</div>
|
||||||
|
<Switch
|
||||||
|
checked={overrides.has(action.key)}
|
||||||
|
onCheckedChange={() => toggle(action.key)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="mt-4 p-3 rounded-md border">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<div className="min-w-0">
|
||||||
|
<span className="font-medium text-sm">Discount Threshold</span>
|
||||||
|
<p className="text-xs text-muted-foreground mt-0.5">Require manager approval for discounts at or above this percentage. Set to 0 to disable.</p>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
min="0"
|
||||||
|
max="100"
|
||||||
|
className="w-20 h-8 text-sm text-right"
|
||||||
|
value={threshold}
|
||||||
|
onChange={(e) => {
|
||||||
|
const v = parseInt(e.target.value) || 0
|
||||||
|
setThreshold(v)
|
||||||
|
setDiscountThreshold(v)
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<span className="text-sm text-muted-foreground">%</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
function LocationCard({ location }: { location: Location }) {
|
function LocationCard({ location }: { location: Location }) {
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
const [editing, setEditing] = useState(false)
|
const [editing, setEditing] = useState(false)
|
||||||
|
|||||||
@@ -1,13 +1,18 @@
|
|||||||
import { useState } from 'react'
|
import { useState, useEffect } from 'react'
|
||||||
import { createFileRoute, useRouter, redirect } from '@tanstack/react-router'
|
import { createFileRoute, useRouter, redirect } from '@tanstack/react-router'
|
||||||
import { useAuthStore } from '@/stores/auth.store'
|
import { useAuthStore } from '@/stores/auth.store'
|
||||||
import { login } from '@/api/auth'
|
import { login, forgotPassword } from '@/api/auth'
|
||||||
|
|
||||||
|
interface Branding {
|
||||||
|
name: string | null
|
||||||
|
hasLogo: boolean
|
||||||
|
}
|
||||||
|
|
||||||
export const Route = createFileRoute('/login')({
|
export const Route = createFileRoute('/login')({
|
||||||
beforeLoad: () => {
|
beforeLoad: () => {
|
||||||
const { token } = useAuthStore.getState()
|
const { token } = useAuthStore.getState()
|
||||||
if (token) {
|
if (token) {
|
||||||
throw redirect({ to: '/accounts', search: {} as any })
|
throw redirect({ to: '/accounts', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const } })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
component: LoginPage,
|
component: LoginPage,
|
||||||
@@ -20,6 +25,16 @@ function LoginPage() {
|
|||||||
const [password, setPassword] = useState('')
|
const [password, setPassword] = useState('')
|
||||||
const [error, setError] = useState('')
|
const [error, setError] = useState('')
|
||||||
const [loading, setLoading] = useState(false)
|
const [loading, setLoading] = useState(false)
|
||||||
|
const [branding, setBranding] = useState<Branding | null>(null)
|
||||||
|
const [forgotMode, setForgotMode] = useState(false)
|
||||||
|
const [forgotSent, setForgotSent] = useState(false)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetch('/v1/store/branding')
|
||||||
|
.then((r) => r.ok ? r.json() : null)
|
||||||
|
.then((data) => { if (data) setBranding(data) })
|
||||||
|
.catch(() => {})
|
||||||
|
}, [])
|
||||||
|
|
||||||
async function handleSubmit(e: React.FormEvent) {
|
async function handleSubmit(e: React.FormEvent) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
@@ -30,7 +45,7 @@ function LoginPage() {
|
|||||||
const res = await login(email, password)
|
const res = await login(email, password)
|
||||||
setAuth(res.token, res.user)
|
setAuth(res.token, res.user)
|
||||||
await router.invalidate()
|
await router.invalidate()
|
||||||
await router.navigate({ to: '/accounts', search: {} as any, replace: true })
|
await router.navigate({ to: '/accounts', search: { page: 1, limit: 25, q: undefined, sort: undefined, order: 'asc' as const }, replace: true })
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
setError(err instanceof Error ? err.message : 'Login failed')
|
setError(err instanceof Error ? err.message : 'Login failed')
|
||||||
} finally {
|
} finally {
|
||||||
@@ -48,45 +63,128 @@ function LoginPage() {
|
|||||||
style={{ backgroundColor: '#131c2e', borderColor: '#1e2d45' }}
|
style={{ backgroundColor: '#131c2e', borderColor: '#1e2d45' }}
|
||||||
>
|
>
|
||||||
<div className="text-center mb-8">
|
<div className="text-center mb-8">
|
||||||
<h1 className="text-3xl font-bold" style={{ color: '#d8dfe9' }}>LunarFront</h1>
|
{branding?.hasLogo ? (
|
||||||
<p className="text-sm mt-1" style={{ color: '#6b7a8d' }}>Small Business Management</p>
|
<img src="/v1/store/logo" alt={branding.name ?? 'Store'} className="max-h-14 max-w-[220px] object-contain mx-auto" />
|
||||||
</div>
|
) : (
|
||||||
<form onSubmit={handleSubmit} className="space-y-4">
|
<h1 className="text-3xl font-bold" style={{ color: '#d8dfe9' }}>{branding?.name ?? 'LunarFront'}</h1>
|
||||||
<div className="space-y-2">
|
|
||||||
<label className="text-sm font-medium" style={{ color: '#b0bec5' }}>Email</label>
|
|
||||||
<input
|
|
||||||
type="email"
|
|
||||||
placeholder="you@example.com"
|
|
||||||
value={email}
|
|
||||||
onChange={(e) => setEmail(e.target.value)}
|
|
||||||
required
|
|
||||||
className="h-9 w-full rounded-md border px-3 py-1 text-sm outline-none login-input"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="space-y-2">
|
|
||||||
<label className="text-sm font-medium" style={{ color: '#b0bec5' }}>Password</label>
|
|
||||||
<input
|
|
||||||
type="password"
|
|
||||||
value={password}
|
|
||||||
onChange={(e) => setPassword(e.target.value)}
|
|
||||||
required
|
|
||||||
className="h-9 w-full rounded-md border px-3 py-1 text-sm outline-none login-input"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
{error && (
|
|
||||||
<p className="text-sm" style={{ color: '#e57373' }}>{error}</p>
|
|
||||||
)}
|
)}
|
||||||
<button
|
{branding?.name ? (
|
||||||
type="submit"
|
<p className="text-[10px] mt-2" style={{ color: '#4a5568' }}>Powered by <span style={{ color: '#6b7a8d' }}>LunarFront</span></p>
|
||||||
disabled={loading}
|
) : (
|
||||||
className="h-9 w-full rounded-md border text-sm font-medium transition-colors disabled:opacity-50"
|
<p className="text-sm mt-1" style={{ color: '#6b7a8d' }}>Small Business Management</p>
|
||||||
style={{ backgroundColor: 'transparent', color: '#d0d8e0', borderColor: '#3a4a62' }}
|
)}
|
||||||
onMouseEnter={(e) => { (e.target as HTMLElement).style.backgroundColor = '#1e2d45' }}
|
</div>
|
||||||
onMouseLeave={(e) => { (e.target as HTMLElement).style.backgroundColor = 'transparent' }}
|
{forgotMode ? (
|
||||||
>
|
forgotSent ? (
|
||||||
{loading ? 'Signing in...' : 'Sign in'}
|
<div className="text-center space-y-4">
|
||||||
</button>
|
<p className="text-sm" style={{ color: '#b0bec5' }}>If an account exists with that email, you will receive a password reset link.</p>
|
||||||
</form>
|
<button
|
||||||
|
onClick={() => { setForgotMode(false); setForgotSent(false); setError('') }}
|
||||||
|
className="text-xs"
|
||||||
|
style={{ color: '#6b7a8d' }}
|
||||||
|
>
|
||||||
|
Back to sign in
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<form onSubmit={async (e) => {
|
||||||
|
e.preventDefault()
|
||||||
|
setError('')
|
||||||
|
setLoading(true)
|
||||||
|
try {
|
||||||
|
await forgotPassword(email)
|
||||||
|
setForgotSent(true)
|
||||||
|
} catch (err) {
|
||||||
|
setError(err instanceof Error ? err.message : 'Something went wrong')
|
||||||
|
} finally {
|
||||||
|
setLoading(false)
|
||||||
|
}
|
||||||
|
}} className="space-y-4">
|
||||||
|
<p className="text-sm" style={{ color: '#b0bec5' }}>Enter your email and we'll send you a reset link.</p>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<label className="text-sm font-medium" style={{ color: '#b0bec5' }}>Email</label>
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
placeholder="you@example.com"
|
||||||
|
value={email}
|
||||||
|
onChange={(e) => setEmail(e.target.value)}
|
||||||
|
required
|
||||||
|
className="h-9 w-full rounded-md border px-3 py-1 text-sm outline-none login-input"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{error && (
|
||||||
|
<p className="text-sm" style={{ color: '#e57373' }}>{error}</p>
|
||||||
|
)}
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={loading}
|
||||||
|
className="h-9 w-full rounded-md border text-sm font-medium transition-colors disabled:opacity-50"
|
||||||
|
style={{ backgroundColor: 'transparent', color: '#d0d8e0', borderColor: '#3a4a62' }}
|
||||||
|
onMouseEnter={(e) => { (e.target as HTMLElement).style.backgroundColor = '#1e2d45' }}
|
||||||
|
onMouseLeave={(e) => { (e.target as HTMLElement).style.backgroundColor = 'transparent' }}
|
||||||
|
>
|
||||||
|
{loading ? 'Sending...' : 'Send reset link'}
|
||||||
|
</button>
|
||||||
|
<div className="text-center">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => { setForgotMode(false); setError('') }}
|
||||||
|
className="text-xs"
|
||||||
|
style={{ color: '#6b7a8d' }}
|
||||||
|
>
|
||||||
|
Back to sign in
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
)
|
||||||
|
) : (
|
||||||
|
<form onSubmit={handleSubmit} className="space-y-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<label className="text-sm font-medium" style={{ color: '#b0bec5' }}>Email</label>
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
placeholder="you@example.com"
|
||||||
|
value={email}
|
||||||
|
onChange={(e) => setEmail(e.target.value)}
|
||||||
|
required
|
||||||
|
className="h-9 w-full rounded-md border px-3 py-1 text-sm outline-none login-input"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<label className="text-sm font-medium" style={{ color: '#b0bec5' }}>Password</label>
|
||||||
|
<input
|
||||||
|
type="password"
|
||||||
|
value={password}
|
||||||
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
|
required
|
||||||
|
className="h-9 w-full rounded-md border px-3 py-1 text-sm outline-none login-input"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{error && (
|
||||||
|
<p className="text-sm" style={{ color: '#e57373' }}>{error}</p>
|
||||||
|
)}
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={loading}
|
||||||
|
className="h-9 w-full rounded-md border text-sm font-medium transition-colors disabled:opacity-50"
|
||||||
|
style={{ backgroundColor: 'transparent', color: '#d0d8e0', borderColor: '#3a4a62' }}
|
||||||
|
onMouseEnter={(e) => { (e.target as HTMLElement).style.backgroundColor = '#1e2d45' }}
|
||||||
|
onMouseLeave={(e) => { (e.target as HTMLElement).style.backgroundColor = 'transparent' }}
|
||||||
|
>
|
||||||
|
{loading ? 'Signing in...' : 'Sign in'}
|
||||||
|
</button>
|
||||||
|
<div className="text-center">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => { setForgotMode(true); setError('') }}
|
||||||
|
className="text-xs"
|
||||||
|
style={{ color: '#6b7a8d' }}
|
||||||
|
>
|
||||||
|
Forgot password?
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
7
packages/admin/src/routes/pos.tsx
Normal file
7
packages/admin/src/routes/pos.tsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { createFileRoute, redirect } from '@tanstack/react-router'
|
||||||
|
|
||||||
|
export const Route = createFileRoute('/pos')({
|
||||||
|
beforeLoad: () => {
|
||||||
|
throw redirect({ to: '/station' })
|
||||||
|
},
|
||||||
|
})
|
||||||
154
packages/admin/src/routes/reset-password.tsx
Normal file
154
packages/admin/src/routes/reset-password.tsx
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
import { useState, useEffect } from 'react'
|
||||||
|
import { createFileRoute, Link } from '@tanstack/react-router'
|
||||||
|
import { resetPassword } from '@/api/auth'
|
||||||
|
|
||||||
|
interface Branding {
|
||||||
|
name: string | null
|
||||||
|
hasLogo: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export const Route = createFileRoute('/reset-password')({
|
||||||
|
component: ResetPasswordPage,
|
||||||
|
})
|
||||||
|
|
||||||
|
function ResetPasswordPage() {
|
||||||
|
const { token } = Route.useSearch() as { token?: string }
|
||||||
|
const [password, setPassword] = useState('')
|
||||||
|
const [confirmPassword, setConfirmPassword] = useState('')
|
||||||
|
const [error, setError] = useState('')
|
||||||
|
const [loading, setLoading] = useState(false)
|
||||||
|
const [success, setSuccess] = useState(false)
|
||||||
|
const [branding, setBranding] = useState<Branding | null>(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetch('/v1/store/branding')
|
||||||
|
.then((r) => r.ok ? r.json() : null)
|
||||||
|
.then((data) => { if (data) setBranding(data) })
|
||||||
|
.catch(() => {})
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
async function handleSubmit(e: React.FormEvent) {
|
||||||
|
e.preventDefault()
|
||||||
|
setError('')
|
||||||
|
|
||||||
|
if (!token) {
|
||||||
|
setError('Missing reset token. Please use the link from your email.')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (password !== confirmPassword) {
|
||||||
|
setError('Passwords do not match')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (password.length < 12) {
|
||||||
|
setError('Password must be at least 12 characters')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
setLoading(true)
|
||||||
|
try {
|
||||||
|
await resetPassword(token, password)
|
||||||
|
setSuccess(true)
|
||||||
|
} catch (err) {
|
||||||
|
setError(err instanceof Error ? err.message : 'Reset failed. The link may have expired.')
|
||||||
|
} finally {
|
||||||
|
setLoading(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className="flex min-h-screen items-center justify-center"
|
||||||
|
style={{ background: 'linear-gradient(135deg, #0f1724 0%, #142038 100%)' }}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className="w-full max-w-sm rounded-xl border p-8 shadow-2xl"
|
||||||
|
style={{ backgroundColor: '#131c2e', borderColor: '#1e2d45' }}
|
||||||
|
>
|
||||||
|
<div className="text-center mb-8">
|
||||||
|
{branding?.hasLogo ? (
|
||||||
|
<img src="/v1/store/logo" alt={branding.name ?? 'Store'} className="max-h-14 max-w-[220px] object-contain mx-auto" />
|
||||||
|
) : (
|
||||||
|
<h1 className="text-3xl font-bold" style={{ color: '#d8dfe9' }}>{branding?.name ?? 'LunarFront'}</h1>
|
||||||
|
)}
|
||||||
|
{branding?.name ? (
|
||||||
|
<p className="text-[10px] mt-2" style={{ color: '#4a5568' }}>Powered by <span style={{ color: '#6b7a8d' }}>LunarFront</span></p>
|
||||||
|
) : (
|
||||||
|
<p className="text-sm mt-1" style={{ color: '#6b7a8d' }}>Small Business Management</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{success ? (
|
||||||
|
<div className="text-center space-y-4">
|
||||||
|
<p style={{ color: '#81c784' }}>Password reset successfully.</p>
|
||||||
|
<Link
|
||||||
|
to="/login"
|
||||||
|
className="inline-block h-9 rounded-md border px-4 py-2 text-sm font-medium transition-colors"
|
||||||
|
style={{ color: '#d0d8e0', borderColor: '#3a4a62' }}
|
||||||
|
>
|
||||||
|
Sign in
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
) : !token ? (
|
||||||
|
<div className="text-center space-y-4">
|
||||||
|
<p style={{ color: '#e57373' }}>Invalid reset link. Please request a new one.</p>
|
||||||
|
<Link
|
||||||
|
to="/login"
|
||||||
|
className="inline-block h-9 rounded-md border px-4 py-2 text-sm font-medium transition-colors"
|
||||||
|
style={{ color: '#d0d8e0', borderColor: '#3a4a62' }}
|
||||||
|
>
|
||||||
|
Back to sign in
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<h2 className="text-lg font-semibold text-center mb-4" style={{ color: '#d8dfe9' }}>Set new password</h2>
|
||||||
|
<form onSubmit={handleSubmit} className="space-y-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<label className="text-sm font-medium" style={{ color: '#b0bec5' }}>New password</label>
|
||||||
|
<input
|
||||||
|
type="password"
|
||||||
|
value={password}
|
||||||
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
|
required
|
||||||
|
minLength={12}
|
||||||
|
placeholder="At least 12 characters"
|
||||||
|
className="h-9 w-full rounded-md border px-3 py-1 text-sm outline-none login-input"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<label className="text-sm font-medium" style={{ color: '#b0bec5' }}>Confirm password</label>
|
||||||
|
<input
|
||||||
|
type="password"
|
||||||
|
value={confirmPassword}
|
||||||
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
||||||
|
required
|
||||||
|
className="h-9 w-full rounded-md border px-3 py-1 text-sm outline-none login-input"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{error && (
|
||||||
|
<p className="text-sm" style={{ color: '#e57373' }}>{error}</p>
|
||||||
|
)}
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={loading}
|
||||||
|
className="h-9 w-full rounded-md border text-sm font-medium transition-colors disabled:opacity-50"
|
||||||
|
style={{ backgroundColor: 'transparent', color: '#d0d8e0', borderColor: '#3a4a62' }}
|
||||||
|
onMouseEnter={(e) => { (e.target as HTMLElement).style.backgroundColor = '#1e2d45' }}
|
||||||
|
onMouseLeave={(e) => { (e.target as HTMLElement).style.backgroundColor = 'transparent' }}
|
||||||
|
>
|
||||||
|
{loading ? 'Resetting...' : 'Reset password'}
|
||||||
|
</button>
|
||||||
|
<div className="text-center">
|
||||||
|
<Link to="/login" className="text-xs" style={{ color: '#6b7a8d' }}>
|
||||||
|
Back to sign in
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
14
packages/admin/src/routes/station.tsx
Normal file
14
packages/admin/src/routes/station.tsx
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { createFileRoute } from '@tanstack/react-router'
|
||||||
|
import { StationShell } from '@/components/station/station-shell'
|
||||||
|
|
||||||
|
export const Route = createFileRoute('/station')({
|
||||||
|
component: StationPage,
|
||||||
|
})
|
||||||
|
|
||||||
|
function StationPage() {
|
||||||
|
return (
|
||||||
|
<div className="h-screen w-screen overflow-hidden bg-background text-foreground">
|
||||||
|
<StationShell />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
72
packages/admin/src/stores/pos.store.ts
Normal file
72
packages/admin/src/stores/pos.store.ts
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
import { create } from 'zustand'
|
||||||
|
|
||||||
|
interface POSUser {
|
||||||
|
id: string
|
||||||
|
email: string
|
||||||
|
firstName: string
|
||||||
|
lastName: string
|
||||||
|
role: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReceiptFormat = 'thermal' | 'full'
|
||||||
|
|
||||||
|
interface POSState {
|
||||||
|
currentTransactionId: string | null
|
||||||
|
locationId: string | null
|
||||||
|
registerId: string | null
|
||||||
|
drawerSessionId: string | null
|
||||||
|
locked: boolean
|
||||||
|
cashier: POSUser | null
|
||||||
|
token: string | null
|
||||||
|
lastActivity: number
|
||||||
|
accountId: string | null
|
||||||
|
accountName: string | null
|
||||||
|
accountPhone: string | null
|
||||||
|
accountEmail: string | null
|
||||||
|
receiptFormat: ReceiptFormat
|
||||||
|
setTransaction: (id: string | null) => void
|
||||||
|
setLocation: (id: string) => void
|
||||||
|
setRegister: (id: string | null) => void
|
||||||
|
setDrawerSession: (id: string | null) => void
|
||||||
|
unlock: (user: POSUser, token: string) => void
|
||||||
|
lock: () => void
|
||||||
|
touchActivity: () => void
|
||||||
|
setAccount: (id: string, name: string, phone?: string | null, email?: string | null) => void
|
||||||
|
clearAccount: () => void
|
||||||
|
setReceiptFormat: (format: ReceiptFormat) => void
|
||||||
|
reset: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
const RECEIPT_FORMAT_KEY = 'pos_receipt_format'
|
||||||
|
|
||||||
|
function getStoredReceiptFormat(): ReceiptFormat {
|
||||||
|
const stored = localStorage.getItem(RECEIPT_FORMAT_KEY)
|
||||||
|
return stored === 'full' ? 'full' : 'thermal'
|
||||||
|
}
|
||||||
|
|
||||||
|
export const usePOSStore = create<POSState>((set) => ({
|
||||||
|
currentTransactionId: null,
|
||||||
|
locationId: null,
|
||||||
|
registerId: localStorage.getItem('pos_register_id') ?? null,
|
||||||
|
drawerSessionId: localStorage.getItem('pos_drawer_session_id') ?? null,
|
||||||
|
locked: true,
|
||||||
|
cashier: null,
|
||||||
|
token: null,
|
||||||
|
lastActivity: Date.now(),
|
||||||
|
accountId: null,
|
||||||
|
accountName: null,
|
||||||
|
accountPhone: null,
|
||||||
|
accountEmail: null,
|
||||||
|
receiptFormat: getStoredReceiptFormat(),
|
||||||
|
setTransaction: (id) => set({ currentTransactionId: id }),
|
||||||
|
setLocation: (id) => set({ locationId: id }),
|
||||||
|
setRegister: (id) => { if (id) localStorage.setItem('pos_register_id', id); else localStorage.removeItem('pos_register_id'); set({ registerId: id }) },
|
||||||
|
setDrawerSession: (id) => { if (id) localStorage.setItem('pos_drawer_session_id', id); else localStorage.removeItem('pos_drawer_session_id'); set({ drawerSessionId: id }) },
|
||||||
|
unlock: (user, token) => set({ locked: false, cashier: user, token, lastActivity: Date.now() }),
|
||||||
|
lock: () => set({ locked: true, currentTransactionId: null }),
|
||||||
|
touchActivity: () => set({ lastActivity: Date.now() }),
|
||||||
|
setAccount: (id, name, phone, email) => set({ accountId: id, accountName: name, accountPhone: phone ?? null, accountEmail: email ?? null }),
|
||||||
|
clearAccount: () => set({ accountId: null, accountName: null, accountPhone: null, accountEmail: null }),
|
||||||
|
setReceiptFormat: (format) => { localStorage.setItem(RECEIPT_FORMAT_KEY, format); set({ receiptFormat: format }) },
|
||||||
|
reset: () => set({ currentTransactionId: null, accountId: null, accountName: null, accountPhone: null, accountEmail: null }),
|
||||||
|
}))
|
||||||
13
packages/admin/src/stores/station.store.ts
Normal file
13
packages/admin/src/stores/station.store.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import { create } from 'zustand'
|
||||||
|
|
||||||
|
type StationTab = 'pos' | 'repairs' | 'lessons'
|
||||||
|
|
||||||
|
interface StationState {
|
||||||
|
activeTab: StationTab
|
||||||
|
setActiveTab: (tab: StationTab) => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export const useStationStore = create<StationState>((set) => ({
|
||||||
|
activeTab: 'pos',
|
||||||
|
setActiveTab: (tab) => set({ activeTab: tab }),
|
||||||
|
}))
|
||||||
@@ -44,6 +44,7 @@ export interface Product {
|
|||||||
isSerialized: boolean
|
isSerialized: boolean
|
||||||
isRental: boolean
|
isRental: boolean
|
||||||
isDualUseRepair: boolean
|
isDualUseRepair: boolean
|
||||||
|
isConsumable: boolean
|
||||||
price: string | null
|
price: string | null
|
||||||
minPrice: string | null
|
minPrice: string | null
|
||||||
rentalRateMonthly: string | null
|
rentalRateMonthly: string | null
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ export interface RepairTicket {
|
|||||||
export interface RepairLineItem {
|
export interface RepairLineItem {
|
||||||
id: string
|
id: string
|
||||||
repairTicketId: string
|
repairTicketId: string
|
||||||
itemType: 'labor' | 'part' | 'flat_rate' | 'misc'
|
itemType: 'labor' | 'part' | 'flat_rate' | 'misc' | 'consumable'
|
||||||
description: string
|
description: string
|
||||||
productId: string | null
|
productId: string | null
|
||||||
qty: string
|
qty: string
|
||||||
@@ -82,7 +82,7 @@ export interface RepairServiceTemplate {
|
|||||||
itemCategory: string | null
|
itemCategory: string | null
|
||||||
size: string | null
|
size: string | null
|
||||||
description: string | null
|
description: string | null
|
||||||
itemType: 'labor' | 'part' | 'flat_rate' | 'misc'
|
itemType: 'labor' | 'part' | 'flat_rate' | 'misc' | 'consumable'
|
||||||
defaultPrice: string
|
defaultPrice: string
|
||||||
defaultCost: string | null
|
defaultCost: string | null
|
||||||
sortOrder: number
|
sortOrder: number
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
port: 5173,
|
port: 5173,
|
||||||
|
allowedHosts: ['dev.lunarfront.tech'],
|
||||||
proxy: {
|
proxy: {
|
||||||
'/v1': {
|
'/v1': {
|
||||||
target: 'http://localhost:8000',
|
target: 'http://localhost:8000',
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user