dify/web/app/components/step-by-step-tour
2026-07-29 11:58:14 +00:00
..
__tests__ refactor(web): clarify education state ownership (#39748) 2026-07-29 07:25:54 +00:00
analytics.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
coachmark.tsx chore: canonicalize Tailwind classes (#39762) 2026-07-29 11:58:14 +00:00
dropdown-menu.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
floating-widget.tsx chore: canonicalize Tailwind classes (#39762) 2026-07-29 11:58:14 +00:00
mount.tsx chore: canonicalize Tailwind classes (#39762) 2026-07-29 11:58:14 +00:00
README.md feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
state.ts refactor: centralize deployment edition in system features (#39454) 2026-07-24 07:15:02 +00:00
storage.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
target-registry.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
tasks.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
types.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
use-coachmark-position.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
use-target-rect.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00
use-tour-target.ts feat(web): add step-by-step tour shell (#38785) 2026-07-20 09:23:25 +00:00

Step-by-step Tour

This directory owns the cross-route Step-by-step Tour capability.

  • state.ts owns the server query graph, the in-memory tour session, and domain commands.
  • storage.ts owns only the persisted shell preference.
  • mount.tsx composes the checklist, coachmarks, navigation, and analytics.
  • Route consumers resolve only the guide branch and targets that depend on their page data.

Server state remains canonical in the TanStack Query cache. Components consume narrow derived atoms and write-only commands instead of a combined account-state facade.