| import { useState, useEffect, type CSSProperties } from "react"; |
| import { Joyride, type Step, type EventData } from "react-joyride"; |
|
|
| const joyrideOptions = { |
| primaryColor: "var(--matcha-600)", |
| textColor: "var(--clay-black)", |
| backgroundColor: "var(--pure-white)", |
| arrowColor: "var(--pure-white)", |
| overlayColor: "rgba(0,0,0,0.4)", |
| }; |
|
|
| const joyrideStyles: Record<string, CSSProperties> = { |
| buttonBack: { color: "var(--warm-charcoal)", fontSize: "14px", fontWeight: 500 }, |
| buttonSkip: { color: "var(--warm-charcoal)", fontSize: "14px", fontWeight: 500 }, |
| tooltipContainer: { textAlign: "left" }, |
| tooltipContent: { fontSize: "14px", lineHeight: "1.6", padding: "8px 0" }, |
| tooltipTitle: { fontSize: "18px", fontWeight: 700, fontFamily: "Manrope, sans-serif" }, |
| }; |
|
|
| const joyrideLocale = { back: "Kembali", close: "Tutup", last: "Selesai", next: "Lanjut", skip: "Lewati" }; |
|
|
| export type { Step, EventData }; |
|
|
| |
|
|
| const LS_GLOBAL = "pram-tour-completed"; |
| const TRIGGER_GLOBAL = "pram-tour-trigger"; |
|
|
| const globalSteps: Step[] = [ |
| { target: "body", placement: "center", title: "Selamat Datang di Pram!", content: "Platform latihan ujian bahasa berbasis AI. Yuk, kita lihat fitur-fitur utamanya!", hideOverlay: true }, |
| { target: "[data-tour='dashboard-stats']", title: "Ringkasan Aktivitas", content: "Pantau jumlah latihan, waktu belajar, soal terjawab, dan akurasi kamu di sini.", spotlightPadding: 8 }, |
| { target: "[data-tour='nav-generate']", title: "AI Lab β Generate Soal", content: "Buat soal latihan sendiri pakai AI. Pilih jenis ujian, section, format, dan topik.", spotlightPadding: 4 }, |
| { target: "[data-tour='nav-bank']", title: "Bank Soal β Buat Paket", content: "Atur soal-soal kamu jadi paket latihan dari bank soal.", spotlightPadding: 4 }, |
| { target: "[data-tour='nav-packages']", title: "Paket Soal β Mulai Latihan", content: "Temukan paket soal dari komunitas atau buatan sendiri.", spotlightPadding: 4 }, |
| { target: "[data-tour='nav-analytics']", title: "Analytics β Evaluasi", content: "Lihat analitik mendalam: skor, tren, dan rekomendasi belajar.", spotlightPadding: 4 }, |
| { target: "body", placement: "center", title: "Siap Belajar?", content: "Setiap halaman punya panduan sendiri. Cari tombol ? di pojok kanan bawah halaman!", hideOverlay: true }, |
| ]; |
|
|
| export function TourGuideImpl() { |
| const [run, setRun] = useState(false); |
|
|
| useEffect(() => { |
| const onTrigger = () => { localStorage.removeItem(LS_GLOBAL); setRun(true); }; |
| window.addEventListener(TRIGGER_GLOBAL, onTrigger); |
|
|
| const completed = localStorage.getItem(LS_GLOBAL); |
| if (!completed) { |
| const timer = setTimeout(() => setRun(true), 800); |
| return () => { clearTimeout(timer); window.removeEventListener(TRIGGER_GLOBAL, onTrigger); }; |
| } |
|
|
| return () => window.removeEventListener(TRIGGER_GLOBAL, onTrigger); |
| }, []); |
|
|
| const handleEvent = (data: EventData) => { |
| const { action, status } = data; |
| if (status === "finished" || status === "skipped") { localStorage.setItem(LS_GLOBAL, "true"); setRun(false); } |
| if (action === "close" || action === "skip") setRun(false); |
| }; |
|
|
| return ( |
| <Joyride steps={globalSteps} run={run} continuous |
| options={{ ...joyrideOptions, showProgress: true, buttons: ["back", "primary", "skip"] }} |
| locale={joyrideLocale} styles={joyrideStyles} onEvent={handleEvent} |
| /> |
| ); |
| } |
|
|
| |
|
|
| interface PageTourProps { |
| storageKey: string; |
| steps: Step[]; |
| autoDelay?: number; |
| } |
|
|
| export function PageTourImpl({ storageKey, steps, autoDelay }: PageTourProps) { |
| const [run, setRun] = useState(false); |
|
|
| useEffect(() => { |
| const onTrigger = () => { localStorage.removeItem(storageKey); setRun(true); }; |
| window.addEventListener(storageKey, onTrigger); |
|
|
| const completed = localStorage.getItem(storageKey); |
| if (!completed && autoDelay !== undefined) { |
| const timer = setTimeout(() => setRun(true), autoDelay); |
| return () => { clearTimeout(timer); window.removeEventListener(storageKey, onTrigger); }; |
| } |
|
|
| return () => window.removeEventListener(storageKey, onTrigger); |
| }, []); |
|
|
| const handleEvent = (data: EventData) => { |
| const { action, status } = data; |
| if (status === "finished" || status === "skipped") { localStorage.setItem(storageKey, "true"); setRun(false); } |
| if (action === "close" || action === "skip") setRun(false); |
| }; |
|
|
| return ( |
| <Joyride steps={steps} run={run} continuous |
| options={{ ...joyrideOptions, showProgress: true, buttons: ["back", "primary", "skip"] }} |
| locale={joyrideLocale} styles={joyrideStyles} onEvent={handleEvent} |
| /> |
| ); |
| } |
|
|