feat(web): implement schedule editor in MaintenancePoliciesTab
CI / changes (push) Successful in 8s
CI / commitlint (push) Has been skipped
CI / openapi (push) Has been skipped
CI / web (push) Successful in 31s
CI / go (push) Successful in 51s
CI / bird2 (push) Successful in 15s
CI / release (push) Successful in 3m48s

Enhanced the MaintenancePoliciesTab by integrating a schedule editor for maintenance policies. Users can now select schedule modes, input custom cron expressions, and dynamically update the schedule preview. This update improves the user interface and experience for managing maintenance schedules.
This commit is contained in:
Denozordec
2026-06-12 18:40:22 +07:00
parent 132559cb8e
commit de64374c91
71 changed files with 15643 additions and 4 deletions
+38
View File
@@ -0,0 +1,38 @@
# Memory Bank: Tech Context
## Платформа разработки
- **OS:** Windows 10 (win32 10.0.26200)
- **Shell:** PowerShell
- **Пути:** `deploy\compose`, backslash на Windows
## Backend
- **Go:** 1.24 (`go.mod`)
- **БД:** PostgreSQL (prod), SQLite (modernc, тесты)
- **Миграции:** `migrations/postgres/`, `migrations/sqlite/` (пары .up/.down)
- **Метрики:** Prometheus (`/metrics`)
## Frontend
- **Svelte:** ^5.54 (runes: `$state`, `$derived`, `$effect`)
- **SvelteKit:** ^2.50
- **Vite:** ^7.3.1
- **UI:** shadcn-svelte, bits-ui, Tailwind v4
- **Проверки:** `npm run check`, `npm run lint` (обязательно после правок)
## CI (Gitea)
- `go`: vet, golangci-lint, test -race, build
- `web`: check + lint
- `openapi`: redocly lint
- `bird2`: `bird -p` на scenarios
## Локальные команды
```powershell
go vet ./...
go test ./... -race -count=1
cd web; npm run check; npm run lint
npx @redocly/cli lint docs/openapi.yaml
```