Commit Graph

48 Commits

Author SHA1 Message Date
zio
a836b79852 feat(account): my-page profile, password change and notification prefs (G-08)
AccountSettings endpoints (profile update, password change with current
-password check, notification preference toggles persisted via V55;
absent row = server defaults all-on). MyPage wires the settings UI.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 06:26:50 +09:00
zio
cf431a8809 feat(marketing): EDM real send with consent, unsubscribe and history (G-04)
Consent-filtered recipient resolution, SMTP send with test-mode ON by
default (EDM_TEST_MODE, campaign cap, per-minute rate), opaque
unsubscribe tokens with a public unsubscribe endpoint (no PII in
URLs/logs), and per-campaign send history via V53.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 06:26:32 +09:00
zio
0922e5660b feat(search): AI natural-language search over work data (grounded)
SearchAiService interprets the query via AiTextRouter and grounds
results on existing search providers; degraded fallback keeps plain
search working when AI is unavailable.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 06:26:31 +09:00
zio
ef7400632e feat(meeting): audio upload + STT + AI minutes generation (G-06)
Meeting recording upload (<=20MB, multipart cap raised to 25MB),
configurable on-prem whisper STT (empty URL = degraded fallback),
Claude-routed minutes generation with action-item drafts, transcript
persisted via V52 for re-generation. Frontend meeting page wires the
record->transcribe->minutes flow (shared workAiApi client).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 06:26:30 +09:00
zio
3c8058546e fix(ui): stop table/grid clipping — min-width:0 + overflow-x sweep
Root cause: flex/grid children default min-width:auto let wide tables
blow out their track instead of scrolling, and .kx-dash__table-wrap
clipped with overflow:hidden. Converge the fix on the canonical
wrappers (.kx-table-scroll, .kx-dt) plus four screens lacking a scroll
wrapper (dashboard, admin matrix, settlement modal/report, hallassign
quote).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 02:25:18 +09:00
zio
a3fdb62fc6 feat(shell): left-nav menu search (UIWS NavSearch pattern) + accordion alignment
Adds a menu search box above the nav (match-highlight, Escape/clear
restores the accordion, track/admin gates preserved). Single-open
accordion with route-driven active group confirmed per owner request.
i18n keys shell.menu.search.* added across ko/en/ja/zh.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 02:25:17 +09:00
zio
3860e7e88a fix(auth): rehydrate session store on refresh (empty workspaces broke event-scoped screens)
Token lives in sessionStorage but user/workspaces existed only in the
zustand store, so any full reload left workspaces=[] and every
event-scoped screen fell to 'select an event' with an empty selector.
RequireAuth now restores /api/auth/me + /api/auth/workspaces once when
authenticated with an empty store, and logs out on 401.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 02:25:17 +09:00
zio
ecc00f8739 fix(system): cast null-check params to ::text in SysMessageMapper (PG $2 type inference 500)
PostgreSQL cannot infer the type of a bare bind in '(? IS NULL OR col = ?)',
failing GET /api/admin/messages with BadSqlGrammarException. Cast the
null-check occurrence to ::text (findAll category/locale, delete locale).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 02:02:31 +09:00
zio
1d46da8398 fix(ticket): escape <= in TicketMapper.xml SELECTs (boot crash, stale-jar rollback)
Unescaped <= at findProducts/findProduct broke SqlSessionFactory XML
parsing, crashing every new jar at startup; deploy rolled back to the
pre-V50 jar, so V50/V51 never reached prod and the admin demo account
lost event membership again (floorplan menu fell back to /home).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 01:51:47 +09:00
zio
712d71d2cc docs: log AI-first session + stale deploy_server root cause (2026-07-14)
Records the AI feature slices, demo deck/sample-data registration,
Gemini free-tier quota blocker, and the confirmed CI/CD defect: a
3-day-old deploy_server.py process held port 9999 with pre-clean-build
kintex logic, shipping stale jars on two consecutive deploys. Fixed by
restarting zioinfo-deploy; jar-content verification added to the gate
checklist. This push also retriggers the pipeline on fresh code.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 01:16:22 +09:00
zio
5b76557c3b docs(demo): AI demo procedure deck + fix graphify hook path separators
10-slide PPTX (docs/demo/AI_DEMO_SCRIPT.pptx): env/accounts, 4 demo
flows with concrete input examples (NL auto-layout phrases, ReRoom
sample photo at /downloads/demo/sample_booth.jpg, NL-query/rules-chat
questions), pre-demo checklist (Gemini paid-tier action item) and
fallback troubleshooting. Hook commands in .claude/settings.json now
use forward slashes - backslashes were eaten by the sh hook runner.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 00:50:46 +09:00
zio
1e349aa319 fix(seed): give admin demo event memberships (scoped menu home-fallback)
Floorplan/dashboard scoped menu resolves the target event from the
user workspaces; admin had zero event_member rows so clicks silently
landed on /home (perceived broken link). Idempotent V51 enrolls admin
as ORGANIZER of e-2026-live and e-2026-smf.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 00:25:25 +09:00
zio
8943c806ee feat(ticket): public ticket booking/lookup domain with mock PG (GAP G-02)
V50 ticket_product/ticket_order/ticket_issue (tenant-leading composite
PK, e-2026-live demo seeds). Public API: product list with server-side
remaining/sale-window, transactional order flow with conditional stock
decrement (oversell-safe) + MockPaymentGateway adapter, hash-verified
lookup returning masked PII only. PublicTicketPage wired via
react-query (degraded sample fallback retained); ticket.* i18n x4.
Mark G-02 resolved in GAP_AUDIT.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 00:25:24 +09:00
zio
0f91dcf4ae feat(ai): ReRoomAI image-to-image booth photo restyling (M5 pipeline reuse)
Reference photo upload (magic-byte check, 10MB, server-named files) +
reroom render job on the existing RenderJob queue/callback/WS pipeline.
Worker gains R1 reroom mode: 4-part prompt with fixed preserve-lock
(architecture + camera perspective) and style dictionary (6 styles,
JSON single source); NL instruction injects into replace-part only.
Booth Design Studio gets a photo-mockup section with client 1024px
downscale, style cards and Before/After slider (watermark enforced).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 00:25:23 +09:00
zio
ba34abaafe feat(ai): natural-language auto-layout interpret + per-option AI summary (M2)
POST .../auto-generate/interpret parses NL conditions into a clamped
AutoLayoutRequest via AiTextRouter (Claude, injection-guarded JSON-only
prompt; degraded:true fallback keeps manual form authoritative).
auto-generate?ai=true attaches metric-grounded pros/cons per option
(generation never blocked by AI failure). AutoLayoutDialog gains an NL
input bar + interpreted-note + AI summary cards with WISE AI label.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 00:24:56 +09:00
zio
fe6757f00a docs(web): fix stale backend-not-implemented comments (GAP hygiene item)
auction/visitor/marketing sample data + cms.css headers now state the
real wiring status (live API primary, samples are degraded fallback
only; G-04 SMTP follow-up noted). Mark hygiene item resolved in
GAP_AUDIT.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 23:48:03 +09:00
zio
465ebd8e19 feat(web): apply KxDataTable to holiday/program/ruleset admin (screens 5-7)
Replace hand-rolled zebra tables with KxDataTable (sort/filter/CSV,
per-column control) on HolidayAdminPage, ProgramAdminPage and
RulesetVersionsPage. Manage columns excluded from CSV/sort/search;
empty states delegated to the table.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 23:47:37 +09:00
zio
9144186e8a fix(web): drop unused EmptyState import in TenantAdminPage (build break)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 23:47:23 +09:00
zio
a6098ef002 feat(web): wire TenantAdminPage to live tenant API (GAP G-01)
Replace hardcoded TENANTS array and disabled add button with live
GET/POST /api/admin/tenants via react-query: list states, create modal
(server-authoritative validation mirrored client-side), KxDataTable
search/sort/CSV. tenant.* i18n 17 keys x 4 locales (parity kept).
Mark G-01 resolved in GAP_AUDIT.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 23:25:35 +09:00
zio
6f2629e50c docs: log mobile APK build + QR distribution and deploy-gate lesson
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 06:43:52 +09:00
zio
1162dd0acc deploy: persist self-hosted APK downloads across atomic webroot swaps
EAS preview APK is staged at /opt/kintex/downloads and reinjected into the
web root during deploy, keeping /downloads/kintex.apk (QR install page) alive.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 06:41:34 +09:00
zio
d19b74207b feat(web): apply KxDataTable to common-code admin (4th screen, per-column control demo)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 05:38:57 +09:00
zio
2265789bdf docs: close out session log - all 5 priority items deployed and gated
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 05:33:27 +09:00
zio
9765c1ad40 docs: mark responsive sweep done in owner feedback log
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 05:31:32 +09:00
zio
39660772ab fix(web): full-bleed responsive sweep across all screens (task #39)
Normalize 13 custom page roots to the .kx-page canon (flex:1, min-width:0,
overflow-y:auto) fixing right-side dead space and bottom clipping inside the
shell content flexbox; add missing narrow-width breakpoints to settlement KPIs
and hall-assignment forms. No visual redesign - WISE shell and kx tokens intact.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 05:31:31 +09:00
zio
452398d941 docs: reconcile owner feedback log with deployed state (2026-07-13)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 05:16:36 +09:00
zio
7a117a018c fix(mobile): declare roleCode on AuthUser so admin/manager land on tabs home, not visitor tickets
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 05:16:35 +09:00
zio
ecf60aac1d feat(web): tabulator data table + breadcrumb/404 navigation + message-template admin
- KxDataTable: in-house tabulator features (sort/filter/pagination/CSV UTF-8 BOM)
  on canonical .kx-table; applied to exhibitors, lead scoring, visitor registration
- Breadcrumb in shell content top (menu-IA-aligned trails, detail->list return),
  NotFoundPage wired to router catch-all with role-aware home return
- MessageAdminPage (/admin/messages): V48 sys_message CRUD + {key} placeholder
  render preview, wired to shell menu / breadcrumb / MDI labels / admin dashboard
- i18n: datatable/breadcrumb/notFound/msg namespaces, ko-en-zh-ja parity kept

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 05:16:35 +09:00
zio
e67db2e773 merge: reconcile with server-side deploy snapshot 58aa844 (keep local tree)
Remote main was force-rewritten by the deploy pipeline into a single snapshot
commit built from local 0add2cd/490b723. Local HEAD supersedes it (deliverables
docs, icons.tsx, title-icon sweep, gitignore, solution-name fix), so this merge
keeps the local tree verbatim while preserving the remote commit in history.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 04:32:48 +09:00
zio
37aeebdd28 솔루션명 수정 2026-07-13 04:23:07 +09:00
GUARDiA
58aa8440d9 deploy: public header restore + accent white-text sweep + mobile v0.2.0 source (web 0add2cd/mobile 490b723 over f3b800f) 2026-07-13 00:31:51 +09:00
zio
277c895b47 chore: gitignore graphify-out and screenshot generated outputs
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-13 00:30:30 +09:00
zio
490b723a45 chore(mobile): v0.2.0 source snapshot for reproducibility
- app.json: version 0.2.0 / versionCode 2, drop expo-screen-capture plugin
- add lib/i18n (ko/en/ja/zh), lib/roleTrack, LanguageContext + LanguageSelector
- profile/security hardening across screens (login/register/forgot/profile/tabs)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-13 00:29:38 +09:00
zio
0add2cd417 fix(web): restore public header login + track-tab icons/tooltips, visitor CTA to /tickets/lookup, accent-button white-text sweep
- PublicShell: track tabs get icons + title tooltips (right-aligned), login link restored at >=768px
- VisitorTrackPage: wayfinding/checkin CTAs point to #guide/#transport//tickets/lookup instead of /login
- accent buttons: enforce --color-on-accent (white text) across approval/docs/home/movein/schedule/work/public

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-13 00:29:12 +09:00
zio
f3b800f9be fix(auth): grant global ADMIN hall-manager scope to resolve 403 on event-scoped APIs
KintexPrincipal.hasAccess/roleFor ignored global role_code=ADMIN, so
admin@ users got 403 on all event-scoped endpoints. Add isAdmin() and
treat ADMIN as hall-manager equivalent (all-event read + approve).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-13 00:15:25 +09:00
zio
c77cba7c5b feat(web): home calendar holiday markers + unify public header into single frame
- HomePage: wire fetchHolidaySet, is-holiday cell class + holiday name label
- home.css: is-holiday red daynum, kx-home__cal-holiday-name, neutral-100 grid lines
- PublicShell: absorb 3-track switcher into single top header (COEX 1-frame), drop dark topbar
- public.css: remove .kxp-topbar styles, tracktabs bar/menu variants

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 23:56:59 +09:00
zio
a5a78f1ea1 feat(web): exhibitor mgmt, Nifty detail views, app-download QR, settings customizer, home todos + i18n
- exhibitors: organizer exhibitor roster page + read-only backend (Controller/Service/@Mapper/dto), /exhibitors route
- detail views: Nifty blog-style .kx-detailview for auction & review-details (+shared.css)
- app download: AppQrCodePage visual/class hardening
- settings customizer: customizerStore + SettingsCustomizer panel (density/accent), AppShell gear wiring, menu-fallback removal
- home: todos aggregation (8 sources) HomePage/homeApi/HomeMapper/HomeService
- i18n: merge 112 new keys across ko/en/zh/ja (parity 0 missing)

No new migrations (read-only queries); Flyway stays at V49.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 23:36:02 +09:00
zio
55a3114141 feat(login): add password show/hide (eye) toggle on login form
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 22:31:34 +09:00
zio
7316cd99c5 feat(public): rotating 5-slide hero backdrop with real photos on public tracks
Add PublicHeroSlides cross-fade component (5 real JPGs) wired into
gateway/visitor/business/agency hero backdrops. Rotation handled by
usePublicMotion ([data-hero-slides], reduced-motion aware); .pub-hero__slides
layering + is-active transition in public.css. Graceful gradient fallback on
image load error.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 22:09:35 +09:00
zio
c595560d82 fix(system/message): avoid bean-name collision with existing work/message module
Existing com.zioinfo.kintex.work.message.{MessageController,MessageService,MessageMapper}
share default bean names with the new system/message beans, causing
ConflictingBeanDefinitionException at startup (health-check fail -> rollback).
- rename mapper interface MessageMapper -> SysMessageMapper (MyBatis bean name can't
  be overridden by annotation value)
- explicit bean names: @RestController("sysMessageController"), @Service("sysMessageService")
No request-path change (new: /api/admin/messages, /api/messages/{code}/render).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 21:51:24 +09:00
zio
276293ebe7 feat(system,ui): message-template admin (V48) + empty-table demo seed (V49) + Nifty design/token alignment & public card visuals
- system/message: sys_message template CRUD + {key} render API (ADMIN-gated, render for authed)
- V48: sys_message table + 36 seeded templates (9 codes x ko/en/zh/ja), idempotent upsert
- V49: backfill 12 empty domain tables (render_job, cms_media, logistics_*, mail_log,
  edm_followup, webhook_*, login_history, sys_role_menu, audit_log); idempotent guards.
  followup ON CONFLICT targets business key (event_id, lead_id) to skip pre-seeded rows
- frontend: Nifty token/typography sweep (--fs-*/--fw-*), public e-card 3:4 media + cover fit,
  footer copy update across ko/en/zh/ja

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 21:40:38 +09:00
zio
3077cb04f5 feat(public,settlement): coex-style public visuals + Nifty calendar + local poster assets + e-2026-live close-loop demo (V46,V47)
- public: motion hooks (usePublicMotion), gateway/track/shell visual refresh, stat-band white->on-accent contrast fix
- schedule: Nifty calendar restyle (neutral cell borders, today warning-bg)
- settlement: card padding fix
- i18n: +public visual keys (ko/en/zh/ja)
- backend: PublicEventDto.posterUrl (additive, non-breaking) via PublicSiteMapper/Service
- db: V46 rewires event.poster_url to local /media/posters assets (34 imgs); V47 seeds e-2026-live close-loop (invoice/payment/tax/refund, auction/bid/award, visitor/lead, edm/sponsorship)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 20:59:59 +09:00
zio
55e27b3309 fix(theme): white text on colored buttons/badges in dark mode (--color-on-accent)
Root cause: dark theme remaps --color-white to --dk-surface (a dark color),
so every 'color: var(--color-white)' on a colored background (primary/error/
success buttons, badges, chips, hero CTAs) rendered dark/invisible text in
dark mode (e.g. '등록 신청' blue button showed navy text).

Add always-white --color-on-accent token and repoint 77 text-color usages
across 28 files to it. Background/border usages of --color-white untouched
(they legitimately flip to dark surface). Full-CSS audit applied.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 20:34:30 +09:00
zio
87f310f40a fix(brand): replace Tomcat default favicon.ico with KINTEX-branded icon
Root cause of persistent Tomcat cat favicon: public/favicon.ico was the
Tomcat default (21630 bytes), shipped by every build; browsers prefer
/favicon.ico over the correct favicon.png. Regenerate favicon.ico from the
KINTEX wordmark PNG (multi-size 16/32/48/64) and bump cache-bust to v3.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 20:10:56 +09:00
zio
a2b2bd9110 feat(ui): add line shield-check icon to 2FA challenge panel
- icons.tsx: new IconShieldCheck (stroke/line, 24 viewBox standard)
- OtpChallengePanel: shield badge above 2차 인증 title (was icon-less/bare)
- login.css: .kx-otp__badge circular primary-tinted badge

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 20:05:01 +09:00
zio
6e95ac6273 fix(schedule,ui): mark holidays on mini-calendar + neutral cell borders; fix disabled CTA label contrast
- ExhibitionSchedulePage MiniCalendar: pass/receive holidays prop, apply
  is-holiday class + title/aria per date cell
- schedule.css: neutral-200 border on kx-cal cells; is-holiday cells in error color
- mobile.css: disabled CTA label neutral-500 (contrast fix)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-12 19:47:31 +09:00
GUARDiA
cf6a9a2171 chore(frontend): cache-bust favicon links to evict stale default icon 2026-07-12 19:28:53 +09:00
GUARDiA
6294627070 fix(schedule,ui): holidays on exhibition calendar, bilingual brand, neutral calendar borders 2026-07-12 19:16:48 +09:00