@codeyam/codeyam-cli 0.1.29 → 0.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analyzer-template/.build-info.json +7 -7
- package/analyzer-template/log.txt +3 -3
- package/analyzer-template/package.json +1 -1
- package/analyzer-template/packages/aws/package.json +1 -1
- package/analyzer-template/packages/database/package.json +1 -1
- package/codeyam-cli/src/commands/__tests__/init.gitignore.test.js +39 -3
- package/codeyam-cli/src/commands/__tests__/init.gitignore.test.js.map +1 -1
- package/codeyam-cli/src/commands/editor.js +133 -0
- package/codeyam-cli/src/commands/editor.js.map +1 -1
- package/codeyam-cli/src/commands/init.js +20 -0
- package/codeyam-cli/src/commands/init.js.map +1 -1
- package/codeyam-cli/src/utils/__tests__/editorProxySession.test.js +98 -1
- package/codeyam-cli/src/utils/__tests__/editorProxySession.test.js.map +1 -1
- package/codeyam-cli/src/utils/__tests__/editorRoadmap.test.js +712 -2
- package/codeyam-cli/src/utils/__tests__/editorRoadmap.test.js.map +1 -1
- package/codeyam-cli/src/utils/__tests__/envFile.test.js +125 -0
- package/codeyam-cli/src/utils/__tests__/envFile.test.js.map +1 -0
- package/codeyam-cli/src/utils/__tests__/handoffContext.test.js +500 -0
- package/codeyam-cli/src/utils/__tests__/handoffContext.test.js.map +1 -0
- package/codeyam-cli/src/utils/editorRoadmap.js +290 -17
- package/codeyam-cli/src/utils/editorRoadmap.js.map +1 -1
- package/codeyam-cli/src/utils/envFile.js +90 -0
- package/codeyam-cli/src/utils/envFile.js.map +1 -0
- package/codeyam-cli/src/utils/handoffContext.js +257 -0
- package/codeyam-cli/src/utils/handoffContext.js.map +1 -0
- package/codeyam-cli/src/utils/install-skills.js +36 -6
- package/codeyam-cli/src/utils/install-skills.js.map +1 -1
- package/codeyam-cli/src/utils/techStackConfig.js +38 -0
- package/codeyam-cli/src/utils/techStackConfig.js.map +1 -0
- package/codeyam-cli/src/utils/techStackConfig.test.js +85 -0
- package/codeyam-cli/src/utils/techStackConfig.test.js.map +1 -0
- package/codeyam-cli/src/webserver/__tests__/buildPtyEnv.test.js +119 -1
- package/codeyam-cli/src/webserver/__tests__/buildPtyEnv.test.js.map +1 -1
- package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js +115 -0
- package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js.map +1 -1
- package/codeyam-cli/src/webserver/app/lib/database.js.map +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{MiniClaudeChat-BusrvT2F.js → MiniClaudeChat-Bs2_Oua4.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-database-verify-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-github-verify-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-handoff-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.editor-hosting-verify-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/editor.entity.(_sha)-DOXe0Qx7.js +161 -0
- package/codeyam-cli/src/webserver/build/client/assets/{entity._sha._-Ce1s4OQ1.js → entity._sha._-pc-vc6wO.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/globals-L-aUIeux.css +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/manifest-30c44d84.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/{root-CVjDQwjJ.js → root-CLedrjXQ.js} +7 -7
- package/codeyam-cli/src/webserver/build/server/assets/{analysisRunner-CTJYMVFP.js → analysisRunner-CuR5TvUx.js} +1 -1
- package/codeyam-cli/src/webserver/build/server/assets/{index-CCth4Hgw.js → index-D4MWAsqb.js} +1 -1
- package/codeyam-cli/src/webserver/build/server/assets/init-JObA4lXD.js +14 -0
- package/codeyam-cli/src/webserver/build/server/assets/server-build-i8OXK4oL.js +765 -0
- package/codeyam-cli/src/webserver/build/server/index.js +1 -1
- package/codeyam-cli/src/webserver/build-info.json +5 -5
- package/codeyam-cli/src/webserver/editorProxy.js +77 -4
- package/codeyam-cli/src/webserver/editorProxy.js.map +1 -1
- package/codeyam-cli/src/webserver/terminalServer.js +81 -11
- package/codeyam-cli/src/webserver/terminalServer.js.map +1 -1
- package/codeyam-cli/templates/codeyam-editor-codex.md +61 -0
- package/codeyam-cli/templates/codeyam-editor-gemini.md +59 -0
- package/codeyam-cli/templates/nextjs-prisma-sqlite/gitignore +1 -0
- package/codeyam-cli/templates/seed-adapters/supabase.ts +185 -84
- package/package.json +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/editor.entity.(_sha)-785deXbZ.js +0 -147
- package/codeyam-cli/src/webserver/build/client/assets/globals-Bt7TsgQz.css +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/manifest-3d8cde80.js +0 -1
- package/codeyam-cli/src/webserver/build/server/assets/init-UXl-3vVp.js +0 -10
- package/codeyam-cli/src/webserver/build/server/assets/server-build-DSW2mE30.js +0 -741
|
@@ -1,741 +0,0 @@
|
|
|
1
|
-
var Kp=Object.defineProperty;var fl=e=>{throw TypeError(e)};var Gp=(e,t,r)=>t in e?Kp(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r;var ht=(e,t,r)=>Gp(e,typeof t!="symbol"?t+"":t,r),qp=(e,t,r)=>t.has(e)||fl("Cannot "+r);var gl=(e,t,r)=>(qp(e,t,"read from private field"),r?r.call(e):t.get(e)),yl=(e,t,r)=>t.has(e)?fl("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,r);import{jsx as n,jsxs as d,Fragment as we}from"react/jsx-runtime";import{PassThrough as Qp}from"node:stream";import{createReadableStreamFromReadable as Zp}from"@react-router/node";import{ServerRouter as Xp,useFetcher as Ge,useLocation as Jr,useNavigate as Ft,Link as ke,UNSAFE_withComponentProps as et,Meta as eh,Links as th,ScrollRestoration as nh,Scripts as rh,UNSAFE_withErrorBoundaryProps as sh,useRouteError as ah,isRouteErrorResponse as Ua,useLoaderData as ot,useRevalidator as Dt,Outlet as ed,data as ne,useSearchParams as or,useRouteLoaderData as td,useParams as nd,useActionData as oh,redirect as ih}from"react-router";import{isbot as lh}from"isbot";import{renderToPipeableStream as ch}from"react-dom/server";import{useState as j,useEffect as te,useCallback as ae,createContext as zo,useContext as Zs,useRef as ye,useMemo as le,forwardRef as dh,useImperativeHandle as uh,Component as ph}from"react";import{Settings as xl,CheckCircle2 as Bo,Bug as rd,AlertTriangle as Ds,Check as _t,Copy as $t,Loader2 as Mt,PencilRuler as hh,HomeIcon as mh,GitCommitIcon as bl,File as fh,RefreshCw as gh,BookOpen as Rs,FlaskConical as yh,SettingsIcon as xh,PanelsTopLeftIcon as bh,ComponentIcon as vh,FileText as vl,Code as wl,Box as wh,List as Nh,BarChart3 as Sh,Tag as Ch,Image as Lr,Code2 as sd,Activity as Wa,ChevronDown as Ct,CircleEqual as kh,ArrowLeft as _h,Terminal as Os,Search as Hr,ChevronLeft as Eh,ChevronRight as dn,Save as Ah,MessageSquare as jh,Pause as ad,ListTodo as Ph,PauseCircle as Th,FileCode as Ls,GripVertical as Mh,Ban as $h,CheckCircle as Ih,FolderOpen as Fh,CodeXml as Dh,Zap as Rh,Pencil as Oh,Trash2 as Lh,X as ir,Folder as od,Info as xo,Plus as Yo,Eye as zh,FolderTree as Bh,ChevronsUpDown as id,ChevronsDownUp as ld}from"lucide-react";import"fetch-retry";import Yh from"better-sqlite3";import{Pool as Uh}from"pg";import*as G from"fs";import pe,{existsSync as St,readdirSync as Wh,rmSync as Ja,readFileSync as Nl}from"fs";import*as H from"path";import ee,{join as zr}from"path";import{OperationNodeTransformer as Jh,sql as mt,Kysely as cd,ParseJSONResultsPlugin as Hh,SqliteDialect as Vh,PostgresDialect as Kh}from"kysely";import*as Gh from"kysely/helpers/sqlite";import*as qh from"kysely/helpers/postgres";import Ze from"typescript";import*as je from"fs/promises";import Pe,{writeFile as Mr,readFile as bo,mkdir as Qh}from"fs/promises";import*as Xs from"os";import vo,{homedir as Zh}from"os";import Xh from"prompts";import zs from"chalk";import*as Uo from"crypto";import lr,{randomUUID as Wo,createHmac as em}from"crypto";import{execSync as De,spawn as xt,exec as Jo}from"child_process";import{fileURLToPath as ea}from"url";import{promisify as Ho}from"util";import tm from"dotenv";import nm,{EventEmitter as Vr}from"events";import{v4 as rm}from"uuid";import Vo from"http";import dd from"net";import{WebSocket as Ko}from"ws";import"node-pty";import sm from"openai";import am from"p-queue";import Sl from"p-retry";import{DynamoDBClient as ta,PutItemCommand as om}from"@aws-sdk/client-dynamodb";import{LRUCache as Go}from"lru-cache";import"pluralize";import"piscina";import im from"json5";import{marshall as lm}from"@aws-sdk/util-dynamodb";import cm from"v8";import{Prism as dm}from"react-syntax-highlighter";import{vscDarkPlus as um}from"react-syntax-highlighter/dist/cjs/styles/prism/index.js";import{randomUUID as pm}from"node:crypto";import{minimatch as wo}from"minimatch";import hm from"react-markdown";import mm from"remark-gfm";import fm from"react-diff-viewer-continued";const ud=5e3;function gm(e,t,r,s,a){return e.method.toUpperCase()==="HEAD"?new Response(null,{status:t,headers:r}):new Promise((o,i)=>{let l=!1,c=e.headers.get("user-agent"),u=c&&lh(c)||s.isSpaMode?"onAllReady":"onShellReady",p=setTimeout(()=>m(),ud+1e3);const{pipe:h,abort:m}=ch(n(Xp,{context:s,url:e.url}),{[u](){l=!0;const f=new Qp({final(g){clearTimeout(p),p=void 0,g()}}),y=Zp(f);r.set("Content-Type","text/html"),h(f),o(new Response(y,{headers:r,status:t}))},onShellError(f){i(f)},onError(f){t=500,l&&console.error(f)}})})}const ym=Object.freeze(Object.defineProperty({__proto__:null,default:gm,streamTimeout:ud},Symbol.toStringTag,{value:"Module"})),xm=2e3,bm=5e3;function vm(e){return e.startsWith("/editor")?bm:xm}function wm(e){const{now:t,lastRevalidation:r,throttleMs:s}=e;if(r===0)return"immediate";const a=t-r;return a>=s?"immediate":{action:"deferred",delayMs:s-a}}function Nm({id:e,selected:t,onClick:r,icon:s,name:a}){const[o,i]=j(!1);te(()=>{i(!0)},[]);const l=ae(()=>{r==null||r(e)},[r,e]);return d("button",{className:`
|
|
2
|
-
w-full px-1.5 py-2 cursor-pointer focus:outline-none
|
|
3
|
-
flex flex-col items-center justify-center gap-1 transition-colors
|
|
4
|
-
${t?"text-[#CBF3FA]":"text-[#568B94] hover:text-[#CBF3FA]"}
|
|
5
|
-
`,onClick:l,children:[n("div",{className:`${t?"bg-[#CBF3FA] text-[#022A35]":""} w-9 h-9 rounded-lg flex items-center justify-center transition-colors`,children:o&&s}),n("span",{className:`text-[10px] font-normal text-center leading-tight ${t?"text-[#CBF3FA]":""}`,style:t?{color:"#CBF3FA !important"}:void 0,children:a})]})}const na="/assets/cy-logo-cli-DoA97ML3.svg";function Sm(e){return e.scenarioName&&e.entityName?`${e.entityName} → "${e.scenarioName}"`:e.entityName?e.entityName:e.scenarioId?`Scenario: ${e.scenarioId.slice(0,8)}...`:e.entitySha?`Entity: ${e.entitySha.slice(0,8)}...`:"General feedback"}function Cm({content:e,className:t=""}){const[r,s]=j(!1),a=ae(()=>{navigator.clipboard.writeText(e).then(()=>{s(!0),setTimeout(()=>s(!1),2e3)}).catch(o=>{console.error("Failed to copy:",o)})},[e]);return n("button",{onClick:a,className:`cursor-pointer flex items-center gap-1 ${t}`,disabled:r,"aria-label":r?"Copied to clipboard":"Copy to clipboard",children:r?d(we,{children:[n(_t,{size:14}),"Copied"]}):d(we,{children:[n($t,{size:14}),"Copy"]})})}function pd({isOpen:e,onClose:t,context:r,defaultEmail:s="",screenshotDataUrl:a}){const[o,i]=j(""),[l,c]=j(s),[u,p]=j(!1),[h,m]=j(!1),[f,y]=j(null),[g,x]=j(null),b=Ge(),v=b.state!=="idle",S=!!(r.scenarioId||r.analysisId),w=r.analysisId||r.scenarioId||"",C=()=>{const _=`/codeyam-diagnose ${w}`;return o.trim()?`${_} ${o.trim()}`:_};if(b.data&&!h&&!g){const _=b.data;_.success&&_.reportId?(m(!0),y(_.reportId)):_.error&&x(_.error)}const k=async()=>{x(null);const _=new FormData;if(_.append("issueType","other"),_.append("description",o),_.append("email",l),_.append("source",r.source),_.append("entitySha",r.entitySha||""),_.append("scenarioId",r.scenarioId||""),_.append("analysisId",r.analysisId||""),_.append("currentUrl",r.currentUrl),_.append("entityName",r.entityName||""),_.append("entityType",r.entityType||""),_.append("scenarioName",r.scenarioName||""),_.append("errorMessage",r.errorMessage||""),a)try{const $=await(await fetch(a)).blob();_.append("screenshot",$,"screenshot.jpg")}catch(M){console.error("Failed to convert screenshot:",M)}b.submit(_,{method:"post",action:"/api/generate-report",encType:"multipart/form-data"})},N=()=>{i(""),p(!1),m(!1),y(null),x(null),t()},A=_=>{_.key==="Escape"&&N()};return e?n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",onKeyDown:A,children:d("div",{className:"bg-white rounded-lg max-w-lg w-full p-6 shadow-xl max-h-[90vh] overflow-y-auto",children:[d("div",{className:"flex items-center justify-between mb-6",children:[d("div",{className:"flex items-center gap-3",children:[v?n("div",{className:"animate-spin",children:n(xl,{size:24,style:{strokeWidth:1.5}})}):h?n(Bo,{size:24,style:{color:"#10B981",strokeWidth:1.5}}):n(rd,{size:24,style:{color:"#005C75",strokeWidth:1.5}}),n("h2",{className:"text-xl font-semibold text-gray-900",children:h?"Report Submitted":"Report Issue"})]}),n("button",{onClick:N,className:"text-gray-400 hover:text-gray-600 transition-colors cursor-pointer","aria-label":"Close",children:n("svg",{className:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]}),h?d("div",{children:[d("div",{className:"mb-6 p-4 bg-green-50 rounded-lg border border-green-200",children:[n("p",{className:"text-sm text-green-800 font-medium mb-1",children:"Thank you for your feedback!"}),d("p",{className:"text-xs text-green-700",children:["Report ID:"," ",n("code",{className:"bg-green-100 px-1 rounded",children:f})]})]}),n("p",{className:"text-sm text-gray-600 mb-6",children:"The CodeYam team will investigate and may reach out if you provided an email address."}),n("div",{className:"flex justify-end",children:n("button",{onClick:N,className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] transition-colors cursor-pointer",children:"Done"})})]}):d("div",{children:[d("div",{className:"mb-4 p-3 bg-gray-50 rounded-lg border border-gray-200",children:[d("div",{className:"flex items-center justify-between",children:[n("div",{className:"text-sm font-medium text-gray-900",title:`${r.source}${r.entitySha?` • Entity: ${r.entitySha}`:""}${r.scenarioId?` • Scenario: ${r.scenarioId}`:""}${r.analysisId?` • Analysis: ${r.analysisId}`:""}`,children:Sm(r)}),n("button",{type:"button",onClick:()=>p(!u),className:"text-xs text-gray-500 hover:text-gray-700 underline cursor-pointer",children:u?"Hide":"Details"})]}),u&&d("div",{className:"mt-2 pt-2 border-t border-gray-200 text-xs text-gray-600 space-y-1 break-all",children:[d("div",{children:[n("span",{className:"text-gray-400",children:"Source:"})," ",r.source]}),d("div",{children:[n("span",{className:"text-gray-400",children:"URL:"})," ",r.currentUrl]}),r.entitySha&&d("div",{children:[n("span",{className:"text-gray-400",children:"Entity:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.entitySha})]}),r.scenarioId&&d("div",{children:[n("span",{className:"text-gray-400",children:"Scenario:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.scenarioId})]}),r.analysisId&&d("div",{children:[n("span",{className:"text-gray-400",children:"Analysis:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.analysisId})]})]})]}),a&&d("div",{className:"mb-4 p-3 bg-gray-50 rounded-lg border border-gray-200",children:[n("div",{className:"text-xs text-gray-500 mb-2",children:"Screenshot (will be included in report)"}),n("img",{src:a,alt:"Page screenshot",className:"w-full max-h-[150px] object-contain rounded border border-gray-300"})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"description",className:"block text-sm font-medium text-gray-700 mb-2",children:"What happened?"}),n("textarea",{id:"description",value:o,onChange:_=>i(_.target.value),placeholder:"Optional: Describe what you expected vs what happened...",rows:3,className:"w-full px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75] resize-none"})]}),S&&d(we,{children:[d("div",{className:"mb-4 p-4 bg-purple-50 rounded-lg border border-purple-200",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n("span",{className:"text-lg",children:"🔧"}),n("h3",{className:"text-sm font-semibold text-purple-900",children:"Diagnose & Fix (Recommended)"})]}),n("p",{className:"text-xs text-purple-700 mb-3",children:"Run this command in Claude Code to investigate the issue locally and potentially fix it. A detailed report will also be uploaded."}),d("div",{className:"relative",children:[n("div",{className:"bg-gray-800 text-gray-50 px-3 py-2.5 pr-20 rounded-md text-xs font-mono overflow-x-auto whitespace-nowrap",children:C()}),n(Cm,{content:C(),className:"absolute top-1.5 right-2 px-2 py-1 bg-purple-600 text-white border-none rounded text-[11px] font-medium hover:bg-purple-700 transition-colors"})]})]}),d("div",{className:"relative my-5",children:[n("div",{className:"absolute inset-0 flex items-center",children:n("div",{className:"w-full border-t border-gray-300"})}),n("div",{className:"relative flex justify-center",children:n("span",{className:"bg-white px-3 text-xs text-gray-500 uppercase",children:"or"})})]})]}),d("div",{className:S?"opacity-75":"",children:[S&&d("div",{className:"flex items-center gap-2 mb-3",children:[n("span",{className:"text-lg",children:"📤"}),n("h3",{className:"text-sm font-semibold text-gray-700",children:"Quick Report"}),n("span",{className:"text-xs text-gray-500",children:"(won't investigate locally)"})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"email",className:"block text-sm font-medium text-gray-700 mb-2",children:"Your email"}),n("input",{id:"email",type:"email",value:l,onChange:_=>c(_.target.value),placeholder:"you@example.com",className:"w-full px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"})]}),d("div",{className:"mb-4 p-3 bg-amber-50 rounded-lg border border-amber-200 flex gap-2",children:[n(Ds,{size:16,className:"flex-shrink-0 mt-0.5",style:{color:"#D97706"}}),d("div",{className:"text-xs text-amber-800",children:[n("p",{className:"font-medium mb-1",children:"Source code will be uploaded"}),n("p",{children:"This report includes your project source code, git history, and CodeYam logs. Only submit if you're comfortable sharing this with the CodeYam team."})]})]}),v&&n("div",{className:"mb-4 text-center",children:n("p",{className:"text-sm text-gray-600",children:b.formData?"Uploading report...":"Creating archive..."})}),g&&d("div",{className:"mb-4 p-3 bg-red-50 rounded-lg border border-red-200 flex gap-2",children:[n(Ds,{size:16,className:"flex-shrink-0 mt-0.5",style:{color:"#DC2626"}}),d("div",{className:"text-xs text-red-800",children:[n("p",{className:"font-medium mb-1",children:"Upload failed"}),n("p",{children:g})]})]}),d("div",{className:"flex gap-3 justify-end",children:[n("button",{onClick:N,disabled:v,className:"px-4 py-2 bg-gray-100 text-gray-700 text-sm font-medium rounded-md hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-gray-300 transition-colors disabled:opacity-50 cursor-pointer",children:"Cancel"}),n("button",{onClick:()=>void k(),disabled:v,className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 transition-colors disabled:bg-gray-300 disabled:cursor-not-allowed flex items-center gap-2 cursor-pointer",children:v?d(we,{children:[n("div",{className:"animate-spin",children:n(xl,{size:16,style:{strokeWidth:1.5}})}),"Submitting..."]}):g?"Try Again":"Submit Report"})]})]})]})]})}):null}const Cl={source:"navbar"},qo=zo(void 0);function km({children:e}){const[t,r]=j(Cl),s=ae(o=>{r(o)},[]),a=ae(()=>{r(Cl)},[]);return n(qo.Provider,{value:{contextData:t,setContextData:s,resetContextData:a},children:e})}function Rt(e){const t=Zs(qo),r=ye(t);te(()=>{if(r.current)return r.current.setContextData(e),()=>{var s;(s=r.current)==null||s.resetContextData()}},[e.source,e.entitySha,e.scenarioId,e.analysisId,e.entityName,e.entityType,e.scenarioName,e.errorMessage])}function _m(){const e=Zs(qo),t=Jr();return e?{source:e.contextData.source,entitySha:e.contextData.entitySha,scenarioId:e.contextData.scenarioId,analysisId:e.contextData.analysisId,currentUrl:t.pathname,entityName:e.contextData.entityName,entityType:e.contextData.entityType,scenarioName:e.contextData.scenarioName,errorMessage:e.contextData.errorMessage}:{source:"navbar",currentUrl:t.pathname}}function Em({labs:e,isAdmin:t,editorMode:r}){var k;const s=Jr(),a=Ft(),[o,i]=j(),[l,c]=j(!1),[u,p]=j(!1),[h,m]=j(null),f=Ge();te(()=>{f.state==="idle"&&!f.data&&f.load("/api/generate-report")},[f]);const y=((k=f.data)==null?void 0:k.defaultEmail)||"",g={width:"20px",height:"20px",strokeWidth:1.5},x=(e==null?void 0:e.simulations)??!1,b=[{id:"editor",icon:n(hh,{style:g}),link:"/editor",name:"Editor",hidden:!r,newTab:!0},{id:"dashboard",icon:n(mh,{style:g}),link:"/",name:"Dashboard",hidden:!x||r},{id:"simulations",icon:d("svg",{width:"20",height:"20",viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:g,children:[n("path",{d:"M9 12.75V15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6 15.75H12",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6.75 12.7498L11.325 8.17483C11.6067 7.89873 11.9858 7.7447 12.3803 7.7461C12.7747 7.74751 13.1528 7.90423 13.4325 8.18233L16.5 11.2498",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6 8.25C6.82843 8.25 7.5 7.57843 7.5 6.75C7.5 5.92157 6.82843 5.25 6 5.25C5.17157 5.25 4.5 5.92157 4.5 6.75C4.5 7.57843 5.17157 8.25 6 8.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M15 2.25H3C2.17157 2.25 1.5 2.92157 1.5 3.75V11.25C1.5 12.0784 2.17157 12.75 3 12.75H15C15.8284 12.75 16.5 12.0784 16.5 11.25V3.75C16.5 2.92157 15.8284 2.25 15 2.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})]}),link:"/simulations",name:"Simulations",hidden:!x||r},{id:"git",icon:n(bl,{style:g}),link:"/git",name:"Git",hidden:!x||r},{id:"files",icon:n(fh,{style:g}),link:"/files",name:"Files",hidden:!x||r},{id:"activity",icon:n(gh,{style:g}),link:"/activity",name:"Activity",hidden:!x||r},{id:"memory",icon:n(Rs,{style:g}),link:"/memory",name:"Memory"},{id:"labs",icon:n(yh,{style:g}),link:"/labs",name:"Labs"},{id:"settings",icon:n(xh,{style:g}),link:"/settings",name:"Settings"},{id:"commits",icon:n(bl,{style:g}),link:"/commits",name:"Commits",hidden:!0},{id:"pages",icon:n(bh,{style:g}),link:"/pages",name:"Pages",hidden:!0},{id:"components",icon:n(vh,{style:g}),link:"/components",name:"Components",hidden:!0}],v=ae(N=>{const A=b.find(_=>_.id===N);A!=null&&A.link&&(A.newTab?window.open(A.link,"_blank"):a(A.link)),i(_=>_===N?void 0:N)},[b,a]);te(()=>{const N={editor:["editor"],dashboard:["/","/home"],git:["git"],commits:["commits"],simulations:["simulations"],activity:["activity"],memory:["memory","agent-transcripts"],files:["files"],labs:["labs"],settings:["settings"],pages:["pages"],components:["components"]};for(const[A,_]of Object.entries(N))if(_.some(M=>M==="/"?s.pathname==="/":s.pathname.includes(M))){i(A);return}i(void 0)},[s]);const S=async()=>{p(!0);try{const{default:N}=await import("html2canvas-pro"),_=(await N(document.body)).toDataURL("image/jpeg",.8);m(_),c(!0)}catch(N){console.error("Screenshot capture failed:",N),c(!0)}finally{p(!1)}},w=()=>{c(!1),m(null)},C=_m();return d(we,{children:[d("div",{id:"sidebar",className:"sticky top-0 w-full h-screen bg-[#051C22] flex flex-col justify-between py-3",children:[d("div",{className:"w-full flex flex-col items-center",children:[n("div",{className:"py-3 mt-2 mb-4",children:n(ke,{to:"/",className:"flex items-center justify-center cursor-pointer",children:n("img",{src:na,alt:"CodeYam",className:"h-6"})})}),b.filter(N=>!N.hidden).map(N=>n(Nm,{id:N.id,selected:N.id===o,onClick:v,icon:N.icon,name:N.name},`sidebar-button-${N.id}`))]}),t&&n("div",{className:"w-full flex flex-col items-center pb-2",children:d("button",{onClick:()=>void S(),disabled:u,className:"w-full px-1.5 py-2 flex flex-col items-center justify-center gap-1 text-[#568B94] hover:text-[#CBF3FA] transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-wait",children:[n("div",{className:"w-9 h-9 rounded-lg flex items-center justify-center",children:u?n(Mt,{style:{width:"20px",height:"20px",strokeWidth:1.5},className:"animate-spin"}):n(rd,{style:{width:"20px",height:"20px",strokeWidth:1.5}})}),n("span",{className:"text-[9px] font-normal text-center leading-tight whitespace-pre-line",children:u?"Capturing...":`Report
|
|
6
|
-
Bug`})]})})]}),l&&n(pd,{isOpen:!0,onClose:w,context:C,defaultEmail:y,screenshotDataUrl:h??void 0})]})}const hd=zo(void 0);function Am({children:e}){const[t,r]=j([]),s=ae((o,i="info",l=5e3)=>{const u={id:`toast-${Date.now()}-${Math.random()}`,message:o,type:i,duration:l};r(p=>[...p,u])},[]),a=ae(o=>{r(i=>i.filter(l=>l.id!==o))},[]);return n(hd.Provider,{value:{toasts:t,showToast:s,closeToast:a},children:e})}function Qo(){const e=Zs(hd);if(!e)throw new Error("useToast must be used within a ToastProvider");return e}function jm({toast:e,onClose:t}){te(()=>{const a=e.duration||5e3;if(a>0){const o=setTimeout(()=>{t(e.id)},a);return()=>clearTimeout(o)}},[e.id,e.duration,t]);const r={success:"✅",error:"❌",info:"ℹ️",warning:"⚠️"};return d("div",{className:`flex items-center gap-3 px-4 py-3 rounded-lg border-2 shadow-lg min-w-[320px] max-w-[500px] animate-[slideIn_0.3s_ease-out] ${{success:"bg-emerald-50 border-emerald-200 text-emerald-900",error:"bg-red-50 border-red-200 text-red-900",info:"bg-blue-50 border-blue-200 text-blue-900",warning:"bg-amber-50 border-amber-200 text-amber-900"}[e.type]}`,children:[n("span",{className:"text-2xl",children:r[e.type]}),n("p",{className:"flex-1 text-sm font-medium m-0",children:e.message}),n("button",{onClick:()=>t(e.id),className:"text-gray-500 hover:text-gray-700 text-xl leading-none bg-transparent border-none cursor-pointer p-0 w-6 h-6 flex items-center justify-center rounded transition-colors hover:bg-black/10",children:"×"})]})}function Pm({toasts:e,onClose:t}){return e.length===0?null:d("div",{className:"fixed top-4 right-4 z-10000 flex flex-col gap-2",children:[n("style",{children:`
|
|
7
|
-
@keyframes slideIn {
|
|
8
|
-
from {
|
|
9
|
-
transform: translateX(400px);
|
|
10
|
-
opacity: 0;
|
|
11
|
-
}
|
|
12
|
-
to {
|
|
13
|
-
transform: translateX(0);
|
|
14
|
-
opacity: 1;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
`}),e.map(r=>n(jm,{toast:r,onClose:t},r.id))]})}function Wt(e,t){const[r,s]=j(""),[a,o]=j(!1),[i,l]=j(null),[c,u]=j(null),[p,h]=j(!1);te(()=>{t&&(h(!1),o(!1),l(null),u(null))},[t]),te(()=>{if(!e||!t){t||s("");return}const f=async()=>{if(!p)try{const g=await fetch(`/api/logs/${e}`);if(g.ok){const b=(await g.text()).trim().split(`
|
|
18
|
-
`).filter(C=>C.length>0);if(b.length<3){o(!1),h(!1),l(null),u(null),s("");return}const v=b.filter(C=>C.includes("CodeYam Log Level 1"));if(v.length>0){const C=v[v.length-1];s(C.replace(/.*CodeYam Log Level 1: /,""))}const S=b.find(C=>C.includes("$$INTERACTIVE_SERVER_URL$$:"));if(S){const C=S.split("$$INTERACTIVE_SERVER_URL$$:")[1].trim();l(C),h(!0)}const w=b.find(C=>C.includes("$$INTERACTIVE_SCENARIO_URLS$$:"));if(w)try{const C=w.split("$$INTERACTIVE_SCENARIO_URLS$$:")[1].trim();u(JSON.parse(C))}catch{}b.some(C=>C.includes("CodeYam: Exiting start.js"))&&o(!0)}}catch{}};f().catch(()=>{});const y=setInterval(()=>{f().catch(()=>{})},500);return()=>clearInterval(y)},[e,t,p]);const m=ae(()=>{s(""),o(!1),l(null),u(null),h(!1)},[]);return{lastLine:r,interactiveUrl:i,scenarioUrlMap:c,isCompleted:a,resetLogs:m}}function an({projectSlug:e,onClose:t}){const[r,s]=j("Loading logs..."),[a,o]=j(!0),[i,l]=j(!0),[c,u]=j("all"),p=ye(null);return te(()=>{const h=async()=>{try{const m=await fetch(`/api/logs/${e}`);if(m.ok){const f=await m.text();if(c==="all")s(f);else{const y=f.trim().split(`
|
|
19
|
-
`).filter(g=>{if(g.length===0)return!1;const x=g.match(/^.*CodeYam Log Level (\d+):/);return!!x&&Number(x[1])<=c});s(y.map(g=>g.replace(/^.*CodeYam Log Level \d+:\s*/,"")).join(`
|
|
20
|
-
`))}i&&p.current&&setTimeout(()=>{var y;(y=p.current)==null||y.scrollTo({top:p.current.scrollHeight,behavior:"smooth"})},100)}else s(`Error: ${m.status} - ${await m.text()}`)}catch(m){s(`Error fetching logs: ${m.message}`)}};if(h().catch(()=>{}),a){const m=setInterval(()=>{h().catch(()=>{})},2e3);return()=>clearInterval(m)}},[e,a,i,c]),te(()=>{const h=m=>{m.key==="Escape"&&t()};return window.addEventListener("keydown",h),()=>window.removeEventListener("keydown",h)},[t]),n("div",{className:"fixed inset-0 bg-black/70 flex items-center justify-center z-9999 p-5",onClick:t,children:d("div",{className:"bg-[#1e1e1e] rounded-lg shadow-2xl flex flex-col max-w-[1200px] w-full max-h-[90vh] overflow-hidden",onClick:h=>h.stopPropagation(),children:[d("div",{className:"flex justify-between items-center px-5 py-4 border-b border-[#333] bg-[#252525]",children:[d("h3",{className:"m-0 text-lg font-semibold text-white",children:["Analysis Logs - ",e]}),d("div",{className:"flex items-center gap-4",children:[d("label",{className:"flex items-center gap-2 text-sm text-[#ccc] select-none",children:[n("span",{children:"Log Level:"}),d("select",{value:c,onChange:h=>u(h.target.value==="all"?"all":Number(h.target.value)),className:"bg-[#333] text-white border border-[#555] rounded px-2 py-1 text-sm cursor-pointer outline-none transition-all hover:border-[#777] hover:bg-[#3a3a3a] focus:border-blue-600",children:[n("option",{value:"1",children:"1"}),n("option",{value:"2",children:"2"}),n("option",{value:"3",children:"3"}),n("option",{value:"4",children:"4"}),n("option",{value:"all",children:"All"})]})]}),d("label",{className:"flex items-center gap-1.5 text-sm text-[#ccc] cursor-pointer select-none group",children:[n("input",{type:"checkbox",checked:a,onChange:h=>o(h.target.checked),className:"cursor-pointer"}),n("span",{className:"group-hover:text-white",children:"Auto-refresh"})]}),d("label",{className:"flex items-center gap-1.5 text-sm text-[#ccc] cursor-pointer select-none group",children:[n("input",{type:"checkbox",checked:i,onChange:h=>l(h.target.checked),className:"cursor-pointer"}),n("span",{className:"group-hover:text-white",children:"Auto-scroll"})]}),n("button",{onClick:t,className:"bg-transparent border-none text-[#999] text-2xl cursor-pointer p-0 w-8 h-8 flex items-center justify-center rounded transition-all hover:bg-[#333] hover:text-white",title:"Close (Esc)",children:"✕"})]})]}),n("pre",{className:"flex-1 m-0 px-5 py-4 overflow-auto font-mono text-[13px] leading-relaxed text-[#d4d4d4] bg-[#1e1e1e] whitespace-pre-wrap wrap-break-word scrollbar-thin scrollbar-thumb-[#424242] scrollbar-track-[#1e1e1e] hover:scrollbar-thumb-[#4f4f4f]",ref:p,children:r})]})})}function gt({type:e,size:t="default"}){const r={visual:{iconColor:"#7c3aed",bgColor:"bg-purple-100",bgHex:"#f3e8ff"},library:{iconColor:"#06b6d5",bgColor:"bg-[#e6fbff]",bgHex:"#e6fbff"},type:{iconColor:"#db2627",bgColor:"bg-[#ffe1e1]",bgHex:"#ffe1e1"},data:{iconColor:"#2563eb",bgColor:"bg-blue-100",bgHex:"#dbeafe"},index:{iconColor:"#ea580c",bgColor:"bg-orange-100",bgHex:"#ffedd5"},functionCall:{iconColor:"#7c3aed",bgColor:"bg-purple-100",bgHex:"#f3e8ff"},class:{iconColor:"#059669",bgColor:"bg-emerald-100",bgHex:"#d1fae5"},method:{iconColor:"#0891b2",bgColor:"bg-cyan-100",bgHex:"#cffafe"},other:{iconColor:"#6b7280",bgColor:"bg-gray-100",bgHex:"#f3f4f6"}},s=r[e]||r.other,a=t==="large"?18:14,o=t==="large"?32:18,i=()=>{switch(e){case"library":return n(sd,{size:a,color:s.iconColor});case"visual":return n(Lr,{size:a,color:s.iconColor});case"type":return n(Ch,{size:a,color:s.iconColor});case"data":return n(Sh,{size:a,color:s.iconColor});case"index":return n(Nh,{size:a,color:s.iconColor});case"functionCall":return n(wl,{size:a,color:s.iconColor});case"class":return n(wh,{size:a,color:s.iconColor});case"method":return n(wl,{size:a,color:s.iconColor});case"other":return n(vl,{size:a,color:s.iconColor});default:return n(vl,{size:a,color:s.iconColor})}};return n("span",{className:`flex items-center justify-center rounded ${s.bgColor}`,style:{width:`${o}px`,height:`${o}px`},children:i()})}function md({filePath:e,maxLength:t=60,className:r,style:s}){const o=((l,c)=>{if(l.length<=c)return l;const u="...",p=c-u.length,h=Math.ceil(p*.4),m=Math.floor(p*.6),f=l.slice(0,h),y=l.slice(-m),g=f.lastIndexOf("/"),x=y.indexOf("/"),b=g>h*.5?f.slice(0,g+1):f,v=x!==-1&&x<m*.5?y.slice(x):y;return`${b}${u}${v}`})(e,t),i=o!==e;return n("span",{className:r||"font-normal text-gray-900 text-[14px] select-text cursor-text",style:{...s,display:"inline-block",maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},title:i?e:void 0,children:o})}function Ha({entity:e,nameSize:t="11px",pathSize:r="10px",pathMaxLength:s=50,showScenarioCount:a=!1,scenarioCount:o=0,additionalContent:i}){return d("div",{className:"flex flex-col gap-1",children:[d("div",{className:"flex items-center gap-1",children:[n(gt,{type:e.entityType||"other"}),d(ke,{to:`/entity/${e.sha}`,className:"hover:underline shrink-0 cursor-pointer",style:{fontSize:t,fontWeight:500,color:"#000",whiteSpace:"nowrap"},children:[e.name,a&&o>0&&` (${o})`]}),n(md,{filePath:e.filePath,maxLength:s,style:{fontSize:r,color:"#8E8E8E"}})]}),i]})}const Va={fontSize:"9px",color:"#005C75",fontStyle:"italic"};function Tm({currentRun:e,projectSlug:t,currentEntities:r=[],isAnalysisStarting:s=!1,queuedJobCount:a=0,queueJobs:o=[],currentlyExecuting:i=null,historicalRuns:l=[]}){var J,O,B;const[c,u]=j(!1),[p,h]=j(!1),[m,f]=j(null),[y,g]=j(new Set),[x,b]=j(new Set),[v,S]=j(!1),w=!!i||o.length>0,C=!!i,k=(i==null?void 0:i.entities)||r,N=!!(e!=null&&e.analysisCompletedAt),A=(e==null?void 0:e.readyToBeCaptured)??0,_=(e==null?void 0:e.capturesCompleted)??0;e!=null&&e.captureCompletedAt||N&&(A===0||_>=A);const M=(e==null?void 0:e.currentEntityShas)&&e.currentEntityShas.length>0,$=w,{lastLine:I}=Wt(t,$),R=C||o.length>0,P=new Set(((J=i==null?void 0:i.entities)==null?void 0:J.map(T=>T.sha))||[]),F=l.filter(T=>!(T.currentEntityShas||[]).some(E=>P.has(E))),Y=(()=>{const D=Date.now()-1440*60*1e3;if(e!=null&&e.createdAt&&M){const E=e.analysisCompletedAt||e.createdAt;if(new Date(E).getTime()>D)return!0}if(F.length>0){const E=F[0],W=E.analysisCompletedAt||E.archivedAt||E.createdAt;if(W&&new Date(W).getTime()>D)return!0}return!1})();return te(()=>{const T=(i==null?void 0:i.id)||null;w&&!p&&T!==m&&h(!0),!w&&m!==null&&f(null)},[w,i==null?void 0:i.id,p,m]),d(we,{children:[d("div",{className:`fixed bottom-4 right-4 z-9998 bg-white rounded shadow-lg border-2 border-primary-100 transition-all duration-200 ${p?"min-w-[350px] max-w-[500px]":"w-auto"}`,children:[!p&&d("div",{onClick:()=>{h(!0),f(null)},className:"flex items-center gap-2 px-3 py-2 cursor-pointer hover:bg-gray-50 transition-colors",title:"Click to expand",children:[R?n(Mt,{size:16,className:"animate-spin",style:{color:"#005C75"}}):n("div",{className:"flex items-center justify-center rounded",style:{backgroundColor:"#E0E9EC",width:"20px",height:"20px"},children:n(Wa,{size:16,style:{color:"#005C75"}})}),n("span",{style:{fontSize:"12px",fontWeight:500,color:"#343434"},children:R?"Analyzing...":"Activity: No Activity Yet"}),R&&n("button",{onClick:T=>{T.stopPropagation(),u(!0)},className:"ml-auto px-2 py-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC",color:"#005C75",fontSize:"10px",fontWeight:600},children:"View Logs"})]}),p&&d("div",{children:[d("div",{className:"flex items-center justify-between px-3 py-2",children:[d("div",{className:"flex items-center gap-2",children:[R?n(Mt,{size:16,className:"animate-spin",style:{color:"#005C75"}}):n("div",{className:"flex items-center justify-center rounded",style:{backgroundColor:"#E0E9EC",width:"20px",height:"20px"},children:n(Wa,{size:16,style:{color:"#005C75"}})}),n("span",{style:{fontSize:"12px",fontWeight:500,color:"#343434"},children:R?"Analyzing...":"Activity"})]}),d("div",{className:"flex items-center gap-2",children:[n("button",{onClick:()=>u(!0),className:"px-2 py-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC",color:"#005C75",fontSize:"10px",fontWeight:600},children:"View Logs"}),n("button",{onClick:()=>{h(!1),f((i==null?void 0:i.id)||null)},className:"p-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC"},title:"Collapse","aria-label":"Collapse",children:n(Ct,{size:16,style:{color:"#646464"}})})]})]}),n("div",{style:{height:"1px",backgroundColor:"#E0E9EC",margin:"0 12px"}}),d("div",{className:"px-3 pt-2 pb-3 space-y-3",children:[R&&i&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(Wa,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Current Activity"})]}),n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:k.length>0?d("div",{className:"space-y-1.5",children:[(v?k:k.slice(0,3)).map(T=>n(Ha,{entity:T,nameSize:"11px",pathSize:"10px",pathMaxLength:150},T.sha)),k.length>3&&n("button",{onClick:()=>S(T=>!T),className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:Va,"aria-label":v?"Show fewer entities":`Show ${k.length-3} more entities`,children:v?"Show less":`+${k.length-3} more`}),I&&n("div",{style:{fontSize:"10px",color:"#005C75",marginTop:"4px"},children:I})]}):d("div",{children:[i.entityNames&&i.entityNames.length>0?d("div",{className:"space-y-0.5",children:[i.entityNames.slice(0,5).map((T,D)=>n("div",{style:{fontSize:"11px",color:"#343434"},children:T},D)),i.entityNames.length>5&&d("div",{className:"italic",style:{fontSize:"10px",color:"#666"},children:["+",i.entityNames.length-5," ","more"]})]}):d("div",{style:{fontSize:"11px",color:"#343434"},children:["Analyzing"," ",((O=i.entityShas)==null?void 0:O.length)||0," ",((B=i.entityShas)==null?void 0:B.length)===1?"entity":"entities","..."]}),I&&n("div",{style:{fontSize:"10px",color:"#005C75",marginTop:"4px"},children:I})]})})]}),o.length>0&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(kh,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Queued Activity"})]}),n("div",{className:"space-y-2 max-h-[200px] overflow-y-auto",children:o.map(T=>{var W,K;const D=y.has(T.id),E=D?T.entities:T.entities.slice(0,3);return n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:T.entities.length>0?d("div",{className:"space-y-1.5",children:[E.map(Z=>n(Ha,{entity:Z,nameSize:"10px",pathSize:"9px",pathMaxLength:120},Z.sha)),T.entities.length>3&&n("button",{onClick:()=>{g(Z=>{const q=new Set(Z);return q.has(T.id)?q.delete(T.id):q.add(T.id),q})},className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:Va,"aria-label":D?"Show fewer entities":`Show ${T.entities.length-3} more entities`,children:D?"Show less":`+${T.entities.length-3} more`})]}):d("div",{style:{fontSize:"10px",color:"#343434"},children:[T.type==="analysis"&&n(we,{children:T.entityNames&&T.entityNames.length>0?d("div",{className:"space-y-0.5",children:[T.entityNames.slice(0,5).map((Z,q)=>n("div",{children:Z},q)),T.entityNames.length>5&&d("div",{className:"italic",children:["+",T.entityNames.length-5," more"]})]}):`Analyzing ${((W=T.entityShas)==null?void 0:W.length)||0} ${((K=T.entityShas)==null?void 0:K.length)===1?"entity":"entities"}`}),T.type==="recapture"&&"Recapturing scenario",T.type==="debug-setup"&&"Setting up debug environment"]})},T.id)})})]}),Y&&F.length>0&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(Bo,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Recently Completed"})]}),n("div",{className:"space-y-2 max-h-[200px] overflow-y-auto",children:F.slice(0,3).map((T,D)=>{const E=T.entities||[],W=T.analysisCompletedAt||T.archivedAt||T.createdAt||"",K=(()=>{if(!W)return"";const L=Date.now()-new Date(W).getTime(),z=Math.floor(L/6e4),V=Math.floor(L/36e5);return V>0?`${V}h ago`:z>0?`${z}m ago`:"just now"})(),Z=x.has(D),U=(Z?E:E.slice(0,3)).map(L=>{var z,V,re;return{...L,scenarioCount:((re=(V=(z=L.analyses)==null?void 0:z[0])==null?void 0:V.scenarios)==null?void 0:re.length)||0}});return n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:E.length>0&&d("div",{className:"space-y-1.5",children:[U.map((L,z)=>d("div",{className:"flex items-start justify-between gap-2",children:[n("div",{className:"flex-1 min-w-0",children:n(Ha,{entity:L,nameSize:"10px",pathSize:"9px",pathMaxLength:100,showScenarioCount:!0,scenarioCount:L.scenarioCount})}),z===0&&K&&n("div",{style:{fontSize:"9px",color:"#8E8E8E",whiteSpace:"nowrap",paddingTop:"2px"},children:K})]},L.sha)),E.length>3&&n("button",{onClick:()=>{b(L=>{const z=new Set(L);return z.has(D)?z.delete(D):z.add(D),z})},className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:Va,"aria-label":Z?"Show fewer entities":`Show ${E.length-3} more entities`,children:Z?"Show less":`+${E.length-3} more`})]})},D)})})]})]}),n("div",{style:{height:"1px",backgroundColor:"#E0E9EC",margin:"0 12px"}}),n("div",{className:"px-3 pb-2",children:n(ke,{to:"/activity",className:"text-xs font-medium hover:underline cursor-pointer",style:{color:"#005C75"},children:"View All Activity →"})})]})]}),c&&t&&n(an,{projectSlug:t,onClose:()=>u(!1)})]})}function bt(e){return Object.fromEntries(Object.entries(e).map(([t,r])=>[t,r===null?void 0:r]))}function Kr(e){const{file_id:t,project_id:r,commit_id:s,file_path:a,entity_type:o,entity_branches:i,analyses:l,commit:c,created_at:u,updated_at:p,...h}=e,m=(i??[]).map(g=>g.branch_id),f=l?l.map(Jt):void 0,y=c?_n(c):void 0;return bt({...h,fileId:t,projectId:r,commitId:s,filePath:a,entityType:o,commit:y,analyses:f,branchIds:m,createdAt:u,updatedAt:p})}function Zo(e){return bt({id:e.id,projectId:e.project_id,name:e.name,path:e.path,deleted:!!e.deleted,metadata:e.metadata??void 0,createdAt:e.created_at,updatedAt:e.updated_at??void 0})}function ra(e){const{branches:t,files:r,analyzed_at:s,content_changed_at:a,created_at:o,updated_at:i,github_token:l,configuration:c,team_id:u,...p}=e;return bt({...p,branches:t?t.map(En):void 0,files:r?r.map(Zo):void 0,analyzedAt:s,contentChangedAt:a,createdAt:o,updatedAt:i})}function Mm(e){const{id:t,project_id:r,user_id:s,scenario_id:a,thumbs_up:o,user:i}=e,l=i?{username:i.github_username,avatarUrl:i.github_user.avatar_url}:void 0;return bt({id:t,projectId:r,userId:s,scenarioId:a,thumbsUp:!!o,user:l})}function $m(e){const{id:t,project_id:r,user_id:s,scenario_id:a,text:o,created_at:i,updated_at:l,user:c}=e,u=c?{username:c.github_username,avatarUrl:c.github_user.avatar_url}:void 0;return bt({id:t,projectId:r,userId:s,scenarioId:a,text:o,createdAt:i,updatedAt:l,user:u})}function fd(e){const{project_id:t,analysis_id:r,previous_version_id:s,analysis:a,user_scenarios:o,scenario_comments:i,approved:l,...c}=e,u=a?Jt(a):void 0,p=o?o.map(Mm):void 0,h=i?i.map($m):void 0;return bt({...c,projectId:t,analysisId:r,previousVersionId:s,analysis:u,userScenarios:p,comments:h})}function Im(e){return bt({id:e.id,analysisId:e.analysis_id,entitySha:e.entity_sha,branchId:e.branch_id,active:!!e.active,analysis:e.analysis?Jt(e.analysis):void 0,entity:e.entity?Kr(e.entity):void 0,branch:e.branch?En(e.branch):void 0,createdAt:e.created_at})}function Jt(e){const{project_id:t,commit_id:r,file_id:s,file_path:a,entity_sha:o,entity_type:i,entity_name:l,previous_analysis_id:c,file:u,entity:p,commit:h,project:m,scenarios:f,analysis_branches:y,dependency_analyzed_tree_sha:g,analyzed_tree_sha:x,branch_commit_sha:b,committed_at:v,completed_at:S,created_at:w,updated_at:C,indirect:k,...N}=e,A=p?Kr(p):void 0,_=u?Zo(u):void 0,M=m?ra(m):void 0,$=h?_n(h):void 0,I=f?f.map(fd):void 0,R=y?y.map(Im):void 0,P=R?R.map(F=>F.branch):void 0;return bt({...N,projectId:t,commitId:r,fileId:s,filePath:a,entitySha:o,entityType:i,entityName:l,previousAnalysisId:c,entity:A,file:_,commit:$,project:M,scenarios:I,analysisBranches:R,branches:P,dependencyAnalyzedTreeSha:g,analyzedTreeSha:x,branchCommitSha:b,committedAt:v,completedAt:S,createdAt:w,updatedAt:C,indirect:!!k})}function Xo(e){return bt({id:e.id,commitId:e.commit_id,branchId:e.branch_id,active:!!e.active,commit:e.commit?_n(e.commit):void 0,branch:e.branch?En(e.branch):void 0})}function Fm(e){const{project_id:t,commit_id:r,created_at:s,updated_at:a,success:o,...i}=e;return bt({...i,projectId:t,commitId:r,createdAt:s,updatedAt:a,success:!!o})}function _n(e){const{project_id:t,branch_id:r,branch:s,background_jobs:a,merged_branch_id:o,mergedBranch:i,ai_message:l,html_url:c,author:u,analyses:p,entities:h,commit_branches:m,committed_at:f,analyzed_at:y,...g}=e,x=s?En(s):void 0,b=i?En(i):void 0,v=(a==null?void 0:a.length)>0?Fm(a[a.length-1]):void 0,S=(p??[]).map(Jt),w=(h??[]).map(Kr),C=(m==null?void 0:m.length)>0?m.map(Xo):void 0;return u&&(u.username=u.preferredUsername??u.username),bt({...g,projectId:t,branchId:r,branch:x,backgroundJob:v,mergedBranchId:o,mergedBranch:b,aiMessage:l,htmlUrl:c,author:u,analyses:S,entities:w,commitBranches:C,committedAt:f,analyzedAt:y})}function En(e){const{project_id:t,content_changed_at:r,commits:s,analysis_branches:a,active_at:o,created_at:i,updated_at:l,primary:c,...u}=e,p=s?s.map(_n):void 0,h=a?a.flatMap(m=>Jt(m.analysis)):void 0;return bt({...u,projectId:t,contentChangedAt:r,commits:p,analyses:h,activeAt:o,createdAt:i,updatedAt:l,primary:!!c})}var qs;class Dm{constructor(){yl(this,qs,new Rm)}transformQuery(t){return gl(this,qs).transformNode(t.node)}transformResult(t){return Promise.resolve(t.result)}}qs=new WeakMap;class Rm extends Jh{transformValue(t){return{...super.transformValue(t),value:typeof t.value=="boolean"?t.value?1:0:t.value}}transformPrimitiveValueList(t){return{...t,values:t.values.map(r=>typeof r=="boolean"?r?1:0:r)}}}const ve=()=>null;function Be(e=!1){return t=>(t=t.defaultTo(mt`CURRENT_TIMESTAMP`),e&&(t=t.notNull()),t)}const Om={analyzed_at:ve(),configuration:ve(),content_changed_at:ve(),created_at:ve(),description:ve(),github_token:ve(),id:ve(),metadata:ve(),name:ve(),path:ve(),slug:ve(),team_id:ve(),updated_at:ve()},Lm=Object.keys(Om);async function zm(e){await e.schema.createTable("projects").addColumn("id","uuid",t=>t.primaryKey()).addColumn("name","text").addColumn("slug","text",t=>t.notNull()).addColumn("github_token","text").addColumn("description","text").addColumn("path","text").addColumn("configuration","text").addColumn("metadata","text").addColumn("content_changed_at","datetime").addColumn("analyzed_at","datetime").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be()).addColumn("team_id","integer").ifNotExists().execute()}async function Bm(e){await e.schema.createTable("analyses").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("file_id","uuid").addColumn("commit_id","uuid").addColumn("entity_sha","varchar").addColumn("entity_name","varchar").addColumn("status","text").addColumn("metadata","text").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be(!0)).addColumn("tree_sha","text").addColumn("analyzed_tree_sha","text").addColumn("dependency_analyzed_tree_sha","text").addColumn("previous_analysis_id","uuid").addColumn("branch_commit_sha","varchar").addColumn("indirect","boolean").addColumn("committed_at","datetime").addColumn("completed_at","datetime").addColumn("file_path","varchar").addColumn("entity_type","varchar").ifNotExists().execute()}const Ym={active:ve(),analysis_id:ve(),branch_id:ve(),created_at:ve(),entity_sha:ve(),id:ve()},Um=Object.keys(Ym);async function Wm(e){await e.schema.createTable("analysis_branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("analysis_id","uuid",t=>t.notNull()).addColumn("branch_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("active","boolean",t=>t.defaultTo(!0)).addColumn("created_at","datetime",Be()).ifNotExists().execute()}async function Jm(e){await e.schema.createTable("background_jobs").addColumn("commit_id","uuid",t=>t.notNull()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("progress","text").addColumn("success","boolean").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime").addPrimaryKeyConstraint("background_jobs_pkey",["project_id","commit_id"]).ifNotExists().execute()}const Hm={active_at:ve(),content_changed_at:ve(),created_at:ve(),id:ve(),metadata:ve(),name:ve(),primary:ve(),project_id:ve(),ref:ve(),sha:ve(),updated_at:ve()},gd=Object.keys(Hm);async function Vm(e){await e.schema.createTable("branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("ref","text").addColumn("name","text").addColumn("sha","text").addColumn("primary","boolean",t=>t.notNull().defaultTo(!1)).addColumn("metadata","text").addColumn("content_changed_at","datetime",Be()).addColumn("active_at","datetime").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be()).ifNotExists().execute()}async function Km(e){await e.schema.createTable("commit_branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("branch_id","uuid").addColumn("commit_id","uuid").addColumn("active","boolean").addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}const Gm={ai_message:ve(),analyzed_at:ve(),author_github_username:ve(),branch_id:ve(),committed_at:ve(),created_at:ve(),files:ve(),html_url:ve(),id:ve(),merged_branch_id:ve(),message:ve(),metadata:ve(),project_id:ve(),sha:ve(),title:ve(),url:ve()},yd=Object.keys(Gm),qm=yd.filter(e=>e!=="files");async function Qm(e){await e.schema.createTable("commits").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("branch_id","uuid").addColumn("merged_branch_id","uuid").addColumn("message","text").addColumn("ai_message","text").addColumn("title","varchar").addColumn("author_github_username","varchar").addColumn("url","varchar").addColumn("html_url","varchar").addColumn("sha","varchar",t=>t.notNull()).addColumn("files","text").addColumn("metadata","text").addColumn("committed_at","datetime").addColumn("analyzed_at","datetime").addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}async function Zm(e){await e.schema.createTable("debug_reports").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_slug","varchar",t=>t.notNull()).addColumn("s3_key","varchar",t=>t.notNull()).addColumn("file_size_bytes","bigint").addColumn("metadata","text").addColumn("status","varchar").addColumn("created_at","datetime",Be(!0)).addColumn("uploaded_at","datetime").addColumn("base_sha","varchar").addColumn("delta_size_bytes","bigint").ifNotExists().execute()}async function Xm(e){await e.schema.createTable("labs_requests").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_slug","varchar",t=>t.notNull().unique()).addColumn("name","varchar",t=>t.notNull()).addColumn("email","varchar",t=>t.notNull()).addColumn("org_name","varchar").addColumn("org_size","varchar").addColumn("project_size","varchar").addColumn("tech_stack","varchar").addColumn("status","varchar").addColumn("unlock_code","varchar").addColumn("created_at","datetime",Be(!0)).addColumn("approved_at","datetime").ifNotExists().execute()}const ef={commit_id:ve(),created_at:ve(),description:ve(),documentation:ve(),entity_type:ve(),file_id:ve(),file_path:ve(),metadata:ve(),name:ve(),project_id:ve(),quality:ve(),sha:ve(),updated_at:ve()},xd=Object.keys(ef);async function tf(e){await e.schema.createTable("entities").addColumn("project_id","uuid",t=>t.notNull()).addColumn("file_id","uuid").addColumn("commit_id","uuid").addColumn("name","varchar").addColumn("sha","varchar",t=>t.primaryKey()).addColumn("entity_type","varchar").addColumn("file_path","varchar").addColumn("description","text").addColumn("documentation","text").addColumn("metadata","text").addColumn("quality","text").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime").ifNotExists().execute()}const nf={active:ve(),branch_id:ve(),entity_sha:ve()},rf=Object.keys(nf);async function sf(e){await e.schema.createTable("entity_branches").addColumn("branch_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("active","boolean",t=>t.defaultTo(!0)).addPrimaryKeyConstraint("entity_branches_pkey",["branch_id","entity_sha"]).ifNotExists().execute()}async function af(e){await e.schema.createTable("entity_statements").addColumn("id","integer",t=>t.autoIncrement().primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("statement_sha","varchar",t=>t.notNull()).addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}const of={created_at:ve(),deleted:ve(),id:ve(),metadata:ve(),name:ve(),path:ve(),project_id:ve(),updated_at:ve()},lf=Object.keys(of);async function cf(e){await e.schema.createTable("files").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("name","varchar").addColumn("path","varchar",t=>t.notNull()).addColumn("deleted","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be()).addColumn("metadata","text").ifNotExists().execute()}async function df(e){await e.schema.createTable("github_payloads").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("payload_type","varchar").addColumn("payload","text").addColumn("after","varchar").addColumn("commit_sha","varchar").addColumn("ref","varchar").addColumn("committed_at","datetime").addColumn("error","text").addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}async function uf(e){await e.schema.createTable("github_users").addColumn("username","varchar",t=>t.primaryKey()).addColumn("preferred_username","varchar").addColumn("avatar_url","varchar").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be()).ifNotExists().execute()}async function pf(e){await e.schema.createTable("scenario_comments").addColumn("id","serial",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("scenario_id","uuid").addColumn("user_id","uuid").addColumn("text","text").addColumn("metadata","text").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be(!0)).ifNotExists().execute()}async function hf(e){await e.schema.createTable("editor_scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("name","varchar",t=>t.notNull()).addColumn("description","text").addColumn("component_name","varchar").addColumn("component_path","varchar").addColumn("url","varchar").addColumn("type","varchar").addColumn("screenshot_path","varchar").addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be(!0)).ifNotExists().execute();for(const t of["component_name","component_path","url","type","screenshot_path"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"varchar").execute()}catch{}for(const t of["viewport_width","viewport_height"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"integer").execute()}catch{}for(const t of["dimensions","screenshot_paths"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"text").execute()}catch{}for(const t of["page_file_path","entity_sha","display_name"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"varchar").execute()}catch{}try{const t=await e.selectFrom("editor_scenarios").select(["id","dimension","dimensions"]).execute();for(const r of t){const s=r;s.dimension&&!s.dimensions&&await e.updateTable("editor_scenarios").set({dimensions:JSON.stringify([s.dimension])}).where("id","=",s.id).execute()}}catch{}try{const t=await e.selectFrom("editor_scenarios").select(["id","screenshot_path","screenshot_paths","dimensions"]).execute();for(const r of t){const s=r;if(s.screenshot_path&&!s.screenshot_paths){let a="Default";try{const o=s.dimensions?JSON.parse(s.dimensions):null;Array.isArray(o)&&o.length>0&&(a=o[0])}catch{}await e.updateTable("editor_scenarios").set({screenshot_paths:JSON.stringify({[a]:s.screenshot_path})}).where("id","=",s.id).execute()}}}catch{}}const mf={analysis_id:ve(),approved:ve(),created_at:ve(),description:ve(),id:ve(),metadata:ve(),name:ve(),previous_version_id:ve(),project_id:ve()},Bs=Object.keys(mf);async function ff(e){await e.schema.createTable("scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("analysis_id","uuid").addColumn("name","varchar").addColumn("description","text").addColumn("metadata","text").addColumn("approved","boolean").addColumn("previous_version_id","uuid").addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}async function gf(e){await e.schema.createTable("statements").addColumn("sha","varchar",t=>t.primaryKey()).addColumn("text","text",t=>t.notNull()).addColumn("llm_call_id","varchar").addColumn("results","text").addColumn("issues","text").addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}async function yf(e){await e.schema.createTable("teams").addColumn("id","serial",t=>t.primaryKey()).addColumn("name","varchar",t=>t.notNull()).addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}async function xf(e){await e.schema.createTable("user_scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("scenario_id","uuid",t=>t.notNull()).addColumn("user_id","uuid",t=>t.notNull()).addColumn("thumbs_up","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Be(!0)).ifNotExists().execute()}async function bf(e){await e.schema.createTable("user_teams").addColumn("team_id","integer",t=>t.notNull()).addColumn("user_auth_id","uuid",t=>t.notNull()).addPrimaryKeyConstraint("user_teams_pkey",["team_id","user_auth_id"]).ifNotExists().execute()}async function vf(e){await e.schema.createTable("users").addColumn("auth_id","uuid",t=>t.primaryKey()).addColumn("email","varchar").addColumn("github_username","varchar").addColumn("github_token","varchar").addColumn("verified","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Be(!0)).addColumn("updated_at","datetime",Be()).ifNotExists().execute()}const wf=!!An("ENABLE_QUERY_LOGGING"),Nf=!!An("ENABLE_QUERY_ERROR_LOGGING");An("USE_LOCAL_POSTGRESQL_FOR_TESTING");let ps;function $e(){if(!ps){const e=vd();if(e==="sqlite")ps=Sf();else if(e==="postgresql")ps=Cf();else throw new Error(`Unknown database type: ${e}`)}return ps}function Sf(e){if(e||(e=An("SQLITE_PATH")),e===":memory:"||e==="memory")throw new Error("In-memory SQLite not supported in getDatabase(). Use getDatabaseForTesting() instead.");const t=G.existsSync(e),r=H.dirname(e);if(!G.existsSync(r))G.mkdirSync(r,{recursive:!0,mode:493});else try{G.chmodSync(r,493)}catch(a){console.warn(`Warning: Could not set permissions on database directory: ${a.message}`)}const s=new Yh(e,{readonly:!1,fileMustExist:!1});if(s.pragma("journal_mode = WAL"),s.pragma("busy_timeout = 5000"),s.pragma("synchronous = FULL"),!process.env.CLAUDE_CODE_MODE)try{const a=s.prepare("SELECT COUNT(*) as count FROM sqlite_master WHERE type='table' AND name='projects'").get();t&&a.count===0&&(console.error("CodeYam DB ERROR: Database file existed but projects table is missing!"),console.error("This likely means SQLite created a new empty database instead of opening the existing one."),console.error("Possible causes: corruption, WAL file issues, or file locking problems."))}catch(a){console.error("CodeYam DB ERROR: Failed to verify database schema:",a)}return new cd({dialect:new Vh({database:s}),plugins:[new Hh,new Dm],log:bd})}function Cf(){const e=_f();console.log(`CodeYam: Using PostgreSQL database at: ${e}`);const t=new Uh({connectionString:e,max:3,idleTimeoutMillis:1e4});return t.on("error",(r,s)=>{console.error("CodeYam: Unexpected error on idle PostgreSQL client",r)}),new cd({dialect:new Kh({pool:t}),log:bd})}let Ka=null;function Tn(){return Ka||(Ka=kf(vd())),Ka}function bd(e){e.level==="error"?Nf&&console.error("Query failed : ",{durationMs:e.queryDurationMillis,error:e.error,sql:e.query.sql,params:e.query.parameters}):wf&&console.log("Query executed : ",{durationMs:e.queryDurationMillis,sql:e.query.sql,params:e.query.parameters})}function kf(e){if(e==="sqlite")return Gh;if(e==="postgresql")return qh;throw new Error(`Unknown database type: ${e}`)}function vd(){if(An("SQLITE_PATH"))return"sqlite";if(An("POSTGRESQL_URL"))return"postgresql";throw new Error("No database configuration found. Set SQLITE_PATH for SQLite or POSTGRESQL_URL for PostgreSQL")}async function P_(e){await zm(e),await Bm(e),await Wm(e),await Jm(e),await Vm(e),await Km(e),await Qm(e),await Zm(e),await hf(e),await tf(e),await sf(e),await af(e),await cf(e),await df(e),await uf(e),await Xm(e),await pf(e),await ff(e),await gf(e),await yf(e),await xf(e),await bf(e),await vf(e)}function _f(){const e=An("POSTGRESQL_URL");if(!e)throw new Error("No PostgreSQL connection string found. Set POSTGRESQL_URL environment variable.");return e}function An(e){var t;return typeof window<"u"?(t=window.env)==null?void 0:t[e]:process.env[e]}const Ef=()=>crypto.randomUUID();function Af(e){const{id:t,projectId:r,activeAt:s,contentChangedAt:a,metadata:o,...i}=e;return delete i.commits,delete i.files,delete i.analyses,delete i.createdAt,delete i.updatedAt,{...i,id:t??Ef(),project_id:r,active_at:s,content_changed_at:a,metadata:o?JSON.stringify(o):null}}var nt=(e=>(e.Remix="Remix",e.CodeYam="CodeYam",e.CRA="CRA",e.Next="Next",e.NextPages="NextPages",e.Vite="Vite",e.Expo="Expo",e.Unknown="Unknown",e))(nt||{});const sa="Default Scenario";let jf="<main>";function Pf(){return jf}function kl(e,...t){Oe(`CodeYam Log Level ${e}: ${t[0]}`,...t.slice(1))}function Oe(...e){const t=Pf(),r=e.map(a=>{if(a)return typeof a=="string"?a:a instanceof Error?`${a.name}: ${a.message}
|
|
21
|
-
${a.stack}`:typeof a=="object"?Tf(a):String(a)}).filter(Boolean).join(`
|
|
22
|
-
`),s=`${t} ${r}`;if(!process.env.CODEYAM_ECS_TASK_ARN){console.log(s+`
|
|
23
|
-
`);return}console.log(s.replace(/\n/g,"\r"))}function Tf(e,t=2){function r(s,a=new WeakMap){return s===null||typeof s!="object"?s:a.has(s)?`"[Circular: ${s.constructor.name}]"`:(a.set(s,!0),Array.isArray(s)?`[${s.map(l=>{const c=r(l,a);return typeof l=="string"?`"${c}"`:c}).join(",")}]`:`{${Object.entries(s).map(([i,l])=>{let c;return typeof l>"u"?null:(typeof l=="function"?c=`"(function: ${l.name||"anonymous"})"`:l instanceof Date?c=`"${l.toISOString()}"`:typeof l=="object"&&l!==null?c=r(l,a):typeof l=="string"?c=`"${l.replace(/"/g,'\\"')}"`:c=JSON.stringify(l),`"${i.replace(/"/g,'\\"')}":${c}`)}).filter(Boolean).join(",")}}`)}try{return JSON.stringify(e,null,t)}catch(s){const a=r(e);if(!t)return a;try{return JSON.stringify(JSON.parse(r(e)),null,t)}catch(o){return console.log("CodeYam Error: error stringifying object to provide proper spacing",{error:o,pureStringifyError:s,serialized:a}),a}}}function Ys(e,t){try{let r=function(o){var i,l;if(Ze.isFunctionDeclaration(o)&&Er(o)){const c=((i=o.name)==null?void 0:i.text)||"default",u=o.getText(s),p=Ga(o);a.push({name:c,code:u,sha:yn(t,c,u),entityType:"function",isDefault:p})}else if(Ze.isClassDeclaration(o)&&Er(o)){const c=((l=o.name)==null?void 0:l.text)||"default",u=o.getText(s),p=Ga(o),h=u.includes("React.")||u.includes("jsx")||u.includes("tsx");a.push({name:c,code:u,sha:yn(t,c,u),entityType:h?"component":"class",isDefault:p})}else if(Ze.isInterfaceDeclaration(o)&&Er(o)){const c=o.name.text,u=o.getText(s);a.push({name:c,code:u,sha:yn(t,c,u),entityType:"interface",isDefault:!1})}else if(Ze.isTypeAliasDeclaration(o)&&Er(o)){const c=o.name.text,u=o.getText(s);a.push({name:c,code:u,sha:yn(t,c,u),entityType:"type",isDefault:!1})}else if(Ze.isVariableStatement(o)&&Er(o)){const c=Ga(o);o.declarationList.declarations.forEach(u=>{var p;if(Ze.isIdentifier(u.name)){const h=u.name.text,m=o.getText(s),f=((p=u.initializer)==null?void 0:p.getText(s))||"",y=(t.endsWith(".tsx")||t.endsWith(".jsx"))&&f.includes("=>")&&(f.includes("<")||f.includes("React."));a.push({name:h,code:m,sha:yn(t,h,m),entityType:y?"component":"variable",isDefault:c})}})}else if(Ze.isExportAssignment(o)){const c=o.getText(s);a.push({name:"default",code:c,sha:yn(t,"default",c),entityType:"unknown",isDefault:!0})}else if(Ze.isExportDeclaration(o)&&o.exportClause&&Ze.isNamedExports(o.exportClause)){const c=o.getText(s);for(const u of o.exportClause.elements){const p=u.name.text;a.push({name:p,code:c,sha:yn(t,p,c),entityType:"unknown",isDefault:!1})}}Ze.forEachChild(o,r)};const s=Ze.createSourceFile(t,e,Ze.ScriptTarget.Latest,!0),a=[];return r(s),a}catch(r){return console.error(`Failed to extract entities from ${t}:`,r),[]}}function Er(e){if(!Ze.canHaveModifiers(e))return!1;const t=Ze.getModifiers(e);return t?t.some(r=>r.kind===Ze.SyntaxKind.ExportKeyword):!1}function Ga(e){if(!Ze.canHaveModifiers(e))return!1;const t=Ze.getModifiers(e);return t?t.some(r=>r.kind===Ze.SyntaxKind.DefaultKeyword):!1}function yn(e,t,r){const s=lr.createHash("sha256");return s.update(`${e}:${t}:${r}`),s.digest("hex").substring(0,40)}function Mf(e){var u;const{webapp:t,port:r,environmentVariables:s,packageManager:a}=e,o=t==null?void 0:t.startCommand;if(!o)return`${a} ${a==="npm"?"run ":""}dev`;const i=((u=o.args)==null?void 0:u.map(p=>p.replace(/\$PORT/g,String(r))))??[],l=[];for(const p of s)if(p.key&&p.value!==void 0){const h=String(p.value).replace(/'/g,"'\\''");l.push(`${p.key}='${h}'`)}if(o.env)for(const[p,h]of Object.entries(o.env)){const f=String(h).replace(/\$PORT/g,String(r)).replace(/'/g,"'\\''");l.push(`${p}='${f}'`)}const c=l.length>0?l.join(" ")+" ":"";return o.command==="sh"&&i[0]==="-c"&&i[1]?`${c}sh -c "${i[1]}"`:`${c}${o.command} ${i.join(" ")}`}function $f(e,t){if(!t||t.length===0)return;if(t.length===1)return t[0];const r=H.normalize(e),s=[...t].sort((a,o)=>{var i,l;return(((i=o.path)==null?void 0:i.length)??0)-(((l=a.path)==null?void 0:l.length)??0)});for(const a of s){const o=H.normalize(a.path??".");if(o==="."||r.startsWith(o+H.sep)||r===o)return a}return t[0]}function If(e){const{filePath:t,webapps:r,environmentVariables:s,port:a,packageManager:o}=e;if(!r||r.length===0)throw new Error("No webapps configured. Please run CodeYam init again.");const i=$f(t,r);if(!i)throw new Error("Could not find webapp for file path: "+t);const l=Mf({webapp:i,port:a,environmentVariables:s,packageManager:o});return{webapp:i,webappPath:i.path??".",framework:i.framework,packageManager:i.packageManager??o,startCommand:l,url:`http://localhost:${a}/static/codeyam-sample`}}function cr(e,t,r=[]){const s=Array.isArray(t)?t:[t];return a=>a.columns(s).doUpdateSet(o=>{const i=Object.keys(e).filter(l=>l!==t&&!r.includes(l));return Object.fromEntries(i.map(l=>[l,o.ref(`excluded.${l}`)]))})}async function Ff(e){if(e.length===0)return[];const t=$e(),r=e.map(Af);try{return(await t.insertInto("branches").values(r).onConflict(cr(r[0],"id",["created_at"])).returningAll().execute()).map(En)}catch(s){return Oe("CodeYam Error: Database error upserting branches",s,{branchCount:e.length,branchIds:e.map(a=>a.id)}),[]}}function Df(e){const{jsonObjectFrom:t}=Tn();return t(e.selectFrom("github_users").select(["username","preferred_username as preferredUsername","avatar_url as avatarUrl"]).where("github_users.username","=",e.ref("commits.author_github_username")))}async function Rf({ids:e,analysisId:t}){const r=$e();try{let s=r.deleteFrom("scenarios");if(e){if(e.length===0)return;s=s.where("id","in",e)}else if(t)s=s.where("analysis_id","=",t);else throw Oe("CodeYam Error: No deletion criteria provided",null,{ids:e,analysisId:t}),new Error("No deletion criteria provided for scenarios");await s.execute()}catch(s){throw Oe("CodeYam Error: Database error deleting scenarios",s,{ids:e,analysisId:t}),s}}function Of(...e){try{const t=lr.createHash("sha256");for(const r of e)t.update(r);return t.digest("hex")}catch(t){throw console.log("CodeYam Error: Error generating sha",e),t}}function qa(e,t){return t.map(r=>Lf(e,r))}function Lf(e,t){return mt` ${mt.ref(e)}.${mt.ref(t)}`.as(t)}function zf(e,t,r){return t.map(s=>Bf(e,s,r))}function Bf(e,t,r){return mt` ${mt.ref(e)}.${mt.ref(t)}`.as(`_cy_${r}:${t}`)}function Yf(e,...t){const r={};for(const[s,a]of Object.entries(e)){const o=s.match(/^_cy_(.+?):(.+)$/);if(o){const[,i,l]=o;if(t.includes(i)){r[i]||(r[i]={}),r[i][l]=a;continue}console.warn(`CodeYam Warning: Unrecognized prefix in key '${s}'`);continue}r[s]=a}return r}const Uf=50;function Wf(e,t){return e.length<=t?[e]:Array.from({length:Math.ceil(e.length/t)},(r,s)=>e.slice(s*t,s*t+t))}function _l({projectId:e,ids:t,fileIds:r,entityName:s,entityShas:a,commitIds:o,branchCommitSha:i,limit:l,excludeMetadata:c}){const u=$e(),{jsonObjectFrom:p,jsonArrayFrom:h}=Tn();let m=c?u.selectFrom("analyses").select(["analyses.id","analyses.project_id","analyses.file_id","analyses.commit_id","analyses.entity_sha","analyses.entity_name","analyses.entity_type","analyses.file_path","analyses.status","analyses.created_at","analyses.updated_at","analyses.tree_sha","analyses.analyzed_tree_sha","analyses.dependency_analyzed_tree_sha","analyses.previous_analysis_id","analyses.branch_commit_sha","analyses.indirect","analyses.committed_at","analyses.completed_at"]):u.selectFrom("analyses").selectAll("analyses");if(e&&(m=m.where("project_id","=",e)),t){if(t.length===0)return null;m=m.where("id","in",t)}if(r){if(r.length===0)return null;m=m.where("file_id","in",r)}if(o){if(o.length===0)return null;m=m.where("commit_id","in",o)}return s&&(m=m.where("entity_name","=",s)),a&&(m=m.where("entity_sha","in",a)),i&&(m=m.where("branch_commit_sha","=",i)),l&&(m=m.limit(l)),c?u.with("filtered_analyses",()=>m).selectFrom("filtered_analyses").selectAll("filtered_analyses").select(f=>[h(f.selectFrom("scenarios").select(qa("scenarios",Bs)).whereRef("scenarios.analysis_id","=","filtered_analyses.id")).as("scenarios"),h(f.selectFrom("analysis_branches").select(["id","branch_id"]).whereRef("analysis_branches.analysis_id","=","filtered_analyses.id")).as("analysis_branches")]):u.with("filtered_analyses",()=>m).selectFrom("filtered_analyses").selectAll("filtered_analyses").select(f=>[p(f.selectFrom("entities").select(qa("entities",xd)).whereRef("entities.sha","=","filtered_analyses.entity_sha").limit(1)).as("entity"),h(f.selectFrom("scenarios").select(qa("scenarios",Bs)).whereRef("scenarios.analysis_id","=","filtered_analyses.id")).as("scenarios"),h(f.selectFrom("analysis_branches").select(["id","branch_id"]).whereRef("analysis_branches.analysis_id","=","filtered_analyses.id")).as("analysis_branches")])}async function ln(e){const{ids:t,fileIds:r,entityShas:s,commitIds:a}=e;try{const i=Object.entries({id:{arr:t,key:"ids"},file_id:{arr:r,key:"fileIds"},entity_sha:{arr:s,key:"entityShas"},commit_id:{arr:a,key:"commitIds"}}).find(([c,{arr:u}])=>(u==null?void 0:u.length)>0);let l=[];if(i){const[c,{arr:u,key:p}]=i,h=Wf(u,Uf),m=[];for(let f=0;f<h.length;f++){const y=h[f],x=await _l({...e,[p]:y}).execute();x&&m.push(...x)}l=m}else{const u=await _l(e).execute();if(!u||u.length===0)return Oe("CodeYam: No analyses found",null,e),null;l=u}return l.length===0?null:l.map(Jt)}catch(o){return Oe("CodeYam Error: Database error in loadAnalyses",o,e),null}}function Jf(e,t){const{jsonArrayFrom:r,jsonObjectFrom:s}=Tn();let a=e.selectFrom("analysis_branches").select(Um).select(o=>s(o.selectFrom("branches").select(gd).whereRef("id","=","analysis_branches.branch_id")).as("branch"));return t&&(a=t(a)),r(a)}async function Ht({id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:u,includeCommitAndBranch:p,includeScenarios:h,includeBranches:m}){const f=$e(),y=Date.now();try{let g=f.selectFrom("analyses").selectAll("analyses");e&&(g=g.where("id","=",e)),r&&(g=g.where("project_id","=",r)),i?g=g.where("dependency_analyzed_tree_sha","=",i):l?g=g.where("analyzed_tree_sha","=",l):s&&(g=g.where("file_id","=",s)),o&&(g=g.where("entity_name","=",o)),a?g=g.where("commit_id","=",a):g=g.orderBy("created_at","desc").limit(1),t&&(g=g.innerJoin("analysis_branches","analyses.id","analysis_branches.analysis_id").where("analysis_branches.id","=",t));const{jsonObjectFrom:x,jsonArrayFrom:b}=Tn();g=g.select(w=>{const C=[];return C.push(x(w.selectFrom("entities").select(xd).whereRef("entities.sha","=","analyses.entity_sha")).as("entity")),c&&C.push(x(w.selectFrom("files").select(lf).whereRef("files.id","=","analyses.file_id")).as("file")),u&&C.push(x(w.selectFrom("projects").select(Lm).whereRef("projects.id","=","analyses.project_id")).as("project")),h&&C.push(b(w.selectFrom("scenarios").select(Bs).whereRef("scenarios.analysis_id","=","analyses.id")).as("scenarios")),m&&C.push(Jf(w,k=>k.whereRef("analysis_branches.analysis_id","=","analyses.id")).as("analysis_branches")),p&&C.push(x(w.selectFrom("commits").select(yd).select(k=>Df(k).as("author")).whereRef("commits.id","=","analyses.commit_id")).as("commit")),C});const v=await g.executeTakeFirst(),S=Date.now()-y;if(!v)return Oe(!!i?`CodeYam: Analysis cache miss for dependency tree SHA ${i.substring(0,12)}...`:`CodeYam Error: Analysis not found${o?` for ${o}`:""}${e?` (id=${e})`:""}`,null,{id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:u,includeCommitAndBranch:p,includeScenarios:h,includeBranches:m}),null;if(S>100&&p){const w=v.commit,C=w!=null&&w.files?JSON.stringify(w.files).length:0;console.log(`CodeYam DEBUG: [CommitFilesTiming] loadAnalysis took ${S}ms (files: ${Math.round(C/1024)}KB)`,{id:v.id,entityName:v.entity_name})}return Jt(v)}catch(g){return Oe("CodeYam Error: Database error loading analysis",g,{id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:u,includeCommitAndBranch:p,includeScenarios:h,includeBranches:m}),null}}async function ei({projectId:e,ids:t,names:r,includeInactive:s}){const a=$e();try{let o=a.selectFrom("branches").selectAll("branches").where("project_id","=",e);if(t){if(t.length===0)return[];o=o.where("id","in",t)}if(r){if(r.length===0)return[];o=o.where("name","in",r)}return s||(o=o.where("active_at","is not",null)),(await o.execute()).map(En)}catch(o){return Oe("CodeYam Error: Database error loading branches",o,{projectId:e,ids:t,names:r,includeInactive:s}),[]}}async function Hf({projectId:e,commitId:t,branchId:r,active:s,includeBranches:a}){const o=$e();try{let i=o.selectFrom("commit_branches").selectAll("commit_branches").innerJoin("branches","commit_branches.branch_id","branches.id").$if(a,u=>u.select(zf("branches",gd,"branch"))).where("branches.project_id","=",e);t&&(i=i.where("commit_branches.commit_id","=",t)),r&&(i=i.where("commit_branches.branch_id","=",r)),s!==void 0&&(i=i.where("commit_branches.active","=",s));const l=await i.execute();return!l||l.length===0?null:l.map(u=>Yf(u,"branch")).map(Xo)}catch(i){return Oe("CodeYam Error: Error loading commit branches",i,{projectId:e,commitId:t,branchId:r,active:s,includeBranches:a}),null}}async function Vf(e){if(e.length===0)return new Map;const t=$e();try{const r=await t.selectFrom("commits").select(["id","branch_id","merged_branch_id"]).where("id","in",e).execute(),s=new Set;if(r.forEach(o=>{o.branch_id&&s.add(o.branch_id),o.merged_branch_id&&s.add(o.merged_branch_id)}),s.size===0)return new Map;const a=await t.selectFrom("branches").selectAll().where("id","in",Array.from(s)).execute();return new Map(a.map(o=>[o.id,o]))}catch(r){return Oe("CodeYam Error: Loading branches for commits",r,{commitIds:e}),new Map}}async function Kf(e){if(e.length===0)return new Map;const t=$e(),{jsonObjectFrom:r,jsonArrayFrom:s}=Tn();try{const a=await t.selectFrom("analyses").selectAll("analyses").select(i=>[r(i.selectFrom("files").select(["id","name","path"]).whereRef("files.id","=","analyses.file_id")).as("file"),s(i.selectFrom("scenarios").select(Bs).whereRef("scenarios.analysis_id","=","analyses.id")).as("scenarios")]).where("commit_id","in",e).execute(),o=new Map;return a.forEach(i=>{const l=o.get(i.commit_id)||[];l.push(i),o.set(i.commit_id,l)}),o}catch(a){return Oe("CodeYam Error: Loading analyses for commits",a,{commitIds:e}),new Map}}async function Gf(e){if(e.length===0)return new Map;const t=$e();try{const r=await t.selectFrom("entities").selectAll().where("commit_id","in",e).execute(),s=new Map;return r.forEach(a=>{const o=s.get(a.commit_id)||[];o.push(a),s.set(a.commit_id,o)}),s}catch(r){return Oe("CodeYam Error: Loading entities for commits",r,{commitIds:e}),new Map}}async function Us({projectId:e,branchId:t,ids:r,shas:s,fileNames:a,limit:o=10,skipRelations:i=!1}){if(!e&&!r)throw new Error("Must provide projectId or ids");const l=$e(),{jsonObjectFrom:c}=Tn(),u=Date.now();try{let p;if(i){const v=qm.map(S=>`commits.${S}`);p=l.selectFrom("commits").select(v)}else p=l.selectFrom("commits").selectAll("commits").select(v=>[c(v.selectFrom("github_users").select(["username","preferred_username as preferredUsername","avatar_url as avatarUrl"]).where("github_users.username","=",v.ref("commits.author_github_username"))).as("author")]);if(e&&(p=p.where("project_id","=",e)),r){if(r.length===0)return[];p=p.where("id","in",r)}if(s){if(s.length===0)return[];p=p.where("sha","in",s)}if(a&&a.length>0){const v=mt.join(a.map(S=>mt`${S}`),mt`, `);p=p.where(mt`
|
|
24
|
-
EXISTS (
|
|
25
|
-
SELECT 1
|
|
26
|
-
FROM json_each(${mt.ref("commits.files")}) AS f
|
|
27
|
-
WHERE json_extract(f.value, '$.fileName') IN (${v})
|
|
28
|
-
)
|
|
29
|
-
`)}t&&(p=p.where("branch_id","=",t));const h=await p.orderBy("committed_at","desc").limit(o).execute(),m=Date.now()-u;if(!h||h.length===0)return[];if(m>100){const v=h.reduce((S,w)=>S+(w.files?JSON.stringify(w.files).length:0),0);console.log(`CodeYam DEBUG: [CommitFilesTiming] loadCommits took ${m}ms (${h.length} commits, totalFiles: ${Math.round(v/1024)}KB)`)}if(i)return h.map(S=>({...S,branch:void 0,mergedBranch:void 0,analyses:[],entities:[]})).map(_n);const f=h.map(v=>v.id),[y,g,x]=await Promise.all([Vf(f),Kf(f),Gf(f)]);return h.map(v=>{const S=v.branch_id?y.get(v.branch_id):void 0,w=v.merged_branch_id?y.get(v.merged_branch_id):void 0,C=g.get(v.id)||[],k=x.get(v.id)||[];return{...v,branch:S,mergedBranch:w,analyses:C,entities:k}}).map(_n)}catch(p){return Oe("CodeYam Error: Database error loading commits",p,{projectId:e,branchId:t,ids:r,shas:s,limit:o}),[]}}async function Xe({projectId:e,branchId:t,fileIds:r,filePaths:s,names:a,shas:o,excludeMetadata:i}){if(r&&r.length==0||s&&s.length==0||a&&a.length==0||o&&o.length==0)return[];if(o&&o.length>50){const c=[];for(let u=0;u<o.length;u+=50){const p=o.slice(u,u+50),h=await Xe({projectId:e,branchId:t,fileIds:r,filePaths:s,names:a,shas:p,excludeMetadata:i});h&&c.push(...h)}return c}const l=$e();try{const p=await(i?l.selectFrom("entities").select(["entities.project_id","entities.file_id","entities.commit_id","entities.name","entities.sha","entities.entity_type","entities.file_path","entities.description","entities.documentation","entities.quality","entities.created_at","entities.updated_at"]):l.selectFrom("entities").selectAll("entities")).$if(!!t,h=>h.innerJoin("entity_branches","entity_branches.entity_sha","entities.sha").where("entity_branches.branch_id","=",t)).$if(!!e,h=>h.where("entities.project_id","=",e)).$if(!!o,h=>h.where("entities.sha","in",o)).$if(!!s,h=>h.where("entities.file_path","in",s)).$if(!!a,h=>h.where("entities.name","in",a)).$if(!!r,h=>h.where("entities.file_id","in",r)).execute();return!p||p.length===0?null:p.map(Kr)}catch(c){return console.log("Load Entities: Error occurred",c,{projectId:e,fileIds:r,filePaths:s,shas:o}),null}}function qf(e,t){const{jsonArrayFrom:r}=Tn();let s=e.selectFrom("entity_branches").select(rf);return t&&(s=t(s)),r(s)}async function wd({projectId:e,sha:t,silent:r}){const s=$e();try{const a=await s.selectFrom("entities").innerJoin("files","entities.file_id","files.id").selectAll("entities").select(o=>qf(o,i=>i.whereRef("entity_branches.entity_sha","=","entities.sha")).as("entity_branches")).where("files.project_id","=",e).where("entities.sha","=",t).executeTakeFirst();return a?Kr(a):(!r&&process.env.CODEYAM_E2E_BASELINE_MODE!=="true"&&Oe(`CodeYam Error: Load Entity: Entity not found (sha=${t==null?void 0:t.substring(0,12)})`,null,{projectId:e,sha:t}),null)}catch(a){return Oe("CodeYam Error: Load Entity: Database error",a,{projectId:e,sha:t}),null}}const Qa=1e3;async function Nd({projectId:e,filePaths:t,fileIds:r,fileNames:s}){if(t&&t.length>50){const l=[];for(let c=0;c<t.length;c+=50){const u=t.slice(c,c+50),p=await Nd({projectId:e,filePaths:u,fileIds:r,fileNames:s});p&&l.push(...p)}return l}const a=$e(),o=[];let i=0;try{for(;;){let l=a.selectFrom("files").selectAll().where("project_id","=",e).limit(Qa).offset(i);if(t){if(t.length===0)return[];l=l.where("path","in",t)}if(r){if(r.length===0)return[];l=l.where("id","in",r)}if(s){if(s.length===0)return[];l=l.where("name","in",s)}const c=await l.execute();if(!c||c.length===0||(o.push(...c),c.length<Qa))break;i+=Qa}return o==null?void 0:o.map(Zo)}catch(l){return console.log("CodeYam Error: Error loading project files in loadFiles",l),null}}async function ti({id:e,slug:t,withBranches:r,withFiles:s,silent:a}){try{let i=$e().selectFrom("projects").selectAll();if(e)i=i.where("id","=",e);else if(t)i=i.where("slug","=",t);else throw new Error("Either id or slug must be provided");const l=await i.executeTakeFirst();if(!l)return null;const c=ra(l);return s&&(c.files=await Nd({projectId:c.id})),r&&(c.branches=await ei({projectId:c.id,includeInactive:!1})),c}catch{return null}}function Ws(e,t){const r={...e};for(const s in t){const a=t[s],o=e[s];a!=null&&typeof a=="object"&&!Array.isArray(a)&&o!==void 0&&o!==null&&typeof o=="object"&&!Array.isArray(o)?r[s]=Ws(o,a):a!==void 0&&(r[s]=a)}return r}async function sn({commitId:e,commitSha:t,metadataUpdate:r,runStatusUpdate:s,archiveCurrentRun:a,updateCallback:o}){for(let c=0;c<=4;c++)try{return await $e().transaction().execute(async u=>{const p=await u.selectFrom("commits").select(["id","metadata"]).$if(!!e,f=>f.where("id","=",e)).$if(!!t,f=>f.where("sha","=",t)).executeTakeFirst();if(!p)return Oe(`CodeYam Error: updateCommitMetadata(): Commit ${e} not found`),null;const h=p.metadata||{};if(s)s.lastUpdatedAt??(s.lastUpdatedAt=new Date().toISOString()),r=Ws(r??{},{currentRun:s});else if(!r&&!o)return h;const m=r?Ws(h,r):h;if(a&&m.currentRun){const f={...m.currentRun,archivedAt:new Date().toISOString()};m.historicalRuns=[...m.historicalRuns||[],f]}o&&await o(m);try{return await u.updateTable("commits").set({metadata:JSON.stringify(m)}).where("id","=",p.id).returning(["id"]).executeTakeFirst()?m:(Oe(`CodeYam Error: updateCommitMetadata(): Failed to update commit ${e}`),h)}catch(f){return Oe(`CodeYam Error: updateCommitMetadata(): Failed to update commit ${e}`,f),h}})}catch(u){const p=u instanceof Error&&u.message.includes("database is locked");if(p&&c<4){const h=250*Math.pow(2,c);await new Promise(m=>setTimeout(m,h));continue}return Oe(`CodeYam Error: updateCommitMetadata(): Transaction failed for commit ${e}${p?` after ${c+1} attempts`:""}`,u),null}return null}async function Sd(e,t,r="analysis"){try{return await $e().transaction().execute(async s=>{const a=await s.selectFrom("analyses").selectAll().where("id","=",e).executeTakeFirst();if(!a)return Oe(`CodeYam Error: updateFreshAnalysisMetadata(): Analysis ${e} not found (source: ${r})`,null,{analysisId:e,source:r}),null;const o=Jt(a);return t(o.metadata,o),await s.updateTable("analyses").set({metadata:JSON.stringify(o.metadata)}).where("id","=",e).returningAll().executeTakeFirst()?o.metadata:(Oe(`CodeYam Error: updateFreshAnalysisMetadata(): Failed to update analysis ${e} (source: ${r})`,null,{analysisId:e,source:r}),null)})}catch(s){return Oe(`CodeYam Error: updateFreshAnalysisMetadata(): Transaction failed for analysis ${e} (source: ${r})`,s,{analysisId:e,source:r}),null}}async function dr(e,t,r="capture"){for(let o=0;o<=4;o++)try{return await $e().transaction().execute(async i=>{const l=await i.selectFrom("analyses").selectAll().where("id","=",e).executeTakeFirst();if(!l)return Oe(`CodeYam Error: updateFreshAnalysisStatus(): Analysis ${e} not found (source: ${r})`,null,{analysisId:e,source:r}),null;const c=Jt(l);return t(c.status,c),await i.updateTable("analyses").set({status:JSON.stringify(c.status)}).where("id","=",e).returningAll().executeTakeFirst()?c.status:(Oe(`CodeYam Error: updateFreshAnalysisStatus(): Failed to update analysis ${e} (source: ${r})`,null,{analysisId:e,source:r}),null)})}catch(i){const l=i instanceof Error&&i.message.includes("database is locked");if(l&&o<4){const c=250*Math.pow(2,o);await new Promise(u=>setTimeout(u,c));continue}return Oe(`CodeYam Error: updateFreshAnalysisStatus(): Transaction failed for analysis ${e} (source: ${r})${l?` after ${o+1} attempts`:""}`,i,{analysisId:e,source:r}),null}return null}async function rr({projectId:e,projectSlug:t,metadataUpdate:r,updateCallback:s}){if(!e&&!t)throw new Error("Either projectId or projectSlug must be provided");try{return await $e().transaction().execute(async a=>{const o=await a.selectFrom("projects").selectAll().$if(!!e,c=>c.where("id","=",e)).$if(!!t,c=>c.where("slug","=",t)).executeTakeFirst();if(!o)return Oe(`CodeYam Error: updateProjectMetadata(): Project ${e} not found`),null;const i=o.metadata||{};if(!r&&!s)return i;const l=r?Ws(i,r):i;s&&await s(l,ra(o));try{return await a.updateTable("projects").set({metadata:JSON.stringify(l)}).where("id","=",o.id).returningAll().executeTakeFirst()?l:(Oe(`CodeYam Error: updateProjectMetadata(): Failed to update project ${e}`),null)}catch(c){return Oe(`CodeYam Error: updateProjectMetadata(): Failed to update project ${e}`,c),null}})}catch(a){return Oe(`CodeYam Error: updateProjectMetadata(): Transaction failed for project ${e}`,a),null}}const Qf=()=>crypto.randomUUID();function Zf(e){const{id:t,projectId:r,analysisId:s,previousVersionId:a,analysis:o,metadata:i,data:l,...c}=e;return delete c.userScenarios,delete c.comments,"created_at"in c&&delete c.created_at,{...c,id:t??Qf(),metadata:i?JSON.stringify(i):null,project_id:r,analysis_id:s,previous_version_id:a}}async function Xf(e){if(e.length===0)return[];const t=$e(),r=e.map(Zf);try{return(await t.insertInto("scenarios").values(r).onConflict(cr(r[0],"id",["created_at"])).returningAll().execute()).map(fd)}catch(s){return Oe("CodeYam Error: Database error upserting scenarios",s,{scenarioCount:e.length}),null}}const eg=()=>crypto.randomUUID();function tg(e){const{id:t,commitId:r,branchId:s,...a}=e;return delete a.commit,delete a.branch,{...a,id:t??eg(),commit_id:r,branch_id:s}}async function El(e){if(e.length===0)return[];const t=$e(),r=e.map(tg);try{return(await t.insertInto("commit_branches").values(r).onConflict(cr(r[0],"id",["created_at"])).returningAll().execute()).map(Xo)}catch(s){return Oe("CodeYam Error: Database error upserting commit branches",s,{commitBranchCount:e.length,commitBranchIds:e.map(a=>a.id)}),[]}}async function ng(e,t){const r=$e(),s={username:e,avatar_url:t};try{return await r.insertInto("github_users").values(s).onConflict(cr(s,"username",[])).returningAll().executeTakeFirst()||null}catch(a){return Oe("CodeYam Error: Error upserting github user",a,{username:e,avatarUrl:t}),null}}const rg=()=>crypto.randomUUID();function sg(e,t){const{id:r,projectId:s,branchId:a,mergedBranchId:o,aiMessage:i,htmlUrl:l,analyzedAt:c,committedAt:u,author:p,metadata:h,files:m,...f}=e;return delete f.branch,delete f.mergedBranch,delete f.backgroundJob,delete f.analyses,delete f.parents,delete f.entities,delete f.commitBranches,{...f,id:r??rg(),project_id:s??String(t),metadata:h?JSON.stringify(h):void 0,files:m?JSON.stringify(m):void 0,branch_id:a,merged_branch_id:o,author_github_username:p==null?void 0:p.username,html_url:l,ai_message:i,analyzed_at:c,committed_at:u}}async function ag({projectId:e,commits:t}){const r=$e();try{const s=t.reduce((i,l)=>{const{author:c}=l;return c!=null&&c.username&&(c!=null&&c.avatarUrl)&&(i[c.username]=c.avatarUrl),i},{});for(const i in s)await ng(i,s[i]);const a=t.map(i=>sg(i,e));return(await r.insertInto("commits").values(a).onConflict(cr(a[0],"id",["created_at"])).returningAll().execute()).map(_n)}catch(s){return Oe("CodeYam Error: Error saving commits",s,{projectId:e,commitCount:t.length,commitIds:t.map(a=>a.id).filter(Boolean)}),[]}}const og=()=>crypto.randomUUID();function ig(e){const{id:t,files:r,branches:s,team:a,analyzedAt:o,contentChangedAt:i,createdAt:l,updatedAt:c,metadata:u,...p}=e;return{...p,id:t??og(),analyzed_at:o||null,content_changed_at:i||null,created_at:l||new Date().toISOString(),updated_at:c||null,metadata:u?JSON.stringify(u):null,github_token:null,configuration:null,team_id:null}}async function lg(e){try{if(e.length===0)return null;const t=$e(),r=e.map(o=>ig(o)),s=await t.insertInto("projects").values(r).onConflict(cr(r[0],"id",["created_at"])).returningAll().execute(),a=s==null?void 0:s[0];return a?ra(a):null}catch(t){return console.log("Error saving project",t),null}}const Js=H.join(Xs.homedir(),".codeyam","secrets.json"),Hs=H.join(process.cwd(),".codeyam","secrets.json");async function un(){let e={};try{if(G.existsSync(Hs)){const o=await je.readFile(Hs,"utf8");e=JSON.parse(o)}}catch{console.warn(zs.yellow("⚠ Could not read project secrets file, trying home directory"))}if(!e.OPENAI_API_KEY&&!e.ANTHROPIC_API_KEY)try{if(G.existsSync(Js)){const o=await je.readFile(Js,"utf8");e={...JSON.parse(o),...e}}}catch{console.warn(zs.yellow("⚠ Could not read home secrets file, falling back to environment variables"))}const t={},r=e.OPENAI_API_KEY||process.env.OPENAI_API_KEY;r&&(t.OPENAI_API_KEY=r);const s=e.ANTHROPIC_API_KEY||process.env.ANTHROPIC_API_KEY;s&&(t.ANTHROPIC_API_KEY=s);const a=e.GROQ_API_KEY||process.env.GROQ_API_KEY;return a&&(t.GROQ_API_KEY=a),t}async function cg(e,t=!0){const r=t?Js:Hs,s=H.dirname(r);await je.mkdir(s,{recursive:!0}),await je.writeFile(r,JSON.stringify(e,null,2)),await je.chmod(r,384)}function dg(e=!0){return e?Js:Hs}async function Al(){const e=await un(),t=[];for(const r of t)e[r];return{isValid:!0,missing:[],secrets:e}}async function ug(e){console.log(),console.log(zs.blue("ℹ Configuration needed")),console.log();const t={};for(const r of e)switch(r){case"OPENAI_API_KEY":const s=await Xh({type:"password",name:"key",message:"OpenAI API Key",validate:a=>a&&!a.startsWith("sk-")?"OpenAI API key should start with sk-":!0});s.key&&(t.OPENAI_API_KEY=s.key);break}return t}async function pg(e=!0){const t=await Al();if(t.isValid)return t.secrets;const r=await ug(t.missing),a={...await un(),...r};await cg(a,e);const o=dg(e);return console.log(zs.green(`✓ Configuration saved to ${o}`)),(await Al()).secrets}function hg(e){const t=H.resolve(e),r=H.parse(t).root;return t===r||t===H.resolve(Xs.homedir())}function Cd(e=process.cwd()){let t=H.resolve(e);const r=H.parse(t).root;for(;t!==r;){if(hg(t))return null;const s=H.join(t,".codeyam","config.json");if(G.existsSync(s))return t;t=H.dirname(t)}return null}let kd=Cd();function Se(){return kd}function mg(e){kd=e}function _d(e){const t={...e};for(const r in e)if(r.includes(".")){const s=r.replace(/\./g,"");t[s]=e[r]}return t}const fg={"Accordion.Item":e=>`<CYAccordion.Root type="single" collapsible>${e}</CYAccordion.Root>`,"Accordion.Header":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1">${e}</CYAccordion.Item></CYAccordion.Root>`,"Accordion.Trigger":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1"><CYAccordion.Header>${e}</CYAccordion.Header></CYAccordion.Item></CYAccordion.Root>`,"Accordion.Content":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1">${e}</CYAccordion.Item></CYAccordion.Root>`,"AlertDialog.Trigger":e=>`<CYAlertDialog.Root>${e}</CYAlertDialog.Root>`,"AlertDialog.Portal":e=>`<CYAlertDialog.Root>${e}</CYAlertDialog.Root>`,"AlertDialog.Overlay":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal>${e}</CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Content":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal>${e}</CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Title":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Description":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Action":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Cancel":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"Avatar.Image":e=>`<CYAvatar.Root>${e}</CYAvatar.Root>`,"Avatar.Fallback":e=>`<CYAvatar.Root>${e}</CYAvatar.Root>`,"Checkbox.Indicator":e=>`<CYCheckbox.Root>${e}</CYCheckbox.Root>`,"Collapsible.Trigger":e=>`<CYCollapsible.Root>${e}</CYCollapsible.Root>`,"Collapsible.Content":e=>`<CYCollapsible.Root>${e}</CYCollapsible.Root>`,"ContextMenu.Trigger":e=>`<CYContextMenu.Root>${e}</CYContextMenu.Root>`,"ContextMenu.Portal":e=>`<CYContextMenu.Root>${e}</CYContextMenu.Root>`,"ContextMenu.Content":e=>`<CYContextMenu.Root><CYContextMenu.Portal>${e}</CYContextMenu.Portal></CYContextMenu.Root>`,"ContextMenu.Item":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.CheckboxItem":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.RadioGroup":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.RadioItem":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.RadioGroup value="item-1">${e}</CYContextMenu.RadioGroup></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.ItemIndicator":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.CheckboxItem checked>${e}</CYContextMenu.CheckboxItem></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Label":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Separator":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Sub":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.SubTrigger":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.Sub>${e}</CYContextMenu.Sub></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.SubContent":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.Sub>${e}</CYContextMenu.Sub></CYContextMenu.Content></CYContextMenu.Root>`,"Dialog.Trigger":e=>`<CYDialog.Root>${e}</CYDialog.Root>`,"Dialog.Portal":e=>`<CYDialog.Root>${e}</CYDialog.Root>`,"Dialog.Overlay":e=>`<CYDialog.Root><CYDialog.Portal>${e}</CYDialog.Portal></CYDialog.Root>`,"Dialog.Content":e=>`<CYDialog.Root><CYDialog.Portal>${e}</CYDialog.Portal></CYDialog.Root>`,"Dialog.Title":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"Dialog.Description":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"Dialog.Close":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"DropdownMenu.Trigger":e=>`<CYDropdownMenu.Root>${e}</CYDropdownMenu.Root>`,"DropdownMenu.Portal":e=>`<CYDropdownMenu.Root>${e}</CYDropdownMenu.Root>`,"DropdownMenu.Content":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Portal>${e}</CYDropdownMenu.Portal></CYDropdownMenu.Root>`,"DropdownMenu.Item":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.CheckboxItem":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.RadioGroup":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.RadioItem":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.RadioGroup value="item-1">${e}</CYDropdownMenu.RadioGroup></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.ItemIndicator":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.CheckboxItem checked>${e}</CYDropdownMenu.CheckboxItem></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Label":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Separator":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Sub":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.SubTrigger":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.Sub>${e}</CYDropdownMenu.Sub></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.SubContent":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.Sub>${e}</CYDropdownMenu.Sub></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"Form.Field":e=>`<CYForm.Root>${e}</CYForm.Root>`,"Form.Label":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Control":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Message":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.ValidityState":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Submit":e=>`<CYForm.Root>${e}</CYForm.Root>`,"HoverCard.Trigger":e=>`<CYHoverCard.Root>${e}</CYHoverCard.Root>`,"HoverCard.Portal":e=>`<CYHoverCard.Root>${e}</CYHoverCard.Root>`,"HoverCard.Content":e=>`<CYHoverCard.Root><CYHoverCard.Portal>${e}</CYHoverCard.Portal></CYHoverCard.Root>`,"Menubar.Menu":e=>`<CYMenubar.Root>${e}</CYMenubar.Root>`,"Menubar.Trigger":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Portal":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Content":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Item":e=>`<CYMenubar.Root><CYMenubar.Menu><CYMenubar.Content>${e}</CYMenubar.Content></CYMenubar.Menu></CYMenubar.Root>`,"NavigationMenu.List":e=>`<CYNavigationMenu.Root>${e}</CYNavigationMenu.Root>`,"NavigationMenu.Item":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List>${e}</CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Trigger":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item>${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Content":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item><CYNavigationMenu.Trigger />{/* Dummy trigger for context */}${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Link":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item>${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Indicator":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item><CYNavigationMenu.Trigger />{/* Dummy trigger for context */}</CYNavigationMenu.Item>${e}</CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Viewport":e=>`<CYNavigationMenu.Root>${e}</CYNavigationMenu.Root>`,"Popover.Trigger":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Popover.Portal":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Popover.Content":e=>`<CYPopover.Root><CYPopover.Portal>${e}</CYPopover.Portal></CYPopover.Root>`,"Popover.Close":e=>`<CYPopover.Root><CYPopover.Content>${e}</CYPopover.Content></CYPopover.Root>`,"Popover.Anchor":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Progress.Indicator":e=>`<CYProgress.Root value={50}>${e}</CYProgress.Root>`,"RadioGroup.Item":e=>`<CYRadioGroup.Root>${e}</CYRadioGroup.Root>`,"RadioGroup.Indicator":e=>`<CYRadioGroup.Root><CYRadioGroup.Item value="item-1">${e}</CYRadioGroup.Item></CYRadioGroup.Root>`,"ScrollArea.Viewport":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"ScrollArea.Scrollbar":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"ScrollArea.Thumb":e=>`<CYScrollArea.Root><CYScrollArea.Scrollbar orientation="vertical">${e}</CYScrollArea.Scrollbar></CYScrollArea.Root>`,"ScrollArea.Corner":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"Select.Trigger":e=>`<CYSelect.Root>${e}</CYSelect.Root>`,"Select.Value":e=>`<CYSelect.Root><CYSelect.Trigger>${e}</CYSelect.Trigger></CYSelect.Root>`,"Select.Icon":e=>`<CYSelect.Root><CYSelect.Trigger>${e}</CYSelect.Trigger></CYSelect.Root>`,"Select.Portal":e=>`<CYSelect.Root>${e}</CYSelect.Root>`,"Select.Content":e=>`<CYSelect.Root><CYSelect.Portal>${e}</CYSelect.Portal></CYSelect.Root>`,"Select.Viewport":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.Item":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.ItemText":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Item value="item-1">${e}</CYSelect.Item></CYSelect.Content></CYSelect.Root>`,"Select.ItemIndicator":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Item value="item-1">${e}</CYSelect.Item></CYSelect.Content></CYSelect.Root>`,"Select.Group":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.Label":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Group>${e}</CYSelect.Group></CYSelect.Content></CYSelect.Root>`,"Select.Separator":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Slider.Track":e=>`<CYSlider.Root>${e}</CYSlider.Root>`,"Slider.Range":e=>`<CYSlider.Root><CYSlider.Track>${e}</CYSlider.Track></CYSlider.Root>`,"Slider.Thumb":e=>`<CYSlider.Root>${e}</CYSlider.Root>`,"Switch.Thumb":e=>`<CYSwitch.Root>${e}</CYSwitch.Root>`,"Tabs.List":e=>`<CYTabs.Root defaultValue="tab1">${e}</CYTabs.Root>`,"Tabs.Trigger":e=>`<CYTabs.Root defaultValue="tab1"><CYTabs.List>${e}</CYTabs.List></CYTabs.Root>`,"Tabs.Content":e=>`<CYTabs.Root defaultValue="tab1">${e}</CYTabs.Root>`,"Toast.Root":e=>`<CYToast.Provider>${e}</CYToast.Provider>`,"Toast.Title":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Description":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Action":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Close":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Viewport":e=>`<CYToast.Provider>${e}</CYToast.Provider>`,"ToggleGroup.Item":e=>`<CYToggleGroup.Root type="single">${e}</CYToggleGroup.Root>`,"Toolbar.Button":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.Link":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.Separator":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.ToggleGroup":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.ToggleItem":e=>`<CYToolbar.Root><CYToolbar.ToggleGroup type="single">${e}</CYToolbar.ToggleGroup></CYToolbar.Root>`,"Tooltip.Root":e=>`<CYTooltip.Provider>${e}</CYTooltip.Provider>`,"Tooltip.Trigger":e=>`<CYTooltip.Provider><CYTooltip.Root>${e}</CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Portal":e=>`<CYTooltip.Provider><CYTooltip.Root>${e}</CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Content":e=>`<CYTooltip.Provider><CYTooltip.Root><CYTooltip.Portal>${e}</CYTooltip.Portal></CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Arrow":e=>`<CYTooltip.Provider><CYTooltip.Root><CYTooltip.Content>${e}</CYTooltip.Content></CYTooltip.Root></CYTooltip.Provider>`};_d(fg);const gg={"Command.Input":e=>`<CYCommand>${e}</CYCommand>`,"Command.List":e=>`<CYCommand>${e}</CYCommand>`,"Command.Item":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Group":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Separator":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Empty":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Loading":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Shortcut":e=>`<CYCommand><CYCommand.List><CYCommand.Item value="x">${e}</CYCommand.Item></CYCommand.List></CYCommand>`,"Command.Dialog":e=>`<CYCommand.Dialog open>${e}</CYCommand.Dialog>`};_d(gg);function $r(e,t,r=new WeakSet){if(!t)return e;if(!e)return t;try{if(typeof t=="object"&&t!==null){if(r.has(t))throw new Error("Circular reference detected during deep merge");r.add(t)}if(Array.isArray(t)){const a=Array.isArray(e)?e:[],o=[];for(let i=0;i<t.length;i++){const l=t[i];l&&typeof l=="object"&&!Array.isArray(l)||Array.isArray(l)?o[i]=$r(a[i],l,r):o[i]=l}return o}const s={...e};for(const a in t)if(t[a]===null)s[a]=null;else if(Array.isArray(t[a])){const o=Array.isArray(e[a])?e[a]:[];s[a]=[];for(let i=0;i<t[a].length;i++){const l=t[a][i];typeof l=="object"&&l!==null?s[a][i]=$r(o[i],l,r):s[a][i]=l}}else typeof t[a]=="object"&&t[a]!==null?s[a]=$r(s[a]??{},t[a],r):s[a]=t[a];return s}catch(s){throw console.log("CodeYam: Error merging data",e,t),s}}async function yg({projectId:e,commit:t,branch:r}){var l,c,u,p,h,m,f;let s;const a={commitId:t.id,branchId:r.id,active:!0},o=await Hf({projectId:e,commitId:t.id,includeBranches:!0});if(o&&o.length>0){s=(l=o.sort((g,x)=>{var b,v,S,w;return(((v=(b=g.branch.metadata)==null?void 0:b.permanent)==null?void 0:v.order)??999)-(((w=(S=x.branch.metadata)==null?void 0:S.permanent)==null?void 0:w.order)??999)})[0])==null?void 0:l.branch,s&&((u=(c=r.metadata)==null?void 0:c.permanent)==null?void 0:u.order)!==void 0&&(((h=(p=r.metadata)==null?void 0:p.permanent)==null?void 0:h.order)<=((f=(m=s.metadata)==null?void 0:m.permanent)==null?void 0:f.order)?s=r:a.active=!1);const y=o.filter(g=>g.active&&g.branch.id!==s.id||!g.active&&g.branch.id===s.id);y.length>0&&await El(y.map(g=>({...g,active:g.branchId===s.id})))}(o==null?void 0:o.find(y=>y.branchId===a.branchId))||await El([a])}let jl=!1;function pn(){if(process.env.SQLITE_PATH)return process.env.SQLITE_PATH;const e=Se();if(!e)throw new Error("Could not find project root. Please run this command inside a CodeYam project.");return ee.join(e,".codeyam","db.sqlite3")}async function Je(){if(!jl){jl=!0;const t=Se();t&&await bg(t)}const e=await pg();process.env.SQLITE_PATH=pn(),e.OPENAI_API_KEY&&(process.env.OPENAI_API_KEY=e.OPENAI_API_KEY)}async function T_(){try{return await Je(),await ti({slug:"__test_connection__",silent:!0}),!0}catch(e){return console.error("Database connection test failed:",e),!1}}async function Re(e){await Je();const t=await ti({slug:e,silent:!0});if(!t)throw new Error(`Project with slug "${e}" not found in database`);const r=await ei({projectId:t.id,names:["_local"]}),s=r==null?void 0:r[0];if(!s)throw new Error(`Local development branch not found for project "${e}". Please run "codeyam init" to set up local analysis.`);return{project:t,branch:s}}async function M_(e){await Je();const t=await ti({slug:e.slug,silent:!0});if(t)return{project:t,created:!1};const r={id:Wo(),name:e.slug,slug:e.slug,path:`local:${process.cwd()}`,metadata:{packageManager:e.packageManager,unapprovedPaths:e.unapprovedPaths,webapps:e.webapps}};try{return{project:await lg([r]),created:!0}}catch(s){throw new Error(`Failed to create project: ${s.message}`)}}async function $_(e){await Je();const t=await ei({projectId:e.id,names:["_local"]});if(t&&t.length>0)return{branch:t[0],created:!1};const r={projectId:e.id,name:"_local",ref:"_local",primary:!0,activeAt:new Date().toISOString(),contentChangedAt:new Date().toISOString(),metadata:{contributors:[{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"}],commits:{total:0,last7Days:[]},timeline:[{title:"Local branch created",date:new Date().toISOString(),authors:[{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"}],sha:"local-init"}]}},s=await Ff([r]);if(!s||s.length===0)throw new Error("Failed to create _local branch");return{branch:s[0],created:!0}}async function xg(e,t,r){await Je();const s=Se(),a=Of(`${e.slug}-local-${Date.now()}-${Math.random()}`),o=r.map(c=>{let u="";if(s)try{if(u=De(`git diff HEAD -- "${c}"`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10}),!u)try{const p=De(`cat "${c}"`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"]});if(p){const h=p.split(`
|
|
30
|
-
`);u=`@@ -0,0 +1,${h.length} @@
|
|
31
|
-
${h.map(m=>`+${m}`).join(`
|
|
32
|
-
`)}`}}catch{}}catch{}return{fileName:c,status:"modified",patch:u}}),i={sha:a,projectId:e.id,branchId:t.id,message:`Local analysis: ${r.join(", ")} at ${new Date().toISOString()}`,url:`local://codeyam/${e.slug}/${a}`,htmlUrl:`local://codeyam/${e.slug}/${a}`,author:{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"},committedAt:new Date().toISOString(),parents:[],files:o,metadata:{baseline:!1,receivedAt:new Date().toISOString()}},l=await ag({projectId:e.id,commits:[i]});if(!l||l.length===0)throw new Error("Failed to create fake commit");return await yg({projectId:e.id,commit:l[0],branch:t}),l[0]}async function bg(e){const t=ee.join(e,".codeyam","db.sqlite3"),r=ee.join(e,".codeyam","config.json");if(G.existsSync(t)||!G.existsSync(r))return!1;const{default:s}=await import("./init-UXl-3vVp.js");return await s.handler({force:!0,autoInit:!0,$0:"",_:[]}),!0}async function Mn(){await Je();const e=await Xe({excludeMetadata:!0});if(!e||e.length===0)return[];const t=new Map;for(const c of e){const u=`${c.name}::${c.filePath}`,p=t.get(u);(!p||c.createdAt&&p.createdAt&&c.createdAt>p.createdAt)&&t.set(u,c)}const r=[...t.values()],s=e.map(c=>c.sha),a=await ln({entityShas:s,excludeMetadata:!0}),o=new Map;if(a)for(const c of a)o.has(c.entitySha)||o.set(c.entitySha,[]),o.get(c.entitySha).push(c);const i=new Map;for(const c of e){const u=`${c.name}::${c.filePath}`,p=i.get(u)||[];p.push(c.sha),i.set(u,p)}return r.map(c=>{const u=o.get(c.sha)||[];if(u.length>0)return{...c,analyses:u};const p=`${c.name}::${c.filePath}`,h=i.get(p)||[];for(const m of h){if(m===c.sha)continue;const f=o.get(m);if(f&&f.length>0)return{...c,analyses:f}}return{...c,analyses:[]}})}async function vg(e){await Je();const t=await Xe(e);return!t||t.length===0?[]:t.filter(r=>{var s;return!((s=r.metadata)!=null&&s.isSuperseded)})}async function aa(e,t){await Je();const r=await ln({entityShas:[e],limit:1});if(r&&r.length>0&&t){const s=await wd({projectId:r[0].projectId,sha:e});if(s)for(const a of r)a.entity=s}return r||[]}async function oa(e){if(await Je(),e.name&&e.projectId){const r=await ln({projectId:e.projectId,entityName:e.name,limit:10});if(r&&r.length>0){const s=r.filter(o=>{const i=o.scenarios&&o.scenarios.length>0,l=!e.filePath||o.filePath===e.filePath;return i&&l});if(s.length>0)return s.sort((o,i)=>{const l=new Date(o.createdAt||0).getTime();return new Date(i.createdAt||0).getTime()-l}),s[0];const a=r.filter(o=>o.scenarios&&o.scenarios.length>0);if(a.length>0)return a.sort((o,i)=>{const l=new Date(o.createdAt||0).getTime();return new Date(i.createdAt||0).getTime()-l}),a[0]}}const t=await ln({entityShas:[e.sha],limit:1});return t&&t.length>0?t[0]:null}async function Ed(e){await Je();const t=await ln({entityShas:[e],limit:1});return(t==null?void 0:t[0])??null}async function jn(e){await Je();const t=await Ye();if(!t)return null;const{project:r}=await Re(t);return await wd({projectId:r.id,sha:e})}async function Ad(e){var s,a,o,i,l,c,u,p;await Je();const t=[],r=[];if((s=e.metadata)!=null&&s.importedExports&&e.metadata.importedExports.length>0){const h=e.metadata.importedExports;for(const m of h){if(!m.filePath||!m.name)continue;const f=m.resolvedFilePath??m.filePath,y=m.resolvedName??m.name;let g=await Xe({projectId:e.projectId,filePaths:[f],names:[y]});if((!g||g.length===0)&&m.resolvedIsDefault&&(g=await Xe({projectId:e.projectId,filePaths:[f],names:["default"]})),g&&g.length>0){const x=g[0],b=await ln({entityShas:[x.sha],limit:1});let v,S,w;if(b&&b.length>0&&b[0].scenarios){const C=b[0],k=C.scenarios||[],N=k.length,A=k.find(M=>{var $,I;return(I=($=M.metadata)==null?void 0:$.screenshotPaths)==null?void 0:I[0]});A&&(v=(o=(a=A.metadata)==null?void 0:a.screenshotPaths)==null?void 0:o[0],S=A.name),w={status:((i=x.metadata)==null?void 0:i.previousVersionWithAnalyses)||C.entitySha!==x.sha?"out_of_date":"up_to_date",scenarioCount:N,timestamp:C.createdAt?new Date(C.createdAt).toLocaleDateString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit"}):void 0}}else w={status:"not_analyzed"};t.push({...x,screenshotPath:v,scenarioName:S,analysisStatus:w})}}}if((l=e.metadata)!=null&&l.importedBy){const h=[];for(const m in e.metadata.importedBy)for(const f in e.metadata.importedBy[m]){const y=e.metadata.importedBy[m][f];y.shas&&h.push(...y.shas)}if(h.length>0){const m=await Xe({projectId:e.projectId,shas:h});if(m)for(const f of m){const y=await ln({entityShas:[f.sha],limit:1});let g,x,b;if(y&&y.length>0&&y[0].scenarios){const v=y[0],S=v.scenarios||[],w=S.length,C=S.find(N=>{var A,_;return(_=(A=N.metadata)==null?void 0:A.screenshotPaths)==null?void 0:_[0]});C&&(g=(u=(c=C.metadata)==null?void 0:c.screenshotPaths)==null?void 0:u[0],x=C.name),b={status:((p=f.metadata)==null?void 0:p.previousVersionWithAnalyses)||v.entitySha!==f.sha?"out_of_date":"up_to_date",scenarioCount:w,timestamp:v.createdAt?new Date(v.createdAt).toLocaleDateString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit"}):void 0}}else b={status:"not_analyzed"};r.push({...f,screenshotPath:g,scenarioName:x,analysisStatus:b})}}}return{importedEntities:t,importingEntities:r}}async function Ye(){try{const e=Se();if(!e)return null;const t=ee.join(e,".codeyam","config.json");return JSON.parse(await Pe.readFile(t,"utf8")).projectSlug||null}catch(e){return console.error("[getProjectSlug] Error:",e),null}}async function ur(){await Je();try{const e=await Ye();if(!e)return null;const{project:t,branch:r}=await Re(e),s=await Us({projectId:t.id,branchId:r.id,limit:1,skipRelations:!0});return s&&s.length>0?s[0]:null}catch(e){return console.error("[getCurrentCommit] Error:",e),null}}async function ia(){try{const e=Se();if(!e)return null;const t=ee.join(e,".codeyam","config.json");return JSON.parse(await Pe.readFile(t,"utf8"))}catch(e){return console.error("[getProjectConfig] Error:",e),null}}async function jd(e){try{const t=Se();if(!t)return console.error("[getEntityCodeFromFilesystem] No project root found"),null;if(!e.filePath)return console.error("[getEntityCodeFromFilesystem] Entity has no filePath"),null;const r=ee.join(t,e.filePath);return await Pe.readFile(r,"utf8")}catch(t){return console.error("[getEntityCodeFromFilesystem] Error reading file:",t),null}}async function Pd(e){try{const t=Se();if(!t||!e.filePath)return!1;const r=ee.join(t,e.filePath),a=(await Pe.stat(r)).mtime.getTime(),o=e.updatedAt||e.createdAt;if(!o)return!1;const i=new Date(o).getTime();return a>i+1e3}catch{return!1}}async function Td(e){if(await Je(),!e.filePath||!e.name||!e.projectId)return console.error("[getEntityHistory] Entity missing required fields (filePath, name, or projectId)"),[];const t=await Xe({projectId:e.projectId,filePaths:[e.filePath],names:[e.name]});if(!t||t.length===0)return[];const r=t.map(i=>i.sha),s=await ln({entityShas:r}),a=new Map;if(s)for(const i of s)a.has(i.entitySha)||a.set(i.entitySha,[]),a.get(i.entitySha).push(i);for(const[i,l]of a.entries())l.sort((c,u)=>{const p=new Date(c.createdAt||0).getTime();return new Date(u.createdAt||0).getTime()-p});const o=t.map(i=>({...i,analyses:a.get(i.sha)||[]}));return o.sort((i,l)=>{var p,h;const c=((p=i.analyses[0])==null?void 0:p.createdAt)||i.createdAt||"",u=((h=l.analyses[0])==null?void 0:h.createdAt)||l.createdAt||"";return new Date(u).getTime()-new Date(c).getTime()}),o}async function Md(e){try{const t=Se();if(!t)return console.error("[updateProjectConfig] No project root found"),!1;const r=ee.join(t,".codeyam","config.json"),s=await Pe.readFile(r,"utf8"),a=JSON.parse(s),o={...a,...e},i=JSON.stringify(o,null,2);if(await Pe.writeFile(r,i,"utf8"),a.projectSlug){const l={};e.universalMocks!==void 0&&(l.universalMocks=e.universalMocks),e.pathsToIgnore!==void 0&&(l.pathsToIgnore=e.pathsToIgnore),e.webapps!==void 0&&(l.webapps=e.webapps),await rr({projectSlug:a.projectSlug,metadataUpdate:l})}return!0}catch(t){return console.error("[updateProjectConfig] Error:",t),!1}}const wg=Object.freeze(Object.defineProperty({__proto__:null,getAllEntities:Mn,getAnalysesForEntity:aa,getAnalysisForExactEntitySha:Ed,getCurrentCommit:ur,getCurrentEntities:vg,getEntityBySha:jn,getEntityCodeFromFilesystem:jd,getEntityHistory:Td,getLatestAnalysisForEntity:oa,getProjectConfig:ia,getProjectSlug:Ye,getRelatedEntities:Ad,hasFileBeenModifiedSinceEntity:Pd,requireBranchAndProject:Re,updateProjectConfig:Md},Symbol.toStringTag,{value:"Module"})),$d="secrets.json";function Id(e){return ee.join(e,".codeyam",$d)}function Fd(){return ee.join(vo.homedir(),".codeyam",$d)}async function la(e){let t={};try{const r=Fd(),s=await Pe.readFile(r,"utf-8");t=JSON.parse(s)}catch{}try{const r=Id(e),s=await Pe.readFile(r,"utf-8"),a=JSON.parse(s);t={...t,...a}}catch{}return t}async function Ng(e,t,r=!0){const s=r?Fd():Id(e),a=ee.dirname(s);await Pe.mkdir(a,{recursive:!0}),await Pe.writeFile(s,JSON.stringify(t,null,2)+`
|
|
33
|
-
`,"utf-8")}async function Sg(e){const t=await la(e);return!!(t.ANTHROPIC_API_KEY&&t.ANTHROPIC_API_KEY.length>0)||!!(t.OPENAI_API_KEY&&t.OPENAI_API_KEY.length>0)||!!(t.GROQ_API_KEY&&t.GROQ_API_KEY.length>0)||!!(t.OPENROUTER_API_KEY&&t.OPENROUTER_API_KEY.length>0)}const Cg=3;let Ar=0;async function hs(e){if(!e||e.length===0)return[];if(Ar>=Cg)return console.warn(`[Loader] Circuit breaker open (${Ar} consecutive timeouts), skipping entity fetch for ${e.length} entities`),[];const t=Math.min(Math.max(e.length*2e3,1e4),6e4);return new Promise(r=>{let s=!1;const a=setTimeout(()=>{s||(s=!0,Ar++,console.warn(`[Loader] Entity fetch timeout after ${t}ms for ${e.length} entities`),r([]))},t);Xe({shas:e,excludeMetadata:!0}).then(o=>{s||(s=!0,clearTimeout(a),Ar=0,r(o||[]))}).catch(()=>{s||(s=!0,clearTimeout(a),Ar++,r([]))})})}function kg({sourcePath:e,destinationPath:t,excludes:r,silent:s}){if(process.platform!=="darwin")return!1;if(St(t))try{if(Wh(t).length>0)return!1;Ja(t,{recursive:!0})}catch{return!1}try{De(`cp -c -R "${e}" "${t}"`,{stdio:"pipe",timeout:3e5});for(const a of r)if(a.includes("*"))try{De(`rm -rf "${zr(t,a)}"`,{stdio:"pipe",shell:"/bin/sh"})}catch{}else{const o=zr(t,a);St(o)&&Ja(o,{recursive:!0,force:!0})}return s||console.log(`Directory cloned (APFS CoW) from ${e} to ${t}`),!0}catch{if(St(t))try{Ja(t,{recursive:!0})}catch{}return!1}}async function _g({sourcePath:e,destinationPath:t,excludes:r=[],keepExisting:s=!1,silent:a=!1,extraArgs:o=[],timeoutMs:i=3e5}){const l=Date.now();if(!s&&o.length===0&&kg({sourcePath:e,destinationPath:t,excludes:r,silent:a})){if(!a){const u=((Date.now()-l)/1e3).toFixed(1);console.log(`Directory synced from ${e} to ${t} [Time: ${u}s]`)}return}return new Promise((c,u)=>{const p=e.endsWith("/")?e:`${e}/`,h=t.endsWith("/")?t:`${t}/`,m=["-a","--no-specials"];s||m.push("--delete","--force"),m.push(...o);for(const x of r)m.push(`--exclude=${x}`);m.push(p,h);const f=xt("rsync",m);let y=!1;const g=i?setTimeout(()=>{if(!y){y=!0,f.kill("SIGKILL");const x=((Date.now()-l)/1e3).toFixed(1);u(new Error(`rsync timed out after ${x}s syncing ${e} → ${t}`))}},i):void 0;f.on("exit",x=>{if(!y)if(y=!0,g&&clearTimeout(g),x===0){if(!a){const b=((Date.now()-l)/1e3).toFixed(1);console.log(`Directory synced from ${e} to ${t} [Time: ${b}s]`)}c()}else console.error(`CodeYam Error: rsync failed with code: ${x}`,JSON.stringify({rsyncArgs:m},null,2)),u(new Error(`rsync failed with exit code ${x}`))}),f.on("error",x=>{y||(y=!0,g&&clearTimeout(g),a||console.log("Error occurred:",x),u(x))})})}const Eg=Ho(Jo);async function Ag(e){return new Promise(t=>setTimeout(t,e))}function jg(e){try{return process.kill(e,0),!0}catch{return!1}}async function Dd(e){try{const{stdout:t}=await Eg(`ps -A -o pid=,ppid= | awk '$2 == ${e} { print $1 }'`),r=t.trim().split(`
|
|
34
|
-
`).filter(a=>a.trim()).map(a=>parseInt(a.trim(),10)).filter(a=>!isNaN(a)),s=[...r];for(const a of r){const o=await Dd(a);s.push(...o)}return s}catch{return[]}}function Pl(e,t,r){try{process.kill(e,t)}catch(s){r==null||r(`Error sending ${t} to process ${e}: ${s}`)}}async function Pg(e,t,r){const s=await Dd(e);for(const a of s.reverse())await Pl(a,t,r);await Pl(e,t,r)}async function Br(e,t=console.log,r=1){if(e==process.pid)throw new Error(`Eek! killProcess(${e}) called on self!`);let s=0;async function a(o,i){await Pg(e,o,t);for(let l=0;l<i;l++)if(await Ag(1e3),s+=1e3,!await jg(e))return t(`Process tree ${e} successfully killed with ${o} after ${s/1e3} seconds.`),!0;return t(`Process tree still running after ${o}...`),!1}if(await a("SIGINT",5)||await a("SIGTERM",5))return!0;for(let o=0;o<r;o++)if(await a("SIGKILL",2))return!0;return console.warn(`CodeYam Warning: Completely failed to kill process tree ${e} after ${s/1e3} seconds.`),!1}function Tg(e){const t=new Date().toISOString();e.currentRun&&(e.currentRun.archivedAt=t,e.historicalRuns??(e.historicalRuns=[]),e.historicalRuns.push(e.currentRun)),e.currentRun={id:pm(),createdAt:t}}tm.config({quiet:!0});var Rd=(e=>(e.Server="server",e.Analyzer="analyzer",e.Capture="capture",e.Controller="controller",e.Worker="worker",e.Project="project",e.Other="other",e))(Rd||{});class Mg extends nm{constructor(){super(...arguments),this.processes=new Map}register(t){const r=rm(),{process:s,type:a,name:o,metadata:i,parentId:l}=t,c={id:r,type:a,name:o,pid:s.pid,state:"running",startedAt:Date.now(),metadata:i,parentId:l,children:[]};if(this.processes.set(r,{info:c,process:s}),l){const h=this.processes.get(l);h&&(h.info.children=h.info.children||[],h.info.children.push(r))}const u=(h,m)=>{this.handleProcessExit(r,h,m)},p=h=>{this.handleProcessError(r,h)};return s.on("exit",u),s.on("error",p),s.__cleanup=()=>{s.removeListener("exit",u),s.removeListener("error",p)},this.emit("processStarted",c),r}unregister(t){const r=this.processes.get(t);return r?(r.process.__cleanup&&r.process.__cleanup(),this.processes.delete(t),!0):!1}getInfo(t){const r=this.processes.get(t);return r?{...r.info}:null}listAll(){return Array.from(this.processes.values()).map(t=>({...t.info}))}listByType(t){return this.listAll().filter(r=>r.type===t)}listByState(t){return this.listAll().filter(r=>r.state===t)}findByName(t){return this.listAll().filter(r=>r.name===t)}async shutdown(t,r={}){const s=this.processes.get(t);if(!s)throw new Error(`Process not found: ${t}`);const{info:a,process:o}=s;if(a.state==="completed"||a.state==="failed"||a.state==="killed")return;if(r.shutdownChildren&&a.children&&a.children.length>0&&await Promise.all(a.children.map(l=>this.shutdown(l,r))),o.pid)try{await Br(o.pid,l=>console.log(`[Process ${t}] ${l}`))}catch(l){console.warn(`Error killing process ${t}:`,l)}await new Promise(l=>setTimeout(l,100)),a.state==="running"&&(a.state="killed",a.endedAt=Date.now());const i=o.__cleanup;i&&i()}async shutdownByType(t,r={}){const s=this.listByType(t);await Promise.all(s.map(a=>this.shutdown(a.id,r)))}async shutdownAll(t={}){const r=this.listAll();await Promise.all(r.map(s=>this.shutdown(s.id,t)))}cleanupCompleted(t={}){const{retentionMs:r=6e4}=t,s=Date.now();for(const[a,o]of this.processes.entries()){const{info:i}=o;if((i.state==="completed"||i.state==="failed"||i.state==="killed")&&i.endedAt&&s-i.endedAt>r){const l=o.process.__cleanup;l&&l(),this.processes.delete(a)}}}handleProcessExit(t,r,s){const a=this.processes.get(t);if(!a)return;const{info:o}=a;o.endedAt=Date.now(),o.exitCode=r,o.signal=s,r===0?o.state="completed":s?o.state="killed":o.state="failed",this.emit("processExited",o)}handleProcessError(t,r){const s=this.processes.get(t);if(!s)return;const{info:a}=s;a.endedAt=Date.now(),a.state="failed",a.metadata={...a.metadata,error:r.message},this.emit("processExited",a)}}let Za=null;function $g(){return Za||(Za=new Mg),Za}const Ig={stdoutToConsole:!0,stdoutToFile:!0,stderrToConsole:!0,stderrToFile:!0};function Fg({command:e,args:t,workingDir:r,outputOptions:s=Ig,processName:a,env:o}){const i={...process.env,...o||{},CODEYAM_PROCESS_NAME:`codeyam-${a}`},l=xt(e,t,{cwd:r,env:i});return $g().register({process:l,type:Rd.Other,name:a,metadata:{command:e,args:t,workingDir:r}}),{promise:new Promise(p=>{const h=f=>{const y=ee.join(r,"log.txt");G.appendFile(y,f,g=>{g&&console.log("Error writing to log file:",g)})},m=(f,y="")=>{const g=new Date().toLocaleString();return f.split(`
|
|
35
|
-
`).map(b=>b.trim()?`[${g}]${y} ${b}`:b).join(`
|
|
36
|
-
`)};l.stdout.on("data",function(f){const y=(f==null?void 0:f.toString())??"",g=m(y);s.stdoutToConsole&&console.log(g),s.stdoutToFile&&h(g+`
|
|
37
|
-
`),s.stdoutCallback&&s.stdoutCallback(y)}),l.stderr.on("data",function(f){const y=(f==null?void 0:f.toString())??"",g=m(y,"<STDERR>");s.stderrToConsole&&console.error(g),s.stderrToFile&&h(g+`
|
|
38
|
-
`),s.stderrCallback&&s.stderrCallback(y)}),l.on("exit",function(f){p(f)})}),process:l}}function Dg(e){const t=[];return Object.keys(e).forEach(r=>{const s=e[r];s!==void 0&&(typeof s=="boolean"?s&&t.push(`--${r}`):s!==null&&t.push(`--${r}`,String(s)))}),t}function Rg({absoluteCodeyamRootPath:e,startEnv:t,startArgs:r,outputOptions:s}){const a=Object.entries(t).map(([i,l])=>`${i}=${l}`).join(`
|
|
39
|
-
`);G.writeFileSync(`${e}/.env`,a);const o=Dg(r);return Fg({command:"node",args:["--enable-source-maps","./dist/project/start.js",...o],workingDir:e,outputOptions:s,processName:"analyzer",env:t})}const Og="/tmp/codeyam/local-dev";function Od(e){return H.join(Og,e)}function Ld(e){return H.join(Od(e),"codeyam")}function It(e){return H.join(Od(e),"project")}function Gr(e){return H.join(Ld(e),"log.txt")}const Lg=[".sync-metadata.json","__codeyamMocks__"];async function zg(e,t={}){const{port:r,silent:s=!0}=t,a=It(e);if(r)try{De(`lsof -ti:${r} | xargs kill -9 2>/dev/null || true`,{stdio:s?"ignore":"inherit"})}catch{}try{De(`lsof +D "${a}" 2>/dev/null | grep node | awk '{print $2}' | xargs kill -9 2>/dev/null || true`,{stdio:s?"ignore":"inherit"})}catch{}await new Promise(o=>setTimeout(o,500))}async function Bg(e,t={}){const{killProcesses:r=!0,port:s,silent:a=!0}=t,o=It(e),i=[],l=[];if(!G.existsSync(o))return{removed:i,errors:l};r&&await zg(e,{port:s,silent:a});for(const c of Lg){const u=H.join(o,c);if(G.existsSync(u))try{(await je.stat(u)).isDirectory()?await je.rm(u,{recursive:!0,force:!0}):await je.unlink(u),i.push(c)}catch(p){l.push(`${c}: ${p instanceof Error?p.message:String(p)}`)}}return{removed:i,errors:l}}const Yg=H.dirname(ea(import.meta.url));function Ug(e){let t=e;for(;t!==H.dirname(t);){const r=H.join(t,"package.json");if(G.existsSync(r))try{if(JSON.parse(G.readFileSync(r,"utf8")).name==="@codeyam/codeyam-cli")return t}catch{}t=H.dirname(t)}throw new Error("Could not find @codeyam/codeyam-cli package root")}function ca(){const e=Ug(Yg);return H.join(e,"analyzer-template")}function pr(e){return Ld(e)}function Wg(){const e=ca();return G.existsSync(H.join(e,".finalized"))}async function Tl(e){const t=ca(),r=pr(e),s=Date.now(),a=()=>`${((Date.now()-s)/1e3).toFixed(1)}s`;if(!G.existsSync(t))throw new Error(`Analyzer template not found at ${t}. Did the build process complete successfully?`);await je.mkdir(H.dirname(r),{recursive:!0}),console.log(`[createAnalyzer] Starting rsync: ${t} → ${r}`),await _g({sourcePath:t,destinationPath:r,silent:!0}),console.log(`[createAnalyzer] rsync completed (${a()})`),G.existsSync(H.join(r,"dist"))||(console.warn("[createAnalyzer] WARNING: dist/ not found after rsync — template may not be built. Attempting build..."),De("npm install --include=dev && npm run build",{cwd:r,stdio:"pipe",timeout:3e5}),console.log(`[createAnalyzer] npm install + build completed (${a()})`)),console.log(`[createAnalyzer] Done (${a()})`)}function hr(e,t,r,s){const a=pr(e);if(!G.existsSync(a))throw new Error(`Analyzer not found at ${a}. The analyzer template may not be initialized. Try running 'codeyam init' or contact support if the issue persists.`);const o=void 0;return Rg({absoluteCodeyamRootPath:a,startEnv:t,startArgs:r,outputOptions:{stdoutToConsole:!1,stdoutToFile:!0,stdoutCallback:o,stderrToConsole:!1,stderrToFile:!0,stderrCallback:o}})}function Jg(e){const t=ca(),r=pr(e),s=H.join(t,".build-info.json"),a=H.join(r,".build-info.json");if(!G.existsSync(s))return{isFresh:!1,reason:"Template build marker missing - template may be corrupted"};if(!G.existsSync(r))return{isFresh:!1,reason:"Cached analyzer does not exist"};if(!G.existsSync(a))return{isFresh:!1,reason:"Cached analyzer build marker missing - was created with old version"};try{const o=JSON.parse(G.readFileSync(s,"utf8")),i=JSON.parse(G.readFileSync(a,"utf8"));return o.buildTime>i.buildTime?{isFresh:!1,reason:`Template is newer (${o.buildTimestamp}) than cached version (${i.buildTimestamp})`}:{isFresh:!0}}catch(o){return{isFresh:!1,reason:`Error reading build markers: ${o.message}`}}}async function qr(e,t){const r=pr(e);if(!G.existsSync(r)){t.update("Creating analyzer..."),await Tl(e);return}const s=Jg(e);s.isFresh||(t.update(`Updating analyzer (${s.reason})...`),await Tl(e),t.update("Analyzer updated"))}async function ni(e){await Bg(e,{killProcesses:!1})}const Hg=H.dirname(ea(import.meta.url));function da(){let e=Hg;for(;e!==H.dirname(e);){const t=H.join(e,"package.json");if(G.existsSync(t))try{if(JSON.parse(G.readFileSync(t,"utf8")).name==="@codeyam/codeyam-cli")return e}catch{}e=H.dirname(e)}return null}function nr(e){if(!G.existsSync(e))return null;try{return JSON.parse(G.readFileSync(e,"utf8"))}catch{return null}}function Vg(){const e=da();if(e){const t=[H.join(e,"src/webserver/build-info.json"),H.join(e,"codeyam-cli/src/webserver/build-info.json")];for(const r of t){const s=nr(r);if(s!=null&&s.semanticVersion)return s.semanticVersion}}return"unknown"}function Kg(){const e=da();if(e){const t=H.join(e,"package.json");try{const r=JSON.parse(G.readFileSync(t,"utf8"));if(r.version)return r.version}catch{}}return"unknown"}const ri=Vg(),Xa=Kg();function si(){if(Xa!=="unknown"&&Xa!=="0.1.0")return Xa;const e=da();if(e)for(const t of[H.join(e,"src/webserver/build-info.json"),H.join(e,"codeyam-cli/src/webserver/build-info.json")]){const r=nr(t);if(r!=null&&r.buildNumber)return`dev (build ${r.buildNumber})`}return"dev"}function zd(e){const t=da();let r=null;if(t){const c=[H.join(t,"src/webserver/build-info.json"),H.join(t,"codeyam-cli/src/webserver/build-info.json")];for(const u of c)if(r=nr(u),r)break}const s=ca(),a=H.join(s,".build-info.json"),o=nr(a);let i=null;if(e){const c=pr(e),u=H.join(c,".build-info.json");i=nr(u)}let l=!1;return o&&i?l=o.buildTime>i.buildTime:o&&!i&&e&&(l=!0),{cliVersion:ri,webserverVersion:r,templateVersion:o,cachedAnalyzerVersion:i,isCacheStale:l}}function ua(e){const t=pr(e),r=H.join(t,".build-info.json"),s=nr(r);return(s==null?void 0:s.version)??null}function ai(){const e=Se();return e?H.join(e,".codeyam","server.json"):null}function I_(e){const t=ai();t&&G.writeFileSync(t,JSON.stringify(e,null,2))}function pa(){const e=ai();if(!e||!G.existsSync(e))return null;try{const t=G.readFileSync(e,"utf8");return JSON.parse(t)}catch{return null}}function oi(){const e=ai();if(e)try{G.unlinkSync(e)}catch{}}function Bd(e){try{return process.kill(e,0),!0}catch{return!1}}function Yd(){try{const e=process.platform==="win32",r=De(e?'tasklist /FI "IMAGENAME eq node.exe" /FO CSV /NH':"ps aux | grep codeyam-server | grep -v grep",{encoding:"utf8",stdio:["pipe","pipe","pipe"]}).trim();if(!r)return[];const s=[];if(e)for(const a of r.split(`
|
|
40
|
-
`)){const o=a.match(/"[^"]*","(\d+)"/);if(o){const i=parseInt(o[1],10);if(!isNaN(i))try{De(`wmic process where "ProcessId=${i}" get CommandLine /FORMAT:LIST`,{encoding:"utf8",stdio:["pipe","pipe","pipe"]}).includes("codeyam-server")&&s.push(i)}catch{}}}else for(const a of r.split(`
|
|
41
|
-
`)){const o=a.trim().split(/\s+/);if(o.length>=2){const i=parseInt(o[1],10);isNaN(i)||s.push(i)}}return s}catch{return[]}}function F_(){const e=pa();if(e)if(!Bd(e.pid))oi();else return{running:!0,state:e};const t=Yd();return t.length>0?{running:!0,pids:t}:{running:!1}}function Gg(e,t=5e3){if(e.length===0)return!0;const r=Date.now()+t;for(;Date.now()<r;){if(!e.some(a=>Bd(a)))return!0;Atomics.wait(new Int32Array(new SharedArrayBuffer(4)),0,0,100)}return!1}function D_(){let e=!1;const t=[],r=pa();if(r){try{process.kill(r.pid,"SIGTERM"),t.push(r.pid),e=!0}catch{}oi()}const s=Yd();for(const a of s)try{process.kill(a,"SIGTERM"),t.includes(a)||t.push(a),e=!0}catch{}return Gg(t),e}function R_(e,t,r=10,s=10){if(t(e))return e;for(let a=1;a<=s;a++){const o=e+a*r;if(t(o))return o}throw new Error(`Could not find a free port starting from ${e} (tried ${s} candidates)`)}function O_(e){try{return De(`lsof -ti:${e}`,{encoding:"utf8",stdio:["pipe","pipe","pipe"]}),!1}catch{return!0}}const qg="/assets/globals-Bt7TsgQz.css";function Ml({text:e,subtext:t,linkText:r,linkTo:s}){const[a,o]=j(!1);return a?null:n("div",{className:"bg-blue-100 border rounded border-blue-800 shadow-sm mx-6 mt-6",children:d("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-yellow-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})})}),d("div",{className:"flex-1",children:[n("p",{className:"text-sm font-medium text-blue-900",children:e}),n("p",{className:"text-xs text-blue-700 mt-0.5",children:t})]}),n(ke,{to:s,className:"shrink-0 px-4 py-2 bg-blue-600 text-white text-sm font-medium rounded hover:bg-blue-700 transition-colors",children:r})]}),n("button",{type:"button",onClick:()=>o(!0),className:"shrink-0 ml-4 p-1 rounded text-blue-600 hover:text-blue-800 hover:bg-blue-100 transition-colors cursor-pointer","aria-label":"Dismiss banner",children:n("svg",{className:"w-5 h-5",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M6 18L18 6M6 6l12 12"})})})]})})}function Qg({version:e}){return n("div",{className:"px-6 sm:px-12 pb-8 mt-auto pt-8",children:d("div",{className:"border-t border-cygray-30 pt-6 flex flex-wrap justify-between items-center gap-4",children:[d("div",{className:"flex items-center gap-3",children:[n("span",{className:"font-mono text-sm font-semibold tracking-widest text-cyblack-100",children:"CODEYAM"}),e&&n("span",{className:"font-mono text-xs text-gray-400",children:e})]}),d("div",{className:"flex items-center gap-4 font-mono text-xs uppercase tracking-widest",children:[n("a",{href:"https://blog.codeyam.com/",target:"_blank",rel:"noopener noreferrer",className:"text-cyblack-100 underline underline-offset-4 hover:text-primary-100",children:"Read the Blog"}),n("span",{className:"text-cygray-30",children:"|"}),n("a",{href:"https://discord.gg/x4uAgaRdwF",target:"_blank",rel:"noopener noreferrer",className:"text-cyblack-100 underline underline-offset-4 hover:text-primary-100",children:"Join Discord"})]})]})})}function Zg({serverVersion:e}){const[t,r]=j("stale"),[s,a]=j(null),o=async()=>{r("restarting"),a(null);try{if(!(await fetch("/api/restart-server",{method:"POST"})).ok)throw new Error("Failed to restart server");r("reconnecting");let l=0;const c=30,u=1e3,p=async()=>{try{if((await fetch("/api/health")).ok){window.location.reload();return}}catch{}l++,l<c?setTimeout(()=>void p(),u):(a("Server took too long to restart. Please refresh manually."),r("stale"))};setTimeout(()=>void p(),500)}catch(i){a(i instanceof Error?i.message:"Failed to restart server"),r("stale")}};return n("div",{className:"bg-amber-100 border rounded border-amber-700 shadow-sm mx-6 mt-6",children:n("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-amber-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"})})}),d("div",{className:"flex-1",children:[t==="stale"&&d(we,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Dashboard server is out of date"}),d("p",{className:"text-xs text-amber-700 mt-0.5",children:["Server version: ",e,". A newer version of CodeYam CLI is installed. Restart the server to get the latest features."]}),s&&n("p",{className:"text-xs text-red-600 mt-1",children:s})]}),t==="restarting"&&d(we,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Restarting server..."}),n("p",{className:"text-xs text-amber-700 mt-0.5",children:"Please wait while the server restarts."})]}),t==="reconnecting"&&d(we,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Reconnecting..."}),n("p",{className:"text-xs text-amber-700 mt-0.5",children:"Waiting for the server to come back online."})]})]}),t==="stale"&&n("button",{type:"button",onClick:()=>void o(),className:"shrink-0 px-4 py-2 bg-amber-600 text-white text-sm font-medium rounded hover:bg-amber-700 transition-colors cursor-pointer",children:"Restart Server"}),(t==="restarting"||t==="reconnecting")&&d("div",{className:"shrink-0 flex items-center gap-2 px-4 py-2 text-amber-700 text-sm",children:[d("svg",{className:"w-4 h-4 animate-spin",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),t==="restarting"?"Stopping...":"Reconnecting..."]})]})})})}function pt({content:e,label:t="Copy",copiedLabel:r="✓ Copied!",className:s="",duration:a=2e3,ariaLabel:o,icon:i=!1,iconSize:l=14}){const[c,u]=j(!1),p=ae(()=>{navigator.clipboard.writeText(e).then(()=>{u(!0),setTimeout(()=>u(!1),a)}).catch(h=>{console.error("Failed to copy:",h)})},[e,a]);return n("button",{onClick:p,className:`cursor-pointer ${s}`,disabled:c,"aria-label":o||(c?"Copied to clipboard":"Copy to clipboard"),"aria-live":"polite",children:i?c?n(_t,{size:l,className:"text-green-500"}):n($t,{size:l}):c?r:t})}function Xg({currentVersion:e,latestVersion:t}){const[r,s]=j(!1);if(r)return null;const a="npm install -g @codeyam/codeyam-cli@latest && codeyam stop && codeyam";return n("div",{className:"bg-emerald-100 border rounded border-emerald-700 shadow-sm mx-6 mt-6",children:d("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-emerald-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M7 11l5-5m0 0l5 5m-5-5v12"})})}),d("div",{className:"flex-1",children:[n("p",{className:"text-sm font-medium text-emerald-900",children:"A new version of CodeYam CLI is available"}),d("p",{className:"text-xs text-emerald-700 mt-0.5",children:["Current: ",e," → Latest: ",t]})]}),d("div",{className:"shrink-0 flex items-center gap-2",children:[n("code",{className:"text-xs bg-emerald-200 text-emerald-900 px-2 py-1.5 rounded font-mono",children:a}),n(pt,{content:a,label:"Copy",copiedLabel:"Copied!",className:"px-3 py-1.5 bg-emerald-600 text-white text-xs font-medium rounded hover:bg-emerald-700 transition-colors"})]})]}),n("button",{type:"button",onClick:()=>s(!0),className:"shrink-0 ml-4 p-1 rounded text-emerald-600 hover:text-emerald-800 hover:bg-emerald-200 transition-colors cursor-pointer","aria-label":"Dismiss banner",children:n("svg",{className:"w-5 h-5",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M6 18L18 6M6 6l12 12"})})})]})})}let jr=null,ms=0;const e0=3600*1e3;function t0(e,t){const r=e.split(".").map(Number),s=t.split(".").map(Number);for(let a=0;a<Math.max(r.length,s.length);a++){const o=r[a]??0,i=s[a]??0;if(isNaN(o)||isNaN(i))return!1;if(o>i)return!0;if(o<i)return!1}return!1}async function n0(){const e=si();if(jr&&Date.now()-ms<e0)return jr;try{const t=new AbortController,r=setTimeout(()=>t.abort(),5e3),s=await fetch("https://registry.npmjs.org/@codeyam/codeyam-cli/latest",{signal:t.signal});if(clearTimeout(r),!s.ok){const l={updateAvailable:!1,latestVersion:null,currentVersion:e};return jr=l,ms=Date.now(),l}const o=(await s.json()).version;if(!o){const l={updateAvailable:!1,latestVersion:null,currentVersion:e};return jr=l,ms=Date.now(),l}const i={updateAvailable:t0(o,e),latestVersion:o,currentVersion:e};return jr=i,ms=Date.now(),i}catch{return{updateAvailable:!1,latestVersion:null,currentVersion:e}}}function Vs(e){return H.join(e,".codeyam","queue.json")}function Ir(e){const t=Vs(e);if(!G.existsSync(t))return{paused:!1,jobs:[]};try{const r=G.readFileSync(t,"utf8");return JSON.parse(r)}catch(r){return console.error("Failed to load queue state:",r),{paused:!1,jobs:[]}}}function r0(e,t){const r=Vs(e),s=H.dirname(r);G.existsSync(s)||G.mkdirSync(s,{recursive:!0});try{G.writeFileSync(r,JSON.stringify(t,null,2),"utf8")}catch(a){throw console.error("Failed to save queue state:",a),a}}const Qs=class Qs extends Vr{constructor(t){super(),this.watcher=null,this.debounceTimers=new Map,this.DEBOUNCE_MS=300,this.options=t}start(){try{this.watcher=pe.watch(this.options.projectRootPath,{recursive:!0},(t,r)=>{if(!r||!/\.(ts|tsx|js|jsx|css|scss|json|svg|html)$/.test(r)||Qs.IGNORED_DIRS.some(a=>r.includes(a+"/")||r.includes(a+"\\")))return;const s=this.debounceTimers.get(r);s&&clearTimeout(s),this.debounceTimers.set(r,setTimeout(()=>{this.debounceTimers.delete(r),this.syncFile(r)},this.DEBOUNCE_MS))}),console.log(`[InteractiveSyncWatcher] Watching ${this.options.projectRootPath} for changes`)}catch(t){console.error("[InteractiveSyncWatcher] Failed to start:",t)}}syncFile(t){const r=ee.join(this.options.projectRootPath,t),s=ee.join(this.options.tmpProjectPath,t);try{if(!pe.existsSync(r)){pe.existsSync(s)&&(pe.unlinkSync(s),console.log(`[InteractiveSyncWatcher] Removed: ${t}`));return}const a=ee.dirname(s);pe.existsSync(a)||pe.mkdirSync(a,{recursive:!0}),pe.copyFileSync(r,s);const o=ee.basename(t);console.log(`[InteractiveSyncWatcher] Synced: ${t}`);const i={type:"file-synced",fileName:o,filePath:t,timestamp:Date.now()};this.emit("sync",i)}catch(a){console.error(`[InteractiveSyncWatcher] Error syncing ${t}:`,a);const o={type:"error",fileName:ee.basename(t),filePath:t,timestamp:Date.now()};this.emit("sync",o)}}stop(){this.watcher&&(this.watcher.close(),this.watcher=null);for(const t of this.debounceTimers.values())clearTimeout(t);this.debounceTimers.clear(),console.log("[InteractiveSyncWatcher] Stopped")}};Qs.IGNORED_DIRS=["node_modules",".git",".codeyam","__codeyamMocks__",".next","dist","build",".turbo",".vercel","coverage",".cache"];let No=Qs,s0=class extends Vr{constructor(){super(),this.setMaxListeners(20)}emitFileSynced(t,r){this.emit("event",{type:"file-synced",fileName:t,filePath:r,timestamp:Date.now()})}emitError(t,r){this.emit("event",{type:"sync-error",fileName:t,filePath:r,timestamp:Date.now()})}};const So="__codeyam_dev_mode_event_emitter__";globalThis[So]||(globalThis[So]=new s0);const $l=globalThis[So],Co=new Map;async function a0(e,t,r){console.log(`[Queue] Executing job ${e.id} (${e.type})`);try{if(e.type==="analysis")await o0(e,t,r);else if(e.type==="baseline")await i0(e,t,r);else if(e.type==="recapture")await l0(e,t,r);else if(e.type==="capture-only")await c0(e,t,r);else if(e.type==="debug-setup")await d0(e,t,r);else if(e.type==="interactive-start")await u0(e,t,r);else if(e.type==="interactive-stop")await p0(e,t,r);else throw new Error(`Unknown job type: ${e.type}`);console.log(`[Queue] Job ${e.id} completed successfully`)}catch(s){throw console.error(`[Queue] Job ${e.id} failed:`,s),s}}async function o0(e,t,r){var b,v,S,w;const{projectSlug:s,commitSha:a,entityShas:o}=e;if(!a)throw new Error("Analysis job missing commitSha");const i=o||[],l=e.onlyDataStructure,c=Gr(s),u=C=>{const k=`CodeYam Log Level 1: ${C}`;console.log(`[Queue] ${C}`);try{G.mkdirSync(H.dirname(c),{recursive:!0}),G.appendFileSync(c,`[${new Date().toLocaleString()}] ${k}
|
|
42
|
-
|
|
43
|
-
`)}catch{}},{project:p}=await Re(s);u("Preparing project cache..."),await ni(s),u("Preparing simulation engine..."),await qr(s,{update:C=>u(C)});const h=ua(s),m={...await un(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:a,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:pn(),...!l&&i.length>0?{ENTITY_SHAS:i.join(",")}:{},...l?{ONLY_DATA_STRUCTURE:"true"}:{},...h?{ANALYZER_VERSION:h}:{},...process.env.CODEYAM_TRACE_TRANSFORMS?{CODEYAM_TRACE_TRANSFORMS:process.env.CODEYAM_TRACE_TRANSFORMS}:{}},f=(v=(b=p.metadata)==null?void 0:b.webapps)==null?void 0:v[0];if(!f)throw new Error("No webapps found in project metadata");const y={packageManager:((S=p.metadata)==null?void 0:S.packageManager)||"npm",absoluteProjectRootPath:It(s),port:0,noServer:!0,framework:f.framework,...l?{}:{orchestrateCapture:"local-sequential"}},g=hr(s,m,y),x=C=>{try{return process.kill(C,0),!0}catch{return!1}};await sn({commitSha:a,runStatusUpdate:{currentEntityShas:i,entityCount:i.length||((w=e.filePaths)==null?void 0:w.length)||0,analysesCompleted:0,capturesCompleted:0,createdAt:new Date().toISOString(),analyzerPid:g.process.pid}}),r==null||r.notifyChange("commit");try{try{const C=new Promise((k,N)=>setTimeout(()=>N(new Error("Analysis timed out after 60 minutes")),36e5));await Promise.race([g.promise,C]),await sn({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0},archiveCurrentRun:!0}),r==null||r.notifyChange("commit"),await sn({commitSha:a,runStatusUpdate:{currentEntityShas:[]}}),r==null||r.notifyChange("commit"),await new Promise(k=>setTimeout(k,2e3))}finally{if(g.process.pid)try{x(g.process.pid)&&await Br(g.process.pid,()=>{})}catch{}}}catch(C){if(console.error(`[Queue] Analysis job ${e.id} failed:`,C),g.process.pid&&x(g.process.pid))try{await Br(g.process.pid,()=>{})}catch{}try{await sn({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0,failedAt:new Date().toISOString(),failureReason:C instanceof Error?C.message:String(C)}}),r==null||r.notifyChange("commit")}catch(k){console.error("[Queue] Failed to update commit metadata after job failure:",k)}throw C}}async function i0(e,t,r){var m,f,y;const{projectSlug:s,commitSha:a}=e;if(!a)throw new Error("Baseline job missing commitSha");console.log(`[Queue] Starting baseline analysis for ${s}`);const{project:o}=await Re(s);await ni(s),await qr(s,{update:g=>console.log(`[Queue] ${g}`)});const i=ua(s),l={...await un(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",BRANCH_COMMIT_SHA:a,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:pn(),...i?{ANALYZER_VERSION:i}:{}},c=(f=(m=o.metadata)==null?void 0:m.webapps)==null?void 0:f[0];if(!c)throw new Error("No webapps found in project metadata");const u={packageManager:((y=o.metadata)==null?void 0:y.packageManager)||"npm",absoluteProjectRootPath:It(s),port:0,noServer:!0,framework:c.framework,orchestrateCapture:"local-sequential"},p=hr(s,l,u),h=g=>{try{return process.kill(g,0),!0}catch{return!1}};await sn({commitSha:a,runStatusUpdate:{createdAt:new Date().toISOString(),analyzerPid:p.process.pid}}),r==null||r.notifyChange("commit");try{const g=new Promise((x,b)=>setTimeout(()=>b(new Error("Baseline timed out after 4 hours")),144e5));await Promise.race([p.promise,g]),await sn({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0},archiveCurrentRun:!0}),r==null||r.notifyChange("commit"),console.log(`[Queue] Baseline completed for ${s}`),await new Promise(x=>setTimeout(x,2e3))}finally{if(p.process.pid)try{h(p.process.pid)&&await Br(p.process.pid,()=>{})}catch{}}}async function l0(e,t,r){var f,y,g,x;const{projectSlug:s,analysisId:a,scenarioId:o,defaultWidth:i}=e;if(!a)throw new Error("Recapture job missing analysisId");const l=await Ht({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!l||!l.commit)throw new Error(`Analysis ${a} not found`);if(i){const{getDatabase:b}=await import("./index-CCth4Hgw.js"),v=b(),S=await v.selectFrom("entities").select(["metadata"]).where("sha","=",l.entitySha).executeTakeFirst();let w={};S!=null&&S.metadata&&(typeof S.metadata=="string"?w=JSON.parse(S.metadata):w=S.metadata),w.defaultWidth=i,await v.updateTable("entities").set({metadata:JSON.stringify(w)}).where("sha","=",l.entitySha).execute()}await dr(a,b=>{if(b.readyToBeCaptured=!0,b.scenarios)for(const v of b.scenarios)(!o||v.name===o)&&(delete v.finishedAt,delete v.startedAt,delete v.screenshotStartedAt,delete v.screenshotFinishedAt,delete v.interactiveStartedAt,delete v.interactiveFinishedAt,delete v.error,delete v.errorStack);delete b.finishedAt});const{project:c}=await Re(s);await qr(s,{update:b=>console.log(`[Queue] ${b}`)});const u=ua(s),p={...await un(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:l.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:pn(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,...o?{SCENARIO_IDS:o}:{},...u?{ANALYZER_VERSION:u}:{}},h={packageManager:((f=c.metadata)==null?void 0:f.packageManager)||"npm",absoluteProjectRootPath:It(s),port:void 0,noServer:!0,framework:((x=(g=(y=c.metadata)==null?void 0:y.webapps)==null?void 0:g[0])==null?void 0:x.framework)??nt.Next,orchestrateCapture:"local-sequential"},m=hr(s,p,h);try{await m.promise}finally{try{m.process.kill("SIGTERM")}catch{}}}async function c0(e,t,r){var f,y,g,x;const{projectSlug:s,analysisId:a,scenarioId:o,defaultWidth:i}=e;if(!a)throw new Error("Capture-only job missing analysisId");const l=await Ht({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!l||!l.commit)throw new Error(`Analysis ${a} not found`);if(i){const{getDatabase:b}=await import("./index-CCth4Hgw.js"),v=b(),S=await v.selectFrom("entities").select(["metadata"]).where("sha","=",l.entitySha).executeTakeFirst();let w={};S!=null&&S.metadata&&(typeof S.metadata=="string"?w=JSON.parse(S.metadata):w=S.metadata),w.defaultWidth=i,await v.updateTable("entities").set({metadata:JSON.stringify(w)}).where("sha","=",l.entitySha).execute()}await dr(a,b=>{if(b.readyToBeCaptured=!0,b.scenarios)for(const v of b.scenarios)(!o||v.name===o)&&(delete v.finishedAt,delete v.startedAt,delete v.screenshotStartedAt,delete v.screenshotFinishedAt,delete v.interactiveStartedAt,delete v.interactiveFinishedAt,delete v.error,delete v.errorStack);delete b.finishedAt});const{project:c}=await Re(s);await qr(s,{update:b=>console.log(`[Queue] ${b}`)});const u=ua(s);console.log("[Queue] executeCaptureOnlyJob: Setting CAPTURE_ONLY=true for capture without file regeneration");const p={...await un(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:l.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:pn(),READY_TO_BE_CAPTURED:"true",CAPTURE_ONLY:"true",ANALYSIS_IDS:a,...o?{SCENARIO_IDS:o}:{},...u?{ANALYZER_VERSION:u}:{}},h={packageManager:((f=c.metadata)==null?void 0:f.packageManager)||"npm",absoluteProjectRootPath:It(s),port:void 0,noServer:!0,fast:!0,framework:((x=(g=(y=c.metadata)==null?void 0:y.webapps)==null?void 0:g[0])==null?void 0:x.framework)??nt.Next,orchestrateCapture:"local-sequential"},m=hr(s,p,h);try{await m.promise}finally{try{m.process.kill("SIGTERM")}catch{}}}async function d0(e,t,r){var m,f,y,g;const{projectSlug:s,analysisId:a,scenarioId:o}=e;if(!a)throw new Error("Debug setup job missing analysisId");const i=await Ht({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!i||!i.commit)throw new Error(`Analysis ${a} not found`);const{project:l}=await Re(s);await ni(s),await qr(s,{update:x=>console.log(`[Queue] ${x}`)});const c={...await un(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:i.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:pn(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,PREP_ONLY:"true"};o&&(c.SCENARIO_IDS=o);const u={packageManager:((m=l.metadata)==null?void 0:m.packageManager)||"npm",absoluteProjectRootPath:It(s),port:void 0,noServer:!1,framework:((g=(y=(f=l.metadata)==null?void 0:f.webapps)==null?void 0:y[0])==null?void 0:g.framework)||nt.Next},h=await hr(s,c,u).promise;if(h!==0)throw new Error(`Prep process exited with code ${h}`)}async function u0(e,t,r){var x,b,v,S;const{projectSlug:s,analysisId:a,scenarioId:o}=e;if(!a)throw new Error("Interactive start job missing analysisId");const i=await Ht({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!i||!i.commit)throw new Error(`Analysis ${a} not found`);const{project:l}=await Re(s),c={...await un(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:i.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:pn(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,INTERACTIVE_MODE:"true"};o&&(c.INITIAL_SCENARIO_ID=o),i.scenarios&&i.scenarios.length>0&&(c.SCENARIO_IDS=i.scenarios.map(w=>w.id).join(","));const u=It(s),p=ee.join(u,".next","dev","lock");if(pe.existsSync(p)){console.log("[Queue] Found stale .next/dev/lock, cleaning up old processes");try{const w=De(`pgrep -f ${JSON.stringify(u)} 2>/dev/null || true`,{encoding:"utf-8"}).trim();if(w)for(const C of w.split(`
|
|
44
|
-
`).filter(Boolean))try{process.kill(parseInt(C,10),"SIGTERM"),console.log(`[Queue] Killed stale process ${C}`)}catch{}}catch{}try{pe.unlinkSync(p),console.log("[Queue] Removed stale lock file")}catch{}}const h=pe.existsSync(u)&&pe.existsSync(ee.join(u,"package.json")),m={packageManager:((x=l.metadata)==null?void 0:x.packageManager)||"npm",absoluteProjectRootPath:u,port:void 0,noServer:!1,fast:h,framework:((S=(v=(b=l.metadata)==null?void 0:b.webapps)==null?void 0:v[0])==null?void 0:S.framework)||nt.Next};await dr(a,w=>{w.readyToBeCaptured=!0});const f=hr(s,c,m);await Sd(a,w=>{w.interactiveMode={pid:f.process.pid,startedAt:new Date().toISOString(),jobId:e.id}}),console.log(`[Queue] Interactive mode started for analysis ${a}, PID: ${f.process.pid}`);const y=It(s),g=new No({projectRootPath:t,tmpProjectPath:y});g.on("sync",w=>{w.type==="file-synced"?$l.emitFileSynced(w.fileName,w.filePath):w.type==="error"&&$l.emitError(w.fileName,w.filePath)}),g.start(),Co.set(a,g),console.log(`[Queue] File sync watcher started for analysis ${a}`)}async function p0(e,t,r){var u;const{projectSlug:s,analysisId:a}=e;if(!a)throw new Error("Interactive stop job missing analysisId");const o=await Ht({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!o)throw new Error(`Analysis ${a} not found`);const i=(u=o.metadata)==null?void 0:u.interactiveMode;if(!(i!=null&&i.pid)){console.log(`[Queue] No interactive mode process found for analysis ${a}`);return}const l=Co.get(a);l&&(l.stop(),Co.delete(a),console.log(`[Queue] File sync watcher stopped for analysis ${a}`));const c=i.pid;console.log(`[Queue] Stopping interactive mode for analysis ${a}, killing PID: ${c}`);try{try{process.kill(c,0)}catch{console.log(`[Queue] Process ${c} already exited`);return}await Br(c,()=>{}),console.log(`[Queue] Successfully killed interactive mode process ${c}`)}catch(p){throw console.error(`[Queue] Failed to kill process ${c}:`,p),p}finally{await Sd(a,p=>{p.interactiveMode=null})}}class h0{constructor(t,r){this.processing=!1,this.completionCallbacks=new Map,this.completedJobs=new Map,this.projectRoot=t,this.state={paused:!1,jobs:[]},r&&(typeof r=="function"?this.notifier={notifyChange:()=>r()}:this.notifier=r)}start(){this.state=Ir(this.projectRoot),this.state.currentlyExecuting&&(console.log(`[Queue] Clearing stale currentlyExecuting job from previous session: ${this.state.currentlyExecuting.id}`),this.state.currentlyExecuting=void 0,this.save()),this.state.jobs.length>0?(this.state.paused=!0,this.save(),console.log(`[Queue] Found ${this.state.jobs.length} queued jobs from previous session (paused)`)):this.state.paused=!1}enqueue(t){const r=t.commitSha||Wo(),s={...t,id:r,queuedAt:new Date().toISOString()};this.state.jobs.push(s),this.save(),console.log(`[Queue] Enqueued job ${r} (${s.type})`);const a=new Promise((o,i)=>{this.completionCallbacks.set(r,l=>{l?i(l):o()})});return this.state.paused||this.processNext().catch(o=>{console.error("[Queue] ERROR in processNext():",o)}),{jobId:r,completion:a}}resume(){console.log("[Queue] Resuming queue"),this.state.paused=!1,this.save(),this.processNext()}pause(){console.log("[Queue] Pausing queue"),this.state.paused=!0,this.save()}getState(){return{...this.state}}getJobResult(t){return this.completedJobs.get(t)}removeJob(t){const r=this.state.jobs.length;this.state.jobs=this.state.jobs.filter(a=>a.id!==t);const s=this.state.jobs.length<r;if(s){console.log(`[Queue] Removed job ${t}`),this.save();const a=this.completionCallbacks.get(t);a&&(setImmediate(()=>a(new Error("Job cancelled by user"))),this.completionCallbacks.delete(t))}else console.log(`[Queue] Job ${t} not found in queue`);return s}clearQueue(){const t=this.state.jobs.length;return t===0?0:(this.state.jobs.forEach(r=>{const s=this.completionCallbacks.get(r.id);s&&(setImmediate(()=>s(new Error("Job cancelled by user"))),this.completionCallbacks.delete(r.id))}),this.state.jobs=[],console.log(`[Queue] Cleared ${t} jobs`),this.save(),t)}reorderJob(t,r){const s=this.state.jobs.findIndex(i=>i.id===t);if(s===-1)return console.log(`[Queue] Job ${t} not found in queue`),!1;const a=r==="up"?s-1:s+1;if(a<0||a>=this.state.jobs.length)return console.log(`[Queue] Cannot move job ${t} ${r}: at boundary`),!1;const o=this.state.jobs[s];return this.state.jobs[s]=this.state.jobs[a],this.state.jobs[a]=o,console.log(`[Queue] Moved job ${t} ${r} (position ${s} -> ${a})`),this.save(),!0}async processNext(){if(this.state.paused||this.processing)return;if(this.state.jobs.length===0){console.log("[Queue] No jobs to process");return}this.processing=!0;const t=this.state.jobs[0];console.log(`[Queue] Starting job ${t.id} (${t.type})`);try{this.state.currentlyExecuting=this.state.jobs.shift(),this.save(),await a0(t,this.projectRoot,this.notifier),this.state.currentlyExecuting=void 0,this.save(),this.completedJobs.set(t.id,{id:t.id,status:"success",completedAt:new Date().toISOString()});const r=this.completionCallbacks.get(t.id);r&&(r(),this.completionCallbacks.delete(t.id)),console.log(`[Queue] Job ${t.id} completed successfully`)}catch(r){console.error(`[Queue] Job ${t.id} failed:`,r),this.state.currentlyExecuting=void 0,this.save(),this.completedJobs.set(t.id,{id:t.id,status:"error",error:(r==null?void 0:r.message)||"Unknown error",completedAt:new Date().toISOString()});const s=this.completionCallbacks.get(t.id);s&&(s(r),this.completionCallbacks.delete(t.id))}finally{this.processing=!1,!this.state.paused&&this.state.jobs.length>0&&setImmediate(()=>void this.processNext())}}save(){r0(this.projectRoot,this.state),this.notifier&&this.notifier.notifyChange("queue")}}class m0{constructor(t,r,s=100){this.watcher=null,this.debounceTimer=null,this.projectRoot=t,this.onChange=r,this.debounceMs=s}start(){const t=Vs(this.projectRoot);if(!G.existsSync(t)){console.log("[QueueFileWatcher] Queue file does not exist yet, will start watching when created"),this.watchDirectory();return}this.watchFile(t)}watchDirectory(){const t=Vs(this.projectRoot),r=t.substring(0,t.lastIndexOf("/"));try{this.watcher=G.watch(r,(s,a)=>{a==="queue.json"&&(this.stop(),this.watchFile(t),this.notifyChange())}),console.log("[QueueFileWatcher] Watching .codeyam directory for queue.json creation")}catch(s){console.error("[QueueFileWatcher] Failed to watch directory:",s)}}watchFile(t){try{this.watcher=G.watch(t,r=>{r==="change"&&this.notifyChange()}),console.log("[QueueFileWatcher] Watching queue.json for changes")}catch(r){console.error("[QueueFileWatcher] Failed to watch queue file:",r)}}notifyChange(){this.debounceTimer&&clearTimeout(this.debounceTimer),this.debounceTimer=setTimeout(()=>{this.onChange(),this.debounceTimer=null},this.debounceMs)}stop(){this.watcher&&(this.watcher.close(),this.watcher=null),this.debounceTimer&&(clearTimeout(this.debounceTimer),this.debounceTimer=null)}}class f0{constructor(t,r,s){this.fileWatcher=null,this.serverInfo=t,this.projectRoot=r,this.onStateChange=s,this.cachedState=Ir(r)}start(){this.cachedState=Ir(this.projectRoot),console.log(`[ProxyQueue] Connected to background server at ${this.serverInfo.url}`),console.log(`[ProxyQueue] Current queue has ${this.cachedState.jobs.length} jobs`),this.fileWatcher=new m0(this.projectRoot,()=>{console.log("[ProxyQueue] Detected queue.json change from background server"),this.refreshState()}),this.fileWatcher.start()}enqueue(t){let r,s;const a=new Promise((i,l)=>{r=i,s=l}),o=`proxy-${Date.now()}-${Math.random().toString(36).slice(2)}`;return this.enqueueRemote(t).then(i=>{console.log(`[ProxyQueue] Job enqueued on background server: ${i.jobId}`),this.refreshState(),r()}).catch(i=>{console.error("[ProxyQueue] Failed to enqueue job:",i),s(i)}),{jobId:o,completion:a}}async enqueueRemote(t){const r=await fetch(`${this.serverInfo.url}/api/queue`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"enqueue",...t})});if(!r.ok){const s=await r.text();throw new Error(`Failed to enqueue: ${r.status} ${s}`)}return r.json()}resume(){console.log("[ProxyQueue] Sending resume command to background server"),this.sendAction("resume").catch(t=>{console.error("[ProxyQueue] Failed to resume:",t)})}pause(){console.log("[ProxyQueue] Sending pause command to background server"),this.sendAction("pause").catch(t=>{console.error("[ProxyQueue] Failed to pause:",t)})}async sendAction(t){const r=await fetch(`${this.serverInfo.url}/api/queue`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:t})});if(!r.ok){const s=await r.text();throw new Error(`Failed to ${t}: ${r.status} ${s}`)}this.refreshState()}getState(){return this.cachedState=Ir(this.projectRoot),{...this.cachedState}}refreshState(){this.cachedState=Ir(this.projectRoot),this.onStateChange&&this.onStateChange()}async isServerAlive(){try{const t=new AbortController,r=setTimeout(()=>t.abort(),2e3),s=await fetch(`${this.serverInfo.url}/api/health`,{signal:t.signal});return clearTimeout(r),s.ok}catch{return!1}}getServerInfo(){return{...this.serverInfo}}stop(){this.fileWatcher&&(this.fileWatcher.stop(),this.fileWatcher=null)}}function g0(e){const t=H.join(e,".codeyam","server.json");if(!G.existsSync(t))return null;try{const r=G.readFileSync(t,"utf8");return JSON.parse(r)}catch{return null}}function y0(e){try{return process.kill(e,0),!0}catch{return!1}}async function x0(e){try{const t=new AbortController,r=setTimeout(()=>t.abort(),2e3),s=await fetch(`${e}/api/health`,{signal:t.signal});return clearTimeout(r),s.ok}catch{return!1}}async function b0(e){const t=g0(e);return!t||!y0(t.pid)||!await x0(t.url)?null:{url:t.url,port:t.port,pid:t.pid}}class v0 extends Vr{constructor(){super();ht(this,"watcher",null);ht(this,"dbPath",null);ht(this,"isWatching",!1);this.setMaxListeners(20)}async start(){if(!this.isWatching)try{this.dbPath=pn();const{default:r}=await import("chokidar"),s=[this.dbPath,`${this.dbPath}-wal`,`${this.dbPath}-shm`];this.watcher=r.watch(s,{persistent:!0,ignoreInitial:!0,usePolling:!0,interval:1e3}),this.watcher.on("change",a=>{const o=Date.now(),i=new Date(o).toISOString();console.log("[dbNotifier] ========================================"),console.log(`[dbNotifier] Database file changed: ${a}`),console.log(`[dbNotifier] Timestamp: ${i} (${o})`),console.log(`[dbNotifier] Listeners count: ${this.listenerCount("change")}`),console.log("[dbNotifier] ========================================"),this.emit("change",{type:"unknown",timestamp:o})}).on("error",a=>{console.error("Database watcher error:",a),this.emit("error",a)}),this.isWatching=!0}catch(r){console.error("Failed to start database watcher:",r),this.emit("error",r)}}notifyChange(r="unknown"){const s=Date.now(),a=new Date(s).toISOString();console.log("[dbNotifier] ========================================"),console.log("[dbNotifier] Manual notification triggered"),console.log(`[dbNotifier] Change type: ${r}`),console.log(`[dbNotifier] Timestamp: ${a} (${s})`),console.log(`[dbNotifier] Listeners count: ${this.listenerCount("change")}`),console.log("[dbNotifier] ========================================"),this.emit("change",{type:r,timestamp:s})}stop(){this.watcher&&(this.watcher.close(),this.watcher=null,this.isWatching=!1,console.log("Database watcher stopped"))}}const ft=new v0;let Cn=null,Fr=null;async function w0(){if(!Cn){if(Fr){await Fr;return}Fr=(async()=>{try{const e=process.env.CODEYAM_ROOT_PATH||Cd()||process.cwd();if(mg(e),console.log(`[GlobalQueue] Project root: ${e}`),await Je(),process.env.NODE_ENV==="development")try{const r=ee.join(e,".codeyam","config.json"),a=JSON.parse(await pe.promises.readFile(r,"utf8")).projectSlug;a&&(await rr({projectSlug:a,metadataUpdate:{labs:{accessGranted:!0,simulations:!0}}}),console.log("[GlobalQueue] Labs & Simulations auto-enabled for dev mode"))}catch(r){console.warn("[GlobalQueue] Could not auto-enable labs:",r)}const t=await b0(e);if(t){console.log(`[GlobalQueue] Detected background server at ${t.url} (PID: ${t.pid})`),console.log("[GlobalQueue] Using proxy queue");const r=new f0(t,e,()=>{ft.notifyChange("unknown")});await r.start(),Cn=r}else{console.log("[GlobalQueue] No background server detected, using local queue");const r=new h0(e,ft);await r.start(),Cn=r}console.log("[GlobalQueue] Queue initialized")}catch(e){throw console.error("[GlobalQueue] Failed to initialize queue:",e),e}})(),await Fr}}async function Vt(){return Cn||await w0(),Cn}function N0(){return Cn||(Fr&&console.warn("[GlobalQueue] Queue still initializing, loader may see empty state"),null)}const S0=()=>[{rel:"stylesheet",href:qg},{rel:"icon",type:"image/x-icon",href:"/favicon.ico"}],C0={currentRun:void 0,projectSlug:null,currentEntities:[],availableAPIKeys:[],queuedJobCount:0,queueJobs:[],currentlyExecuting:null,historicalRuns:[],isServerOutOfDate:!1,serverVersion:"unknown",npmUpdate:null,labs:null,simulationsEnabled:!1,isSimulationsReady:!1,isAdmin:!1,editorMode:!1,displayVersion:si()};async function k0({request:e,context:t}){var r,s,a,o,i,l,c,u,p,h,m;try{const f=e.signal,y=()=>{if(f.aborted)throw new Response(null,{status:499})};y();const g=Se()||process.cwd(),[x,b,v]=await Promise.all([Ye(),la(g),n0().catch(()=>null)]);if(!x)throw new Error("Project slug not found");const{project:S,branch:w}=await Re(x);y();const C=await Us({projectId:S.id,branchId:w.id,limit:20,skipRelations:!0});y();const k=C.length>0?C[0]:null,N=t.analysisQueue||N0(),A=N==null?void 0:N.getState();y();const _=await Promise.all(((A==null?void 0:A.jobs)||[]).map(async V=>{var ue;const re=await hs(V.entityShas||[]);return re.length===0&&((ue=V.entityShas)!=null&&ue.length)&&console.warn("[Loader] Entity fetch timeout/failed for job",V.id),{...V,entities:re}}));let M=null;if(A!=null&&A.currentlyExecuting){const V=A.currentlyExecuting,re=await hs(V.entityShas||[]);re.length===0&&((r=V.entityShas)!=null&&r.length)&&console.warn("[Loader] Entity fetch timeout/failed for currentlyExecuting",V.id),M={...V,entities:re}}const $=M?_.filter(V=>V.id!==M.id):_;let I=((a=(s=k==null?void 0:k.metadata)==null?void 0:s.currentRun)==null?void 0:a.currentEntityShas)||[];if(I.length===0){const V=((o=k==null?void 0:k.metadata)==null?void 0:o.historicalRuns)||[];if(V.length>0){const ue=[...V].sort((be,ie)=>{const fe=be.archivedAt||be.createdAt||"";return(ie.archivedAt||ie.createdAt||"").localeCompare(fe)})[0];if(ue){const be=ue.analysisCompletedAt||ue.createdAt;if(be){const ie=new Date(be).getTime(),ce=Date.now()-1440*60*1e3;ie>ce&&(I=ue.currentEntityShas||[])}}}}const R=await hs(I),P=[];b.ANTHROPIC_API_KEY&&P.push("ANTHROPIC_API_KEY"),b.GROQ_API_KEY&&P.push("GROQ_API_KEY"),b.OPENAI_API_KEY&&P.push("OPENAI_API_KEY"),b.OPENROUTER_API_KEY&&P.push("OPENROUTER_API_KEY"),y();const F=[];for(const V of C){const re=((i=V.metadata)==null?void 0:i.historicalRuns)||[];for(const ue of re)F.push(ue)}F.sort((V,re)=>{const ue=V.archivedAt||V.analysisCompletedAt||V.createdAt||"";return(re.archivedAt||re.analysisCompletedAt||re.createdAt||"").localeCompare(ue)});const Y=new Set(((l=M==null?void 0:M.entities)==null?void 0:l.map(V=>V.sha))||[]),O=F.filter(V=>!(V.currentEntityShas||[]).some(ue=>Y.has(ue))).slice(0,3),B=new Set;for(const V of O)for(const re of V.currentEntityShas||[])B.add(re);const T=await hs(Array.from(B)),D=new Map;for(const V of T)D.set(V.sha,V);const E=O.map(V=>({...V,entities:(V.currentEntityShas||[]).map(re=>D.get(re)).filter(re=>re!=null)})),W=pa(),K=(W==null?void 0:W.cliVersion)??"unknown",Z=K!=="unknown"&&K!==ri,q=((u=(c=S.metadata)==null?void 0:c.labs)==null?void 0:u.simulations)??!1,U=q?Wg():!1,L=((p=S.metadata)==null?void 0:p.editorMode)??!1,z={currentRun:(h=k==null?void 0:k.metadata)==null?void 0:h.currentRun,projectSlug:x,currentEntities:R,availableAPIKeys:P,queuedJobCount:$.length,queueJobs:$,currentlyExecuting:M,historicalRuns:E,isServerOutOfDate:Z,serverVersion:K,npmUpdate:v!=null&&v.updateAvailable&&v.latestVersion?{latestVersion:v.latestVersion,currentVersion:v.currentVersion}:null,labs:((m=S.metadata)==null?void 0:m.labs)??null,simulationsEnabled:q,isSimulationsReady:U,isAdmin:!!process.env.CODEYAM_ADMIN,editorMode:L,displayVersion:si()};return ne(z)}catch(f){return f instanceof Response&&f.status===499||console.error("Failed to load root data:",f),ne(C0)}}function _0(){const{currentRun:e,projectSlug:t,currentEntities:r,availableAPIKeys:s,queuedJobCount:a,queueJobs:o,currentlyExecuting:i,historicalRuns:l,isServerOutOfDate:c,serverVersion:u,npmUpdate:p,labs:h,simulationsEnabled:m,isSimulationsReady:f,isAdmin:y,editorMode:g,displayVersion:x}=ot(),{toasts:b,closeToast:v}=Qo(),S=Dt(),w=ye(S),C=Jr(),k=ye(C.pathname);te(()=>{w.current=S},[S]),te(()=>{k.current=C.pathname},[C.pathname]);const N=C.pathname.startsWith("/entity/")&&C.pathname.includes("/edit/")||C.pathname.startsWith("/dev/")||C.pathname.startsWith("/editor"),A=C.pathname.includes("/fullscreen")||C.pathname.startsWith("/editor");return te(()=>{let _=null,M=null,$=0;function I(){_||(_=new EventSource("/api/events"),_.addEventListener("message",F=>{const Y=JSON.parse(F.data);(Y.type==="queue"||Y.type==="db-change")&&Y.type;const J=vm(k.current),O=wm({now:Date.now(),lastRevalidation:$,throttleMs:J});O==="immediate"?(w.current.revalidate(),$=Date.now()):(M&&clearTimeout(M),M=setTimeout(()=>{w.current.revalidate(),$=Date.now(),M=null},O.delayMs))}),_.addEventListener("error",()=>{}))}function R(){M&&(clearTimeout(M),M=null),_&&(_.close(),_=null)}function P(){document.hidden?R():(I(),w.current.revalidate())}return document.hidden||I(),document.addEventListener("visibilitychange",P),()=>{document.removeEventListener("visibilitychange",P),R()}},[]),d(we,{children:[d("div",{className:`min-h-screen ${N?"":"grid"} bg-cygray-10`,style:N?void 0:{gridTemplateColumns:"65px minmax(0, 1fr)"},children:[!N&&n(Em,{labs:h,isAdmin:y,editorMode:g}),d("div",{className:"max-h-screen overflow-auto bg-cygray-10 flex flex-col min-h-screen",children:[c&&n(Zg,{serverVersion:u}),p&&p.currentVersion&&n(Xg,{currentVersion:p.currentVersion,latestVersion:p.latestVersion}),m&&!g&&s.length===0&&n(Ml,{text:"No AI API keys configured. Please provide an AI API key at your earliest convenience.",subtext:"An API key is required for stable, frequent use of CodeYam",linkText:"Configure API Keys",linkTo:"/settings"}),m&&!g&&!f&&n(Ml,{text:"Simulations enabled but not yet configured",subtext:"Run /codeyam-setup in Claude Code to install the analyzer and configure your dev server",linkText:"View Labs",linkTo:"/labs"}),n("div",{className:"flex-1",children:n(ed,{})}),n(Qg,{version:x})]})]}),n(Pm,{toasts:b,onClose:v}),!A&&m&&n(Tm,{currentRun:e,projectSlug:t,currentEntities:r,isAnalysisStarting:!1,queuedJobCount:a,queueJobs:o,currentlyExecuting:i,historicalRuns:l})]})}const E0=et(function(){return d("html",{lang:"en",children:[d("head",{children:[n("meta",{charSet:"utf-8"}),n("meta",{name:"viewport",content:"width=device-width,initial-scale=1"}),n(eh,{}),n(th,{})]}),d("body",{children:[n(Am,{children:n(km,{children:n(_0,{})})}),n(nh,{}),n(rh,{})]})]})});function A0(e){if(e instanceof TypeError&&/fetch/i.test(e.message)||e instanceof Error&&/fetch/i.test(e.message))return!0;const t=String(e);return/failed to fetch|fetch.*failed|load.*chunk/i.test(t)}const j0=sh(function(){const t=ah(),r=!Ua(t)&&A0(t),s=Ua(t)?t.status:500,a=Ua(t)?t.statusText||"Server Error":"Something went wrong";return d("html",{lang:"en",children:[d("head",{children:[n("meta",{charSet:"utf-8"}),n("meta",{name:"viewport",content:"width=device-width,initial-scale=1"}),d("title",{children:[s," - CodeYam"]})]}),n("body",{style:{margin:0,fontFamily:'"IBM Plex Sans", system-ui, -apple-system, sans-serif',backgroundColor:"#1e1e1e",color:"#ffffff",minHeight:"100vh",display:"flex",alignItems:"center"},children:d("div",{style:{maxWidth:700,width:"100%",padding:"64px 80px"},children:[d("div",{style:{fontFamily:'"IBM Plex Mono", monospace',fontSize:32,fontWeight:400,color:"#8E8E8E",lineHeight:1,marginBottom:12},children:["<",s,">"]}),n("h1",{style:{fontSize:42,fontWeight:600,margin:"0 0 20px",color:"#ffffff",lineHeight:1.2},children:r?"Something went wrong :(":a}),r?d("div",{children:[n("p",{style:{fontSize:16,color:"#8E8E8E",lineHeight:1.7,margin:"0 0 28px",maxWidth:480},children:"It looks like the CodeYam server is no longer running. This usually happens when the terminal session that started it was closed."}),d("p",{style:{fontSize:16,color:"#ffffff",margin:0,lineHeight:1.7,display:"flex",alignItems:"center",gap:8,flexWrap:"wrap"},children:["Run"," ",d("button",{id:"copy-cmd-btn",type:"button",style:{display:"inline-flex",alignItems:"center",gap:8,backgroundColor:"#2d2d2d",border:"1px solid #3d3d3d",borderRadius:6,padding:"6px 12px",fontFamily:'"IBM Plex Mono", monospace',fontSize:13,color:"#ffffff",letterSpacing:"0.05em",textTransform:"uppercase",cursor:"pointer",minWidth:172,justifyContent:"center"},children:[n("span",{id:"copy-cmd-label",children:"codeyam editor"}),d("svg",{id:"copy-cmd-icon",width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#D7FF63",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]})]})," ","in your project directory to restart the server. Then refresh this page."]}),n("script",{dangerouslySetInnerHTML:{__html:`
|
|
45
|
-
document.getElementById('copy-cmd-btn').addEventListener('click', function() {
|
|
46
|
-
var label = document.getElementById('copy-cmd-label');
|
|
47
|
-
var icon = document.getElementById('copy-cmd-icon');
|
|
48
|
-
navigator.clipboard.writeText('codeyam editor').then(function() {
|
|
49
|
-
label.textContent = 'copied!';
|
|
50
|
-
icon.style.display = 'none';
|
|
51
|
-
setTimeout(function() {
|
|
52
|
-
label.textContent = 'codeyam editor';
|
|
53
|
-
icon.style.display = '';
|
|
54
|
-
}, 2000);
|
|
55
|
-
});
|
|
56
|
-
});
|
|
57
|
-
`}})]}):d("div",{children:[n("p",{style:{fontSize:16,color:"#8E8E8E",lineHeight:1.7,margin:"0 0 28px",maxWidth:480},children:"An unexpected error occurred. Try refreshing the page."}),t instanceof Error&&t.message&&n("pre",{style:{backgroundColor:"#2d2d2d",border:"1px solid #3d3d3d",borderRadius:8,padding:"16px 20px",fontFamily:'"IBM Plex Mono", monospace',fontSize:13,color:"#8E8E8E",textAlign:"left",overflowX:"auto",whiteSpace:"pre-wrap",wordBreak:"break-word",margin:0},children:t.message})]})]})})]})}),P0=Object.freeze(Object.defineProperty({__proto__:null,ErrorBoundary:j0,default:E0,links:S0,loader:k0},Symbol.toStringTag,{value:"Module"}));function fs(e){const t=e.replace(/[^a-zA-Z0-9_]+/g,"_");return t.slice(0,1).toUpperCase()+t.slice(1)}async function Il(e,t){try{await fetch("/api/interactive-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:e,scenarioName:t})})}catch(r){console.error("[useInteractiveMode] Failed to seed scenario:",r)}}function $n({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,enabled:o=!0,refreshTrigger:i=0}){const l=Ge(),[c,u]=j(null),[p,h]=j(!1),[m,f]=j(!1),[y,g]=j(!1),x=ye(!1),b=ye(void 0),v=ye(null),S=ye(null),w=ye(null),C=ye(null),[k,N]=j(0),[A,_]=j(0),M=ye(null),$=ye(!1),I=ye(!1),R=ye(r),{interactiveUrl:P,scenarioUrlMap:F,resetLogs:Y}=Wt(a,o),J=ye(t);te(()=>{R.current=r},[r]);const O=ye(i);te(()=>{O.current!==i&&(O.current=i,c&&(f(!0),g(!1),N(0),_(E=>E+1),$.current=!1,I.current=!1,M.current&&(clearTimeout(M.current),M.current=null)))},[i,c]),te(()=>{if(J.current===t||(J.current=t,!c||!t))return;f(!0),g(!1),N(0),$.current=!1,I.current=!1,R.current=r,M.current&&(clearTimeout(M.current),M.current=null),(async()=>{await Il(t,r);const W=v.current;let K;if(W&&W[t])K=W[t]+"?width=600px";else if(S.current&&w.current&&r){if(K=S.current,C.current&&s){const U=fs(C.current),L=fs(s);U!==L&&(K=K.replace(U,L))}const Z=fs(w.current),q=fs(r);K=K.replace(Z,q)}else K=c;u(K),_(Z=>Z+1)})()},[t,r,s,c]),te(()=>{if(P){const E=P+"?width=600px";F&&(v.current=F),S.current=E,r&&(w.current=r),s&&(C.current=s),h(!1),f(!0),(async()=>{t&&r&&await Il(t,r);const K=v.current,Z=t&&K&&K[t]?K[t]+"?width=600px":E;u(Z)})()}},[P]);const B=()=>{g(!0),b.current=t;const E=R.current;requestAnimationFrame(()=>{requestAnimationFrame(()=>{R.current===E&&f(!1)})})};te(()=>{const E=W=>{if(W.data.type==="codeyam-resize"){if(W.data.name&&R.current&&W.data.name!==R.current)return;$.current||($.current=!0,M.current&&(clearTimeout(M.current),M.current=null),N(0),I.current&&B())}};return window.addEventListener("message",E),()=>window.removeEventListener("message",E)},[]);const T=()=>{if(I.current=!0,$.current){B();return}M.current&&clearTimeout(M.current);const E=300*Math.pow(2,k);M.current=setTimeout(()=>{$.current||(k<2?(N(W=>W+1),_(W=>W+1),f(!0),I.current=!1):(console.error("[useInteractiveMode] Interactive mode failed to load after 3 attempts - showing iframe anyway"),B()))},E)};te(()=>{o&&!x.current&&t&&e&&(x.current=!0,h(!0),g(!1),u(null),(async()=>{if(a)try{await fetch(`/api/logs/${a}`,{method:"DELETE"})}catch(W){console.error("[useInteractiveMode] Failed to clear log file:",W)}Y(),l.submit({action:"start",analysisId:e,scenarioId:t},{method:"post",action:"/api/interactive-mode"})})())},[o,t,e,Y,a]),te(()=>{const E=e,W=()=>{if(x.current&&E){const Z=new URLSearchParams({action:"stop",analysisId:E});navigator.sendBeacon("/api/interactive-mode",Z)||fetch("/api/interactive-mode",{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:Z,keepalive:!0}).catch(U=>console.error("Failed to stop interactive mode:",U))}},K=()=>{W()};return window.addEventListener("beforeunload",K),()=>{window.removeEventListener("beforeunload",K),W()}},[e]);const D=y&&b.current===t;return{interactiveServerUrl:c,isStarting:p,isLoading:m,showIframe:D,iframeKey:A,onIframeLoad:T}}const gs=10,T0=1024;function ii({currentViewportWidth:e,currentPresetName:t,onDevicePresetClick:r,devicePresets:s,onHoverChange:a,hideLabel:o=!1,lightMode:i=!1}){const[l,c]=j(null),u=ye(null),p=le(()=>[...s].sort((v,S)=>v.width-S.width),[s]),{fittingPresets:h,overflowPresets:m}=le(()=>{const v=[],S=[];for(const w of p)w.width<=T0?v.push(w):S.push(w);return S.sort((w,C)=>C.width-w.width),{fittingPresets:v,overflowPresets:S}},[p]),f=ae(v=>{if(!u.current)return null;const S=u.current.getBoundingClientRect(),w=v-S.left,C=S.width,k=C/2,A=(h.length>0?h[h.length-1].width:0)/2,_=k-A,M=k+A,$=m.length>0?(m.length-1)*gs:0;if(m.length>0){if(w<_){if(w<=$){const R=Math.min(Math.floor(w/gs),m.length-1);return m[R]}return m[m.length-1]}if(w>M){const R=C-w;if(R<=$){const P=Math.min(Math.floor(R/gs),m.length-1);return m[P]}return m[m.length-1]}}const I=Math.abs(w-k);for(let R=h.length-1;R>=0;R--){const P=h[R],F=h[R-1],Y=P.width/2,J=F?F.width/2:0;if(I<=Y&&I>=J)return P}return h[0]||m[m.length-1]||null},[h,m]),y=ae(v=>{const S=f(v.clientX);c(S),a==null||a(S)},[f,a]),g=ae(()=>{c(null),a==null||a(null)},[a]),x=ae(v=>{const S=f(v.clientX);S&&r(S)},[f,r]),b=l||{name:t,width:e};return d("div",{ref:u,className:"relative h-6 shrink-0 overflow-hidden cursor-pointer",onMouseMove:y,onMouseLeave:g,onClick:x,children:[l&&n("div",{className:"absolute inset-0 flex items-center justify-center pointer-events-none",children:n("div",{className:"h-full transition-all duration-100 bg-[#005C75]",style:{width:`${l.width}px`}})}),n("div",{className:"absolute inset-0 pointer-events-none",children:h.map(v=>{const S=v.width===e,w=(l==null?void 0:l.name)===v.name,C=v.width/2;return d("div",{children:[n("div",{className:"absolute top-0 bottom-0",style:{left:`calc(50% - ${C}px)`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${S||w?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})}),n("div",{className:"absolute top-0 bottom-0",style:{left:`calc(50% + ${C}px)`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${S||w?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})})]},v.name)})}),n("div",{className:"absolute inset-0 pointer-events-none",children:m.map((v,S)=>{const w=S*gs,C=v.width===e,k=(l==null?void 0:l.name)===v.name;return d("div",{children:[n("div",{className:"absolute top-0 bottom-0",style:{left:`${w}px`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${C||k?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})}),n("div",{className:"absolute top-0 bottom-0",style:{right:`${w}px`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${C||k?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})})]},v.name)})}),!o&&n("div",{className:"absolute inset-0 flex items-center justify-center pointer-events-none",children:d("div",{className:`text-[10px] px-2 py-0.5 rounded shadow-sm whitespace-nowrap transition-colors ${l?"bg-[#005c75] text-white":"bg-white/90 text-[#005c75] border border-[rgba(0,92,117,0.25)]"}`,children:[b.name," - ",b.width,"px"]})})]})}function M0({currentWidth:e,currentHeight:t,devicePresets:r,customSizes:s,onApply:a,onSave:o,onRemove:i,onClose:l}){const[c,u]=j(String(e)),[p,h]=j(String(t)),[m,f]=j(""),[y,g]=j(!1),x=ye(null),b=ye(null);te(()=>{const _=M=>{x.current&&!x.current.contains(M.target)&&l()};return document.addEventListener("mousedown",_),()=>document.removeEventListener("mousedown",_)},[l]),te(()=>{const _=M=>{M.key==="Escape"&&l()};return document.addEventListener("keydown",_),()=>document.removeEventListener("keydown",_)},[l]),te(()=>{var _;(_=b.current)==null||_.select()},[]);const v=parseInt(c,10),S=parseInt(p,10),w=v>0&&S>0,C=w&&(v!==e||S!==t),k=()=>{w&&(a({name:"Custom",width:v,height:S}),l())},N=()=>{const _=m.trim();!_||!w||(o(_,v,S),a({name:_,width:v,height:S}),l())},A=_=>{_.key==="Enter"&&(y&&m.trim()?N():C&&k())};return d("div",{ref:x,className:"absolute top-full mt-1 right-0 bg-[#2a2a2a] border border-[#444] rounded-lg shadow-xl z-50 w-64",children:[r&&r.length>0&&d("div",{className:"border-b border-[#444]",children:[n("div",{className:"px-3 py-1.5 text-[10px] uppercase tracking-wider text-gray-500",children:"Presets"}),r.map(_=>d("button",{onClick:()=>{a(_),l()},className:`w-full px-3 py-1.5 text-left text-xs transition-colors cursor-pointer ${_.width===e&&_.height===t?"text-white bg-[#444]":"text-gray-300 hover:text-white hover:bg-[#333]"}`,children:[n("span",{className:"font-medium",children:_.name}),d("span",{className:"text-gray-500 ml-1.5",children:[_.width,"×",_.height]})]},_.name))]}),s.length>0&&d("div",{className:"border-b border-[#444]",children:[n("div",{className:"px-3 py-1.5 text-[10px] uppercase tracking-wider text-gray-500",children:"Saved Sizes"}),s.map(_=>d("div",{className:"flex items-center group hover:bg-[#333] transition-colors",children:[d("button",{onClick:()=>{a(_),l()},className:"flex-1 px-3 py-1.5 text-left text-xs text-gray-300 hover:text-white transition-colors cursor-pointer",children:[n("span",{className:"font-medium",children:_.name}),d("span",{className:"text-gray-500 ml-1.5",children:[_.width,"×",_.height]})]}),n("button",{onClick:()=>i(_.name),className:"px-2 py-1.5 text-gray-600 hover:text-red-400 opacity-0 group-hover:opacity-100 transition-all cursor-pointer",title:"Remove",children:n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M18 6L6 18M6 6l12 12"})})})]},_.name))]}),d("div",{className:"p-3",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n("input",{ref:b,type:"number",value:c,onChange:_=>u(_.target.value),onKeyDown:A,min:"100",max:"7680",className:"w-full px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white text-center focus:outline-none focus:border-[#007a99] [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none",placeholder:"Width"}),n("span",{className:"text-gray-500 text-xs flex-shrink-0",children:"×"}),n("input",{type:"number",value:p,onChange:_=>h(_.target.value),onKeyDown:A,min:"100",max:"7680",className:"w-full px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white text-center focus:outline-none focus:border-[#007a99] [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none",placeholder:"Height"})]}),d("div",{className:"flex gap-2",children:[n("button",{onClick:k,disabled:!w||!C,className:"flex-1 px-2 py-1.5 bg-[#007a99] text-white text-xs font-medium rounded hover:bg-[#006080] transition-colors cursor-pointer disabled:bg-[#333] disabled:text-gray-600 disabled:cursor-not-allowed",children:"Apply"}),y?d("div",{className:"flex gap-1",children:[n("input",{type:"text",value:m,onChange:_=>f(_.target.value),onKeyDown:A,placeholder:"Name",className:"w-20 px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white focus:outline-none focus:border-[#007a99]",autoFocus:!0}),n("button",{onClick:N,disabled:!m.trim()||!w,className:"px-2 py-1.5 bg-[#007a99] text-white text-xs rounded hover:bg-[#006080] transition-colors cursor-pointer disabled:bg-[#333] disabled:text-gray-600 disabled:cursor-not-allowed",children:"OK"})]}):n("button",{onClick:()=>g(!0),disabled:!w,className:"px-2 py-1.5 bg-[#333] text-gray-300 text-xs rounded hover:bg-[#444] transition-colors cursor-pointer disabled:text-gray-600 disabled:cursor-not-allowed",title:"Save as preset",children:"Save"})]})]})]})}function li({width:e,height:t,onSave:r,onCancel:s}){const[a,o]=j(""),[i,l]=j(""),c=()=>{const u=a.trim();if(!u){l("Please enter a name");return}r(u)};return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",children:d("div",{className:"bg-white rounded-lg max-w-md w-full p-6 shadow-xl",children:[d("div",{className:"flex items-center justify-between mb-6",children:[n("h2",{className:"text-xl font-semibold text-gray-900",children:"Save Custom Size"}),n("button",{onClick:s,className:"text-gray-400 hover:text-gray-600 transition-colors cursor-pointer","aria-label":"Close",children:n("svg",{className:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]}),d("div",{className:"mb-6 p-4 bg-gray-50 rounded-lg border border-gray-200",children:[n("div",{className:"text-sm text-gray-500 mb-1",children:"Dimensions"}),d("div",{className:"text-lg font-medium text-gray-900",children:[e,"px × ",t,"px"]})]}),d("div",{className:"mb-6",children:[n("label",{htmlFor:"custom-size-name",className:"block text-sm font-medium text-gray-700 mb-2",children:"Name"}),n("input",{id:"custom-size-name",type:"text",value:a,onChange:u=>{o(u.target.value),l("")},onKeyDown:u=>{u.key==="Enter"&&a.trim()&&c(),u.key==="Escape"&&s()},placeholder:"e.g., iPhone 15 Pro",className:`w-full px-3 py-2 border rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75] ${i?"border-red-300":"border-gray-300"}`,autoFocus:!0}),i&&n("p",{className:"mt-1 text-sm text-red-600",children:i})]}),d("div",{className:"flex gap-3 justify-end",children:[n("button",{onClick:s,className:"px-4 py-2 bg-gray-100 text-gray-700 text-sm font-medium rounded-md hover:bg-gray-200 transition-colors cursor-pointer",children:"Cancel"}),n("button",{onClick:c,disabled:!a.trim(),className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] transition-colors cursor-pointer disabled:bg-gray-300 disabled:cursor-not-allowed",children:"Save"})]})]})})}function ha(e){const[t,r]=j([]),s=e?`codeyam-custom-sizes-${e}`:null;te(()=>{if(!s||typeof window>"u"){r([]);return}try{const l=localStorage.getItem(s);if(l){const c=JSON.parse(l);Array.isArray(c)&&r(c)}}catch(l){console.error("[useCustomSizes] Failed to load custom sizes:",l),r([])}},[s]);const a=ae(l=>{if(!(!s||typeof window>"u"))try{localStorage.setItem(s,JSON.stringify(l))}catch(c){console.error("[useCustomSizes] Failed to save custom sizes:",c)}},[s]),o=ae((l,c,u)=>{r(p=>{const h=p.findIndex(y=>y.name===l),m={name:l,width:c,height:u};let f;return h>=0?(f=[...p],f[h]=m):f=[...p,m],a(f),f})},[a]),i=ae(l=>{r(c=>{const u=c.filter(p=>p.name!==l);return a(u),u})},[a]);return{customSizes:t,addCustomSize:o,removeCustomSize:i}}function Ut(){return d("div",{className:"spinner-container",children:[n("span",{className:"loader"}),n("style",{children:`
|
|
58
|
-
.loader {
|
|
59
|
-
width: 48px;
|
|
60
|
-
height: 48px;
|
|
61
|
-
border: 3px solid rgba(0, 92, 117, 0.2);
|
|
62
|
-
border-radius: 50%;
|
|
63
|
-
display: inline-block;
|
|
64
|
-
position: relative;
|
|
65
|
-
box-sizing: border-box;
|
|
66
|
-
animation: rotation 1s linear infinite;
|
|
67
|
-
}
|
|
68
|
-
.loader::after {
|
|
69
|
-
content: '';
|
|
70
|
-
box-sizing: border-box;
|
|
71
|
-
position: absolute;
|
|
72
|
-
left: 50%;
|
|
73
|
-
top: 50%;
|
|
74
|
-
transform: translate(-50%, -50%);
|
|
75
|
-
width: 56px;
|
|
76
|
-
height: 56px;
|
|
77
|
-
border-radius: 50%;
|
|
78
|
-
border: 3px solid;
|
|
79
|
-
border-color: #005c75 transparent;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@keyframes rotation {
|
|
83
|
-
0% {
|
|
84
|
-
transform: rotate(0deg);
|
|
85
|
-
}
|
|
86
|
-
100% {
|
|
87
|
-
transform: rotate(360deg);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
`})]})}const Fl=["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"],$0=80;function sr(){const[e,t]=j(0);return te(()=>{const r=setInterval(()=>{t(s=>(s+1)%Fl.length)},$0);return()=>clearInterval(r)},[]),n("span",{className:"inline-block mr-2",children:Fl[e]})}async function I0({params:e}){var l;const{sha:t,scenarioId:r}=e;if(!t||!r)throw ne("Invalid parameters",{status:400});const s=await jn(t);if(!s)throw ne("Entity not found",{status:404});const a=await oa(s),o=((l=a==null?void 0:a.scenarios)==null?void 0:l.find(c=>c.id===r))||null;if(!o)throw ne("Scenario not found",{status:404});const i=await Ye();return ne({entity:s,scenario:o,analysis:a,projectSlug:i})}const eo=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1920,height:1080}],F0=et(function(){const{entity:t,scenario:r,analysis:s,projectSlug:a}=ot(),o=Ft(),[i]=or(),[l,c]=j(null),[u,p]=j(1920),[h,m]=j({name:"Desktop",width:1920,height:1080}),[f,y]=j(!1),[g,x]=j(null),{customSizes:b,addCustomSize:v}=ha(a),S=le(()=>[...eo,...b],[b]),w=ye(null),[C,k]=j(1),N=ae(()=>{if(!w.current)return;const L=32,z=w.current.clientWidth-L,V=w.current.clientHeight-L,re=h.width,ue=h.height??900,be=Math.min(1,z/re,V/ue);k(be)},[h.width,h.height]);te(()=>(N(),window.addEventListener("resize",N),()=>window.removeEventListener("resize",N)),[N]);const{interactiveServerUrl:A,isStarting:_,isLoading:M,showIframe:$,iframeKey:I,onIframeLoad:R}=$n({analysisId:s==null?void 0:s.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:a,enabled:!0}),{lastLine:P}=Wt(a,_||M),F=()=>{o(`/entity/${t.sha}`)},Y=(L,z)=>{p(L);const V=S.find(ue=>ue.width===L&&ue.height===z);c(V||null),m({name:(V==null?void 0:V.name)||"Custom",width:L,height:z})},J=L=>{c(L),p(L.width),m({name:L.name,width:L.width,height:L.height})},O=L=>{v(L,h.width,h.height??900),y(!1),m(z=>({...z,name:L}))},B=((s==null?void 0:s.scenarios)||[]).filter(L=>{var z;return!((z=L.metadata)!=null&&z.sameAsDefault)}),T=B.findIndex(L=>L.id===(r==null?void 0:r.id)),D=T+1,E=B.length,W=T>0,K=T<B.length-1,Z=()=>{if(W){const L=B[T-1],z=encodeURIComponent(`/entity/${t.sha}/scenarios/${L.id}/fullscreen`);o(`/entity/${t.sha}/scenarios/${L.id}/fullscreen?from=${z}`)}},q=()=>{if(K){const L=B[T+1],z=encodeURIComponent(`/entity/${t.sha}/scenarios/${L.id}/fullscreen`);o(`/entity/${t.sha}/scenarios/${L.id}/fullscreen?from=${z}`)}},U=_||M||!$;return d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[d("div",{className:"bg-[#3d3d3d] h-12 flex items-center px-4 gap-4 shrink-0 z-20",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n("img",{src:na,alt:"CodeYam",className:"h-6 brightness-0 invert"}),n("span",{className:"text-white font-medium text-sm whitespace-nowrap",children:t.name}),d("div",{className:"flex items-center gap-2 shrink-0",children:[n("button",{onClick:Z,disabled:!W,className:`${W?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Previous scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M12.5 15L7.5 10L12.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})}),d("span",{className:"text-gray-400 text-sm",children:[D,"/",E]}),n("button",{onClick:q,disabled:!K,className:`${K?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Next scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M7.5 15L12.5 10L7.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),d("div",{className:"flex items-center gap-2 ml-2 min-w-0",children:[n("span",{className:"text-white font-semibold text-xs whitespace-nowrap shrink-0",children:r==null?void 0:r.name}),(r==null?void 0:r.description)&&d("div",{className:"relative group min-w-0",children:[n("span",{className:"text-gray-400 text-xs truncate block",children:r.description}),n("div",{className:"absolute left-0 top-full mt-1 hidden group-hover:block z-50 bg-black text-white text-xs px-3 py-2 rounded shadow-lg max-w-md",children:r.description})]})]})]}),n("button",{onClick:F,className:"text-white hover:text-gray-300 transition-colors ml-4","aria-label":"Close fullscreen",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M15 5L5 15M5 5L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})})]}),d("div",{className:"bg-[#e5e7eb] border-b border-[rgba(0,0,0,0.1)] shrink-0 z-10 h-6 flex items-center justify-center relative",children:[n("div",{className:"absolute inset-0 flex justify-center",children:n("div",{style:{maxWidth:`${eo[eo.length-1].width}px`,width:"100%"},children:n(ii,{currentViewportWidth:u,currentPresetName:h.name,onDevicePresetClick:J,devicePresets:S,hideLabel:!0,onHoverChange:x,lightMode:!0})})}),d("div",{className:"relative z-10 flex items-center gap-2",children:[d("div",{className:"relative w-28 h-5",children:[d("div",{className:"absolute inset-0 bg-white text-gray-900 text-xs px-2 rounded flex items-center justify-between pointer-events-none border border-gray-300",children:[n("span",{className:"leading-none",children:(g==null?void 0:g.name)||h.name}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M3 4.5L6 7.5L9 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),d("select",{value:h.name,onChange:L=>{const z=S.find(V=>V.name===L.target.value);z&&J(z)},className:"relative w-full h-full opacity-0 cursor-pointer",children:[S.map(L=>n("option",{value:L.name,children:L.name},L.name)),h.name==="Custom"&&n("option",{value:"Custom",children:"Custom"})]})]}),n("input",{type:"number",value:h.width,onChange:L=>{const z=parseInt(L.target.value,10);!isNaN(z)&&z>0&&Y(z,h.height??900)},className:"bg-white text-gray-900 text-xs px-1 rounded border border-gray-300 outline-none w-16 text-center h-5 leading-none",min:"200",max:"3840"}),n("span",{className:"text-gray-400 text-xs h-5 flex items-center leading-none",children:"×"}),n("span",{className:"bg-gray-100 text-gray-600 text-xs px-1 rounded w-14 text-center h-5 flex items-center justify-center leading-none",children:h.height??900}),h.name==="Custom"&&n("button",{onClick:()=>y(!0),className:"bg-white text-gray-900 text-xs px-2 rounded h-5 flex items-center leading-none border border-gray-300 hover:bg-gray-50 transition-colors",children:"Save"})]})]}),n("div",{ref:w,className:"flex-1 flex items-center justify-center overflow-hidden p-4",style:{backgroundImage:`
|
|
91
|
-
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
92
|
-
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
93
|
-
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
94
|
-
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
95
|
-
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:A?d("div",{className:"relative bg-white",style:{width:`${h.width}px`,height:`${h.height??900}px`,transform:`scale(${C})`,transformOrigin:"center center"},children:[U&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),P&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(sr,{}),P]})]})]})}),n("iframe",{src:A,className:"w-full h-full border-none",title:`Interactive preview: ${r==null?void 0:r.name}`,onLoad:R,style:{opacity:$?1:0}},I)]}):d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),P&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(sr,{}),P]})]})]})}),f&&n(li,{width:h.width,height:h.height??900,onSave:O,onCancel:()=>y(!1)})]})}),D0=Object.freeze(Object.defineProperty({__proto__:null,default:F0,loader:I0},Symbol.toStringTag,{value:"Module"})),er={sound:"soft-double-tap",systemNotification:!0},R0=[{id:"soft-double-tap",label:"Soft double tap"},{id:"gentle-chime",label:"Gentle chime"},{id:"warm-ding",label:"Warm ding"},{id:"mellow-two-tone",label:"Mellow two-tone"},{id:"triangle-bell",label:"Triangle bell"},{id:"off",label:"No sound"}],Ud="codeyam-editor-notifications";function O0(){try{const e=localStorage.getItem(Ud);if(!e)return er;const t=JSON.parse(e);return typeof t=="string"?t==="true"?er:{...er,sound:"off",systemNotification:!1}:{...er,...t}}catch{return er}}function L0(e){localStorage.setItem(Ud,JSON.stringify(e))}function Wd(e){var t;if(e!=="off")try{const r=new AudioContext,s={"soft-double-tap":a=>{[0,.12].forEach(o=>{const i=a.createOscillator(),l=a.createGain();i.connect(l),l.connect(a.destination),i.type="sine",i.frequency.value=392,l.gain.setValueAtTime(.25,a.currentTime+o),l.gain.exponentialRampToValueAtTime(.01,a.currentTime+o+.1),i.start(a.currentTime+o),i.stop(a.currentTime+o+.1)})},"gentle-chime":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.setValueAtTime(523,a.currentTime),o.frequency.setValueAtTime(659,a.currentTime+.15),i.gain.setValueAtTime(.3,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.4),o.start(),o.stop(a.currentTime+.4)},"warm-ding":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.value=330,i.gain.setValueAtTime(.35,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.6),o.start(),o.stop(a.currentTime+.6)},"mellow-two-tone":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.setValueAtTime(294,a.currentTime),o.frequency.setValueAtTime(440,a.currentTime+.18),i.gain.setValueAtTime(.3,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.5),o.start(),o.stop(a.currentTime+.5)},"triangle-bell":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="triangle",o.frequency.value=523,i.gain.setValueAtTime(.4,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.8),o.start(),o.stop(a.currentTime+.8)}};(t=s[e])==null||t.call(s,r)}catch{}}function Jd({serverUrl:e,isStarting:t,projectSlug:r,devServerError:s,onStartServer:a,notificationSettings:o,onChangeNotificationSettings:i}){const[l,c]=j(null),[u,p]=j(!1),h=ye(null),m=ye(null);te(()=>{if(!r)return;const b=new EventSource("/api/dev-mode-events");return b.onmessage=v=>{try{const S=JSON.parse(v.data);S.type==="file-synced"&&(c(S.fileName),m.current&&clearTimeout(m.current),m.current=setTimeout(()=>{c(null)},5e3))}catch{}},()=>{b.close(),m.current&&clearTimeout(m.current)}},[r]),te(()=>{if(!u)return;function b(v){h.current&&!h.current.contains(v.target)&&p(!1)}return document.addEventListener("mousedown",b),()=>document.removeEventListener("mousedown",b)},[u]);let f;s?f="error":t?f="starting":e?f="running":f="stopped";const y={starting:"bg-yellow-400",running:"bg-green-400",stopped:"bg-gray-400",error:"bg-red-400"},g={starting:"Starting...",running:e||"Running",stopped:"Stopped",error:"Error"},x=o&&(o.sound!=="off"||o.systemNotification);return d("div",{className:"bg-[#1e1e1e] border-t border-[#3d3d3d] h-7 flex items-center px-4 gap-4 shrink-0 text-xs font-mono",children:[d("div",{className:"flex items-center gap-2",children:[n("div",{className:`w-2 h-2 rounded-full ${y[f]}`}),d("span",{className:"text-gray-400",children:["Server:"," ",n("span",{className:"text-gray-300",children:g[f]})]}),(f==="stopped"||f==="error")&&a&&n("button",{onClick:a,className:"ml-1 px-2.5 py-0.5 bg-[#005c75] hover:bg-[#007a9a] text-white text-[11px] font-medium rounded transition-colors cursor-pointer border-none leading-tight",children:"Start Server"})]}),n("div",{className:"w-px h-3 bg-[#3d3d3d]"}),l&&d(we,{children:[d("div",{className:"flex items-center gap-1.5",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"#4ade80",strokeWidth:"2",children:n("path",{d:"M20 6L9 17l-5-5"})}),d("span",{className:"text-green-400",children:["Synced: ",l]})]}),n("div",{className:"w-px h-3 bg-[#3d3d3d]"})]}),n("div",{className:"flex-1"}),i&&o&&d("div",{className:"relative",ref:h,children:[n("button",{onClick:()=>p(!u),className:`text-[11px] rounded transition-colors cursor-pointer ${x?"text-cygreen hover:text-cygreen/80":"text-gray-500 hover:text-gray-300"}`,children:x?"Notifications On":"Notifications Off"}),u&&d("div",{className:"absolute bottom-full right-0 mb-2 w-56 bg-[#2d2d2d] border border-[#4d4d4d] rounded-lg shadow-xl p-3 flex flex-col gap-3 z-50",children:[d("div",{children:[n("div",{className:"text-[11px] text-gray-400 mb-1.5",children:"Notification sound"}),n("div",{className:"flex flex-col gap-0.5",children:R0.map(b=>n("button",{onClick:()=>{i({...o,sound:b.id}),b.id!=="off"&&Wd(b.id)},className:`text-left text-[11px] px-2 py-1 rounded cursor-pointer transition-colors ${o.sound===b.id?"bg-[#444] text-white":"text-gray-300 hover:bg-[#3a3a3a]"}`,children:b.label},b.id))})]}),d("div",{className:"border-t border-[#4d4d4d] pt-2",children:[d("label",{className:"flex items-center gap-2 cursor-pointer",children:[n("input",{type:"checkbox",checked:o.systemNotification,onChange:b=>{const v=b.target.checked;i({...o,systemNotification:v}),v&&typeof Notification<"u"&&Notification.permission==="default"&&Notification.requestPermission()},className:"accent-green-500"}),n("span",{className:"text-[11px] text-gray-300",children:"System notification"})]}),n("div",{className:"text-[10px] text-gray-500 mt-1 ml-5",children:"Shows when tab is not visible"})]})]})]})]})}async function z0(e,t){try{const{WebglAddon:s}=await import("@xterm/addon-webgl"),a=new s;return a.onContextLoss(()=>{t==null||t("webgl","canvas",new Error("WebGL context lost")),a.dispose(),Dl(e).then(o=>{o||t==null||t("canvas","dom",new Error("Canvas fallback failed after context loss"))})}),e.loadAddon(a),{type:"webgl",dispose:()=>a.dispose()}}catch(s){t==null||t("webgl","canvas",s)}const r=await Dl(e);return r||(t==null||t("canvas","dom",new Error("Canvas addon failed")),{type:"dom",dispose:()=>{}})}async function Dl(e){try{const{CanvasAddon:t}=await import("@xterm/addon-canvas"),r=new t;return e.loadAddon(r),{type:"canvas",dispose:()=>r.dispose()}}catch{return null}}class B0{constructor(t,r){ht(this,"deferred",!1);ht(this,"userActiveSinceLastOutput",!1);ht(this,"actions");ht(this,"env");this.actions=t,this.env=r}reportUserActivity(){this.userActiveSinceLastOutput=!0}resetActivityFlag(){this.userActiveSinceLastOutput=!1}onIdle(t,r){return this.deferred=!1,r&&this.env.hasBrowserFocus()&&this.userActiveSinceLastOutput?(this.userActiveSinceLastOutput=!1,"suppressed"):this.notify(t)}onBuildTabChange(t,r){return!t&&this.deferred?(this.deferred=!1,this.notify(r),!0):!1}onActive(){this.deferred=!1}onUserEngagement(){const t=this.deferred;return this.deferred=!1,t}get isDeferred(){return this.deferred}notify(t){const r=!!(t!=null&&t.sound)&&t.sound!=="off";return r&&this.actions.playSound(t.sound),!this.env.hasBrowserFocus()&&(t!=null&&t.systemNotification)&&this.env.hasNotificationPermission()&&this.actions.showSystemNotification(),r?"played":"played-no-sound"}}class Y0{constructor(t){ht(this,"_isIdle",!1);ht(this,"_isBuilding",!1);ht(this,"callbacks");this.callbacks=t}get isIdle(){return this._isIdle}get isBuilding(){return this._isBuilding}handleClaudeIdle(t,r,s){console.log("[TerminalIdleHandler] claude-idle, building: %s → false",this._isBuilding),t==null||t.onIdle(r,s),this._isIdle=!0,this._isBuilding=!1,this.callbacks.onIdleChange(!0),this.callbacks.onBuildingChange(!1)}handleClaudeActive(t){console.log("[TerminalIdleHandler] claude-active, building: %s → true",this._isBuilding),this._isIdle=!1,this._isBuilding=!0,this.callbacks.onIdleChange(!1),this.callbacks.onBuildingChange(!0),t==null||t.onActive(),t==null||t.resetActivityFlag(),this.callbacks.onCloseNotification()}handleOutput(t){this.callbacks.onIdleChange(!1),t==null||t.resetActivityFlag()}reset(){this._isBuilding&&(console.log("[TerminalIdleHandler] reset, was building: true"),this._isBuilding=!1,this.callbacks.onBuildingChange(!1))}}const U0=`
|
|
96
|
-
.xterm { cursor: text; position: relative; user-select: none; -ms-user-select: none; -webkit-user-select: none; }
|
|
97
|
-
.xterm.focus, .xterm:focus { outline: none; }
|
|
98
|
-
.xterm .xterm-helpers { position: absolute; top: 0; z-index: 5; }
|
|
99
|
-
.xterm .xterm-helper-textarea { padding: 0; border: 0; margin: 0; position: absolute; opacity: 0; left: -9999em; top: 0; width: 0; height: 0; z-index: -5; white-space: nowrap; overflow: hidden; resize: none; caret-color: transparent !important; clip-path: inset(100%) !important; }
|
|
100
|
-
.xterm .composition-view { background: #000; color: #FFF; display: none; position: absolute; white-space: nowrap; z-index: 1; }
|
|
101
|
-
.xterm .composition-view.active { display: block; }
|
|
102
|
-
.xterm .xterm-viewport { background-color: #000; overflow-y: scroll; cursor: default; position: absolute; right: 0; left: 0; top: 0; bottom: 0; }
|
|
103
|
-
.xterm .xterm-screen { position: relative; }
|
|
104
|
-
.xterm .xterm-screen canvas { position: absolute; left: 0; top: 0; }
|
|
105
|
-
.xterm .xterm-scroll-area { visibility: hidden; }
|
|
106
|
-
.xterm-char-measure-element { display: inline-block; visibility: hidden; position: absolute; top: 0; left: -9999em; line-height: normal; }
|
|
107
|
-
.xterm.enable-mouse-events { cursor: default; }
|
|
108
|
-
.xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer { cursor: pointer; }
|
|
109
|
-
.xterm.column-select.focus { cursor: crosshair; }
|
|
110
|
-
.xterm .xterm-accessibility:not(.debug), .xterm .xterm-message { position: absolute; left: 0; top: 0; bottom: 0; right: 0; z-index: 10; color: transparent; pointer-events: none; }
|
|
111
|
-
.xterm .xterm-accessibility-tree:not(.debug) *::selection { color: transparent; }
|
|
112
|
-
.xterm .xterm-accessibility-tree { user-select: text; white-space: pre; }
|
|
113
|
-
.xterm .live-region { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
|
|
114
|
-
.xterm-dim { opacity: 1 !important; }
|
|
115
|
-
.xterm-underline-1 { text-decoration: underline; }
|
|
116
|
-
.xterm-underline-2 { text-decoration: double underline; }
|
|
117
|
-
.xterm-underline-3 { text-decoration: wavy underline; }
|
|
118
|
-
.xterm-underline-4 { text-decoration: dotted underline; }
|
|
119
|
-
.xterm-underline-5 { text-decoration: dashed underline; }
|
|
120
|
-
.xterm-overline { text-decoration: overline; }
|
|
121
|
-
.xterm-strikethrough { text-decoration: line-through; }
|
|
122
|
-
.xterm-screen .xterm-decoration-container .xterm-decoration { z-index: 6; position: absolute; }
|
|
123
|
-
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer { z-index: 7; }
|
|
124
|
-
.xterm-decoration-overview-ruler { z-index: 8; position: absolute; top: 0; right: 0; pointer-events: none; }
|
|
125
|
-
.xterm-decoration-top { z-index: 2; position: relative; }
|
|
126
|
-
`;function W0(){let e=document.getElementById("xterm-css");e||(e=document.createElement("style"),e.id="xterm-css",document.head.appendChild(e)),e.textContent=U0}const Hd=dh(function({entityName:t,entityType:r,entitySha:s,entityFilePath:a,scenarioName:o,scenarioDescription:i,analysisId:l,projectSlug:c,onRefreshPreview:u,onShowResults:p,onHideResults:h,onSetViewport:m,editorMode:f,onIdleChange:y,onBuildingChange:g,notificationSettings:x,buildTabActive:b,claudeStartMode:v,claudeSessionId:S,onFeatureComplete:w,onDataMutationForwarded:C,resultsOpen:k,editorStepLabel:N},A){const _=ye(null),M=ye(null),$=ye(null),I=ye(null),R=ye(null),P=ye(!1),F=ye(0),Y=ye(!1),J=ye(y);J.current=y;const O=ye(g);O.current=g;const B=ye(x);B.current=x;const T=ye(b);T.current=b;const D=ye(k);D.current=k;const E=ye(null),W=ye(!1),K=ye(null);K.current||(K.current=new B0({playSound:z=>Wd(z),showSystemNotification:()=>{E.current&&E.current.close();const z=new Notification("Claude is ready for you",{body:"Claude has finished and is waiting for your input.",tag:"claude-idle"});z.onclick=()=>{window.focus(),z.close()},E.current=z}},{hasBrowserFocus:()=>document.hasFocus(),hasNotificationPermission:()=>typeof Notification<"u"&&Notification.permission==="granted"}));const Z=ye(null);Z.current||(Z.current=new Y0({onIdleChange:z=>{var V;W.current=z,(V=J.current)==null||V.call(J,z)},onCloseNotification:()=>{E.current&&(E.current.close(),E.current=null)},onBuildingChange:z=>{var V;(V=O.current)==null||V.call(O,z)}}));function q(){E.current&&(E.current.close(),E.current=null)}function U(){var z,V;W.current&&(W.current=!1,q(),(z=J.current)==null||z.call(J,!1),(V=K.current)==null||V.onUserEngagement())}te(()=>{function z(){var be;document.hasFocus()&&T.current&&U(),T.current&&document.hasFocus()&&((be=K.current)==null||be.reportUserActivity())}function V(){!document.hidden&&T.current&&U()}function re(){var be;document.hasFocus()&&T.current&&U(),T.current&&document.hasFocus()&&((be=K.current)==null||be.reportUserActivity())}function ue(){var be;T.current&&U(),T.current&&((be=K.current)==null||be.reportUserActivity())}return window.addEventListener("focus",ue),document.addEventListener("visibilitychange",V),document.addEventListener("mousemove",z),document.addEventListener("mousedown",re),document.addEventListener("keydown",z),()=>{window.removeEventListener("focus",ue),document.removeEventListener("visibilitychange",V),document.removeEventListener("mousemove",z),document.removeEventListener("mousedown",re),document.removeEventListener("keydown",z)}},[]),te(()=>{var z;b&&W.current&&document.hasFocus()&&U(),(z=K.current)==null||z.onBuildTabChange(!!b,B.current)},[b]);const L=ae(()=>{var z;(z=$.current)==null||z.focus()},[]);return uh(A,()=>({sendInput(z){const V=I.current;V&&V.readyState===WebSocket.OPEN&&(V.send(JSON.stringify({type:"input",data:z})),setTimeout(()=>{V.readyState===WebSocket.OPEN&&V.send(JSON.stringify({type:"input",data:"\r"}))},100))},focus(){var z;(z=$.current)==null||z.focus()},scrollToBottom(){var V;const z=(V=_.current)==null?void 0:V.querySelector(".xterm-viewport");z&&(z.scrollTop=z.scrollHeight)}})),te(()=>{const z=_.current;if(!z)return;let V=!1;return W0(),Promise.all([import("@xterm/xterm"),import("@xterm/addon-fit"),import("@xterm/addon-web-links")]).then(([re,ue,be])=>{if(V)return;const ie=new re.Terminal({cursorBlink:!1,cursorInactiveStyle:"none",scrollback:5e3,fontSize:13,fontFamily:"'IBM Plex Mono', 'Menlo', 'Monaco', monospace",theme:{background:"#1e1e1e",foreground:"#d4d4d4",cursor:"#1e1e1e",selectionBackground:"#264f78"},linkHandler:{activate(se,he){try{const Te=new URL(he),ge=Te.searchParams.get("scenario");if(ge&&Te.pathname.startsWith("/editor")){const ze=new BroadcastChannel("codeyam-editor");ze.postMessage({type:"switch-scenario",scenarioId:ge}),ze.close();return}}catch{}window.open(he,"_blank")}}}),fe=new ue.FitAddon;ie.loadAddon(fe),ie.loadAddon(new be.WebLinksAddon),ie.open(z),ie.attachCustomKeyEventHandler(se=>{if(D.current&&(se.key==="ArrowLeft"||se.key==="ArrowRight")&&!se.ctrlKey&&!se.altKey&&!se.metaKey&&se.type==="keydown"){const he=se.key==="ArrowLeft"?"\x1B[D":"\x1B[C",Te=I.current;return Te&&Te.readyState===WebSocket.OPEN&&Te.send(JSON.stringify({type:"input",data:he})),!1}return!0}),ie.write("\x1B[?25l");let ce=null;z0(ie,(se,he,Te)=>{console.warn(`[Terminal] Renderer fallback: ${se} → ${he}`,Te)}).then(se=>{if(V){se.dispose();return}console.log(`[Terminal] Using ${se.type} renderer`),ce=se.dispose}),requestAnimationFrame(()=>{try{fe.fit()}catch{}}),$.current=ie,ie.focus(),setTimeout(()=>ie.focus(),100),setTimeout(()=>ie.focus(),500);const Ce=window.location.protocol==="https:"?"wss:":"ws:",Ae=window.location.host;function _e(se){const he=new URLSearchParams;return he.set("entityName",t),r&&he.set("entityType",r),s&&he.set("entitySha",s),a&&he.set("entityFilePath",a),o&&he.set("scenarioName",o),i&&he.set("scenarioDescription",i),l&&he.set("analysisId",l),c&&he.set("projectSlug",c),f&&he.set("editorMode","true"),se&&he.set("reconnectId",se),v&&he.set("claudeStartMode",v),S&&he.set("claudeSessionId",S),N&&he.set("editorStepLabel",N),`${Ce}//${Ae}/ws/terminal?${he.toString()}`}function Q(se){const he=_e(se),Te=new WebSocket(he);I.current=Te,Te.onopen=()=>{F.current=0,Y.current=!1,Te.send(JSON.stringify({type:"resize",cols:ie.cols,rows:ie.rows}))},Te.onmessage=ge=>{var ze,Ve,it;try{const Le=JSON.parse(ge.data);if(Le.type==="session-id"){R.current=Le.sessionId;return}if(Le.type==="refresh-preview"){u==null||u(Le.path,Le.scenarioId);return}if(Le.type==="show-results"){p==null||p();return}if(Le.type==="hide-results"){h==null||h();return}if(Le.type==="feature-complete"){w==null||w();return}if(Le.type==="data-mutation-forwarded"){C==null||C();return}if(Le.type==="set-viewport"){m==null||m({name:Le.name,width:Le.width,height:Le.height});return}if(Le.type==="claude-idle"){(ze=Z.current)==null||ze.handleClaudeIdle(K.current,B.current,T.current??!1);return}if(Le.type==="claude-active"){(Ve=Z.current)==null||Ve.handleClaudeActive(K.current);return}Le.type==="output"&&(ie.write(Le.data),(it=Z.current)==null||it.handleOutput(K.current))}catch{ie.write(ge.data)}},Te.onclose=()=>{var ze,Ve;if(console.log("[Terminal] WS closed, intentional=%s",P.current),P.current){ie.write(`\r
|
|
127
|
-
\x1B[90m[Terminal session ended]\x1B[0m\r
|
|
128
|
-
`),(ze=Z.current)==null||ze.reset();return}const ge=F.current;if(ge<5&&R.current){const it=1e3*Math.pow(2,Math.min(ge,3));F.current=ge+1,ie.write(`\r
|
|
129
|
-
\x1B[33m[Reconnecting...]\x1B[0m\r
|
|
130
|
-
`),setTimeout(()=>{P.current||Q(R.current)},it)}else Y.current?(ie.write(`\r
|
|
131
|
-
\x1B[90m[Terminal session ended]\x1B[0m\r
|
|
132
|
-
`),(Ve=Z.current)==null||Ve.reset()):(Y.current=!0,ie.write(`\r
|
|
133
|
-
\x1B[33m[Starting new session...]\x1B[0m\r
|
|
134
|
-
`),R.current=null,F.current=0,Q())},Te.onerror=()=>{}}Q(),ie.onData(se=>{const he=I.current;he&&he.readyState===WebSocket.OPEN&&he.send(JSON.stringify({type:"input",data:se})),U()});let xe=null;const oe=new ResizeObserver(()=>{xe&&clearTimeout(xe),xe=setTimeout(()=>{let se;try{se=fe.proposeDimensions()}catch{return}if(!se||se.cols===ie.cols&&se.rows===ie.rows)return;const he=z.querySelector(".xterm-viewport");let Te,ge=!0;he&&(Te=he.scrollTop,ge=he.scrollTop+he.clientHeight>=he.scrollHeight-10),fe.fit(),he&&Te!==void 0&&(ge?he.scrollTop=he.scrollHeight:he.scrollTop=Te);const ze=I.current;ze&&ze.readyState===WebSocket.OPEN&&ze.send(JSON.stringify({type:"resize",cols:ie.cols,rows:ie.rows}))},150)});oe.observe(z),M.current=()=>{var se;xe&&clearTimeout(xe),oe.disconnect(),P.current=!0,(se=I.current)==null||se.close(),I.current=null,ce==null||ce(),ie.dispose(),$.current=null}}),()=>{var re;V=!0,(re=M.current)==null||re.call(M),M.current=null}},[]),n("div",{ref:_,onClick:L,className:"w-full h-full relative overflow-hidden",style:{padding:"4px 0 0 8px"}})});function dt({screenshotPath:e,cacheBuster:t,alt:r,className:s="",title:a}){const[o,i]=j("loading"),[l,c]=j(!1),u=ye(null),p=t?`/api/screenshot/${e}?cb=${t}`:`/api/screenshot/${e}`,h=()=>{i("success"),c(!0)},m=()=>{i("error"),c(!1)};return te(()=>{i("loading"),c(!1);const f=u.current;f!=null&&f.complete&&(f.naturalHeight!==0?(i("success"),c(!0)):(i("error"),c(!1)))},[p]),e?d("div",{className:"relative w-full h-full flex items-center justify-center",title:a,children:[n("img",{ref:u,src:p,alt:r,onLoad:h,onError:m,className:s||"max-w-full max-h-full object-contain",style:{visibility:l?"visible":"hidden",position:l?"relative":"absolute"}}),o==="loading"&&n("div",{className:"absolute inset-0 bg-gray-100 animate-pulse rounded flex items-center justify-center",children:n("svg",{className:"w-8 h-8 text-gray-300",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"})})}),o==="error"&&d("div",{className:"absolute inset-0 border-2 border-dashed border-gray-300 bg-gray-50 rounded flex flex-col items-center justify-center text-xs gap-1",children:[n("span",{className:"text-2xl text-gray-400",children:"📷"}),n("span",{className:"text-gray-400 whitespace-nowrap",children:"No Screenshot"})]})]}):n("div",{className:"w-full h-full border-2 border-dashed border-gray-300 bg-gray-50 rounded flex flex-col items-center justify-center text-xs gap-1",title:a,children:n("span",{className:"text-2xl text-gray-400",children:"📷"})})}function J0({scenarios:e,currentScenarioId:t,entitySha:r,cacheBuster:s}){const a=Ft();return e.length===0?n("div",{className:"flex-1 flex items-center justify-center p-8",children:n("p",{className:"text-gray-500 text-sm",children:"No scenarios found"})}):n("div",{className:"flex-1 overflow-y-auto p-3 space-y-3",children:e.map(o=>{var c,u;const i=o.id===t,l=(u=(c=o.metadata)==null?void 0:c.screenshotPaths)==null?void 0:u[0];return d("button",{onClick:()=>{a(`/entity/${r}/scenarios/${o.id}/dev`)},className:`w-full text-left rounded-lg overflow-hidden border transition-colors cursor-pointer flex ${i?"border-[#005c75] bg-[#1a3a44]":"border-[#3d3d3d] bg-[#252525] hover:border-[#555]"}`,children:[n("div",{className:"w-24 h-20 shrink-0 bg-[#1a1a1a]",children:n(dt,{screenshotPath:l,cacheBuster:s,alt:o.name,className:"w-full h-full object-cover object-top"})}),d("div",{className:"p-2.5 min-w-0 flex-1",children:[d("div",{className:"text-white text-sm font-medium truncate",children:[i&&n("span",{className:"inline-block w-1.5 h-1.5 rounded-full bg-[#005c75] mr-1.5 relative top-[-1px]"}),o.name]}),o.description&&n("div",{className:"text-gray-400 text-xs mt-1 line-clamp-2",children:o.description})]})]},o.id)})})}function Et(e){var l;if(!e.startsWith("app/")&&!e.startsWith("("))return"/";const r=e.replace(/^app\//,"").split("/"),s=r.pop(),a=((l=s.match(/\.(tsx?|jsx?|js)$/))==null?void 0:l[0])||"",o=s.slice(0,-a.length);let i;return o==="page"||o==="index"?i=r:i=[...r,o],i=i.filter(c=>!c.startsWith("(")),i.length===0?"/":"/"+i.join("/")}function Ot(e){return e==="/"?"Home":e.replace(/^\//,"").split("/").map(r=>r.startsWith("[")?r:r.charAt(0).toUpperCase()+r.slice(1)).join(" / ")}function Vd(e,t){if(!e)return null;const r=e.split("?")[0].replace(/\/+$/,"")||"/",s=t.map(l=>({filePath:l,pattern:Et(l)})),a=r==="/"?[]:r.replace(/^\//,"").split("/");let o=null,i=-1;for(const l of s){const c=l.pattern==="/"?[]:l.pattern.replace(/^\//,"").split("/");if(c.length!==a.length)continue;let u=!0,p=0;for(let h=0;h<c.length;h++){const m=c[h],f=a[h];if(!(m.startsWith("[")&&m.endsWith("]")))if(m===f)p++;else{u=!1;break}}u&&p>i&&(i=p,o=l.filePath)}return o}function Kd(e,t){const r=new Map;for(const s of e)s.status!=="deleted"&&(t||s.status==="added"||s.status==="untracked"?r.set(s.path,"new"):s.status==="modified"&&r.set(s.path,"edited"));return r}function yt(e){if(!e||e==="/")return"Home";const t=e.split("?")[0].replace(/^\//,"");if(!t)return"Home";const r=t.split("/")[0].replace(/\.[^.]+$/,"");return r.charAt(0).toUpperCase()+r.slice(1)}function ma(e){return e?e.includes("/isolated-components")||e.includes("/codeyam-isolate"):!1}function Kt(e){return e.componentName?e.componentName:e.pageFilePath?Ot(Et(e.pageFilePath)):yt(e.url)}function Gd(e,t,r){var o;const s=[],a=new Set;for(const i of e){let l=null,c=null;if(i.componentName&&i.componentPath)l=i.componentName,c=i.componentPath;else if(!i.componentName&&i.pageFilePath)l=i.displayName||(i.pageFilePath.startsWith("app/")?Ot(Et(i.pageFilePath)):yt(i.url)),c=i.pageFilePath;else if(!i.componentName&&i.url!==void 0){const u=yt(i.url);t[u]&&(l=u,c=t[u])}if(l&&c&&!a.has(l)){a.add(l);const u=r.find(p=>p.name===l)||(c?r.find(p=>p.filePath===c):void 0);s.push({name:l,filePath:c,importedBy:(o=u==null?void 0:u.metadata)==null?void 0:o.importedBy})}}return s}function H0(e,t){const r=[],s=new Set(t);for(const a of e)s.has(a.name)||(s.add(a.name),r.push({name:a.name,filePath:a.filePath}));return r}function V0(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>t[r.name])}function K0(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>{if("componentName"in r){const a=Kt(r);return!!t[a]}const s=r.name.indexOf(" - ");if(s!==-1){const a=r.name.slice(0,s);return!!t[a]}return!!t.Home})}function G0(e){const t=new Set,r=new Map;for(const a of e)t.add(a.name),a.filePath&&r.set(a.filePath,a.name);const s=new Map;for(const a of e){const o=a.importedBy;if(!o||typeof o!="object")continue;const i=new Set;for(const l of Object.keys(o))for(const c of Object.keys(o[l]))if(t.has(c))i.add(c);else{const u=r.get(l);u&&u!==a.name?i.add(u):i.add(c)}i.size>0&&s.set(a.name,i)}return s}function q0(e,t){const r=new Map;for(const s of t){const a=e.get(s.filePath);a&&r.set(s.name,a)}return r}const Q0=20;function qd(e,t,r=Q0){const s={};if(t.length===0||e.size===0)return s;const a=new Map;for(const u of t)a.set(u.name,u);const o=G0(t),i=q0(e,t);for(const[u,p]of i)s[u]={status:p};const l=new Map;for(const[u]of i)l.set(u,new Set([u]));const c=[];for(const[u]of i)c.push({name:u,depth:0});for(;c.length>0;){const{name:u,depth:p}=c.shift();if(p>=r)continue;const h=l.get(u)||new Set,m=o.get(u);if(m)for(const f of m){if(!a.has(f))continue;l.has(f)||l.set(f,new Set);const y=l.get(f);let g=!1;for(const x of h)y.has(x)||(y.add(x),g=!0);g&&c.push({name:f,depth:p+1})}}for(const[u,p]of l){if(i.has(u))continue;const h=[];for(const m of p){const f=a.get(m),y=i.get(m);f&&y&&h.push({name:m,filePath:f.filePath,changeType:y})}h.sort((m,f)=>m.name.localeCompare(f.name)),s[u]={status:"impacted",impactedBy:h.length>0?h:void 0}}return s}function fa(e){if(Array.isArray(e))return e;if(e&&typeof e=="object"){const t=e;for(const s of["components","entries","functions","glossary"]){const a=t[s];if(Array.isArray(a))return a}for(const s of Object.values(t))if(Array.isArray(s))return s;const r=Object.entries(t);if(r.length>0&&r.every(([,s])=>s&&typeof s=="object"&&!Array.isArray(s)))return r.map(([s,a])=>({...a,filePath:s}))}return[]}function Z0(e){return fa(e).filter(r=>r.testFile&&r.returnType!=="JSX.Element"&&r.returnType!=="React.ReactNode").map(r=>({name:r.name,filePath:r.filePath,description:r.description||"",testFile:r.testFile,feature:r.feature}))}function Rl(e,t){var r,s,a,o,i;return t?!!((r=e.metadata)!=null&&r.executionResult):!!((a=(s=e.metadata)==null?void 0:s.screenshotPaths)!=null&&a[0])&&!((o=e.metadata)!=null&&o.noScreenshotSaved)&&!((i=e.metadata)!=null&&i.sameAsDefault)}function X0(e,t){return e.filter(r=>r.analyses&&r.analyses.length>0).map(r=>{var h;const s=r.analyses[0],a=s.scenarios||[],o=!((h=s.status)!=null&&h.finishedAt),i=r.entityType||"visual",l=i==="library"||i==="functionCall",c=a.filter(m=>Rl(m,l)),u=a.filter(m=>!Rl(m,l)),p=t.find(m=>m.filePath===(r.filePath||""));return{sha:r.sha,name:r.name,entityType:i,filePath:r.filePath||"",analysisId:s.id,isAnalyzing:o,scenarioCount:a.length,scenarios:c.map(m=>{var f,y;return{id:m.id,name:m.name,description:m.description||"",screenshotPath:((y=(f=m.metadata)==null?void 0:f.screenshotPaths)==null?void 0:y[0])||null}}),pendingScenarios:u.map(m=>m.name),testFile:p==null?void 0:p.testFile}})}function ey(e,t){var s;const r={};for(const a of e){const i=(((s=a.metadata)==null?void 0:s.importedExports)||[]).map(l=>l.name).filter(l=>t.has(l));i.length>0&&(r[a.name]=i)}return r}function ty(e,t,r){const s={...e},a=new Map;for(const o of r)o.filePath&&a.set(o.filePath,o.name);for(const[o,i]of Object.entries(t)){if(s[o])continue;const l=a.get(i);l&&s[l]&&(s[o]=s[l])}return s}function kt(e,t){const r=new Map;for(const s of e)r.set(t(s),s);return[...r.values()]}function Tt(e){return e.replace(/[^a-zA-Z0-9_]+/g,"_")}function Qd(e){return e.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")}function Qr(e){return e.replace("T"," ").replace(/\.\d{3}Z$/,"")}function ci(e,t){return!!(e.created_at&&e.created_at>=t||e.updated_at&&e.updated_at>=t)}const ny=["defaultScreenSize","screenSizes","projectTitle","projectDescription","appFormats"];function z_(e){try{const t=JSON.parse(pe.readFileSync(e,"utf8")),r={};for(const s of ny)t[s]!==void 0&&(r[s]=t[s]);return r}catch{return{}}}function ry(e){const t=ee.join(e,".codeyam","editor-step.json");try{pe.unlinkSync(t)}catch{}}function di(e,t,r){const s=e&&e.startsWith("/");return s&&t?`${t}${e}`:e&&!s?e:t||r||null}function sy(e){var t,r;try{const s=ee.join(e,".codeyam","config.json"),a=JSON.parse(pe.readFileSync(s,"utf8"));if(a.screenSizes&&typeof a.screenSizes=="object")for(const o of Object.values(a.screenSizes)){const i=o;if(i.default&&i.width&&i.height)return{width:i.width,height:i.height}}if((t=a.defaultScreenSize)!=null&&t.width&&((r=a.defaultScreenSize)!=null&&r.height))return{width:a.defaultScreenSize.width,height:a.defaultScreenSize.height}}catch{}return null}function ui(e){try{const t=ee.join(e,".codeyam","config.json"),r=JSON.parse(pe.readFileSync(t,"utf8"));if(r.screenSizes&&typeof r.screenSizes=="object"&&!Array.isArray(r.screenSizes))return r.screenSizes}catch{}return{}}function ay(e){var t,r;return{width:e.bodyWidth||((t=e.projectDefault)==null?void 0:t.width)||1280,height:e.bodyHeight||((r=e.projectDefault)==null?void 0:r.height)||720}}function ga(e){let t=null;if(e.dimension){const a=ui(e.codeyamRoot)[e.dimension];a!=null&&a.width&&(a!=null&&a.height)&&(t={width:a.width,height:a.height})}const r=t||sy(e.codeyamRoot);return ay({bodyWidth:e.bodyWidth,bodyHeight:e.bodyHeight,projectDefault:r})}async function oy(e,t){const r=t.dimensions?JSON.stringify(t.dimensions):null,s=t.screenshotPaths?JSON.stringify(t.screenshotPaths):null,a=await e.selectFrom("editor_scenarios").selectAll().where("name","=",t.name).where("project_id","=",t.projectId).orderBy("created_at","desc").execute();if(a.length>0){const c=a[0].id,u={description:t.description,component_name:t.componentName,component_path:t.componentPath,url:t.url,type:t.type,viewport_width:t.viewportWidth,viewport_height:t.viewportHeight,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};t.dimensions!==void 0&&(u.dimensions=r,u.screenshot_paths=s),t.pageFilePath!==void 0&&(u.page_file_path=t.pageFilePath),t.entitySha!==void 0&&(u.entity_sha=t.entitySha),t.displayName!==void 0&&(u.display_name=t.displayName),await e.updateTable("editor_scenarios").set(u).where("id","=",c).execute();const p=a.slice(1).map(h=>h.id);return p.length>0&&await e.deleteFrom("editor_scenarios").where("id","in",p).execute(),{scenarioId:c,isNew:!1,cleanedUpIds:p}}const o=globalThis.crypto.randomUUID(),i={id:o,project_id:t.projectId,name:t.name,description:t.description,component_name:t.componentName,component_path:t.componentPath,url:t.url,type:t.type,viewport_width:t.viewportWidth,viewport_height:t.viewportHeight};return t.dimensions!==void 0&&(i.dimensions=r,i.screenshot_paths=s),t.pageFilePath!==void 0&&(i.page_file_path=t.pageFilePath),t.entitySha!==void 0&&(i.entity_sha=t.entitySha),t.displayName!==void 0&&(i.display_name=t.displayName),await e.insertInto("editor_scenarios").values(i).execute(),{scenarioId:o,isNew:!0,cleanedUpIds:[]}}function iy(e,t){const r=ee.join(e,".codeyam","editor-scenarios"),s=ee.join(r,"screenshots");for(const a of t){for(const o of[`${a}.json`,`${a}.seed.json`,ee.join("screenshots",`${a}.png`)])try{pe.unlinkSync(ee.join(r,o))}catch{}try{const o=pe.readdirSync(s);for(const i of o)if(i.startsWith(`${a}--`)&&i.endsWith(".png"))try{pe.unlinkSync(ee.join(s,i))}catch{}}catch{}}}function ly(e){const{lookupFilePath:t,scenarioType:r,projectRoot:s}=e;if(r!=="application"&&r!=="user")return{valid:!0};if(!t)return{valid:!0};const a=ee.join(s,".codeyam","glossary.json");let o=[];try{const l=JSON.parse(pe.readFileSync(a,"utf8"));o=fa(l)}catch{}if(!o.some(l=>l.filePath===t)){const l=o.length===0?` glossary.json is empty or could not be parsed. It must be a JSON array: [{"name": "...", "filePath": "${t}", ...}]`:` Found ${o.length} entries but none with filePath "${t}".`;return{valid:!1,error:`No glossary entry found for '${t}'.${l} Add this file to .codeyam/glossary.json before registering app scenarios.`}}return{valid:!0,needsAnalysis:!0}}function cy(e){const{componentName:t,url:r}=e;return!t||!r?{valid:!0}:ma(r)?{valid:!0}:{valid:!1,error:`Scenario has componentName "${t}" but URL "${r}" is not an isolation route. Component scenarios must use an isolation URL like /isolated-components/${t}?s=ScenarioName or /codeyam-isolate/${t}?s=ScenarioName. Either change the URL to an isolation route, or remove componentName to register as an application scenario.`}}const dy=Zd;async function Zd(e,t){const r=new Map,s=new Map;for(const i of t)if(i.filePath){r.set(`${i.name}::${i.filePath}`,i);const l=s.get(i.filePath);(!l||!l.isDefaultExport||i.isDefaultExport)&&s.set(i.filePath,i)}const a=await e.selectFrom("editor_scenarios").selectAll().where(i=>i.or([i("component_path","is not",null),i("page_file_path","is not",null)])).execute();if(a.length===0)return{updated:0};let o=0;for(const i of a){const l=i,c=l.component_path||l.page_file_path;if(!c)continue;const u=l.component_name&&r.get(`${l.component_name}::${c}`)||s.get(c);if(!u||l.entity_sha===u.sha)continue;let p=null;l.component_name?p=l.component_name:l.page_file_path&&l.page_file_path.startsWith("app/")?p=Ot(Et(l.page_file_path)):l.url&&(p=yt(l.url)),await e.updateTable("editor_scenarios").set({entity_sha:u.sha,...p?{display_name:p}:{}}).where("id","=",l.id).execute(),o++}return{updated:o}}async function Ol(e,t,r){const s=ee.join(e,".codeyam","editor-scenarios"),a=i=>{const l=ee.join(s,`${i}.seed.json`);if(pe.existsSync(l))try{return JSON.parse(pe.readFileSync(l,"utf-8"))}catch{return null}const c=ee.join(s,`${i}.json`);if(pe.existsSync(c))try{return JSON.parse(pe.readFileSync(c,"utf-8")).seed||null}catch{return null}return null},o=a(r);if(o)return o;try{const i=await t.selectFrom("editor_scenarios").select("id").where("name","=",r).orderBy("created_at","desc").limit(1).executeTakeFirst();if(i)return a(i.id)}catch{}return null}function uy(e){const{activeAnalyzedScenario:t,analyzedPreviewUrl:r,activeScenarioId:s,scenarios:a,proxyUrl:o,devServerUrl:i,zoomComponent:l}=e;if(t&&r)return r;if(t&&!r)return null;if(s){const u=a.find(p=>p.id===s);if(u!=null&&u.url){const p=o||i;return p?u.url.startsWith("/")?`${p}${u.url}`:u.url:null}}const c=o||i;if(!c)return null;if(l&&s){const u=a.find(h=>h.id===s),p=u?Tt(u.name):"Default";return`${c}/__codeyam__/${l}/${p}`}return c}function Xd(e,t){if(!e||!t)return e;try{const r=new URL(e),s=t.indexOf("?");return s>=0?(r.pathname=t.slice(0,s),r.search=t.slice(s)):(r.pathname=t,r.search=""),r.href}catch{return e}}function py(e,t){return e?e!==t:!1}function ys(e){if(e.length!==0)return e.find(t=>t.url==="/")||e.find(t=>t.type==="application")||e[0]}function to(e,t,r){if(!e.viewportWidth||!e.viewportHeight)return r??null;const s=t.find(a=>a.width===e.viewportWidth&&a.height===e.viewportHeight);return{name:(s==null?void 0:s.name)||"Custom",width:e.viewportWidth,height:e.viewportHeight}}function Ll(e,t){const r=t.width,s=t.height??900,a=e.width,o=e.height;return r<=a&&s<=o?1:Math.min(a/r,o/s)}async function hy({params:e}){var l;const{sha:t,scenarioId:r}=e;if(!t||!r)throw ne("Invalid parameters",{status:400});const s=await jn(t);if(!s)throw ne("Entity not found",{status:404});const a=await oa(s),o=((l=a==null?void 0:a.scenarios)==null?void 0:l.find(c=>c.id===r))||null;if(!o)throw ne("Scenario not found",{status:404});const i=await Ye();return ne({entity:s,scenario:o,analysis:a,projectSlug:i})}const no=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1440,height:900}],my=et(function(){const{entity:t,scenario:r,analysis:s,projectSlug:a}=ot(),o=Ft(),i=ye(null),l=ye(null),[c,u]=j(null),[p,h]=j(1440),[m,f]=j({name:"Desktop",width:1440,height:900}),[y,g]=j(!1),[x,b]=j(null),[v,S]=j("chat"),[w,C]=j(0),[k,N]=j(null),A=ae(ie=>{N(ie||null),C(fe=>fe+1)},[]),{customSizes:_,addCustomSize:M}=ha(a),$=le(()=>[...no,..._],[_]),{interactiveServerUrl:I,isStarting:R,isLoading:P,showIframe:F,iframeKey:Y,onIframeLoad:J}=$n({analysisId:s==null?void 0:s.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:a,enabled:!0,refreshTrigger:w}),O=le(()=>Xd(I,k),[I,k]),{lastLine:B}=Wt(a,R||P),T=()=>{o(`/entity/${t.sha}`)},D=(ie,fe)=>{h(ie);const ce=$.find(Ae=>Ae.width===ie&&Ae.height===fe);u(ce||null),f({name:(ce==null?void 0:ce.name)||"Custom",width:ie,height:fe})},E=ie=>{u(ie),h(ie.width),f({name:ie.name,width:ie.width,height:ie.height})},W=ie=>{M(ie,m.width,m.height??900),g(!1),f(fe=>({...fe,name:ie}))},K=()=>{var fe;S("chat"),(fe=l.current)==null||fe.sendInput("Create a new scenario for this entity based on the work we've just done. Create a name and description that reflects what the live preview is showing. Use the scenario data you've changed to create a new scenario in the database. If the data structure was fixed in any way you need to update that in the database as well and backfill all existing scenarios, then save to the database and capture a screenshot. Remember the database is at `.codeyam/db.sqlite3`, the scenarios table has all scenarios and the analyses table contains the scenariosDataStructure is its metadata.")},Z=((s==null?void 0:s.scenarios)||[]).filter(ie=>{var fe;return!((fe=ie.metadata)!=null&&fe.sameAsDefault)}),q=Z.findIndex(ie=>ie.id===(r==null?void 0:r.id)),U=q+1,L=Z.length,z=q>0,V=q<Z.length-1,re=()=>{if(z){const ie=Z[q-1];o(`/entity/${t.sha}/scenarios/${ie.id}/dev`)}},ue=()=>{if(V){const ie=Z[q+1];o(`/entity/${t.sha}/scenarios/${ie.id}/dev`)}},be=R||P||!F;return d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[d("div",{className:"bg-[#3d3d3d] h-12 flex items-center px-4 gap-4 shrink-0 z-20",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n("img",{src:na,alt:"CodeYam",className:"h-6 brightness-0 invert"}),n("span",{className:"text-white font-medium text-sm whitespace-nowrap",children:t.name}),d("div",{className:"flex items-center gap-2 shrink-0",children:[n("button",{onClick:re,disabled:!z,className:`${z?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Previous scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M12.5 15L7.5 10L12.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})}),d("span",{className:"text-gray-400 text-sm",children:[U,"/",L]}),n("button",{onClick:ue,disabled:!V,className:`${V?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Next scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M7.5 15L12.5 10L7.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),d("div",{className:"flex items-center gap-2 ml-2 min-w-0",children:[n("span",{className:"text-white font-semibold text-xs whitespace-nowrap shrink-0",children:r==null?void 0:r.name}),(r==null?void 0:r.description)&&d("div",{className:"relative group min-w-0",children:[n("span",{className:"text-gray-400 text-xs truncate block",children:r.description}),n("div",{className:"absolute left-0 top-full mt-1 hidden group-hover:block z-50 bg-black text-white text-xs px-3 py-2 rounded shadow-lg max-w-md",children:r.description})]})]}),n("span",{className:"bg-[#005c75] text-white text-[10px] font-bold px-2 py-0.5 rounded uppercase tracking-wider ml-2",children:"Dev Mode"})]}),n("button",{onClick:T,className:"text-white hover:text-gray-300 transition-colors ml-4","aria-label":"Close dev mode",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M15 5L5 15M5 5L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})})]}),d("div",{className:"flex-1 flex min-h-0",children:[d("div",{className:"flex-1 flex flex-col min-w-0",children:[d("div",{className:"bg-[#e5e7eb] border-b border-[rgba(0,0,0,0.1)] shrink-0 z-10 h-6 flex items-center justify-center relative",children:[n("div",{className:"absolute inset-0 flex justify-center",children:n("div",{style:{maxWidth:`${no[no.length-1].width}px`,width:"100%"},children:n(ii,{currentViewportWidth:p,currentPresetName:m.name,onDevicePresetClick:E,devicePresets:$,hideLabel:!0,onHoverChange:b,lightMode:!0})})}),d("div",{className:"relative z-10 flex items-center gap-2",children:[d("div",{className:"relative w-28 h-5",children:[d("div",{className:"absolute inset-0 bg-white text-gray-900 text-xs px-2 rounded flex items-center justify-between pointer-events-none border border-gray-300",children:[n("span",{className:"leading-none",children:(x==null?void 0:x.name)||m.name}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M3 4.5L6 7.5L9 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),d("select",{value:m.name,onChange:ie=>{const fe=$.find(ce=>ce.name===ie.target.value);fe&&E(fe)},className:"relative w-full h-full opacity-0 cursor-pointer",children:[$.map(ie=>n("option",{value:ie.name,children:ie.name},ie.name)),m.name==="Custom"&&n("option",{value:"Custom",children:"Custom"})]})]}),n("input",{type:"number",value:m.width,onChange:ie=>{const fe=parseInt(ie.target.value,10);!isNaN(fe)&&fe>0&&D(fe,m.height??900)},className:"bg-white text-gray-900 text-xs px-1 rounded border border-gray-300 outline-none w-16 text-center h-5 leading-none",min:"200",max:"3840"}),n("span",{className:"text-gray-400 text-xs h-5 flex items-center leading-none",children:"x"}),n("span",{className:"bg-gray-100 text-gray-600 text-xs px-1 rounded w-14 text-center h-5 flex items-center justify-center leading-none",children:m.height??900}),m.name==="Custom"&&n("button",{onClick:()=>g(!0),className:"bg-white text-gray-900 text-xs px-2 rounded h-5 flex items-center leading-none border border-gray-300 hover:bg-gray-50 transition-colors",children:"Save"})]})]}),n("div",{className:"flex-1 flex items-center justify-center overflow-auto p-8",style:{backgroundImage:`
|
|
135
|
-
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
136
|
-
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
137
|
-
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
138
|
-
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
139
|
-
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:I?d("div",{className:"relative bg-white w-full h-full",style:{maxWidth:`${m.width}px`,maxHeight:`${m.height}px`},children:[be&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the dev server to be ready"}),B&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(sr,{}),B]})]})]})}),n("iframe",{ref:i,src:O||I,className:"w-full h-full border-none",title:`Dev mode preview: ${r==null?void 0:r.name}`,onLoad:J,style:{opacity:F?1:0}},Y)]}):d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Dev Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment with live preview"}),B&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(sr,{}),B]})]})]})})]}),d("aside",{className:"w-[50%] min-w-[400px] max-w-[800px] bg-[#1e1e1e] border-l border-[#3d3d3d] shrink-0 flex flex-col overflow-hidden",children:[d("div",{className:"border-b border-[#3d3d3d] px-4 shrink-0 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-0",children:[d("button",{onClick:()=>S("chat"),className:`px-3 py-2 text-xs font-medium transition-colors relative cursor-pointer ${v==="chat"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:["Chat",v==="chat"&&n("span",{className:"absolute bottom-0 left-3 right-3 h-0.5 bg-[#005c75]"})]}),d("button",{onClick:()=>S("scenarios"),className:`px-3 py-2 text-xs font-medium transition-colors relative cursor-pointer ${v==="scenarios"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:["Scenarios",v==="scenarios"&&n("span",{className:"absolute bottom-0 left-3 right-3 h-0.5 bg-[#005c75]"})]})]}),v==="chat"&&n("button",{onClick:K,disabled:!I,className:"px-3 py-1 text-[11px] font-medium rounded bg-[#005c75] text-white hover:bg-[#004a5c] transition-colors disabled:bg-gray-600 disabled:text-gray-400 disabled:cursor-not-allowed cursor-pointer",children:"Save Scenario"})]}),n("div",{style:{display:v==="chat"?"flex":"none"},className:"flex-1 overflow-hidden flex-col",children:n(Hd,{ref:l,entityName:t.name,entityType:t.entityType,entitySha:t.sha,entityFilePath:t.filePath||t.localFilePath,scenarioName:r==null?void 0:r.name,scenarioDescription:r==null?void 0:r.description,analysisId:s==null?void 0:s.id,projectSlug:a,onRefreshPreview:A})}),v==="scenarios"&&n(J0,{scenarios:Z,currentScenarioId:r==null?void 0:r.id,entitySha:t.sha,cacheBuster:0})]})]}),n(Jd,{serverUrl:I,isStarting:R,projectSlug:a}),y&&n(li,{width:m.width,height:m.height??900,onSave:W,onCancel:()=>g(!1)})]})}),fy=Object.freeze(Object.defineProperty({__proto__:null,default:my,loader:hy},Symbol.toStringTag,{value:"Module"})),eu=3e4,gy="seed-session.json";function yy(e){const t={};try{const r=G.readFileSync(e,"utf-8");for(const s of r.split(`
|
|
140
|
-
`)){const a=s.trim();if(!a||a.startsWith("#"))continue;const o=a.indexOf("=");if(o===-1)continue;const i=a.slice(0,o).trim();let l=a.slice(o+1).trim();(l.startsWith('"')&&l.endsWith('"')||l.startsWith("'")&&l.endsWith("'"))&&(l=l.slice(1,-1)),i&&(t[i]=l)}}catch{}return t}function tu(e){const t=[".env",".env.local",".env.development",".env.development.local"];let r={};for(const s of t){const a=yy(H.join(e,s));r={...r,...a}}return r}function nu(e){const t={};try{const r=H.join(e,".codeyam","config.json"),s=JSON.parse(G.readFileSync(r,"utf-8"));for(const a of s.environmentVariables||[]){const o=a.key||a.name;o&&a.value!==void 0&&(t[o]=a.value)}}catch{}return t}function xy(e){const t=H.join(e,".codeyam","tmp",gy);try{if(!G.existsSync(t))return{};const r=G.readFileSync(t,"utf-8"),s=JSON.parse(r);G.unlinkSync(t);const a={};return s.cookies&&Array.isArray(s.cookies)&&(a.sessionCookies=s.cookies),s.externalApis&&typeof s.externalApis=="object"&&(a.externalApis=s.externalApis),a}catch{return{}}}function pi(e,t,r){const s=eu,a=H.basename(H.dirname(e))===".codeyam"?H.dirname(H.dirname(e)):H.dirname(e);return new Promise(o=>{const i=Date.now(),l=e.endsWith(".ts");let c,u;if(l){const b=vy(a);b?(c=b,u=[e,t]):(c="npx",u=["tsx",e,t])}else c=e,u=[t];const p=tu(a),h=nu(a),m=xt(c,u,{cwd:a,env:{...process.env,...p,...h}});let f="",y="",g=!1;const x=setTimeout(()=>{g=!0,m.kill("SIGTERM")},s);m.stdout.on("data",b=>{f+=b.toString()}),m.stderr.on("data",b=>{y+=b.toString()}),m.on("close",b=>{clearTimeout(x);const v=Date.now()-i;if(g)o({success:!1,output:f,error:`Seed adapter timeout after ${s}ms`,durationMs:v});else if(b===0){const S=xy(a);o({success:!0,output:f,durationMs:v,sessionCookies:S.sessionCookies,externalApis:S.externalApis})}else o({success:!1,output:f,error:y||`Seed adapter exited with code ${b}`,durationMs:v})}),m.on("error",b=>{clearTimeout(x),o({success:!1,output:"",error:b.message,durationMs:Date.now()-i})})})}function by(e,t,r){const s=eu,a=H.basename(H.dirname(e))===".codeyam"?H.dirname(H.dirname(e)):H.dirname(e);return new Promise(o=>{const i=Date.now(),l=e.endsWith(".ts"),c=l?"npx":e,u=l?["tsx",e,"--export",t]:["--export",t],p=tu(a),h=nu(a),m=xt(c,u,{cwd:a,env:{...process.env,...p,...h}});let f="",y="",g=!1;const x=setTimeout(()=>{g=!0,m.kill("SIGTERM")},s);m.stdout.on("data",b=>{f+=b.toString()}),m.stderr.on("data",b=>{y+=b.toString()}),m.on("close",b=>{clearTimeout(x);const v=Date.now()-i;o(g?{success:!1,output:f,error:`Seed adapter export timeout after ${s}ms`,durationMs:v}:b===0?{success:!0,output:f,durationMs:v}:{success:!1,output:f,error:y||`Seed adapter export exited with code ${b}`,durationMs:v})}),m.on("error",b=>{clearTimeout(x),o({success:!1,output:"",error:b.message,durationMs:Date.now()-i})})})}function Yr(e){const t=["seed-adapter.ts","seed-adapter.js"];for(const r of t){const s=H.join(e,".codeyam",r);try{return G.accessSync(s),s}catch{}}return null}function vy(e){const t=[H.join(e,"node_modules",".bin","tsx"),H.join(e,"..","node_modules",".bin","tsx")];for(const r of t)try{return G.accessSync(r,G.constants.X_OK),r}catch{}return null}function zl(e,t){const r={};for(const[s,a]of Object.entries(e))r[s]=JSON.parse(JSON.stringify(a));for(const[s,a]of Object.entries(t))r[s]=JSON.parse(JSON.stringify(a));return r}let xn=null;async function ya(e){const{scenarioId:t,projectRoot:r}=e,s=ee.join(r,".codeyam"),a=ee.join(s,"editor-scenarios");let o=e.scenarioSlug||null;if(!o)try{const m=ee.join(a,`${t}.json`);pe.existsSync(m)?o=JSON.parse(pe.readFileSync(m,"utf-8")).name||t:o=t}catch{o=t}let i=e.scenarioType||null;if(!i)try{const m=ee.join(a,`${t}.json`);pe.existsSync(m)&&(i=JSON.parse(pe.readFileSync(m,"utf-8")).type||null)}catch{}const l=ee.join(s,"active-scenario.json");pe.mkdirSync(s,{recursive:!0}),pe.writeFileSync(l,JSON.stringify({scenarioSlug:o,scenarioName:e.scenarioName||o,scenarioId:t,type:i,dataFile:`.codeyam/editor-scenarios/${t}.json`,switchedAt:new Date().toISOString()},null,2));let c=null,u,p;const h=i==="application"||i==="user";if(h)if(xn&&xn.scenarioId===t)c=await xn.promise;else{const m=Yr(r),f=ee.join(a,`${t}.seed.json`);if(m&&pe.existsSync(f)){const y=pi(m,f).then(g=>({success:g.success,error:g.error,sessionCookies:g.sessionCookies,externalApis:g.externalApis}));xn={scenarioId:t,promise:y};try{const g=await y;c={success:g.success,error:g.error},u=g.sessionCookies,p=g.externalApis}finally{xn&&xn.scenarioId===t&&(xn=null)}if(c!=null&&c.success){const g=u&&u.length>0,x=p&&Object.keys(p).length>0;if(g||x)try{const b=ee.join(a,`${t}.json`),v=JSON.parse(pe.readFileSync(b,"utf-8"));g&&(v.sessionCookies=u),x&&(v.externalApis={...v.externalApis,...p}),pe.writeFileSync(b,JSON.stringify(v,null,2))}catch{}}}else m||(c={success:!1,error:"No seed adapter found"})}return{success:!0,scenarioSlug:o,scenarioId:t,type:i,seeded:h,...c?{seedResult:c}:{},...u&&u.length>0?{sessionCookies:u}:{}}}function wy(e){return lr.createHash("sha256").update(JSON.stringify(e)).digest("hex")}function Ny(e){const t=e.match(/^(GET|POST|PUT|DELETE|PATCH)\s+(\/\S+)$/);return t?{method:t[1],pathPattern:t[2]}:{method:null,pathPattern:e}}function Sy(e){const t=[],r=e.replace(/:([a-zA-Z_][a-zA-Z0-9_]*)/g,(s,a)=>(t.push(a),"([^/]+)"));return{regex:new RegExp(`^${r}$`),paramNames:t}}function Cy(e,t){if(t.includes(e))return e;const r=e.lastIndexOf("/");if(r>0){const s=e.substring(0,r);if(t.includes(s))return s}return null}function ky(){let e=[],t={},r=null,s=null,a=!1,o=null;function i(u){const p=[],h=u.routes;if(h&&typeof h=="object")for(const[m,f]of Object.entries(h)){const{method:y,pathPattern:g}=Ny(m),{regex:x,paramNames:b}=Sy(g),v=typeof f=="object"&&f!==null?f:{body:f};p.push({method:y,pathPattern:g,pathRegex:x,paramNames:b,response:{body:v.body,status:typeof v.status=="number"?v.status:200}})}return p}function l(u){const p=u.state;if(p&&typeof p=="object"){a=!0,t={};for(const[h,m]of Object.entries(p))t[h]=Array.isArray(m)?JSON.parse(JSON.stringify(m)):[];r=JSON.stringify(p)}else a=!1,t={},r=null}return{loadScenario(u){const p=wy(u);s&&p===s||(s=p,o=u,e=i(u),l(u))},matchRequest(u,p,h){if(!o&&e.length===0&&!a)return null;const m=Object.keys(t);if(a){const y=Cy(p,m);if(y&&u==="GET"&&y===p)return{body:t[y],status:200};if(y){const g=c(u,p);if(u==="POST"&&y===p&&g){const x=t[y],b=typeof h=="object"&&h!==null?{...h}:{};if(!("id"in b)){const v=x.reduce((S,w)=>{const C=typeof w.id=="number"?w.id:0;return Math.max(S,C)},0);b.id=v+1}return x.push(b),{body:b,status:g.response.status}}if(u==="DELETE"&&g&&g.params){const x=g.params.id,b=t[y],v=b.findIndex(S=>String(S.id)===String(x));return v===-1?{body:{error:"Not found"},status:404}:(b.splice(v,1),{body:null,status:g.response.status})}if(u==="PUT"&&g&&g.params){const x=g.params.id,b=t[y],v=b.findIndex(w=>String(w.id)===String(x));if(v===-1)return{body:{error:"Not found"},status:404};const S=typeof h=="object"&&h!==null?{...h}:b[v];return b[v]=S,{body:S,status:g.response.status}}}}const f=c(u,p);if(f)return{body:f.response.body??null,status:f.response.status,params:f.params};if(o&&u==="GET"){const y=p.match(/^\/api\/(.+)$/);if(y){const g=y[1];if(g in o&&g!=="routes"&&g!=="state")return{body:o[g],status:200}}}return null},resetState(){if(r){const u=JSON.parse(r);t={};for(const[p,h]of Object.entries(u))t[p]=Array.isArray(h)?JSON.parse(JSON.stringify(h)):[]}},getState(){return{...t}}};function c(u,p){for(const h of e)if(h.method!==null&&h.method===u&&h.paramNames.length===0&&h.pathRegex.exec(p))return{response:h.response};if(u==="GET"){for(const h of e)if(h.method===null&&h.paramNames.length===0&&h.pathRegex.exec(p))return{response:h.response}}for(const h of e)if(h.paramNames.length>0){if((h.method??"GET")!==u)continue;const f=h.pathRegex.exec(p);if(f){const y={};for(let g=0;g<h.paramNames.length;g++)y[h.paramNames[g]]=f[g+1];return{response:h.response,params:y}}}return null}}function _y(e){var a,o;const t=ee.join(e,"package.json");if(!pe.existsSync(t))return{error:"No package.json found."};let r="npm",s=["run","dev"];try{const i=JSON.parse(pe.readFileSync(t,"utf8"));if(pe.existsSync(ee.join(e,"pnpm-lock.yaml"))?r="pnpm":pe.existsSync(ee.join(e,"yarn.lock"))?r="yarn":pe.existsSync(ee.join(e,"bun.lockb"))&&(r="bun"),!((a=i.scripts)!=null&&a.dev))if((o=i.scripts)!=null&&o.start)s=["run","start"];else return{error:'No "dev" or "start" script found in package.json.'}}catch{}return{command:r,args:s}}function Ey(e,t){const r=t.toString(),s={PORT:r},a=ee.join(e,".codeyam","config.json");if(pe.existsSync(a))try{const c=(JSON.parse(pe.readFileSync(a,"utf8")).webapps||[])[0];if(c!=null&&c.startCommand){const{command:u,args:p,env:h}=c.startCommand,m=(p||[]).map(f=>f.includes("$PORT")?f.replace(/\$PORT/g,r):f);if(h)for(const[f,y]of Object.entries(h))typeof y=="string"&&y.includes("$PORT")?s[f]=y.replace(/\$PORT/g,r):typeof y=="string"&&(s[f]=y);return{command:u,args:m,env:s}}}catch{}const o=_y(e);return"error"in o?o:{command:o.command,args:o.args,env:s}}function ru(e){return{proxyPort:e+1,devServerPort:e+2}}const Ay=[/Local:\s+(https?:\/\/[^\s]+)/,/Ready on\s+(https?:\/\/[^\s]+)/i,/started at\s+(https?:\/\/[^\s]+)/i,/listening on\s+(https?:\/\/[^\s]+)/i,/waiting on\s+(https?:\/\/[^\s]+)/i,/http:\/\/localhost:\d+/];function jy(e){for(const t of Ay){const r=e.match(t);if(r){const s=r[1]||r[0];return Py(s).trim()}}return null}function Py(e){return e.replace(/\x1b\[[0-9;]*m/g,"")}function hi(){const e=globalThis.__codeyam_editor_dev_server__;return e&&e.status==="running"&&e.url?e.url:null}async function Ty(e,t={}){const{intervalMs:r=2e3,maxAttempts:s=15}=t,a=`http://localhost:${e}`;for(let o=0;o<s;o++){try{const i=await fetch(a,{method:"HEAD",signal:AbortSignal.timeout(2e3)});if(i.ok||i.status===304)return a}catch{}o<s-1&&await new Promise(i=>setTimeout(i,r))}return null}function My(e){const{exitCode:t,uptime:r,retryCount:s,wasRunning:a}=e,o=r<1e4;return t!==0&&t!==null&&o&&s===0?{action:"retry"}:t!==0&&t!==null?{action:"error"}:a===!1?{action:"error"}:{action:"stopped"}}class $y extends Vr{emitDataMutationForwarded(t,r){this.emit("event",{type:"data-mutation-forwarded",method:t,pathname:r,timestamp:Date.now()})}}const ko="__codeyam_mock_state_event_emitter__";if(!globalThis[ko]){const e=new $y;e.setMaxListeners(20),globalThis[ko]=e}const Iy=globalThis[ko];function Fy(e){try{return new URL(e).toString().replace(/\/$/,"")}catch{return e}}async function Dy(e){const t=["127.0.0.1","::1"];for(const r of t)try{if(await new Promise(a=>{const o=new dd.Socket;o.setTimeout(1e3),o.once("connect",()=>{o.destroy(),a(!0)}),o.once("error",()=>{o.destroy(),a(!1)}),o.once("timeout",()=>{o.destroy(),a(!1)}),o.connect(e,r)}))return r}catch{}return null}const su="__codeyam_editor_proxy__",au="__codeyam_preview_health__";function ou(){return globalThis[au]??null}function iu(e){globalThis[au]=e}function Bl(){return ou()}function lu(){iu(null)}const Ry=`<script data-codeyam-health>
|
|
141
|
-
(function() {
|
|
142
|
-
var errors = [];
|
|
143
|
-
var reported = false;
|
|
144
|
-
function report(type, msg, stack) {
|
|
145
|
-
errors.push({ type: type, message: msg, stack: stack, timestamp: Date.now() });
|
|
146
|
-
if (!reported) {
|
|
147
|
-
reported = true;
|
|
148
|
-
setTimeout(function() { flush(); }, 500);
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
function flush() {
|
|
152
|
-
fetch('/__codeyam__/preview-health', {
|
|
153
|
-
method: 'POST',
|
|
154
|
-
headers: { 'Content-Type': 'application/json' },
|
|
155
|
-
body: JSON.stringify({ errors: errors, url: location.href })
|
|
156
|
-
}).catch(function(){});
|
|
157
|
-
reported = false;
|
|
158
|
-
errors = [];
|
|
159
|
-
}
|
|
160
|
-
window.addEventListener('error', function(e) {
|
|
161
|
-
report('error', e.message, e.error && e.error.stack);
|
|
162
|
-
});
|
|
163
|
-
window.addEventListener('unhandledrejection', function(e) {
|
|
164
|
-
report('unhandledrejection', String(e.reason), e.reason && e.reason.stack);
|
|
165
|
-
});
|
|
166
|
-
var origError = console.error;
|
|
167
|
-
console.error = function() {
|
|
168
|
-
report('console.error', Array.prototype.join.call(arguments, ' '));
|
|
169
|
-
origError.apply(console, arguments);
|
|
170
|
-
};
|
|
171
|
-
window.addEventListener('load', function() {
|
|
172
|
-
setTimeout(function() {
|
|
173
|
-
var hasContent = document.body && document.body.innerText.trim().length > 0;
|
|
174
|
-
fetch('/__codeyam__/preview-health', {
|
|
175
|
-
method: 'POST',
|
|
176
|
-
headers: { 'Content-Type': 'application/json' },
|
|
177
|
-
body: JSON.stringify({
|
|
178
|
-
loaded: true,
|
|
179
|
-
hasContent: hasContent,
|
|
180
|
-
url: location.href,
|
|
181
|
-
errorCount: errors.length
|
|
182
|
-
})
|
|
183
|
-
}).catch(function(){});
|
|
184
|
-
}, 1000);
|
|
185
|
-
});
|
|
186
|
-
|
|
187
|
-
// Network-idle detection: notify the parent editor when all initial
|
|
188
|
-
// fetch requests have completed, so it can show the preview after
|
|
189
|
-
// client-side data (API calls) has arrived — not just when the DOM loads.
|
|
190
|
-
var inflight = 0;
|
|
191
|
-
var settled = false;
|
|
192
|
-
var settleTimer = null;
|
|
193
|
-
var origFetch = window.fetch;
|
|
194
|
-
window.fetch = function() {
|
|
195
|
-
if (!settled) inflight++;
|
|
196
|
-
return origFetch.apply(this, arguments).then(function(resp) {
|
|
197
|
-
if (!settled) { inflight--; checkSettle(); }
|
|
198
|
-
return resp;
|
|
199
|
-
}, function(err) {
|
|
200
|
-
if (!settled) { inflight--; checkSettle(); }
|
|
201
|
-
throw err;
|
|
202
|
-
});
|
|
203
|
-
};
|
|
204
|
-
function checkSettle() {
|
|
205
|
-
if (inflight <= 0 && !settled) {
|
|
206
|
-
clearTimeout(settleTimer);
|
|
207
|
-
// Small delay to allow React to re-render with the fetched data
|
|
208
|
-
settleTimer = setTimeout(function() {
|
|
209
|
-
if (inflight <= 0) {
|
|
210
|
-
settled = true;
|
|
211
|
-
try {
|
|
212
|
-
window.parent.postMessage({ type: 'codeyam-preview-ready' }, '*');
|
|
213
|
-
} catch(e) {}
|
|
214
|
-
}
|
|
215
|
-
}, 100);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
// Fallback: if no fetches happen (static page), settle after load
|
|
219
|
-
window.addEventListener('load', function() {
|
|
220
|
-
setTimeout(function() { checkSettle(); }, 200);
|
|
221
|
-
});
|
|
222
|
-
})();
|
|
223
|
-
<\/script>`,Oy=500;let Yt={data:null,timestamp:0},Nn,Dr,xa=null,ba=null,va=null,_o=null;const Yl=10*1024*1024;function wa(){return globalThis[su]??null}function cu(e){globalThis[su]=e}function du(){const e="__codeyam_mock_state__";return globalThis[e]||(globalThis[e]=ky()),globalThis[e]}function uu(){const e=wa();return e?`http://localhost:${e.port}`:null}function Ly(){const e=Date.now();if(Yt.data!==null&&e-Yt.timestamp<Oy)return Yt.data;const t=Se()||process.env.CODEYAM_ROOT_PATH||process.cwd(),r=ee.join(t,".codeyam","active-scenario.json");try{if(!pe.existsSync(r))return Yt={data:null,timestamp:e},null;const s=JSON.parse(pe.readFileSync(r,"utf-8")),a=s.scenarioId;if(!a)return va=s.prototypeId||null,Yt={data:null,timestamp:e},null;const o=ee.join(t,".codeyam","editor-scenarios",`${a}.json`);if(!pe.existsSync(o))return console.log(`[editorProxy] Scenario data file not found: ${o}`),Yt={data:null,timestamp:e},null;const i=JSON.parse(pe.readFileSync(o,"utf-8"));Nn=i.session||null,Dr=i.sessionCookies||void 0,xa=i.localStorage||null,ba=a;const l=s.type||i.type||null;_o=l;let c;return(l==="application"||l==="user")&&i.seed?i.externalApis&&typeof i.externalApis=="object"?c={routes:i.externalApis}:c={}:c=i,Yt={data:c,timestamp:e},du().loadScenario(c),c}catch(s){return console.warn("[editorProxy] Error reading scenario data:",s),Yt={data:null,timestamp:e},null}}function zy(e){return new Promise(t=>{const r=[];let s=0;e.on("data",a=>{s+=a.length,s>Yl?(t(null),e.resume()):r.push(a)}),e.on("end",()=>{s>Yl||t(Buffer.concat(r))}),e.on("error",()=>{t(null)})})}function mi(e){return e.startsWith("[")&&e.endsWith("]")?e.slice(1,-1):e}function Ul(e,t,r,s){const a=new URL(r),o=mi(a.hostname),i={...e.headers,host:`${a.hostname}:${a.port}`};delete i["accept-encoding"],s&&(i["content-length"]=String(s.length));const l={hostname:o,port:a.port,path:e.url,method:e.method,headers:i},c=Vo.request(l,u=>{const p=u.statusCode||200;p>=400&&console.warn(`[editorProxy] Target returned ${p} for ${e.method} ${e.url}`);const h={...u.headers};if(pu(h),(u.headers["content-type"]||"").includes("text/html")){lu();const f=[];u.on("data",y=>f.push(y)),u.on("end",()=>{const y=Buffer.concat(f).toString("utf-8"),g=hu(xa,ba||"",va),x=mu(y,g);delete h["content-length"],delete h["content-encoding"],h["cache-control"]="no-store, must-revalidate",t.writeHead(p,h),t.end(x)});return}t.writeHead(p,h),u.pipe(t,{end:!0})});c.on("error",u=>{console.warn(`[editorProxy] Forward error for ${e.method} ${e.url}: ${u.message}`),t.headersSent||(t.writeHead(502,{"Content-Type":"text/plain"}),t.end("Bad Gateway — dev server unreachable"))}),s&&s.length>0?c.end(s):c.end()}function By(e,t,r){const s=new URL(r),a=mi(s.hostname),{"accept-encoding":o,...i}=e.headers,l={hostname:a,port:s.port,path:e.url,method:e.method,headers:{...i,host:`${s.hostname}:${s.port}`}},c=Vo.request(l,u=>{const p=u.statusCode||200;p>=400&&console.warn(`[editorProxy] Target returned ${p} for ${e.method} ${e.url}`);const h={...u.headers};if(pu(h),(u.headers["content-type"]||"").includes("text/html")){lu();const f=[];u.on("data",y=>f.push(y)),u.on("end",()=>{const y=Buffer.concat(f).toString("utf-8"),g=hu(xa,ba||"",va),x=mu(y,g);delete h["content-length"],delete h["content-encoding"],h["cache-control"]="no-store, must-revalidate",t.writeHead(p,h),t.end(x)});return}t.writeHead(p,h),u.pipe(t,{end:!0})});c.on("error",u=>{console.warn(`[editorProxy] Forward error for ${e.method} ${e.url}: ${u.message}`),t.headersSent||(t.writeHead(502,{"Content-Type":"text/plain"}),t.end("Bad Gateway — dev server unreachable"))}),e.pipe(c,{end:!0})}function pu(e){const t=[];if(Nn!==void 0&&(Nn!=null&&Nn.cookieValue?t.push(`session-token=${Nn.cookieValue}; Path=/; SameSite=Lax`):t.push("session-token=; Path=/; Max-Age=0")),Dr&&Dr.length>0)for(const s of Dr){const a=s.path||"/",o=s.sameSite||"Lax";t.push(`${s.name}=${s.value}; Path=${a}; SameSite=${o}`)}if(t.length===0)return;const r=e["set-cookie"];r?e["set-cookie"]=[...Array.isArray(r)?r:[r],...t]:e["set-cookie"]=t}function Yy(e){let t=5381;for(let r=0;r<e.length;r++)t=(t<<5)+t+e.charCodeAt(r)|0;return(t>>>0).toString(36)}function hu(e,t,r){if(!e||typeof e!="object"){const c=t?`clear:${t}`:"";return r?`<script data-codeyam-ls>
|
|
224
|
-
(function() {
|
|
225
|
-
if (localStorage.getItem('__codeyam_proto__') === ${JSON.stringify(r)}) return;
|
|
226
|
-
localStorage.clear();
|
|
227
|
-
localStorage.setItem('__codeyam_proto__', ${JSON.stringify(r)});
|
|
228
|
-
})();
|
|
229
|
-
<\/script>`:t?`<script data-codeyam-ls>
|
|
230
|
-
(function() {
|
|
231
|
-
if (localStorage.getItem('__codeyam_ls_sid__') === ${JSON.stringify(c)}) return;
|
|
232
|
-
var prev = JSON.parse(localStorage.getItem('__codeyam_ls_keys__') || '[]');
|
|
233
|
-
for (var i = 0; i < prev.length; i++) localStorage.removeItem(prev[i]);
|
|
234
|
-
localStorage.removeItem('__codeyam_ls_keys__');
|
|
235
|
-
localStorage.setItem('__codeyam_ls_sid__', ${JSON.stringify(c)});
|
|
236
|
-
})();
|
|
237
|
-
<\/script>`:""}const s=Object.entries(e),a=s.map(([c])=>c),o=s.map(([c,u])=>{const p=typeof u=="string"?u:JSON.stringify(u);return`localStorage.setItem(${JSON.stringify(c)}, ${JSON.stringify(p)});`}).join(`
|
|
238
|
-
`),i=Yy(JSON.stringify(e)),l=`${t}:${i}`;return`<script data-codeyam-ls>
|
|
239
|
-
(function() {
|
|
240
|
-
if (localStorage.getItem('__codeyam_ls_sid__') === ${JSON.stringify(l)}) return;
|
|
241
|
-
var prev = JSON.parse(localStorage.getItem('__codeyam_ls_keys__') || '[]');
|
|
242
|
-
for (var i = 0; i < prev.length; i++) localStorage.removeItem(prev[i]);
|
|
243
|
-
${o}
|
|
244
|
-
localStorage.setItem('__codeyam_ls_keys__', ${JSON.stringify(JSON.stringify(a))});
|
|
245
|
-
localStorage.setItem('__codeyam_ls_sid__', ${JSON.stringify(l)});
|
|
246
|
-
})();
|
|
247
|
-
<\/script>`+Uy()}function Uy(){return`<script data-codeyam-ls-watcher>
|
|
248
|
-
(function() {
|
|
249
|
-
if (window.__codeyam_ls_watcher_installed__) return;
|
|
250
|
-
window.__codeyam_ls_watcher_installed__ = true;
|
|
251
|
-
|
|
252
|
-
var origSet = localStorage.setItem.bind(localStorage);
|
|
253
|
-
var origRemove = localStorage.removeItem.bind(localStorage);
|
|
254
|
-
var origClear = localStorage.clear.bind(localStorage);
|
|
255
|
-
window.__codeyam_orig_setItem__ = origSet;
|
|
256
|
-
window.__codeyam_orig_removeItem__ = origRemove;
|
|
257
|
-
window.__codeyam_orig_clear__ = origClear;
|
|
258
|
-
|
|
259
|
-
function isInternal(key) {
|
|
260
|
-
return typeof key === 'string' && key.indexOf('__codeyam_') === 0;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
localStorage.setItem = function(key, value) {
|
|
264
|
-
origSet(key, value);
|
|
265
|
-
if (!isInternal(key) && window.parent !== window) {
|
|
266
|
-
window.parent.postMessage({ type: 'codeyam-localstorage-changed', action: 'set', key: key }, '*');
|
|
267
|
-
}
|
|
268
|
-
};
|
|
269
|
-
|
|
270
|
-
localStorage.removeItem = function(key) {
|
|
271
|
-
origRemove(key);
|
|
272
|
-
if (!isInternal(key) && window.parent !== window) {
|
|
273
|
-
window.parent.postMessage({ type: 'codeyam-localstorage-changed', action: 'remove', key: key }, '*');
|
|
274
|
-
}
|
|
275
|
-
};
|
|
276
|
-
|
|
277
|
-
localStorage.clear = function() {
|
|
278
|
-
origClear();
|
|
279
|
-
if (window.parent !== window) {
|
|
280
|
-
window.parent.postMessage({ type: 'codeyam-localstorage-changed', action: 'clear' }, '*');
|
|
281
|
-
}
|
|
282
|
-
};
|
|
283
|
-
|
|
284
|
-
window.addEventListener('message', function(event) {
|
|
285
|
-
if (event.data && event.data.type === 'codeyam-get-localstorage') {
|
|
286
|
-
var data = {};
|
|
287
|
-
for (var i = 0; i < localStorage.length; i++) {
|
|
288
|
-
var k = localStorage.key(i);
|
|
289
|
-
if (k && !isInternal(k)) {
|
|
290
|
-
data[k] = localStorage.getItem(k);
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
event.source.postMessage({ type: 'codeyam-localstorage-state', data: data }, '*');
|
|
294
|
-
}
|
|
295
|
-
});
|
|
296
|
-
})();
|
|
297
|
-
<\/script>`}function mu(e,t){const r=(t||"")+Ry;return e.includes("</head>")?e.replace("</head>",r+"</head>"):e.includes("</body>")?e.replace("</body>",r+"</body>"):e+r}function Wy(e,t){const r=[];e.on("data",s=>r.push(s)),e.on("end",()=>{try{const s=JSON.parse(Buffer.concat(r).toString("utf-8")),a=ou()||{errors:[],loaded:!1,hasContent:!1,url:"",lastUpdated:0};s.errors&&Array.isArray(s.errors)&&(a.errors=a.errors.concat(s.errors)),s.loaded!==void 0&&(a.loaded=s.loaded),s.hasContent!==void 0&&(a.hasContent=s.hasContent),s.url&&(a.url=s.url),a.lastUpdated=Date.now(),iu(a)}catch{}t.writeHead(204),t.end()})}function Jy(e,t,r,s){const a=new URL(s),o=mi(a.hostname),i=parseInt(a.port,10)||80;console.log(`[editorProxy] WebSocket upgrade: ${e.url} → ${o}:${i}`);const l=dd.connect(i,o,()=>{const c=`${e.method} ${e.url} HTTP/${e.httpVersion}\r
|
|
298
|
-
`,u=Object.entries(e.headers).filter(([,p])=>p!=null).map(([p,h])=>`${p}: ${Array.isArray(h)?h.join(", "):h}`).join(`\r
|
|
299
|
-
`);l.write(c+u+`\r
|
|
300
|
-
\r
|
|
301
|
-
`),r.length>0&&l.write(r),l.pipe(t,{end:!0}),t.pipe(l,{end:!0})});l.on("error",c=>{console.warn(`[editorProxy] WebSocket proxy error: ${c.message}`),t.destroy()}),t.on("error",()=>{l.destroy()})}function Hy(e,t){const r=Se()||process.env.CODEYAM_ROOT_PATH||process.cwd(),s=ee.join(r,".codeyam","proxy-config.json");try{pe.mkdirSync(ee.dirname(s),{recursive:!0}),pe.writeFileSync(s,JSON.stringify({proxyUrl:`http://localhost:${e}`,devServerUrl:t}),"utf-8"),console.log(`[editorProxy] Wrote proxy config to ${s}`)}catch(a){console.warn("[editorProxy] Failed to write proxy-config.json:",a)}}function Vy(){const e=Se()||process.env.CODEYAM_ROOT_PATH||process.cwd(),t=ee.join(e,".codeyam","proxy-config.json");try{pe.existsSync(t)&&pe.unlinkSync(t)}catch{}}async function Eo(e){const t=wa();if(t)return console.log(`[editorProxy] Proxy already running on port ${t.port} → ${t.targetUrl}`),{port:t.port};await fu();let r=Fy(e.targetUrl),s=e.port;try{const l=new URL(r);if(l.hostname==="localhost"){const c=parseInt(l.port||"80",10),u=await Dy(c);u&&(l.hostname=u,r=l.toString().replace(/\/$/,""),console.log(`[editorProxy] Resolved localhost to ${u} for port ${c}`))}}catch{}console.log(`[editorProxy] Starting proxy (requested port ${s}, target ${r})`);const a=du(),o=Vo.createServer((l,c)=>{(async()=>{const p=new URL(l.url||"/",`http://localhost:${s}`).pathname,h=l.method||"GET";if(h==="OPTIONS"){c.writeHead(204,{"Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET, POST, PUT, DELETE, PATCH, OPTIONS","Access-Control-Allow-Headers":"Content-Type, Authorization, X-Requested-With","Access-Control-Max-Age":"86400"}),c.end();return}if(h==="POST"&&p==="/__codeyam__/preview-health"){Wy(l,c);return}if(Ly(),h==="POST"||h==="PUT"||h==="DELETE"||h==="PATCH"){const y=await zy(l);if(y===null){Ul(l,c,r,null);return}let g;if(y.length>0)try{g=JSON.parse(y.toString("utf-8"))}catch{}const x=a.matchRequest(h,p,g);if(x){console.log(`[editorProxy] Intercepted ${h} ${p} → mock response (status ${x.status})`),c.writeHead(x.status,{"Content-Type":"application/json","Access-Control-Allow-Origin":"*","X-CodeYam-Proxy":"scenario-data","Cache-Control":"no-store"}),c.end(x.body!=null?JSON.stringify(x.body):"");return}(_o==="application"||_o==="user")&&p.startsWith("/api/")&&Iy.emitDataMutationForwarded(h,p),Ul(l,c,r,y);return}const f=a.matchRequest(h,p);if(f){console.log(`[editorProxy] Intercepted ${h} ${p} → mock response (status ${f.status})`),c.writeHead(f.status,{"Content-Type":"application/json","Access-Control-Allow-Origin":"*","X-CodeYam-Proxy":"scenario-data","Cache-Control":"no-store"}),c.end(f.body!=null?JSON.stringify(f.body):"");return}By(l,c,r)})()});o.on("upgrade",(l,c,u)=>{Jy(l,c,u,r)});const i=10;for(let l=0;l<i;l++){const c=s+l;try{await new Promise((h,m)=>{o.once("error",m),o.listen(c,"0.0.0.0",()=>{o.removeListener("error",m),h()})});const u=o.address();return s=typeof u=="object"&&u!==null?u.port:c,cu({server:o,port:s,targetUrl:r}),Hy(s,r),console.log(`[editorProxy] Proxy started on port ${s}, forwarding to ${r}`),{port:s}}catch(u){if((u==null?void 0:u.code)==="EADDRINUSE"&&l<i-1){console.log(`[editorProxy] Port ${c} in use, trying ${c+1}`);continue}return console.error("[editorProxy] Failed to start proxy:",u),null}}return null}async function fu(){const e=wa();if(e)return console.log(`[editorProxy] Stopping proxy on port ${e.port}`),Vy(),new Promise(t=>{e.server.close(()=>{console.log("[editorProxy] Proxy stopped"),t()}),cu(null),setTimeout(t,2e3)})}function Pn(){Yt={data:null,timestamp:0},Nn=void 0,Dr=void 0,xa=null,ba=null,va=null}async function Wl(){const e=wa();if(!e)return console.warn("[editorProxy] Cannot verify — proxy is not running"),!1;try{const t=await fetch(`http://127.0.0.1:${e.port}/`,{method:"HEAD",signal:AbortSignal.timeout(5e3)});return t.status===502?(console.warn("[editorProxy] Verification failed — proxy returned 502 (target unreachable)"),!1):(console.log(`[editorProxy] Verification passed — proxy forwarding to ${e.targetUrl} (status ${t.status})`),!0)}catch{return console.warn(`[editorProxy] Verification failed — could not reach proxy on port ${e.port}`),!1}}async function fi(){const e=uu();if(e)return console.log(`[editorProxy] Proxy already running at ${e}`),e;const t=globalThis.__codeyam_editor_dev_server__;if(!t||t.status!=="running"||!t.url)return console.log("[editorProxy] Cannot start proxy — dev server not running"),null;const r=parseInt(process.env.CODEYAM_PORT||"3111",10),{proxyPort:s}=ru(r);console.log(`[editorProxy] Proxy not running, starting on-demand (port ${s}, target ${t.url})`);const a=await Eo({port:s,targetUrl:t.url});if(a){const o=`http://localhost:${a.port}`;return console.log(`[editorProxy] On-demand proxy started at ${o}`),o}return console.error("[editorProxy] Failed to start on-demand proxy"),null}async function Ky({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{scenarioId:r,scenarioName:s,scenarioSlug:a}=t;if(!r||typeof r!="string")return Response.json({error:"scenarioId is required"},{status:400});const o=Se()||process.cwd(),i=await ya({scenarioId:r,scenarioName:s,scenarioSlug:a,projectRoot:o});return Pn(),Response.json({success:i.success,seeded:i.seeded,seedResult:i.seedResult})}catch(t){const r=t instanceof Error?t.message:String(t);return Response.json({error:r},{status:500})}}const Gy=Object.freeze(Object.defineProperty({__proto__:null,action:Ky},Symbol.toStringTag,{value:"Module"}));async function qy({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{url:r,filename:s,viewportWidth:a,viewportHeight:o}=t;if(!r||!s)return new Response(JSON.stringify({error:"url and filename are required"}),{status:400,headers:{"Content-Type":"application/json"}});const i=process.env.CODEYAM_ROOT_PATH||process.cwd(),l=H.join(i,".codeyam","journal","screenshots");await je.mkdir(l,{recursive:!0});const c=s.replace(/[^a-zA-Z0-9_\-T]/g,"_"),u=H.join(l,`${c}.png`),p=H.dirname(new URL(import.meta.url).pathname);let h=p;for(let v=0;v<5;v++){const S=H.dirname(h);if(H.basename(S)==="webserver"||H.basename(h)==="webserver"){h=H.basename(h)==="webserver"?h:S;break}h=S}const m=[H.join(h,"scripts","journalCapture.ts"),H.join(h,"app","lib","journalCapture.ts"),H.join(i,"codeyam-cli","src","webserver","app","lib","journalCapture.ts"),H.resolve(p,"..","lib","journalCapture.ts")];let f="";for(const v of m)try{await je.access(v),f=v;break}catch{}f||(console.warn(`[editor-journal-screenshot] journalCapture.ts not found in any of: ${m.join(", ")}`),f=m[0]);const y=ga({bodyWidth:a,bodyHeight:o,codeyamRoot:i}),g=JSON.stringify({url:r,outputPath:u,viewportWidth:y.width,viewportHeight:y.height}),x=await new Promise(v=>{const S=xt("npx",["tsx",f,g],{cwd:i,env:{...process.env}});let w="",C="";S.stdout.on("data",k=>{w+=k.toString()}),S.stderr.on("data",k=>{C+=k.toString()}),S.on("close",k=>{v(k===0?{success:!0,output:w}:{success:!1,output:w,error:C||`Process exited with code ${k}`})}),S.on("error",k=>{v({success:!1,output:"",error:k.message})})});if(!x.success)return new Response(JSON.stringify({error:"Failed to capture screenshot",details:x.error}),{status:500,headers:{"Content-Type":"application/json"}});const b=`screenshots/${c}.png`;return new Response(JSON.stringify({success:!0,path:b}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-screenshot] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Qy=Object.freeze(Object.defineProperty({__proto__:null,action:qy},Symbol.toStringTag,{value:"Module"}));async function Zy({request:e}){const t={"Content-Type":"application/json"};try{const r=Se()||process.cwd(),s=await e.json(),{scenarioId:a,table:o,rowIndex:i,column:l,value:c}=s;if(!a||!o||i==null||!l)return new Response(JSON.stringify({success:!1,error:"Missing required fields"}),{headers:t,status:400});const u=H.join(r,".codeyam","editor-scenarios",`${a}.json`);if(!G.existsSync(u))return new Response(JSON.stringify({success:!1,error:"Scenario file not found"}),{headers:t,status:404});const p=JSON.parse(G.readFileSync(u,"utf-8"));if(Array.isArray(p[o])&&i<p[o].length)return p[o][i][l]=c,G.writeFileSync(u,JSON.stringify(p,null,2)),new Response(JSON.stringify({success:!0}),{headers:t});if(p.seed&&typeof p.seed=="object"){const h=o.charAt(0).toLowerCase()+o.slice(1);for(const m of[o,h,`${h}s`])if(Array.isArray(p.seed[m])&&i<p.seed[m].length){p.seed[m][i][l]=c,G.writeFileSync(u,JSON.stringify(p,null,2));const f=u.replace(/\.json$/,".seed.json");if(G.existsSync(f))try{const y=JSON.parse(G.readFileSync(f,"utf-8"));Array.isArray(y[m])&&(y[m][i][l]=c,G.writeFileSync(f,JSON.stringify(y,null,2)))}catch{}return new Response(JSON.stringify({success:!0}),{headers:t})}}if(p.localStorage&&typeof p.localStorage=="object"){for(const[h,m]of Object.entries(p.localStorage))if(typeof m=="string")try{let f=JSON.parse(m);const y=!Array.isArray(f)&&typeof f=="object"&&f!==null;if(y&&(f=[f]),!Array.isArray(f))continue;const g=o.charAt(0).toLowerCase()+o.slice(1),x=()=>{f[i][l]=c;const b=y?f[0]:f;p.localStorage[h]=JSON.stringify(b),G.writeFileSync(u,JSON.stringify(p,null,2))};if((h===o||h===g||h===`${g}s`||h===`${o}s`)&&i<f.length)return x(),new Response(JSON.stringify({success:!0}),{headers:t});if(f.length>0&&l in f[0]&&i<f.length)return x(),new Response(JSON.stringify({success:!0}),{headers:t})}catch{}}return new Response(JSON.stringify({success:!1,error:"Table not found in scenario"}),{headers:t,status:404})}catch(r){return new Response(JSON.stringify({success:!1,error:r instanceof Error?r.message:"Unknown error"}),{headers:t,status:500})}}const Xy=Object.freeze(Object.defineProperty({__proto__:null,action:Zy},Symbol.toStringTag,{value:"Module"})),gu=zo({dimensions:{height:720,width:1200},updateDimensions:()=>{},iframeRef:{current:null},scale:1,updateScale:()=>{},maxWidth:1200,updateMaxWidth:()=>{}}),gi=()=>{const e=Zs(gu);if(!e)throw new Error("useWebContainer must be used within a WebContainerProvider");return e},Na=({children:e})=>{const[t,r]=j({height:720,width:1200}),[s,a]=j(1),[o,i]=j(1200),l=ye(null),c=ae(({height:h,width:m})=>{r(f=>({height:h??f.height,width:m??f.width}))},[]),u=ae(h=>{a(h)},[]),p=ae(h=>{i(h)},[]);return n(gu.Provider,{value:{dimensions:t,updateDimensions:c,iframeRef:l,scale:s,updateScale:u,maxWidth:o,updateMaxWidth:p},children:e})},ex=typeof window<"u";function tx(){const[e,t]=j(null);return te(()=>{import("react-resizable").then(r=>{t(()=>r.ResizableBox)}),Promise.resolve({ })},[]),e}const nx=1200,rx=720,Jl=30,sx=({id:e,scenarioName:t,iframeUrl:r,defaultWidth:s=1440,defaultHeight:a=900,onDataOverride:o,onIframeLoad:i,onScaleChange:l,onDimensionChange:c})=>{const u=tx(),[p,h]=j(!1),[m,f]=j(!1),[y,g]=j(nx),[x,b]=j(rx),[v,S]=j(null),[w,C]=j(null),{dimensions:k,updateDimensions:N,iframeRef:A,updateScale:_,updateMaxWidth:M}=gi(),$=le(()=>Math.min(1,y/k.width),[y,k.width]),I=w!==null?w:$;te(()=>{p||(_(I),l==null||l(I))},[I,_,l,p]),te(()=>{M(y)},[y,M]);const R=ae(()=>{h(!0),C($)},[$]),P=ae(()=>{h(!1),C(null)},[]),F=ae((T,D)=>{const E=w!==null?w:1,W=Math.round(D.size.width/E);N({width:W}),c==null||c(W,k.height)},[N,w,c,k.height]),Y=ae(()=>{setTimeout(()=>{f(!0)},100),i&&i()},[i]);te(()=>{const T=D=>{if(D.data.type==="codeyam-resize"){if(t&&D.data.name!==t||k.height===D.data.height||D.data.height===0)return;N({height:D.data.height})}};return window.addEventListener("message",T),()=>{window.removeEventListener("message",T)}},[A,t,s,k,N]),te(()=>{m&&o&&o(A.current)},[m,o,A]),te(()=>{if(!t)return;const T=setInterval(()=>{var D,E;(E=(D=A==null?void 0:A.current)==null?void 0:D.contentWindow)==null||E.postMessage({type:"codeyam-respond",name:t},"*")},1e3);return()=>clearInterval(T)},[t,A]),te(()=>{const T=()=>{const D=document.getElementById("scenario-container");if(!D)return;const E=D.getBoundingClientRect(),W=D.clientWidth-Jl*2,K=window.innerHeight-E.top-Jl*2,Z=Math.max(K,400),q=window.innerHeight-E.top;g(W),b(Z),S(q)};return T(),window.addEventListener("resize",T),()=>window.removeEventListener("resize",T)},[]),te(()=>{N({width:s,height:a})},[s,a,N]);const J=le(()=>k.width*I,[k.width,I]),O=le(()=>{const T=k.height,D=T*I;return T&&T!==720&&T!==900&&D<x?D:x},[k.height,x,I]),B=ae(()=>{window.history.back()},[]);return!ex||!u?n("div",{className:"relative bg-gray-100 w-full h-full flex items-center justify-center",children:n("p",{className:"text-gray-500",children:"Loading interactive view..."})}):d("div",{id:"scenario-container",className:"relative bg-gray-100 w-full flex items-center justify-center",style:v?{height:`${v}px`}:{},children:[p&&n("div",{className:"fixed inset-0 z-50 bg-transparent"}),n("style",{children:`
|
|
302
|
-
.react-resizable-handle-e {
|
|
303
|
-
display: flex !important;
|
|
304
|
-
align-items: center !important;
|
|
305
|
-
justify-content: center !important;
|
|
306
|
-
width: 6px !important;
|
|
307
|
-
height: 48px !important;
|
|
308
|
-
right: -8px !important;
|
|
309
|
-
top: 50% !important;
|
|
310
|
-
transform: translateY(-50%) !important;
|
|
311
|
-
cursor: ew-resize !important;
|
|
312
|
-
background: #d1d5db !important;
|
|
313
|
-
border-radius: 3px !important;
|
|
314
|
-
opacity: 0 !important;
|
|
315
|
-
transition: all 0.2s ease !important;
|
|
316
|
-
}
|
|
317
|
-
.react-resizable-handle-e:hover {
|
|
318
|
-
opacity: 0.8 !important;
|
|
319
|
-
background: #9ca3af !important;
|
|
320
|
-
}
|
|
321
|
-
.react-resizable:hover .react-resizable-handle-e {
|
|
322
|
-
opacity: 0.4 !important;
|
|
323
|
-
}
|
|
324
|
-
`}),n(u,{width:J,height:O,minConstraints:[300,200],maxConstraints:[y,x],className:"relative bg-white rounded-lg shadow-md",resizeHandles:["e"],onResizeStart:R,onResizeStop:P,onResize:F,children:n("div",{className:"overflow-auto",style:{width:`${J}px`,height:`${O}px`},children:n("div",{style:{width:`${k.width}px`,height:`${k.height}px`,transform:`scale(${I})`,transformOrigin:"top left"},children:r?n("iframe",{ref:A,className:"w-full h-full rounded-lg",src:r,onLoad:Y,sandbox:"allow-scripts allow-same-origin"}):d("p",{className:"w-full h-full flex flex-col gap-3 items-center justify-center",children:[n("span",{className:"text-xl font-light",children:"Oops! Looks like this scenario is not available yet. Please check back later."}),n("span",{className:"text-blue-600 cursor-pointer",onClick:B,children:"Go back"})]})})})},`resizable-box-${e}`)]})};function ax({presets:e,customSizes:t,currentWidth:r,currentHeight:s,scale:a,onSizeChange:o,onSaveCustomSize:i,onRemoveCustomSize:l,className:c=""}){const[u,p]=j(!1),[h,m]=j(String(r)),[f,y]=j(String(s)),[g,x]=j(!1),[b,v]=j(!1),S=ye(null);te(()=>{g||m(String(r))},[r,g]),te(()=>{b||y(String(s))},[s,b]),te(()=>{const I=R=>{S.current&&!S.current.contains(R.target)&&p(!1)};return document.addEventListener("mousedown",I),()=>document.removeEventListener("mousedown",I)},[]);const w=le(()=>{const I=e.find(P=>P.width===r&&P.height===s);if(I)return I.name;const R=t.find(P=>P.width===r&&P.height===s);return R?R.name:"Custom"},[e,t,r,s]),C=w==="Custom",k=I=>{o(I.width,I.height),p(!1)},N=I=>{const R=I.target.value;m(R);const P=parseInt(R,10);!isNaN(P)&&P>0&&o(P,s)},A=I=>{const R=I.target.value;y(R);const P=parseInt(R,10);!isNaN(P)&&P>0&&o(r,P)},_=()=>{x(!1);const I=parseInt(h,10);(isNaN(I)||I<=0)&&m(String(r))},M=()=>{v(!1);const I=parseInt(f,10);(isNaN(I)||I<=0)&&y(String(s))},$=I=>{(I.key==="Enter"||I.key==="Escape")&&I.target.blur()};return d("div",{className:`flex items-center gap-3 ${c}`,children:[d("div",{className:"relative",ref:S,children:[d("button",{onClick:()=>p(!u),className:"flex items-center gap-2 px-3 py-1.5 bg-white border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 min-w-[120px] justify-between",children:[n("span",{children:w}),n("svg",{className:`w-4 h-4 transition-transform ${u?"rotate-180":""}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}),u&&n("div",{className:"absolute top-full left-0 mt-1 min-w-full bg-white border border-gray-200 rounded-md shadow-lg z-50",children:d("div",{className:"py-1",children:[e.length>0&&d(we,{children:[n("div",{className:"px-3 py-1 text-xs font-semibold text-gray-500 uppercase tracking-wider whitespace-nowrap",children:"Presets"}),e.map(I=>d("button",{onClick:()=>k(I),className:`w-full text-left px-3 py-2 text-sm hover:bg-gray-100 flex justify-between items-center gap-4 whitespace-nowrap ${w===I.name?"bg-[#f0f7f9] text-[#005c75]":"text-gray-700"}`,children:[n("span",{children:I.name}),d("span",{className:"text-xs text-gray-500",children:[I.width," x ",I.height]})]},I.name))]}),t.length>0&&d(we,{children:[n("div",{className:"border-t border-gray-100 my-1"}),n("div",{className:"px-3 py-1 text-xs font-semibold text-gray-500 uppercase tracking-wider whitespace-nowrap",children:"Custom"}),[...t].sort((I,R)=>I.width-R.width).map(I=>d("div",{className:`flex items-center gap-1 hover:bg-gray-100 ${w===I.name?"bg-[#f0f7f9] text-[#005c75]":"text-gray-700"}`,children:[d("button",{onClick:()=>k(I),className:"flex-1 text-left px-3 py-2 text-sm flex justify-between items-center gap-4 whitespace-nowrap cursor-pointer",children:[n("span",{children:I.name}),d("span",{className:"text-xs text-gray-500",children:[I.width," x ",I.height]})]}),l&&n("button",{onClick:R=>{R.stopPropagation(),w===I.name&&e.length>0&&o(e[0].width,e[0].height),l(I.name)},className:"p-1.5 mr-1 text-gray-400 hover:text-red-500 hover:bg-red-50 rounded cursor-pointer transition-colors",title:"Remove custom size",children:n("svg",{className:"w-4 h-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]},I.name))]})]})})]}),d("div",{className:"flex items-center gap-1 text-sm",children:[d("div",{className:"flex items-center",children:[n("input",{type:"text",value:h,onChange:N,onFocus:()=>x(!0),onBlur:_,onKeyDown:$,className:"w-16 px-2 py-1 text-right border border-gray-300 rounded-l-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"}),n("span",{className:"px-2 py-1 bg-gray-100 border border-l-0 border-gray-300 rounded-r-md text-gray-500 text-sm",children:"px"})]}),n("span",{className:"text-gray-400 mx-1",children:"×"}),d("div",{className:"flex items-center",children:[n("input",{type:"text",value:f,onChange:A,onFocus:()=>v(!0),onBlur:M,onKeyDown:$,className:"w-16 px-2 py-1 text-right border border-gray-300 rounded-l-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"}),n("span",{className:"px-2 py-1 bg-gray-100 border border-l-0 border-gray-300 rounded-r-md text-gray-500 text-sm",children:"px"})]}),a!==void 0&&a<1&&d("span",{className:"text-xs text-gray-500 ml-1",children:["(",Math.round(a*100),"%)"]})]}),C&&n("button",{onClick:i,className:"px-3 py-1.5 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 transition-colors",children:"Save Custom Size"})]})}function ro(e,t,r){if(Array.isArray(e)){if(!isNaN(parseInt(t)))return e[parseInt(t)];for(const s of e)if(s.name===t||s.title===t||s.id===t)return s}return e[t]}function Ao(e){return e&&(typeof e=="object"||Array.isArray(e))}function ox(e){return Array.isArray(e)?e.length:void 0}function ix(e){const{data:t,structure:r}=e;if(!(!t&&!r)){if(Array.isArray(r))return Array.isArray(t)?t.map((s,a)=>a.toString()):[];if(typeof r=="object")return[...new Set([...Object.keys(t),...Object.keys(r)])].sort((a,o)=>{const i=Ao(t[a]),l=Ao(t[o]);return i&&!l?1:!i&&l?-1:a.localeCompare(o)});if(typeof t=="object")return Object.keys(t).sort((a,o)=>a.localeCompare(o))}}function lx({scenarioFormData:e,handleInputChange:t}){return d("div",{className:"p-3 flex flex-col gap-3",children:[d("div",{className:"grid w-full max-w-sm items-center gap-1.5",children:[n("label",{htmlFor:"name",className:"text-sm font-medium text-gray-700",children:"Name"}),n("input",{type:"text",id:"name",placeholder:"Name",name:"name",value:e.name,onChange:t,required:!0,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"})]}),d("div",{className:"grid w-full gap-1.5 pt-2",children:[n("label",{htmlFor:"description",className:"text-sm font-medium text-gray-700",children:"Description"}),n("textarea",{placeholder:"Type your message here.",id:"description",name:"description",value:e.description,onChange:t,required:!0,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 min-h-[100px]"})]}),n("button",{type:"submit",className:"mt-3 w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium",children:"Save Name & Description"})]})}function cx({path:e,namedPath:t,isArray:r,count:s,onClick:a}){const o=ae(()=>{a&&a(e)},[a,e]);return d("div",{className:"bg-blue-50 p-3 rounded-lg flex items-center justify-between cursor-pointer group hover:bg-blue-100 transition-colors border border-blue-200",onClick:o,children:[d("div",{className:"flex items-center gap-3",children:[r&&n("svg",{className:"w-4 h-4 text-gray-500",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M4 6h16M4 12h16M4 18h16"})}),d("div",{className:"capitalize font-medium text-gray-900",children:[t[t.length-1],s!==void 0&&` (${s})`]})]}),d("div",{className:"flex items-center gap-3",children:[r&&n("svg",{className:"w-5 h-5 text-red-500 opacity-0 group-hover:opacity-100 transition-opacity",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"})}),n("svg",{className:"w-4 h-4 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]})]})}var yu=(e=>(e.STRING="string",e.NUMBER="number",e.BOOLEAN="boolean",e.UNION="union",e.OBJECT="object",e.ARRAY="array",e))(yu||{});const dx=({name:e,value:t,options:r,onChange:s})=>{const a=ae(o=>{s({target:{name:e,value:o.target.value}})},[e,s]);return n("select",{name:e,value:t,onChange:a,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500",children:r.map((o,i)=>n("option",{value:o.trim(),children:o.trim()},i))})},ux=({name:e,value:t,onChange:r})=>{const s=ae(a=>{const o=a.target.checked;r({target:{name:e,value:o}})},[e,r]);return n("label",{className:"flex items-center gap-2 cursor-pointer",children:n("input",{type:"checkbox",name:e,checked:t,onChange:s,className:`w-10 h-6 rounded-full appearance-none cursor-pointer transition-colors relative
|
|
325
|
-
bg-gray-300 checked:bg-blue-600
|
|
326
|
-
after:content-[''] after:absolute after:top-1 after:left-1 after:w-4 after:h-4
|
|
327
|
-
after:bg-white after:rounded-full after:transition-transform
|
|
328
|
-
checked:after:translate-x-4`})})};function px({dataType:e,path:t,value:r,onChange:s}){const a=le(()=>t[t.length-1],[t]),o=le(()=>t.join("-"),[t]),i=ae(c=>{s(t,c.target.value)},[s,t]),l=ae(c=>{s(t,c.target.value)},[s,t]);return d("div",{className:"grid w-full max-w-sm items-center gap-1.5",children:[n("label",{htmlFor:o,className:"capitalize text-sm font-medium text-gray-700",children:a==="~~codeyam-code~~"?"Dynamic Field":a}),e.includes("|")?n(dx,{name:o,value:r,options:e.split("|"),onChange:i}):e===yu.BOOLEAN?n(ux,{name:o,value:r??!1,onChange:l}):n("input",{id:o,name:o,type:"text",value:JSON.stringify(r??"").replace(/"/g,""),onChange:i,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"},`Input-${o}`)]})}function hx({analysis:e,scenarioName:t,dataItem:r,onResult:s,onGenerateData:a}){const[o,i]=j(!1),[l,c]=j(""),u=ae(async()=>{if(!a){console.error("onGenerateData prop is required for AI data generation");return}i(!0);try{const h=e.scenarios.find(x=>x.name===t);if(!h)throw new Error("Scenario not found");const m=e.scenarios.find(x=>x.name===sa),f=await a(l,r);if(!f){console.error("Error getting AI guess for scenario data"),i(!1);return}const y=(x,b)=>{const v=Object.assign({},x);return g(x)&&g(b)&&Object.keys(b).forEach(S=>{g(b[S])?S in x?v[S]=y(x[S],b[S]):Object.assign(v,{[S]:b[S]}):Object.assign(v,{[S]:b[S]})}),v},g=x=>x&&typeof x=="object"&&!Array.isArray(x);h.metadata.data=y(y((m==null?void 0:m.metadata.data)||{},h.metadata.data),f.data||{}),s(h),i(!1),c("")}catch(h){console.error("Error generating AI data:",h),i(!1)}},[e,l,r,t,s,a]),p=ae(h=>{c(h.target.value)},[]);return d("div",{className:"w-full p-3 flex flex-col gap-2 rounded-lg border-2 border-blue-200 text-sm bg-blue-50",children:[n("div",{className:"font-medium text-gray-700",children:"Describe the data changes to the AI"}),n("textarea",{className:"peer w-full h-16 p-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500",placeholder:"Type your message here.",onChange:p,value:l}),n("button",{type:"button",disabled:o,className:`w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 disabled:bg-gray-400 disabled:cursor-not-allowed font-medium ${l.length>0?"flex":"hidden peer-focus-within:flex"} items-center justify-center gap-2`,onClick:()=>void u(),children:o?d(we,{children:[d("svg",{className:"animate-spin h-4 w-4 text-white",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),"Please wait"]}):"Generate Data"})]})}function mx({namedPath:e,path:t,last:r,onClick:s}){const a=ae(()=>s(r?t.slice(0,-1):t),[r,t,s]);return n("div",{className:"capitalize cursor-pointer hover:text-blue-600 transition-colors",onClick:a,children:e[e.length-1]})}function fx({dataItem:e,onClick:t}){const r=ae(()=>t([]),[t]),s=le(()=>e.namedPath.length>=2?e.namedPath.length-2:0,[e]);return d("div",{className:"text-sm flex items-center gap-2 py-3 px-2 border-b border-t border-gray-300 bg-gray-50",children:[n("svg",{className:"w-4 h-4 cursor-pointer hover:text-blue-600",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",onClick:r,children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M15 19l-7-7 7-7"})}),e.namedPath.length>2&&d("div",{className:"flex items-center gap-1",children:[n("div",{children:"..."}),n("svg",{className:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]}),e.namedPath.slice(s).map((a,o)=>d("div",{className:"flex items-center gap-1",children:[n(mx,{namedPath:e.namedPath.slice(0,o+s+1),path:e.path.slice(0,o+s+1),last:o+s===e.namedPath.length-1,onClick:t}),o+s<e.namedPath.length-1&&n("svg",{className:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]},`path-${a}-${o+s}`))]})}function Hl({analysis:e,scenarioName:t,dataItem:r,onClick:s,onChange:a,onAIResult:o,onGenerateData:i,saveFeedback:l}){const c=le(()=>r.data,[r]),u=le(()=>ix(r),[r]);return d("div",{className:"w-full flex flex-col gap-6 px-3 mt-3",children:[r.path.length>0&&n(fx,{dataItem:r,onClick:s}),d("div",{className:"flex flex-col gap-3",children:[n(hx,{analysis:e,scenarioName:t,dataItem:r,onResult:o,onGenerateData:i}),u==null?void 0:u.map((p,h)=>{var f;if(Ao(c[p])){let y=p;isNaN(Number(p))||(y=c[p].name??c[p].title??c[p].id??`${r.path[r.path.length-1].replace(/s$/,"")} ${parseInt(p)+1}`);const g=[...r.path,p],x=[...r.namedPath,y];return n(cx,{path:g,namedPath:x,isArray:Array.isArray(c),count:ox(c[p]),onClick:s},`data-${p}-${h}`)}if(p==="id")return null;const m=[...r.path,p];return n(px,{dataType:((f=r.structure)==null?void 0:f[p])??"string",path:m,value:c[p],onChange:a},`InputField-${m.join("-")}`)})]}),n("input",{type:"hidden",name:"recapture",id:"recapture-input",value:"false"}),d("div",{className:"flex gap-2",children:[n("button",{type:"submit",onClick:()=>{const p=document.getElementById("recapture-input");p&&(p.value="false")},disabled:l==null?void 0:l.isSaving,className:"flex-1 px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium disabled:opacity-50 disabled:cursor-not-allowed",children:l!=null&&l.isSaving?"Saving...":"Save Changes"}),n("button",{type:"submit",onClick:()=>{const p=document.getElementById("recapture-input");p&&(p.value="true")},disabled:l==null?void 0:l.isSaving,className:"flex-1 px-4 py-2 bg-gray-100 text-gray-700 border border-gray-300 rounded-md hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium disabled:opacity-50 disabled:cursor-not-allowed",children:"Save & Recapture"})]}),(l==null?void 0:l.message)&&!(l!=null&&l.isSaving)&&n("div",{className:`mt-3 p-3 rounded-md text-sm font-medium ${l.isError?"bg-red-50 text-red-700 border border-red-200":"bg-green-50 text-green-700 border border-green-200"}`,children:l.message})]})}function Vl({title:e,children:t,defaultOpen:r=!1,borderT:s=!1,borderB:a=!1}){const[o,i]=j(r),l=[];return s&&l.push("border-t"),a&&l.push("border-b"),d("div",{className:`${l.join(" ")} border-gray-300`,children:[d("button",{type:"button",onClick:()=>i(!o),className:"w-full px-4 py-3 flex items-center justify-between bg-gray-50 hover:bg-gray-100 transition-colors text-left font-semibold text-gray-900",children:[n("span",{children:e}),n("svg",{className:`transition-transform ${o?"rotate-180":""}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",style:{width:"20px",height:"20px",minWidth:"20px",minHeight:"20px",maxWidth:"20px",maxHeight:"20px",flexShrink:0},children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}),o&&n("div",{className:"px-4 py-3",children:t})]})}const gx=({currentScenario:e,defaultScenario:t,dataStructure:r,analysis:s,shouldCreateNewScenario:a,onSave:o,onNavigate:i,iframeRef:l,onGenerateData:c,saveFeedback:u})=>{const p=ae((N,A)=>{const _=Object.assign({},N),M=$=>$&&typeof $=="object"&&!Array.isArray($);return M(N)&&M(A)&&Object.keys(A).forEach($=>{M(A[$])?$ in N?_[$]=p(N[$],A[$]):Object.assign(_,{[$]:A[$]}):Object.assign(_,{[$]:A[$]})}),_},[]),[h,m]=j({name:e.name,description:e.description,data:p(t.metadata.data,e.metadata.data)}),[f,y]=j(null),g=le(()=>({...h.data}),[h]),x=le(()=>({...g.mockData?{"Retrieved Data":g.mockData}:{},...g.argumentsData?{"Function Arguments":g.argumentsData}:{}}),[g]),b=le(()=>{const N={...r.arguments?{"Function Arguments":r.arguments}:{},...r.dataForMocks?{"Retrieved Data":r.dataForMocks}:{}};return Object.keys(N).reduce((A,_)=>{if(_.includes(".")){const[M,$]=_.split(".");A[M]||(A[M]={}),A[M][$]=N[_]}else A[_]=N[_];return A},{})},[r]),v=ae(async N=>{N.preventDefault();const A=N.target.querySelector('input[name="recapture"]'),_=(A==null?void 0:A.value)==="true",M={mockData:h.data.mockData??{},argumentsData:h.data.argumentsData??[]};console.log("[ScenarioEditor] Saving scenario data:",{scenarioName:h.name,shouldRecapture:_,dataToSave:M,rawFormData:h.data,iframePayload:{arguments:g.argumentsData??[],...g.mockData??{}}}),console.log("[ScenarioEditor] Full dataToSave JSON:",JSON.stringify(M,null,2).substring(0,1e3));const $=s==null?void 0:s.scenarios.map(I=>!a&&I.name===e.name?{...I,name:h.name,description:h.description,metadata:{...I.metadata,data:M}}:I);a&&$.push({name:h.name,description:h.description,metadata:{data:M,interactiveExamplePath:s==null?void 0:s.scenarios[0].metadata.interactiveExamplePath}}),console.log("[ScenarioEditor] Updated scenarios to save:",$),o&&await o($,{recapture:_}),i&&i(h.name)},[s,e.name,h,g,a,o,i]),S=ae(N=>{m(A=>({...A,[N.target.name]:N.target.value}))},[]),w=ae(N=>{y(A=>{if(!A)return null;for(const _ of[{arguments:N.metadata.data.argumentsData},N.metadata.data.mockData]){let M=_;for(const $ of A.path)if(M=ro(M,$),!M)break;M&&(A.data=M)}return{...A}}),m({name:N.name,description:N.description,data:N.metadata.data})},[]),C=ae((N,A)=>{m(_=>{for(const M of[{"Function Arguments":_.data.argumentsData},{"Retrieved Data":_.data.mockData}]){let $=M;for(const I of N.slice(0,-1))if($=ro($,I),!$)break;if($){const I=$[N[N.length-1]];y(R=>R?(R.namedPath[R.namedPath.length-1]===I&&(R.namedPath[R.namedPath.length-1]=A.toString()),R.data[N[N.length-1]]=A,{...R}):null),$[N[N.length-1]]=A}}return{..._}})},[]),k=ae(N=>{var $,I,R;if(N.length===0){y(null);return}let A=x;const _=[];let M=b;for(const P of N){if(_.push(isNaN(parseInt(P))?P:(($=A[P])==null?void 0:$.name)??((I=A[P])==null?void 0:I.title)??((R=A[P])==null?void 0:R.id)??P),A=ro(A,P),!A){console.log("Data not found",A,P),y(null);return}Array.isArray(M)?M=M[0]:M=M[P]}y({path:N,namedPath:_,data:A,structure:M})},[x,b]);return te(()=>{const N=A=>{var _;A.data.type==="codeyam-log"&&((_=A.data.data)!=null&&_.includes("Error"))&&console.error("[ScenarioEditor] Error from iframe:",A.data.data)};return window.addEventListener("message",N),()=>window.removeEventListener("message",N)},[]),te(()=>{var N;if((N=l==null?void 0:l.current)!=null&&N.contentWindow){const A={arguments:g.argumentsData??[],...g.mockData??{}},_={type:"codeyam-override-data",name:e.name,data:JSON.stringify(A)};console.log("[ScenarioEditor] → SENDING codeyam-override-data:",{type:_.type,name:_.name,dataPreview:JSON.stringify(A).substring(0,200)+"...",fullData:A}),l.current.contentWindow.postMessage(_,"*")}},[g,e,l]),n("form",{method:"post",onSubmit:N=>void v(N),children:f?n(Hl,{analysis:s,scenarioName:h.name,dataItem:f,onClick:k,onChange:C,onAIResult:w,onGenerateData:c,saveFeedback:u}):d(we,{children:[n(Vl,{title:"Edit Name and Description",borderT:!0,children:n(lx,{scenarioFormData:h,handleInputChange:S})}),e.metadata.data&&n(Vl,{title:"Edit Scenario Data",defaultOpen:!0,borderT:!0,borderB:!0,children:n(Hl,{analysis:s,scenarioName:h.name,dataItem:{path:[],namedPath:[],data:x,structure:b},onClick:k,onChange:C,onAIResult:w,onGenerateData:c,saveFeedback:u})})]})})};function Sa({scenarioId:e,scenarioName:t,iframeUrl:r,isStarting:s,isLoading:a,showIframe:o,iframeKey:i,onIframeLoad:l,onScaleChange:c,onDimensionChange:u,projectSlug:p,defaultWidth:h=1440,defaultHeight:m=900,retryCount:f=0}){const{lastLine:y}=Wt(p??null,s||a);return r?d("div",{className:"flex-1 min-h-0 relative",style:{background:"transparent"},children:[n("div",{style:{opacity:o?1:0,background:"transparent"},children:n(sx,{id:e,scenarioName:t,iframeUrl:r,defaultWidth:h,defaultHeight:m,onIframeLoad:l,onScaleChange:c,onDimensionChange:u},i)}),!o&&(s||a)&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),y&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(sr,{}),y]})]})]})})]}):n("div",{className:"flex-1 flex flex-col items-center justify-center p-12 text-center",children:d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),y&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(sr,{}),y]})]})]})})}const yx=({data:e})=>[{title:e!=null&&e.scenario?`Edit ${e.scenario.name} - CodeYam`:"Edit Scenario - CodeYam"},{name:"description",content:"Edit scenario data"}];async function xx({params:e}){var c,u;const{sha:t,scenarioId:r}=e;if(!t)throw new Response("Entity SHA is required",{status:400});if(!r)throw new Response("Scenario ID is required",{status:400});const s=await aa(t,!0),a=s&&s.length>0?s[0]:null;if(!a)throw new Response("Analysis not found",{status:404});const o=(c=a.scenarios)==null?void 0:c.find(p=>p.id===r);if(!o)throw new Response("Scenario not found",{status:404});const i=(u=a.scenarios)==null?void 0:u.find(p=>p.name===sa),l=await Ye();return ne({analysis:a,scenario:o,defaultScenario:i||o,entitySha:t,projectSlug:l})}function bx(){var P,F,Y;const e=ot(),t=e.analysis,r=e.scenario,s=e.defaultScenario,a=e.entitySha,o=e.projectSlug,i=Ft(),{iframeRef:l}=gi(),[c,u]=j(!1),[p,h]=j(null),[m,f]=j(null),[y,g]=j(!1),[x,b]=j(!1),[v,S]=j(null),{interactiveServerUrl:w,isStarting:C,isLoading:k,showIframe:N,iframeKey:A,onIframeLoad:_}=$n({analysisId:t==null?void 0:t.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:o,enabled:!0}),M=ae(async(J,O)=>{u(!0),h(null),f(null),console.log("[EditScenario] Starting save with options:",O),console.log("[EditScenario] Scenarios to save:",J);try{const B={analysis:t,scenarios:J};console.log("[EditScenario] Sending to /api/save-scenarios:",{analysisId:t.id,scenarioCount:J.length,scenarioNames:J.map(E=>E.name)});const T=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(B)}),D=await T.json();if(console.log("[EditScenario] API response:",D),!T.ok||!D.success)throw new Error(D.error||"Failed to save scenarios");if(console.log("[EditScenario] Scenarios saved successfully"),O!=null&&O.recapture&&r.id&&w){console.log("[EditScenario] ========== DIRECT CAPTURE START =========="),console.log("[EditScenario] Taking screenshot from running server",{scenarioId:r.id,projectId:t.projectId,serverUrl:w}),h("Changes saved. Capturing screenshot...");const E={serverUrl:w,scenarioId:r.id,projectId:t.projectId,viewportWidth:1440};console.log("[EditScenario] Capture request body:",E);const W=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(E)});console.log("[EditScenario] Capture response status:",W.status);const K=await W.json();if(console.log("[EditScenario] Capture response body:",K),!W.ok||!K.success)throw console.error("[EditScenario] Capture failed:",K),new Error(K.error||"Failed to capture screenshot");console.log("[EditScenario] Screenshot captured successfully:",K),console.log("[EditScenario] ========== DIRECT CAPTURE COMPLETE =========="),h("Recapture successful")}else if(O!=null&&O.recapture&&!w){console.log("[EditScenario] No running server, using queued recapture");const E=new FormData;E.append("analysisId",t.id||""),E.append("scenarioId",r.id||"");const W=await fetch("/api/recapture-scenario",{method:"POST",body:E}),K=await W.json();if(!W.ok||!K.success)throw new Error(K.error||"Failed to trigger recapture");console.log("Recapture queued:",K),f(K.jobId),h("Changes saved. Screenshot recapture queued.")}else h("Changes saved successfully.")}catch(B){console.error("Error saving scenarios:",B),h(`Error: ${B instanceof Error?B.message:String(B)}`)}finally{u(!1)}},[t,r.id,w]),$=ae(J=>{},[]),I=ae(async(J,O)=>{var D;const B=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:J,existingScenarios:t.scenarios,scenariosDataStructure:(D=t.metadata)==null?void 0:D.scenariosDataStructure,editingMockName:r.name,editingMockData:O==null?void 0:O.data})}),T=await B.json();if(!B.ok||!T.success)throw new Error(T.error||"Failed to generate scenario data");return T.data},[t,r.name]),R=ae(async()=>{var J;if(!r.id){S("Cannot delete scenario without ID");return}g(!0),S(null);try{const O=await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:r.id,screenshotPaths:((J=r.metadata)==null?void 0:J.screenshotPaths)||[]})}),B=await O.json();if(!O.ok||!B.success)throw new Error(B.error||"Failed to delete scenario");i(`/entity/${a}`)}catch(O){console.error("[EditScenario] Error deleting scenario:",O),S(O instanceof Error?O.message:"Failed to delete scenario"),b(!1)}finally{g(!1)}},[r.id,(P=r.metadata)==null?void 0:P.screenshotPaths,a,i]);return d("div",{className:"h-screen bg-gray-50 flex flex-col",children:[d("header",{className:"bg-white border-b border-gray-200 px-8 py-6 shrink-0",children:[n("div",{className:"mb-4",children:d(ke,{to:`/entity/${a}`,className:"text-blue-600 no-underline text-sm font-medium transition-colors hover:text-blue-700 hover:underline",children:["← Back to ",(F=t.entity)==null?void 0:F.name]})}),d("h1",{className:"text-[32px] font-bold text-gray-900 m-0 mb-3",children:["Edit Scenario: ",r.name]}),r.description&&n("p",{className:"text-gray-600 text-[15px] leading-relaxed m-0",children:r.description})]}),d("div",{className:"flex flex-1 gap-0 min-h-0",children:[d("aside",{className:"w-[400px] bg-white border-r border-gray-200 overflow-y-auto shrink-0",children:[n(gx,{currentScenario:r,defaultScenario:s,dataStructure:((Y=t.metadata)==null?void 0:Y.scenariosDataStructure)||{},analysis:t,shouldCreateNewScenario:!1,onSave:M,onNavigate:$,iframeRef:l,onGenerateData:I,saveFeedback:{isSaving:c,message:p,isError:(p==null?void 0:p.startsWith("Error"))??!1}}),p==="Recapture successful"&&n("div",{className:"px-4 pb-4",children:n(ke,{to:`/entity/${a}`,className:"text-blue-600 hover:text-blue-700 hover:underline text-sm",children:"View updated screenshot on entity page →"})}),d("div",{className:"border-t border-gray-200 p-4 mt-4",children:[n("div",{className:"text-sm text-gray-600 mb-3",children:"Permanently remove this scenario and its screenshots."}),x?d("div",{className:"space-y-3",children:[d("div",{className:"text-sm text-red-600 font-medium",children:['Are you sure you want to delete "',r.name,'"?']}),d("div",{className:"flex gap-2",children:[n("button",{onClick:()=>void R(),disabled:y,className:"flex-1 px-4 py-2 bg-red-600 text-white rounded-md text-sm font-medium hover:bg-red-700 disabled:bg-red-400 disabled:cursor-not-allowed transition-colors",children:y?"Deleting...":"Yes, Delete"}),n("button",{onClick:()=>b(!1),disabled:y,className:"flex-1 px-4 py-2 bg-gray-100 text-gray-700 border border-gray-300 rounded-md text-sm font-medium hover:bg-gray-200 disabled:opacity-50 transition-colors",children:"Cancel"})]})]}):n("button",{onClick:()=>b(!0),className:"w-full px-4 py-2 bg-red-50 text-red-600 border border-red-200 rounded-md text-sm font-medium hover:bg-red-100 transition-colors",children:"Delete Scenario"}),v&&n("div",{className:"mt-3 text-sm text-red-600 bg-red-50 px-3 py-2 rounded-md",children:v})]})]}),n("main",{className:"flex-1 bg-gray-100 overflow-auto flex flex-col min-w-0",children:n(Sa,{scenarioId:r.id||r.name,scenarioName:r.name,iframeUrl:w,isStarting:C,isLoading:k,showIframe:N,iframeKey:A,onIframeLoad:_,projectSlug:o,defaultWidth:1440,defaultHeight:900})})]})]})}const vx=et(function(){return n(Na,{children:n(bx,{})})}),wx=Object.freeze(Object.defineProperty({__proto__:null,default:vx,loader:xx,meta:yx},Symbol.toStringTag,{value:"Module"})),Nx=["/api/health","/__codeyam__/preview-health"];function xu(e){const t=[];for(const r of e.split(`
|
|
329
|
-
`))if(r.includes("[JournalCapture] HTTP error:"))t.push(r.replace(/.*\[JournalCapture\] /,""));else if(r.includes("[JournalCapture] API response error:"))t.push(r.replace(/.*\[JournalCapture\] /,""));else if(r.includes("[JournalCapture] Page console.error:"))t.push(r.replace(/.*\[JournalCapture\] Page console\.error:\s*/,""));else if(r.includes("[JournalCapture] Network failed:")){if(Nx.some(s=>r.includes(s)))continue;t.push(r.replace(/.*\[JournalCapture\] /,""))}return t}function Sx(e){for(const t of e.split(`
|
|
330
|
-
`))if(t.includes("[JournalCapture] Visible text: "))return t.replace(/.*\[JournalCapture\] Visible text: /,"");return null}async function bu(e,t,r,s){const a=H.join(e,".codeyam","editor-scenarios","client-errors.json");let o={};try{const i=await je.readFile(a,"utf8");o=JSON.parse(i)}catch{}for(const[i,l]of Object.entries(o))i!==t&&l.scenarioName===r&&delete o[i];o[t]={scenarioName:r,capturedAt:new Date().toISOString(),errors:s},await je.mkdir(H.dirname(a),{recursive:!0}),await je.writeFile(a,JSON.stringify(o,null,2),"utf8")}async function vu(e){const t=H.join(e,".codeyam","editor-scenarios","client-errors.json");try{const r=await je.readFile(t,"utf8");return JSON.parse(r)}catch{return{}}}function yi(e){let r=H.dirname(new URL(e).pathname);for(let s=0;s<5;s++){const a=H.dirname(r);if(H.basename(a)==="webserver"||H.basename(r)==="webserver")return H.basename(r)==="webserver"?r:a;r=a}return r}async function xi(e,t){const r=[H.join(e,"scripts","journalCapture.ts"),H.join(e,"app","lib","journalCapture.ts"),H.join(t,"codeyam-cli","src","webserver","app","lib","journalCapture.ts")];for(const s of r)try{return await je.access(s),s}catch{}return r[0]}function bi(e,t,r){return new Promise(s=>{const a=e.endsWith(".ts"),l=xt(a?"npx":e,a?["tsx",e,t]:[t],{cwd:r,env:{...process.env}});let c="",u="";l.stdout.on("data",p=>{c+=p.toString()}),l.stderr.on("data",p=>{u+=p.toString()}),l.on("close",p=>{s(p===0?{success:!0,output:c}:{success:!1,output:c,error:u||`Process exited with code ${p}`})}),l.on("error",p=>{s({success:!1,output:"",error:p.message})})})}function Cx(e){const t=H.join(e,".codeyam","editor-scenarios");let r;try{r=G.readdirSync(t)}catch{return[]}const s=[];for(const a of r){if(!a.endsWith(".json")||a.endsWith(".seed.json")||a==="client-errors.json")continue;const o=H.join(t,a);try{if(!G.statSync(o).isFile())continue;const l=JSON.parse(G.readFileSync(o,"utf8"));if(l._metadata){const c=a.replace(/\.json$/,"");s.push({id:c,metadata:l._metadata})}}catch{}}return s}function wu(e,t,r){const s=H.join(e,".codeyam","editor-scenarios",`${t}.json`);let a={};try{a=JSON.parse(G.readFileSync(s,"utf8"))}catch{return}a._metadata=r,G.writeFileSync(s,JSON.stringify(a,null,2),"utf8")}function kx(e,t,r){const s=H.join(e,".codeyam","editor-scenarios",`${t}.json`);let a={};try{a=JSON.parse(G.readFileSync(s,"utf8"))}catch{return}a._metadata&&typeof a._metadata=="object"&&(a._metadata.screenshotPath=r,a._metadata.updatedAt=new Date().toISOString(),G.writeFileSync(s,JSON.stringify(a,null,2),"utf8"))}function _x(e,t,r,s={}){const a=H.join(e,".codeyam","editor-scenarios");G.mkdirSync(a,{recursive:!0});const o=H.join(a,`${t}.json`);let i={};try{i=JSON.parse(G.readFileSync(o,"utf8"))}catch{}const l={...i,_metadata:r,...s};G.writeFileSync(o,JSON.stringify(l,null,2),"utf8")}function Ex(e,t){const r=H.join(e,".codeyam","editor-scenarios");for(const s of[".json",".seed.json"]){const a=H.join(r,`${t}${s}`);try{G.unlinkSync(a)}catch{}}}const vi=globalThis.__codeyamTerminalSessions??(globalThis.__codeyamTerminalSessions=new Set);globalThis.__codeyamDetachedPtys??(globalThis.__codeyamDetachedPtys=new Map);function wi(e,t){const r=JSON.stringify({type:"refresh-preview",...e&&{path:e},...t&&{scenarioId:t}});let s=0;for(const a of vi)try{a.ws.readyState===Ko.OPEN&&(a.ws.send(r),s++)}catch{}return s}function Ax(){const e=JSON.stringify({type:"hide-results"});let t=0;for(const r of vi)try{r.ws.readyState===Ko.OPEN&&(r.ws.send(e),t++)}catch{}return t}function Ni(e){const t=JSON.stringify({type:"set-viewport",...e});let r=0;for(const s of vi)try{s.ws.readyState===Ko.OPEN&&(s.ws.send(t),r++)}catch{}return r}const jx=Object.freeze(Object.defineProperty({__proto__:null,broadcastHideResults:Ax,broadcastPreviewRefresh:wi,broadcastSetViewport:Ni},Symbol.toStringTag,{value:"Module"}));function Px(e){if(e.dimension)try{Ni({name:e.dimension,width:e.viewport.width,height:e.viewport.height})}catch{}wi(e.refreshPath,e.scenarioId)}function Tx(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{const r=De("git status --porcelain",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]});return Mx(r)}catch{return[]}}function Mx(e){const t=e.trim().split(`
|
|
331
|
-
`).filter(s=>s.length>0),r=[];for(const s of t){const a=s[0],o=s[1];let i=s.slice(2).replace(/^[ \t]+/,""),l,c=!1,u;if(a==="A"||o==="A")l="added",c=a==="A";else if(a==="M"||o==="M")l="modified",c=a==="M";else if(a==="D"||o==="D")l="deleted",c=a==="D";else if(a==="R"||o==="R"){l="renamed",c=a==="R";const p=i.indexOf(" -> ");p!==-1&&(u=i.slice(0,p).trim(),i=i.slice(p+4).trim())}else o==="?"?(l="untracked",c=!1):(l="modified",c=a!==" "&&a!=="?");if(i.endsWith("/")){const p=process.env.CODEYAM_ROOT_PATH||process.cwd(),h=ee.join(p,i);try{const m=(y,g)=>{const x=pe.readdirSync(y,{withFileTypes:!0}),b=[];for(const v of x){const S=ee.join(y,v.name),w=ee.relative(p,S);v.isDirectory()?b.push(...m(S,g)):v.isFile()&&b.push(w)}return b},f=m(h,p);for(const y of f)r.push({path:y,status:l,staged:c,...u&&{oldPath:u}})}catch(m){console.error(`Failed to expand directory ${i}:`,m)}}else r.push({path:i,status:l,staged:c,...u&&{oldPath:u}})}return r}function $x(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return De("git branch --show-current",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim()||null}catch(r){return console.error("Failed to get current branch:",r),null}}function Ix(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{const s=De('git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null || echo ""',{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().match(/refs\/remotes\/origin\/(.+)/);if(s)return s[1];try{return De("git show-ref --verify --quiet refs/heads/main",{cwd:t,stdio:["pipe","pipe","ignore"]}),"main"}catch{try{return De("git show-ref --verify --quiet refs/heads/master",{cwd:t,stdio:["pipe","pipe","ignore"]}),"master"}catch{return"main"}}}catch(r){return console.error("Failed to get default branch:",r),"main"}}function Fx(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return De('git branch --format="%(refname:short)"',{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().split(`
|
|
332
|
-
`).filter(s=>s.length>0)}catch(r){return console.error("Failed to get branches:",r),[]}}function mr(){const e=Se();return e?Tx(e):[]}function Dx(){const e=Se();return e?$x(e):null}function Rx(){const e=Se();return e?Ix(e):"main"}function Ox(){const e=Se();return e?Fx(e):[]}function Nu(e,t){const r=Se();return r?Lx(e,t,r):[]}function Lx(e,t,r){const s=r||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return De(`git diff --name-status ${e}...${t}`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().split(`
|
|
333
|
-
`).filter(i=>i.length>0).map(i=>{const l=i.split(" "),c=l[0];let u=l[1],p,h;return c==="A"?h="added":c==="M"?h="modified":c==="D"?h="deleted":c.startsWith("R")?(h="renamed",p=l[1],u=l[2]):h="modified",{path:u,status:h,...p&&{oldPath:p}}})}catch(a){return console.error("Failed to get branch diff:",a),[]}}function Su(e,t){const r=t||process.env.CODEYAM_ROOT_PATH||process.cwd();try{let s="";try{s=De(`git show HEAD:"${e}"`,{cwd:r,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{s=""}let a="";try{a=pe.readFileSync(ee.join(r,e),"utf8")}catch(o){console.error(`Failed to read current file ${e}:`,o),a=""}return{oldContent:s,newContent:a,fileName:e}}catch(s){return console.error(`Failed to get diff for ${e}:`,s),{oldContent:"Error loading old content",newContent:"Error loading new content",fileName:e}}}function zx(e){const t=Se();return t?Su(e,t):{oldContent:"Error: No project root",newContent:"Error: No project root",fileName:e}}function Bx(e,t,r,s){const a=s||process.env.CODEYAM_ROOT_PATH||process.cwd();try{let o="";try{o=De(`git show ${t}:"${e}"`,{cwd:a,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{o=""}let i="";try{i=De(`git show ${r}:"${e}"`,{cwd:a,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{i=""}return{oldContent:o,newContent:i,fileName:e}}catch(o){return console.error(`Failed to get branch diff for ${e}:`,o),{oldContent:"Error loading old content",newContent:"Error loading new content",fileName:e}}}function Ps(e,t,r){const s=Se();return s?Bx(e,t,r,s):{oldContent:"Error: No project root",newContent:"Error: No project root",fileName:e}}async function Yx(e,t,r){const s=H.join(e,".codeyam","journal"),a=H.join(s,"index.json");H.join(s,"screenshots");let o;try{const l=await je.readFile(a,"utf8");o=JSON.parse(l)}catch{return}let i=!1;for(const l of o.entries)if(!l.commitSha&&l.scenarioScreenshots)for(let c=0;c<l.scenarioScreenshots.length;c++){const u=l.scenarioScreenshots[c];if(u.name!==t)continue;const p=H.join(s,u.path);try{await je.copyFile(r,p),i=!0,console.log(`[editor-register-scenario] Updated journal screenshot for "${t}" in entry "${l.title}"`)}catch(h){console.warn(`[editor-register-scenario] Failed to update journal screenshot: ${h instanceof Error?h.message:h}`)}}i&&ft.notifyChange("journal")}const Kl=hi;async function Ux({request:e}){var t,r;if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const s=await e.json();s.url=s.url||s.path||void 0;const a=cy({componentName:s.componentName,url:s.url,type:s.type});if(!a.valid)return new Response(JSON.stringify({error:a.error}),{status:400,headers:{"Content-Type":"application/json"}});const{name:o,description:i,componentName:l,componentPath:c}=s;if(!o)return new Response(JSON.stringify({error:"name is required"}),{status:400,headers:{"Content-Type":"application/json"}});if(l&&!c)return new Response(JSON.stringify({error:`componentPath is required when componentName is provided. Add "componentPath": "app/components/${l}.tsx" (or the actual file path) to the registration JSON.`}),{status:400,headers:{"Content-Type":"application/json"}});const u=await Ye();if(!u)return new Response(JSON.stringify({error:"Project not initialized"}),{status:400,headers:{"Content-Type":"application/json"}});const{project:p}=await Re(u),h=$e(),m=process.env.CODEYAM_ROOT_PATH||process.cwd();let f,y,g;if(!s.viewportWidth&&!s.viewportHeight&&!s.dimension&&!s.dimensions){const q=await h.selectFrom("editor_scenarios").selectAll().where("name","=",o).where("project_id","=",p.id).orderBy("created_at","desc").executeTakeFirst();if(q){f=q.viewport_width||void 0,y=q.viewport_height||void 0;try{const U=q.dimensions?JSON.parse(q.dimensions):void 0;Array.isArray(U)&&(g=U)}catch{}}}let x=null;s.dimensions&&s.dimensions.length>0?x=s.dimensions:s.dimension?x=[s.dimension]:g&&g.length>0&&(x=g);const b=(x==null?void 0:x[0])||void 0,v=ga({bodyWidth:s.viewportWidth||f,bodyHeight:s.viewportHeight||y,dimension:b,codeyamRoot:m});let S=null;if(!l){if(s.pageFilePath)S=s.pageFilePath;else if(s.url){const{scanPageFilePaths:q}=await Promise.resolve().then(()=>Jx),U=Se()||process.cwd(),{allFiles:L}=q(U);if(S=Vd(s.url,L),!S){const z=await import("fs"),V=await import("path"),re=["src/App.tsx","src/App.jsx","src/app/App.tsx","src/popup/App.tsx","src/pages/index.tsx","src/pages/index.jsx","src/routes/index.tsx","app/root.tsx"];for(const ue of re)if(z.existsSync(V.join(U,ue))){S=ue;break}}}}let w=null,C=null;const k=c||S;if(k)try{await Je();const U=(await Xe({})||[]).filter(V=>V.filePath===k),z=U.find(V=>{var re,ue;return((re=V.metadata)==null?void 0:re.notExported)===!1&&((ue=V.metadata)==null?void 0:ue.namedExport)===!1})||U[0];z&&(w=z.sha)}catch{}const N=s.type==="application"||s.type==="user";if(!w&&N&&k){const q=Se()||process.cwd(),U=ly({lookupFilePath:k,scenarioType:s.type||null,projectRoot:q});if(!U.valid)return Response.json({error:U.error},{status:400});if(U.needsAnalysis)try{const{runAnalysisForEntities:L}=await import("./analysisRunner-CTJYMVFP.js");await L({projectRoot:q,filePaths:[k],onlyDataStructure:!0});try{const V=(await Xe({})||[]).filter(be=>be.filePath===k),ue=V.find(be=>{var ie,fe;return((ie=be.metadata)==null?void 0:ie.notExported)===!1&&((fe=be.metadata)==null?void 0:fe.namedExport)===!1})||V[0];ue&&(w=ue.sha)}catch{}if(w)try{const z=await Xe({});await dy(h,(z||[]).map(V=>{var re,ue;return{sha:V.sha,name:V.name,filePath:V.filePath||"",isDefaultExport:((re=V.metadata)==null?void 0:re.notExported)===!1&&((ue=V.metadata)==null?void 0:ue.namedExport)===!1}}))}catch{}}catch(L){console.warn(`[editor-register-scenario] Auto analyze-imports failed for ${k}: ${L.message}`)}}l?C=l:S&&S.startsWith("app/")?C=Ot(Et(S)):s.url&&(C=yt(s.url));const A=await oy(h,{projectId:p.id,name:o,description:i||null,componentName:l||null,componentPath:c||null,url:s.url||null,type:s.type||null,viewportWidth:v.width,viewportHeight:v.height,dimensions:x,screenshotPaths:null,pageFilePath:S,entitySha:w,displayName:C}),_=A.scenarioId;if(A.cleanedUpIds.length>0&&(iy(m,A.cleanedUpIds),console.log(`[editor-register-scenario] Cleaned up ${A.cleanedUpIds.length} duplicate(s) for "${o}"`)),s.seedFrom&&!s.seed){const q=await Ol(m,h,s.seedFrom);q?(s.seed=q,s.type||(s.type="application"),console.log(`[editor-register-scenario] Resolved seed data from "${s.seedFrom}"`)):console.warn(`[editor-register-scenario] seedFrom "${s.seedFrom}" not found — no seed data will be used`)}else if(s.seedFrom&&s.seed){const q=await Ol(m,h,s.seedFrom);q&&(s.seed=zl(q,s.seed),console.log(`[editor-register-scenario] Merged seed data: base from "${s.seedFrom}", overlay from registration`))}const M=s.type==="application"||s.type==="user",$=new Date().toISOString(),I={name:o,description:i||null,componentName:l||null,componentPath:c||null,url:s.url||null,type:s.type||(M?null:"component"),screenshotPath:null,viewportWidth:v.width,viewportHeight:v.height,dimensions:x,screenshotPaths:null,pageFilePath:S,entitySha:w,displayName:C,createdAt:$,updatedAt:$},R={};if(M&&s.seed){let q=s.seed;if(s.type==="user"&&s.baseScenario)try{const L=H.join(m,".codeyam","editor-scenarios",`${s.baseScenario}.json`),z=await je.readFile(L,"utf-8"),V=JSON.parse(z);V.seed&&(q=zl(V.seed,s.seed),console.log(`[editor-register-scenario] Merged seed data from base scenario ${s.baseScenario}`))}catch(L){console.warn(`[editor-register-scenario] Could not read base scenario ${s.baseScenario}: ${L instanceof Error?L.message:L}`)}R.type=s.type,R.seed=q,s.externalApis&&(R.externalApis=s.externalApis),s.session&&(R.session=s.session),s.auth&&(R.auth=s.auth),s.localStorage&&(R.localStorage=s.localStorage);const U=H.join(m,".codeyam","editor-scenarios");await je.mkdir(U,{recursive:!0}),await je.writeFile(H.join(U,`${_}.seed.json`),JSON.stringify(q,null,2))}else(s.mockData||s.localStorage)&&(s.mockData&&Object.assign(R,s.mockData),s.localStorage&&(R.localStorage=s.localStorage));let P=null;if(M&&!s.seed&&Yr(m)){const U=H.join(m,".codeyam","editor-scenarios",`${_}.json`);let L=!1;try{L=!!JSON.parse(await je.readFile(U,"utf-8")).seed}catch{}L||(P='WARNING: This application scenario has no seed data. A seed adapter exists — include "seed":{...} in registration so the page has database rows to render. Without seed data, the page will likely be empty.',console.warn(`[editor-register-scenario] ${P}`))}_x(m,_,I,R);let F=null;if(M&&s.seed){const q=Yr(m);if(q){const U=H.join(m,".codeyam","editor-scenarios",`${_}.seed.json`);console.log(`[editor-register-scenario] Running seed adapter: ${q}`);const L=await pi(q,U);if(F={success:L.success,error:L.error},L.success){console.log(`[editor-register-scenario] Seed adapter completed in ${L.durationMs}ms`);const z=L.sessionCookies&&L.sessionCookies.length>0,V=L.externalApis&&Object.keys(L.externalApis).length>0;if(z||V)try{const re=H.join(m,".codeyam","editor-scenarios",`${_}.json`),ue=JSON.parse(await je.readFile(re,"utf-8"));z&&(ue.sessionCookies=L.sessionCookies),V&&(ue.externalApis={...ue.externalApis,...L.externalApis}),await je.writeFile(re,JSON.stringify(ue,null,2)),console.log("[editor-register-scenario] Saved seed adapter auth data to scenario")}catch(re){console.warn(`[editor-register-scenario] Failed to save seed adapter auth data: ${re}`)}}else console.warn(`[editor-register-scenario] Seed adapter failed: ${L.error}`)}else console.warn(`[editor-register-scenario] No seed adapter found at ${m}/.codeyam/seed-adapter.ts`),F={success:!1,error:"No seed adapter found. Create .codeyam/seed-adapter.ts to use seed-based scenarios."}}ft.notifyChange("scenario"),console.log(`[editor-register-scenario] Starting auto-capture for scenario "${o}" (id: ${_})`);const Y=s.url&&s.url.startsWith("/"),J=!s.url||Y?await fi():null,O=Kl(),B=di(s.url||null,J,O);console.log(`[editor-register-scenario] Capture URL resolution: explicit=${s.url||"none"}, isPath=${Y}, proxy=${J||"none"}, devServer=${O||"none"} → using ${B||"none"}`);let T=null,D=null,E=[],W=null,K=null,Z={};if(B){const q=Tt(o),U=await ya({scenarioId:_,scenarioSlug:q,scenarioType:s.type||void 0,projectRoot:m});Pn(),!F&&U.seedResult&&(F=U.seedResult),console.log(`[editor-register-scenario] Active scenario set to "${q}" (${_}), type=${U.type}, seeded=${U.seeded}, seedResult=${JSON.stringify(U.seedResult??null)}, cache invalidated`),await new Promise(fe=>setTimeout(fe,300));const L=(t=s.url)!=null&&t.startsWith("/")?`${Kl()||"http://localhost:3113"}${s.url}`:B;for(let fe=0;fe<5;fe++){try{const ce=await fetch(L,{method:"GET",signal:AbortSignal.timeout(3e3)});if(ce.status<500)break;console.log(`[editor-register-scenario] Route returned ${ce.status}, waiting for HMR (attempt ${fe+1}/5)...`)}catch{console.log(`[editor-register-scenario] Route not reachable, waiting for HMR (attempt ${fe+1}/5)...`)}await new Promise(ce=>setTimeout(ce,2e3))}const z=H.join(m,".codeyam","editor-scenarios","screenshots");await je.mkdir(z,{recursive:!0});const V=yi(import.meta.url),re=await xi(V,m);console.log(`[editor-register-scenario] Capture script: ${re}`);const ue=ui(m),be=x&&x.length>0?x:[null];Z={};let ie=null;for(let fe=0;fe<be.length;fe++){const ce=be[fe];let Ce=v;if(ce){const ge=ue[ce];ge!=null&&ge.width&&(ge!=null&&ge.height)&&(Ce={width:ge.width,height:ge.height})}const Ae=ce?Qd(ce):null,_e=Ae&&be.length>1?`${_}--${Ae}.png`:`${_}.png`,Q=H.join(z,_e),xe=`screenshots/${_e}`;fe===0&&(K=Ce,ie=Q);const oe=JSON.stringify({url:B,outputPath:Q,viewportWidth:Ce.width,viewportHeight:Ce.height,...l?{selector:"#codeyam-capture"}:{}});console.log(`[editor-register-scenario] Capture ${ce||"default"}: ${Ce.width}×${Ce.height} → ${_e}`);const se=Date.now(),he=await bi(re,oe,m),Te=Date.now()-se;console.log(`[editor-register-scenario] Capture ${ce||"default"} ${he.success?"succeeded":"FAILED"} in ${Te}ms`),he.success||(console.warn(`[editor-register-scenario] Capture stdout: ${he.output.slice(0,500)}`),console.warn(`[editor-register-scenario] Capture stderr: ${(he.error||"").slice(0,500)}`)),fe===0&&(E=xu(he.output),W=Sx(he.output),await bu(m,_,o,E),E.length>0&&console.warn(`[editor-register-scenario] ${E.length} client-side error(s) detected:`,E)),he.success?(ce&&(Z[ce]=xe),fe===0&&(T=xe)):fe===0&&(D=he.error||"Unknown capture error",console.warn(`[editor-register-scenario] Screenshot capture failed (non-blocking): ${D}`))}if(T){try{await h.schema.alterTable("editor_scenarios").addColumn("screenshot_path","varchar").execute()}catch{}const fe={screenshot_path:T,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};Object.keys(Z).length>0&&(fe.screenshot_paths=JSON.stringify(Z)),await h.updateTable("editor_scenarios").set(fe).where("id","=",_).execute(),ft.notifyChange("scenario"),ie&&await Yx(m,o,ie)}}else console.log("[editor-register-scenario] Skipping screenshot — no capture URL available (dev server not running?)");if(console.log(`[editor-register-scenario] Done: scenario="${o}", screenshot=${T?"captured":"skipped"}`),B&&T)try{const q=Se()||process.cwd(),U=H.join(q,".codeyam","editor-step.json");let L=null;try{const z=G.readFileSync(U,"utf8");L=JSON.parse(z).featureStartedAt||null}catch{}if(L){const z=Qr(L),V=await h.selectFrom("editor_scenarios").selectAll().where("project_id","=",p.id).orderBy("created_at","asc").execute(),re=kt(V,be=>`${be.name}::${be.url||"/"}`),ue=mr();if(ue.length>0){let be=!1;try{const{execSync:se}=await import("child_process"),he=se("git rev-list --count HEAD",{cwd:q,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim();be=parseInt(he,10)<=1}catch{be=!0}const ie=Kd(ue,be),fe={},ce=H.join(q,"app");if(G.existsSync(ce)){const se=(he,Te)=>{for(const ge of G.readdirSync(he,{withFileTypes:!0}))if(ge.name!=="isolated-components"){if(ge.isDirectory())se(H.join(he,ge.name),Te?`${Te}/${ge.name}`:ge.name);else if(ge.name==="page.tsx"||ge.name==="page.js"){const ze=yt(Te?`/${Te}`:"/");fe[ze]=Te?`app/${Te}/${ge.name}`:`app/${ge.name}`}}};se(ce,"")}let Ce=[];try{await Je(),Ce=await Xe({})||[]}catch{}const Ae=re.map(se=>({componentName:se.component_name||null,componentPath:se.component_path||null,pageFilePath:se.page_file_path??null,url:se.url??null,displayName:se.display_name??null})),_e=Gd(Ae,fe,Ce),Q=qd(ie,_e),xe=re.filter(se=>se.created_at<z),oe=new Map;for(const se of xe){const he=Kt({componentName:se.component_name,pageFilePath:se.page_file_path,url:se.url});((r=Q[he])==null?void 0:r.status)==="impacted"&&oe.set(he,se)}if(oe.size>0){console.log(`[editor-register-scenario] Recapturing ${oe.size} impacted older scenario(s): ${[...oe.keys()].join(", ")}`);const{recaptureScenarios:se}=await Promise.resolve().then(()=>vb),he=[...oe.values()].map(ge=>({id:ge.id,name:ge.name,url:ge.url,component_name:ge.component_name,dimensions:ge.dimensions,viewport_width:ge.viewport_width,viewport_height:ge.viewport_height}));await se({scenarios:he,codeyamRoot:m,proxyUrl:J,devUrl:O,db:h,importMetaUrl:import.meta.url});const Te=H.join(m,".codeyam","active-scenario.json");await je.writeFile(Te,JSON.stringify({scenarioId:_,scenarioSlug:Tt(o),type:s.type||null,timestamp:new Date().toISOString()})),Pn(),ft.notifyChange("scenario")}}}}catch(q){console.warn(`[editor-register-scenario] Recapture of impacted scenarios failed (non-blocking): ${q instanceof Error?q.message:q}`)}try{const q=new Date().toISOString(),U=Object.keys(Z).length>0?Z:null;wu(m,_,{name:o,description:i||null,componentName:l||null,componentPath:c||null,url:s.url||null,type:s.type||null,screenshotPath:T||null,viewportWidth:v.width,viewportHeight:v.height,dimensions:x,screenshotPaths:U,pageFilePath:S,createdAt:q,updatedAt:q})}catch(q){console.warn(`[editor-register-scenario] Failed to update scenario metadata (non-blocking): ${q instanceof Error?q.message:q}`)}try{Px({dimension:b,viewport:v,refreshPath:s.url||void 0,scenarioId:_})}catch{}return new Response(JSON.stringify({success:!0,scenario:{id:_,name:o,description:i,componentName:l||null,componentPath:c||null,screenshotPath:T,url:s.url||null,type:s.type||null,viewportWidth:v.width,viewportHeight:v.height,dimensions:x,screenshotPaths:Object.keys(Z).length>0?Z:null},updated:!A.isNew,screenshotCaptured:T!==null,capturedViewport:K,captureError:D,clientErrors:E,...W?{visibleText:W}:{},...F?{seedResult:F}:{},...P?{missingSeedWarning:P}:{}}),{headers:{"Content-Type":"application/json"}})}catch(s){const a=s instanceof Error?s.message:String(s);return console.error("[editor-register-scenario] Error:",s),new Response(JSON.stringify({error:a}),{status:500,headers:{"Content-Type":"application/json"}})}}const Wx=Object.freeze(Object.defineProperty({__proto__:null,action:Ux},Symbol.toStringTag,{value:"Module"}));function Si(e){const t={},r=[],s=H.join(e,"app");if(!G.existsSync(s))return{map:t,allFiles:r};const a=c=>c.split("/").filter(u=>!u.startsWith("(")).join("/"),o=new Set(["_layout.tsx","_layout.ts","_layout.js","layout.tsx","layout.ts","layout.js"]),i=new Set([".tsx",".ts",".jsx",".js"]),l=(c,u)=>{for(const p of G.readdirSync(c,{withFileTypes:!0}))if(p.name!=="isolated-components")if(p.isDirectory())l(H.join(c,p.name),u?`${u}/${p.name}`:p.name);else if(p.name==="page.tsx"||p.name==="page.js"){const h=u?`app/${u}/${p.name}`:`app/${p.name}`;r.push(h);const m=a(u);t[yt(m?`/${m}`:"/")]=h}else{if(o.has(p.name))continue;{const h=H.extname(p.name);if(!i.has(h))continue;const m=H.basename(p.name,h),f=u?`app/${u}/${p.name}`:`app/${p.name}`,y=a(u);let g;m==="index"?g=y?`/${y}`:"/":g=y?`/${y}/${m}`:`/${m}`,r.push(f);const x=yt(g);t[x]||(t[x]=f)}}};return l(s,""),{map:t,allFiles:r}}function Cu(e){try{const t=De("git rev-list --count HEAD",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim();return parseInt(t,10)<=1}catch{return!0}}function ku(e){try{const t=H.join(e,".codeyam","editor-step.json"),r=G.readFileSync(t,"utf8");return JSON.parse(r).featureStartedAt||null}catch{return null}}function Ca(e){try{const t=H.join(e,".codeyam","editor-step.json"),r=G.readFileSync(t,"utf8");return JSON.parse(r).feature||null}catch{return null}}function Ci(e){try{const t=H.join(e,".codeyam","editor-step.json"),r=G.readFileSync(t,"utf8"),s=JSON.parse(r);return typeof s.step=="number"&&s.label?{step:s.step,label:s.label}:null}catch{return null}}function ki(e){try{const t=H.join(e,".codeyam","editor-step.json"),r=G.readFileSync(t,"utf8"),s=JSON.parse(r);return Array.isArray(s.appFormats)?s.appFormats:null}catch{return null}}function _u(e){try{const t=H.join(e,".codeyam","claude-session-id.txt");return G.readFileSync(t,"utf8").trim()||null}catch{return null}}function _i(e){try{const t=H.join(e,".codeyam","editor-user-prompt.txt");return G.readFileSync(t,"utf8").trim()||null}catch{return null}}function Eu(e){const t=H.join(e,".codeyam","active-scenario.json");try{return G.existsSync(t)&&JSON.parse(G.readFileSync(t,"utf-8")).scenarioId||null}catch{return null}}const Jx=Object.freeze(Object.defineProperty({__proto__:null,detectFirstFeature:Cu,readEditorAppFormats:ki,readEditorFeature:Ca,readEditorSessionId:_u,readEditorStep:Ci,readEditorUserPrompt:_i,readFeatureStartedAt:ku,readSavedActiveScenarioId:Eu,scanPageFilePaths:Si},Symbol.toStringTag,{value:"Module"}));async function fr(e){const{projectRoot:t,scenarioInputs:r,glossaryInputs:s}=e,o=(e.precomputedPageFilePaths??Si(t)).map,i=new Set(Object.keys(o)),l=e.precomputedGitFiles??mr();if(l.length===0)return{entityChangeStatus:{},pageEntityNames:i};const c=Cu(t),u=Kd(l,c);let p=[];if(e.precomputedEntities)p=e.precomputedEntities;else try{await Je(),p=await Xe({})||[]}catch{}const h=Gd(r,o,p);let m=h;if(s&&s.length>0){const y=new Set(h.map(x=>x.name)),g=H0(s,y);m=[...h,...g]}return{entityChangeStatus:qd(u,m),pageEntityNames:i}}function Hx(e,t,r,s){const a=s?s.replace("T"," ").replace(/\.\d{3}Z$/,""):null,o=[],i=[],l=new Set;for(const p of e){const h=Kt({componentName:p.component_name,pageFilePath:p.page_file_path,url:p.url});if(!h)continue;const m=t[h];if(!m||p.component_name)continue;const f=p.created_at||"",y=p.updated_at||"";(a?f>=a||y>=a:!0)?(i.push({name:p.name,url:p.url,entityName:h}),l.add(h)):o.push({name:p.name,url:p.url,entityName:h,changeStatus:m.status,lastCaptured:f})}const c=[];for(const[p,h]of Object.entries(t)){if(!r.has(p)||l.has(p))continue;o.some(f=>f.entityName===p)||c.push({entityName:p,changeStatus:h.status})}const u=o.length===0&&c.length===0;return{staleScenarios:o,freshScenarios:i,uncoveredPages:c,pass:u}}async function Vx(){const e=Se()||process.cwd(),t=await Ye();if(!t)return Response.json({error:"No project configured"},{status:400});const r=H.join(e,".codeyam","editor-step.json");let s=null;try{const f=G.readFileSync(r,"utf8");s=JSON.parse(f).featureStartedAt||null}catch{}const{project:a}=await Re(t),i=await $e().selectFrom("editor_scenarios").select(["id","name","component_name","component_path","page_file_path","url","type","created_at","updated_at","display_name"]).where("project_id","=",a.id).orderBy("created_at","asc").execute(),l=kt(i,f=>`${f.name}::${f.url||"/"}`),c=l.map(f=>({componentName:f.component_name||null,componentPath:f.component_path||null,pageFilePath:f.page_file_path??null,url:f.url??null,displayName:f.display_name??null}));let u={},p=new Set;try{const f=await fr({projectRoot:e,scenarioInputs:c});u=f.entityChangeStatus,p=f.pageEntityNames}catch{}if(Object.keys(u).length===0)return Response.json({staleScenarios:[],uncoveredPages:[],freshScenarios:[],pass:!0,note:"No entity change data available — cannot determine coverage."});const h=l.map(f=>({name:f.name,component_name:f.component_name,page_file_path:f.page_file_path??null,url:f.url??null,created_at:f.created_at||"",updated_at:f.updated_at||null})),m=Hx(h,u,p,s);return Response.json(m)}const Kx=Object.freeze(Object.defineProperty({__proto__:null,loader:Vx},Symbol.toStringTag,{value:"Module"}));function Gx({executionFlows:e,selections:t,onChange:r,disabled:s=!1}){const a=ae(i=>t.some(l=>l.flowId===i),[t]),o=ae(i=>{a(i.id)?r(t.filter(l=>l.flowId!==i.id)):r([...t,{flowId:i.id,flowName:i.name}])},[t,r,a]);return e.length===0?n("div",{className:"text-sm text-gray-500 py-2",children:"No execution flows found."}):n("div",{className:"space-y-3",children:e.map(i=>{const l=a(i.id),c=i.usedInScenarios.length>0;return d("div",{className:"border-b border-gray-100 pb-3 last:border-0 last:pb-0",children:[d("label",{className:"flex items-start gap-2 cursor-pointer",children:[n("input",{type:"checkbox",checked:l,onChange:()=>o(i),disabled:s,className:"mt-0.5 h-4 w-4 rounded border-gray-300 text-blue-600 focus:ring-blue-500"}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[n("span",{className:"font-mono text-sm font-medium text-gray-900",children:i.name}),!c&&n("span",{className:"text-xs px-1.5 py-0.5 bg-amber-100 text-amber-700 rounded",children:"uncovered"}),i.blocksOtherFlows&&n("span",{className:"text-xs px-1.5 py-0.5 bg-purple-100 text-purple-700 rounded",children:"blocking"}),i.impact==="high"&&n("span",{className:"text-xs px-1.5 py-0.5 bg-red-100 text-red-700 rounded",children:"high impact"})]}),i.description&&n("p",{className:"text-xs text-gray-500 mt-0.5 m-0",children:i.description})]})]}),l&&i.requiredValues.length>0&&d("div",{className:"ml-6 mt-2 p-2 bg-gray-50 rounded text-xs",children:[n("span",{className:"text-gray-700 font-medium",children:"Required values:"}),n("ul",{className:"m-0 mt-1 pl-4 space-y-0.5",children:i.requiredValues.map((u,p)=>d("li",{className:"text-gray-600",children:[n("code",{className:"bg-gray-100 px-1 rounded",children:u.attributePath})," ",n("span",{className:"text-gray-400",children:u.comparison})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:u.value})]},p))})]})]},i.id)})})}function Ei(e,t){const r=(e||[]).map(c=>({...c,usedInScenarios:[]})),s=new Map;r.forEach(c=>{s.set(c.id,c)});const a=[];t.forEach(c=>{var p;const u=((p=c.metadata)==null?void 0:p.coveredFlows)||[];u.forEach(h=>{const m=s.get(h);m&&m.usedInScenarios.push({id:c.id||"",name:c.name})}),a.push({scenario:c,coveredFlowIds:u})});const o=r.length,i=r.filter(c=>c.usedInScenarios.length>0).length,l=o>0?i/o*100:0;return{executionFlows:r,totalFlows:o,coveredFlows:i,coveragePercentage:l,scenariosWithFlows:a}}function qx(e){return e.executionFlows.filter(t=>t.usedInScenarios.length===0)}const Qx=({data:e})=>[{title:e!=null&&e.entity?`Create Scenario - ${e.entity.name} - CodeYam`:"Create Scenario - CodeYam"},{name:"description",content:"Create a new scenario"}];async function Zx({params:e}){var i;const{sha:t}=e;if(!t)throw new Response("Entity SHA is required",{status:400});const r=await aa(t,!0),s=r&&r.length>0?r[0]:null;if(!s)throw new Response("Analysis not found",{status:404});const a=(i=s.scenarios)==null?void 0:i.find(l=>l.name===sa);if(!a)throw new Response("Default scenario not found",{status:404});const o=await Ye();return ne({analysis:s,defaultScenario:a,entity:s.entity,entitySha:t,projectSlug:o})}function Xx(){var B;const{analysis:e,defaultScenario:t,entity:r,entitySha:s,projectSlug:a}=ot(),o=Ft(),{iframeRef:i}=gi(),[l,c]=j(""),[u,p]=j(400),[h,m]=j(!1),[f,y]=j(!1),[g,x]=j(!1),[b,v]=j(null),[S,w]=j(null),[C,k]=j([]),N=le(()=>{var D;return!((D=e==null?void 0:e.metadata)!=null&&D.executionFlows)||!(e!=null&&e.scenarios)?[]:Ei(e.metadata.executionFlows,e.scenarios).executionFlows},[e]),{interactiveServerUrl:A,isStarting:_,isLoading:M,showIframe:$,iframeKey:I,onIframeLoad:R}=$n({analysisId:e==null?void 0:e.id,scenarioId:t==null?void 0:t.id,scenarioName:t==null?void 0:t.name,projectSlug:a,enabled:!0}),P=ae(async()=>{var T,D,E,W;if(!l.trim()&&C.length===0){v("Please describe how you want to change the scenario or select execution flows");return}y(!0),v(null),w("Generating scenario with AI...");try{const K=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:l,existingScenarios:e.scenarios,scenariosDataStructure:(T=e.metadata)==null?void 0:T.scenariosDataStructure,flowSelections:C.length>0?C:void 0})}),Z=await K.json();if(!K.ok||!Z.success)throw new Error(Z.error||"Failed to generate scenario data");console.log("[CreateScenario] AI generated scenario:",Z.data);const q=Z.data;if(!q.name||!q.data)throw new Error("AI response missing required fields (name or data)");w("Saving new scenario..."),x(!0);const U={name:q.name,description:q.description||l,metadata:{data:q.data,interactiveExamplePath:(D=t.metadata)==null?void 0:D.interactiveExamplePath}},L=[...e.scenarios||[],U],z=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:e,scenarios:L})}),V=await z.json();if(!z.ok||!V.success)throw new Error(V.error||"Failed to save scenario");console.log("[CreateScenario] Scenario saved:",V);const re=(W=(E=V.analysis)==null?void 0:E.scenarios)==null?void 0:W.find(ue=>ue.name===q.name);if(!(re!=null&&re.id)){console.warn("[CreateScenario] Could not find saved scenario ID, navigating to entity page"),w("Scenario created! Redirecting..."),setTimeout(()=>void o(`/entity/${s}`),1e3);return}if(A){w("Capturing screenshot...");const ue=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({serverUrl:A,scenarioId:re.id,projectId:e.projectId,viewportWidth:1440})}),be=await ue.json();!ue.ok||!be.success?(console.error("[CreateScenario] Capture failed:",be),w("Scenario created! (Screenshot capture failed)")):w("Scenario created and captured!")}else w("Scenario created!");setTimeout(()=>{o(`/entity/${s}/scenarios/${re.id}`)},1e3)}catch(K){console.error("[CreateScenario] Error:",K),v(K instanceof Error?K.message:String(K)),w(null)}finally{y(!1),x(!1)}},[l,C,e,t,s,A,o]),F=f||g,Y=ae(()=>{m(!0)},[]),J=ae(T=>{if(!h)return;const D=T.clientX;D>=250&&D<=600&&p(D)},[h]),O=ae(()=>{m(!1)},[]);return te(()=>(h?(document.addEventListener("mousemove",J),document.addEventListener("mouseup",O)):(document.removeEventListener("mousemove",J),document.removeEventListener("mouseup",O)),()=>{document.removeEventListener("mousemove",J),document.removeEventListener("mouseup",O)}),[h,J,O]),d("div",{className:"h-screen bg-white flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-end h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0 flex-1 pb-[14px]",children:[n("button",{onClick:()=>void o(`/entity/${s}`),className:"no-underline shrink-0 bg-transparent border-none cursor-pointer p-0 flex items-center",title:"Back",children:n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),n("h1",{className:"text-base font-semibold text-black m-0 leading-[20px] shrink-0",children:r==null?void 0:r.name}),n("span",{className:"text-xs text-[#9e9e9e] font-mono font-normal whitespace-nowrap overflow-hidden text-ellipsis min-w-0",title:r==null?void 0:r.filePath,children:r==null?void 0:r.filePath})]}),d("div",{className:"flex items-end gap-8 shrink-0",children:[n(ke,{to:`/entity/${s}/scenarios`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-medium border-b-2",style:{color:"#005C75",borderColor:"#005C75"},children:d("span",{className:"flex items-center gap-2",children:["Scenarios",n("span",{className:"inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full bg-[#cbf3fa] text-[#005c75]",children:((B=e==null?void 0:e.scenarios)==null?void 0:B.length)||0})]})}),n(ke,{to:`/entity/${s}/related`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Related Entities"}),n(ke,{to:`/entity/${s}/code`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Code"}),n(ke,{to:`/entity/${s}/data`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Data Structure"}),n(ke,{to:`/entity/${s}/history`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"History"})]})]})}),d("div",{className:"flex flex-1 gap-0 min-h-0 relative",children:[d("aside",{className:"bg-white border-r border-gray-200 overflow-y-auto shrink-0 p-6 flex flex-col",style:{width:`${u}px`},children:[d("div",{className:"mb-6",children:[n("h2",{className:"text-lg font-semibold text-gray-900 mb-2",children:"Default Scenario Preview"}),n("p",{className:"text-sm text-gray-600 leading-relaxed",children:"The preview on the right shows the Default Scenario. Select execution flows and/or describe how you'd like to change it."})]}),N.length>0&&d("details",{className:"mb-4 border border-gray-200 rounded-lg",children:[d("summary",{className:"px-3 py-2 text-sm font-medium text-gray-700 cursor-pointer hover:bg-gray-50 rounded-lg",children:["Select Execution Flows"," ",C.length>0&&d("span",{className:"text-blue-600",children:["(",C.length," selected)"]})]}),n("div",{className:"px-3 pb-3 pt-1 border-t border-gray-100",children:n(Gx,{executionFlows:N,selections:C,onChange:k,disabled:F})})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"prompt",className:"block text-sm font-medium text-gray-700 mb-2",children:"Describe your scenario"}),n("textarea",{id:"prompt",value:l,onChange:T=>c(T.target.value),placeholder:"e.g., Show an empty state with no items...",className:"w-full h-32 px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500 focus:border-blue-500 text-sm resize-none",disabled:F})]}),d("div",{className:"space-y-2",children:[n("button",{onClick:()=>void P(),disabled:F||!l.trim()&&C.length===0,className:"w-full px-4 py-2 bg-blue-600 text-white rounded-lg text-sm font-medium cursor-pointer transition-colors hover:bg-blue-700 disabled:bg-gray-400 disabled:cursor-not-allowed",children:F?"Creating...":"Create Scenario"}),S&&n("div",{className:"text-xs text-blue-600 bg-blue-50 px-2 py-1.5 rounded",children:S}),b&&n("div",{className:"text-xs text-red-600 bg-red-50 px-2 py-1.5 rounded",children:b})]})]}),d("div",{onMouseDown:Y,style:{width:"20px",position:"absolute",top:0,left:`${u-10}px`,bottom:0,cursor:"col-resize",touchAction:"none",userSelect:"none",zIndex:100,pointerEvents:"auto"},children:[n("div",{style:{position:"absolute",left:"10px",top:0,bottom:0,width:"1px",background:h?"#005c75":"rgba(0,0,0,0.1)",transition:"background 0.15s ease"}}),n("div",{style:{position:"absolute",top:"50%",left:"10px",transform:"translate(-50%, -50%)",width:"8px",height:"40px",background:"#fff",border:"1px solid rgba(0,0,0,0.15)",borderRadius:"4px",cursor:"col-resize"}})]}),n("main",{className:"flex-1 overflow-auto flex items-center justify-center min-w-0",style:{backgroundImage:`
|
|
334
|
-
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
335
|
-
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
336
|
-
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
337
|
-
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
338
|
-
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:n(Sa,{scenarioId:t.id||t.name,scenarioName:t.name,iframeUrl:A,isStarting:_,isLoading:M,showIframe:$,iframeKey:I,onIframeLoad:R,projectSlug:a,defaultWidth:1440,defaultHeight:900})})]})]})}const eb=et(function(){return n(Na,{children:n(Xx,{})})}),tb=Object.freeze(Object.defineProperty({__proto__:null,default:eb,loader:Zx,meta:Qx},Symbol.toStringTag,{value:"Module"})),nb=hi;async function rb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{scenarioId:r,url:s,viewportWidth:a,viewportHeight:o}=t;if(!r)return new Response(JSON.stringify({error:"scenarioId is required"}),{status:400,headers:{"Content-Type":"application/json"}});const i=await Ye();if(!i)return new Response(JSON.stringify({error:"Project not initialized"}),{status:400,headers:{"Content-Type":"application/json"}});const{project:l}=await Re(i),c=$e(),u=await c.selectFrom("editor_scenarios").selectAll().where("id","=",r).where("project_id","=",l.id).executeTakeFirst();if(!u)return new Response(JSON.stringify({error:"Scenario not found"}),{status:404,headers:{"Content-Type":"application/json"}});const p=s??u.url??null,h=p&&p.startsWith("/"),m=!p||h?await fi():null,f=nb(),y=di(p,m,f);if(console.log(`[editor-capture-scenario] URL resolution: explicit=${s||"none"}, db=${u.url||"none"}, proxy=${m||"none"}, devServer=${f||"none"} → captureUrl=${y||"none"}`),!y)return new Response(JSON.stringify({error:"Cannot determine capture URL — no proxy or dev server running"}),{status:400,headers:{"Content-Type":"application/json"}});console.log(`[editor-capture-scenario] Starting capture for scenario "${u.name}" (id: ${r}), url: ${y}`);const g=process.env.CODEYAM_ROOT_PATH||process.cwd(),x=Tt(u.name);await ya({scenarioId:r,scenarioSlug:x,scenarioType:u.type||void 0,projectRoot:g}),Pn(),console.log(`[editor-capture-scenario] Active scenario set to "${x}", cache invalidated`),await new Promise($=>setTimeout($,300));const b=H.join(g,".codeyam","editor-scenarios","screenshots");await je.mkdir(b,{recursive:!0});const v=yi(import.meta.url),S=await xi(v,g);console.log(`[editor-capture-scenario] Capture script: ${S}`);let w;const C=u;if(t.dimensions&&t.dimensions.length>0)w=t.dimensions;else if(C.dimensions)try{const $=typeof C.dimensions=="string"?JSON.parse(C.dimensions):C.dimensions;w=Array.isArray($)&&$.length>0?$:[null]}catch{w=[null]}else w=[null];const k=ui(g);let N=null;const A={};let _=[],M=null;for(let $=0;$<w.length;$++){const I=w[$];let R;I&&k[I]?R=k[I]:R=ga({bodyWidth:a||C.viewport_width||void 0,bodyHeight:o||C.viewport_height||void 0,dimension:I||void 0,codeyamRoot:g});const P=I?Qd(I):null,F=P&&w.length>1?`${r}--${P}.png`:`${r}.png`,Y=H.join(b,F),J=`screenshots/${F}`,O=JSON.stringify({url:y,outputPath:Y,viewportWidth:R.width,viewportHeight:R.height,...u.component_name?{selector:"#codeyam-capture"}:{}});console.log(`[editor-capture-scenario] Capture ${I||"default"}: ${R.width}×${R.height} → ${F}`);const B=Date.now(),T=await bi(S,O,g),D=Date.now()-B;if(console.log(`[editor-capture-scenario] Capture ${I||"default"} ${T.success?"succeeded":"FAILED"} in ${D}ms`),!T.success){console.warn(`[editor-capture-scenario] Capture stdout: ${T.output.slice(0,500)}`),console.warn(`[editor-capture-scenario] Capture stderr: ${(T.error||"").slice(0,500)}`),$===0&&(M=T.error||"Unknown capture error");continue}if($===0){N=J;const E=xu(T.output);_=E,await bu(g,r,u.name,E)}I&&(A[I]=J)}if(!N&&M)return new Response(JSON.stringify({error:"Failed to capture screenshot",details:M}),{status:500,headers:{"Content-Type":"application/json"}});if(N){try{await c.schema.alterTable("editor_scenarios").addColumn("screenshot_path","varchar").execute()}catch{}const $={screenshot_path:N,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};Object.keys(A).length>0&&($.screenshot_paths=JSON.stringify(A)),await c.updateTable("editor_scenarios").set($).where("id","=",r).execute()}return _.length>0&&console.warn(`[editor-capture-scenario] ${_.length} client-side error(s) detected:`,_),ft.notifyChange("scenario"),new Response(JSON.stringify({success:!0,screenshotPath:N,screenshotPaths:Object.keys(A).length>0?A:null,clientErrors:_}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-capture-scenario] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const sb=Object.freeze(Object.defineProperty({__proto__:null,action:rb},Symbol.toStringTag,{value:"Module"}));async function ab({request:e,params:t}){const r=t["*"];if(!r)return new Response("Image path is required",{status:400});const s=process.env.CODEYAM_ROOT_PATH||process.cwd(),a=ee.join(s,".codeyam","editor-scenarios","screenshots",r),o=ee.resolve(a),i=ee.resolve(ee.join(s,".codeyam","editor-scenarios","screenshots"));if(!o.startsWith(i))return new Response("Invalid path",{status:403});try{const l=await Pe.stat(a),c=`"${l.mtimeMs}-${l.size}"`;if(e.headers.get("If-None-Match")===c)return new Response(null,{status:304,headers:{ETag:c,"Cache-Control":"public, max-age=300"}});const p=await Pe.readFile(a),h=ee.extname(a).toLowerCase(),m=h===".png"?"image/png":h===".jpg"||h===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(p,{status:200,headers:{"Content-Type":m,"Cache-Control":"public, max-age=300",ETag:c}})}catch{return new Response("Image not found",{status:404})}}const ob=Object.freeze(Object.defineProperty({__proto__:null,loader:ab},Symbol.toStringTag,{value:"Module"}));async function ib({params:e}){const t=e["*"];if(!t)return new Response("Image path is required",{status:400});const r=process.env.CODEYAM_ROOT_PATH||process.cwd(),s=ee.join(r,".codeyam","journal","screenshots",t),a=ee.resolve(s),o=ee.resolve(ee.join(r,".codeyam","journal","screenshots"));if(!a.startsWith(o))return new Response("Invalid path",{status:403});try{const i=await Pe.readFile(s),l=ee.extname(s).toLowerCase(),c=l===".png"?"image/png":l===".jpg"||l===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(i,{status:200,headers:{"Content-Type":c,"Cache-Control":"no-store"}})}catch{return new Response("Image not found",{status:404})}}const lb=Object.freeze(Object.defineProperty({__proto__:null,loader:ib},Symbol.toStringTag,{value:"Module"})),cb=["JSX","React","Element","ReactNode"],db=new Set(["page.tsx","page.ts","index.tsx","index.ts"]);function ub(e){if(e.returnType&&cb.some(t=>e.returnType.includes(t)))return!0;if(e.filePath){const t=e.filePath.split("/").pop()||"";if(db.has(t))return!0}return!1}function pb(e){const t=[],r=[];for(const s of e)ub(s)?t.push(s):r.push(s);return{components:t,functions:r}}function so({components:e,functions:t,scenarioCounts:r,testFileExistence:s,testResults:a,clientErrors:o,totalScenarioCounts:i,entityChangeStatus:l,analysisFailedEntities:c,testCaseCounts:u}){const p=e.map(N=>{const A=r[N.name]||0,_=(i==null?void 0:i[N.name])||0,M=l==null?void 0:l[N.name],$=o==null?void 0:o[N.name],I=A>0&&$&&$.length>0;let R;c!=null&&c.has(N.name)?R="analysis_failed":A===0?M&&_>0?R="needs_recapture":R="missing":I?R="has_errors":R="ok";let P;if(R==="missing"){const F=N.filePath.split("/").pop()||"";F==="layout.tsx"||F==="layout.ts"?P=`This is a layout file — register an app-level scenario with pageFilePath instead of componentName: codeyam editor register '{"name":"${N.name} - Default","pageFilePath":"${N.filePath}","url":"/<route>","dimensions":["Desktop"]}'`:F==="page.tsx"||F==="page.ts"?P=`This is a page file — register an app-level scenario with pageFilePath: codeyam editor register '{"name":"${N.name} - Default","pageFilePath":"${N.filePath}","url":"/<route>","dimensions":["Desktop"]}'`:P=`Register a component scenario via an isolation route: codeyam editor isolate ${N.name} then codeyam editor register '{"name":"${N.name} - Default","componentName":"${N.name}","url":"/isolated-components/${N.name}?s=Default","dimensions":["Desktop"]}'`}else R==="needs_recapture"?P=`This component's code or dependencies changed — recapture existing scenarios to update screenshots: codeyam editor recapture ${N.name}`:R==="analysis_failed"&&(P="Analysis failed for this component (likely timed out due to complex dependencies). The component has partial data but may be missing some dependency schemas. Try re-analyzing: codeyam editor analyze-imports");return{name:N.name,filePath:N.filePath,scenarioCount:R==="needs_recapture"?_:A,status:R,...I?{clientErrors:$}:{},...P?{hint:P}:{}}}),h=t.map(N=>{if(!(N.testFile?s[N.testFile]??!1:!1)){const I=N.testFile?void 0:N.filePath.replace(/\.tsx?$/,".test.ts");return{name:N.name,filePath:N.filePath,testFile:N.testFile,testFileExists:!1,status:"missing",...I?{suggestedTestFile:I}:{}}}const _=N.testFile&&a?a[N.testFile]:void 0;if(!_)return{name:N.name,filePath:N.filePath,testFile:N.testFile,testFileExists:!0,status:"ok"};let M;!_.passing&&_.errorMessage?M="runner_error":_.passing?_.hasEntityNameDescribe?M="ok":M="name_mismatch":M="failing";let $;return M==="name_mismatch"?$=`Tests pass but won't show in the CodeYam UI. Add a top-level describe("${N.name}", ...) block in ${N.testFile}`:M==="runner_error"&&_.errorMessage&&($=`Test runner crashed (not a test failure): ${_.errorMessage}`),{name:N.name,filePath:N.filePath,testFile:N.testFile,testFileExists:!0,testsPassing:_.passing,testsVisibleInUi:_.hasEntityNameDescribe,status:M,..._.errorMessage?{errorMessage:_.errorMessage}:{},...$?{hint:$}:{},...(u==null?void 0:u[N.name])!==void 0?{testCaseCount:u[N.name]}:{}}}),m=p.filter(N=>N.status==="ok").length,f=p.filter(N=>N.status==="has_errors").length,y=p.filter(N=>N.status==="missing").length,g=p.filter(N=>N.status==="needs_recapture").length,x=p.filter(N=>N.status==="analysis_failed").length,b=h.filter(N=>N.status==="ok").length,v=h.filter(N=>N.status==="failing").length,S=h.filter(N=>N.status==="runner_error").length,w=h.filter(N=>N.status==="name_mismatch").length,C=h.filter(N=>N.status==="missing").length,k=h.filter(N=>N.status==="ok"&&N.testCaseCount!==void 0&&N.testCaseCount<3).length;return{components:p,functions:h,summary:{totalComponents:p.length,componentsOk:m,componentsMissing:y,componentsWithErrors:f,componentsNeedingRecapture:g,componentsAnalysisFailed:x,totalFunctions:h.length,functionsOk:b,functionsMissing:C,functionsFailing:v,functionsRunnerError:S,functionsNameMismatch:w,functionsThinCoverage:k,allPassing:y===0&&f===0&&x===0&&v===0&&S===0&&w===0&&C===0}}}function hb({featureStartedAt:e,entityChangeStatus:t}){return t&&Object.keys(t).length>0?{featureStartedAt:e,entityChangeStatus:t}:{featureStartedAt:null,entityChangeStatus:t}}function mb(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>!!(t[r.name]||t[r.filePath]))}async function fb(e,t,r){const a=await e.selectFrom("editor_scenarios").select(["entity_sha"]).select(e.fn.count("id").as("count")).where("project_id","=",t).where("entity_sha","is not",null).groupBy("entity_sha").execute();if(a.length===0)return[];const o=a.map(w=>w.entity_sha),i=await e.selectFrom("analyses").select("entity_sha").where("entity_sha","in",o).groupBy("entity_sha").execute(),l=new Set(i.map(w=>w.entity_sha)),c=a.filter(w=>!l.has(w.entity_sha));if(c.length===0)return[];const u=c.map(w=>w.entity_sha),p=await e.selectFrom("entities").select(["sha","name","file_path"]).where("sha","in",u).execute(),h=new Map(p.map(w=>[w.sha,w.name])),m=new Map(p.map(w=>[w.sha,w.file_path])),f=[...new Set(p.map(w=>`${w.name}::${w.file_path}`).filter(w=>!w.startsWith("::")&&!w.endsWith("::")))];let y=new Set;if(f.length>0){const w=[...new Set(p.map(k=>k.name).filter(Boolean))],C=await e.selectFrom("entities").innerJoin("analyses","analyses.entity_sha","entities.sha").select(["entities.name","entities.file_path"]).where("entities.name","in",w).groupBy(["entities.name","entities.file_path"]).execute();y=new Set(C.map(k=>`${k.name}::${k.file_path}`))}const g=c.filter(w=>{const C=w.entity_sha,k=h.get(C),N=m.get(C);if(!k)return!1;const A=`${k}::${N}`;return!y.has(A)});if(g.length===0)return[];const x=g.map(w=>w.entity_sha),b=await e.selectFrom("editor_scenarios").select(["entity_sha","component_name"]).where("project_id","=",t).where("entity_sha","in",x).where("component_name","is not",null).groupBy("entity_sha").execute(),v=new Map(b.map(w=>[w.entity_sha,w.component_name]));let S=new Set;if(r){const w=r.replace("T"," ").replace(/\.\d{3}Z$/,""),C=await e.selectFrom("editor_scenarios").select("entity_sha").where("project_id","=",t).where("entity_sha","in",x).where(k=>k.or([k("created_at",">=",w),k("updated_at",">=",w)])).groupBy("entity_sha").execute();S=new Set(C.map(k=>k.entity_sha))}return g.map(w=>{const C=w.entity_sha;return{entitySha:C,name:h.get(C)||v.get(C)||"Unknown",scenarioCount:Number(w.count),preExisting:r?!S.has(C):!1}})}async function gb(e,t,r){let s=e.selectFrom("editor_scenarios").select(["component_name","name","url"]).where("project_id","=",t).where("component_name","is not",null).where("url","is not",null);if(r){const l=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(c=>c.or([c("created_at",">=",l),c("updated_at",">=",l)]))}const o=(await s.execute()).filter(l=>l.url&&!ma(l.url));if(o.length===0)return[];const i=new Map;for(const l of o){const c=`${l.component_name}::${l.url}`,u=i.get(c);u?u.scenarioNames.push(l.name):i.set(c,{componentName:l.component_name,scenarioNames:[l.name],url:l.url})}return[...i.values()]}async function Gl(e,t,r){let s=e.selectFrom("editor_scenarios").select(["component_name"]).select(e.fn.count("id").as("count")).where("project_id","=",t).where("component_name","is not",null).groupBy("component_name");if(r){const i=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(l=>l.or([l("created_at",">=",i),l("updated_at",">=",i)]))}const a=await s.execute(),o={};for(const i of a)i.component_name&&(o[i.component_name]=Number(i.count));return o}async function ql(e,t,r){let s=e.selectFrom("editor_scenarios").select(["page_file_path"]).select(e.fn.count("id").as("count")).where("project_id","=",t).where("component_name","is",null).where("page_file_path","is not",null).groupBy("page_file_path");if(r){const i=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(l=>l.or([l("created_at",">=",i),l("updated_at",">=",i)]))}const a=await s.execute(),o={};for(const i of a)i.page_file_path&&(o[i.page_file_path]=Number(i.count));return o}async function yb(e,t,r){var i;let s=e.selectFrom("editor_scenarios").select(["component_name","component_path","page_file_path","name"]).where("project_id","=",t).where("entity_sha","is",null).where(l=>l.or([l("component_path","is not",null),l("page_file_path","is not",null)]));if(r){const l=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(c=>c.or([c("created_at",">=",l),c("updated_at",">=",l)]))}const a=await s.execute();if(a.length===0)return[];const o=new Map;for(const l of a){const c=l,u=c.component_path||c.page_file_path,p=o.get(u);if(p)p.scenarioNames.push(c.name);else{const h=c.component_name||((i=u.split("/").pop())==null?void 0:i.replace(/\.\w+$/,""))||u;o.set(u,{name:h,filePath:u,scenarioNames:[c.name]})}}return[...o.values()].map(l=>({name:l.name,filePath:l.filePath,scenarioCount:l.scenarioNames.length,scenarioNames:l.scenarioNames}))}function xb(e){const t=new Map;for(const r of e){const s=t.get(r.name);s?s.push(r):t.set(r.name,[r])}for(const[r,s]of t)s.length<=1&&t.delete(r);return t}function Au(e){const{scenarios:t,entityChangeStatus:r}=e;if(!r||Object.keys(r).length===0)return[];const s=[];for(const a of t){if(a.updatedInSession||!a.entityName)continue;const o=r[a.entityName];o&&o.status!=="new"&&s.push({scenarioName:a.name,entityName:a.entityName,status:o})}return s}function bb(e,t){const r={},s=new Map;for(const a of t){const o=Kt({componentName:a.componentName,pageFilePath:a.pageFilePath,url:a.url});o&&s.set(a.name,o)}for(const[,a]of Object.entries(e)){if(a.errors.length===0)continue;let o=s.get(a.scenarioName);if(!o){const i=a.scenarioName.indexOf(" - ");o=i>=0?a.scenarioName.slice(0,i):a.scenarioName}o&&(r[o]||(r[o]=[]),r[o].push(...a.errors))}return r}async function ju(e){const{scenarios:t,codeyamRoot:r,proxyUrl:s,devUrl:a,db:o,importMetaUrl:i,onProgress:l}=e,c={recaptured:[],failed:[]};if(t.length===0)return c;const u=yi(i),p=await xi(u,r),h=H.join(r,".codeyam","editor-scenarios","screenshots");for(const m of t)try{const f=Tt(m.name);await ya({scenarioId:m.id,scenarioSlug:f,projectRoot:r}),Pn(),await new Promise(w=>setTimeout(w,300));const y=di(m.url||null,s,a);if(!y){c.failed.push({name:m.name,error:"No capture URL available"});continue}const g=H.join(h,`${m.id}.png`);let x;try{const w=m.dimensions?JSON.parse(m.dimensions):null;Array.isArray(w)&&w.length>0&&(x=w[0])}catch{}const b=ga({bodyWidth:m.viewport_width||void 0,bodyHeight:m.viewport_height||void 0,dimension:x,codeyamRoot:r}),v=JSON.stringify({url:y,outputPath:g,viewportWidth:b.width,viewportHeight:b.height,...m.component_name?{selector:"#codeyam-capture"}:{}});l==null||l(`Capturing "${m.name}"...`),console.log(`[recapture] Capturing "${m.name}" at ${b.width}x${b.height}`);const S=await bi(p,v,r);if(S.success)await o.updateTable("editor_scenarios").set({screenshot_path:`screenshots/${m.id}.png`,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")}).where("id","=",m.id).execute(),c.recaptured.push(m.name),l==null||l(`Recaptured "${m.name}"`),console.log(`[recapture] Succeeded: "${m.name}"`);else{const w=S.error||"Unknown capture error";c.failed.push({name:m.name,error:w}),l==null||l(`Failed: "${m.name}" — ${w}`),console.warn(`[recapture] Failed: "${m.name}": ${w}`)}}catch(f){const y=f instanceof Error?f.message:String(f);c.failed.push({name:m.name,error:y}),console.warn(`[recapture] Error for "${m.name}": ${y}`)}return c}const vb=Object.freeze(Object.defineProperty({__proto__:null,recaptureScenarios:ju},Symbol.toStringTag,{value:"Module"}));async function wb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=Se()||process.cwd(),r=await Ye();if(!r)return Response.json({error:"No project configured"},{status:400});const{project:s}=await Re(r),a=$e(),o=process.env.CODEYAM_ROOT_PATH||process.cwd(),i=H.join(t,".codeyam","editor-step.json");let l=null;try{const C=G.readFileSync(i,"utf8");l=JSON.parse(C).featureStartedAt||null}catch{}try{await Je();const C=await Xe({})||[];await Zd(a,C.map(k=>{var N,A;return{sha:k.sha,name:k.name,filePath:k.filePath||"",isDefaultExport:((N=k.metadata)==null?void 0:N.notExported)===!1&&((A=k.metadata)==null?void 0:A.namedExport)===!1}}))}catch{}const c=await a.selectFrom("editor_scenarios").select(["id","name","component_name","component_path","page_file_path","url","display_name","dimensions","viewport_width","viewport_height","created_at","updated_at"]).where("project_id","=",s.id).orderBy("created_at","asc").execute(),u=kt(c,C=>`${C.name}::${C.url||"/"}`),p=u.map(C=>({componentName:C.component_name||null,componentPath:C.component_path||null,pageFilePath:C.page_file_path??null,url:C.url??null,displayName:C.display_name??null})),{entityChangeStatus:h}=await fr({projectRoot:t,scenarioInputs:p});if(Object.keys(h).length===0)return Response.json({type:"done",recaptured:[],failed:[],total:0,note:"No entity changes detected."});const m=l?Qr(l):null,f=u.map(C=>({name:C.name,entityName:Kt({componentName:C.component_name,pageFilePath:C.page_file_path,url:C.url}),updatedInSession:m?ci({created_at:C.created_at,updated_at:C.updated_at},m):!1})),y=Au({scenarios:f,entityChangeStatus:h});if(y.length===0)return Response.json({type:"done",recaptured:[],failed:[],total:0,note:"All scenarios are up to date."});const g=new Set(y.map(C=>C.scenarioName)),x=u.filter(C=>g.has(C.name)).map(C=>({id:C.id,name:C.name,url:C.url,component_name:C.component_name,dimensions:C.dimensions,viewport_width:C.viewport_width,viewport_height:C.viewport_height})),b=await fi(),v=hi(),S=new Map(u.map(C=>[C.name,C])),w=new ReadableStream({async start(C){const k=A=>{C.enqueue(new TextEncoder().encode(JSON.stringify(A)+`
|
|
339
|
-
`))};k({type:"start",total:y.length});const N=await ju({scenarios:x,codeyamRoot:o,proxyUrl:b,devUrl:v,db:a,importMetaUrl:import.meta.url,onProgress:A=>{if(A.startsWith('Recaptured "')){const _=A.slice(12,-1);k({type:"success",name:_});const M=S.get(_);if(M)try{kx(o,M.id,`screenshots/${M.id}.png`)}catch{}}else if(A.startsWith('Failed: "')){const _=A.match(/^Failed: "(.+?)" — (.+)$/);_&&k({type:"failure",name:_[1],error:_[2]})}else if(A.startsWith('Capturing "')){const _=A.slice(11,A.indexOf('"',11));k({type:"capturing",name:_})}}});k({type:"done",recaptured:N.recaptured,failed:N.failed,total:y.length}),C.close()}});return new Response(w,{headers:{"Content-Type":"application/x-ndjson","Transfer-Encoding":"chunked"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-recapture-stale] Error:",t),Response.json({error:r},{status:500})}}const Nb=Object.freeze(Object.defineProperty({__proto__:null,action:wb},Symbol.toStringTag,{value:"Module"}));async function Sb({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{scenarioId:r,name:s}=t;if(!r||!(s!=null&&s.trim()))return Response.json({error:"Missing required fields: scenarioId, name"},{status:400});const a=s.trim();await $e().updateTable("editor_scenarios").set({name:a,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")}).where("id","=",r).execute();const l=Se()||process.cwd(),u=Cx(l).find(p=>p.id===r);return u&&wu(l,r,{...u.metadata,name:a,updatedAt:new Date().toISOString()}),Response.json({success:!0,name:a})}catch(t){return console.error("[API] Error renaming scenario:",t),Response.json({error:"Failed to rename scenario",details:t instanceof Error?t.message:String(t)},{status:500})}}const Cb=Object.freeze(Object.defineProperty({__proto__:null,action:Sb},Symbol.toStringTag,{value:"Module"}));async function kb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),r=t.mode||"overwrite",s=t.localStorage,a=Se()||process.cwd(),o=ee.join(a,".codeyam"),i=ee.join(o,"active-scenario.json");if(!pe.existsSync(i))return new Response(JSON.stringify({error:"No active scenario"}),{status:400,headers:{"Content-Type":"application/json"}});const c=JSON.parse(pe.readFileSync(i,"utf-8")).scenarioId;if(!c)return new Response(JSON.stringify({error:"No active scenario ID"}),{status:400,headers:{"Content-Type":"application/json"}});const u=ee.join(o,"editor-scenarios"),p=Yr(a);let h=null;if(p){const f=ee.join(o,"tmp",`export-${Date.now()}.json`);pe.mkdirSync(ee.dirname(f),{recursive:!0});const y=await by(p,f);if(!y.success)return new Response(JSON.stringify({error:`Export failed: ${y.error}`}),{status:500,headers:{"Content-Type":"application/json"}});try{h=JSON.parse(pe.readFileSync(f,"utf-8"))}finally{try{pe.unlinkSync(f)}catch{}}}if(!h&&!s)return new Response(JSON.stringify({error:"No data to save: no seed adapter found and no localStorage provided"}),{status:400,headers:{"Content-Type":"application/json"}});let m=c;if(r==="new"){m=lr.randomUUID();const f=ee.join(u,`${c}.json`);let y={_metadata:{type:"application"}};pe.existsSync(f)&&(y=JSON.parse(pe.readFileSync(f,"utf-8"))),h&&(y.seed=h),s&&(y.localStorage=s),pe.writeFileSync(ee.join(u,`${m}.json`),JSON.stringify(y,null,2)),h&&pe.writeFileSync(ee.join(u,`${m}.seed.json`),JSON.stringify(h,null,2))}else{const f=ee.join(u,`${c}.json`);if(pe.existsSync(f)){const y=JSON.parse(pe.readFileSync(f,"utf-8"));h&&(y.seed=h),s&&(y.localStorage=s),pe.writeFileSync(f,JSON.stringify(y,null,2))}h&&pe.writeFileSync(ee.join(u,`${c}.seed.json`),JSON.stringify(h,null,2))}return Pn(),new Response(JSON.stringify({success:!0,mode:r,scenarioId:m}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const _b=Object.freeze(Object.defineProperty({__proto__:null,action:kb},Symbol.toStringTag,{value:"Module"}));async function Eb({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});const t=await e.json(),{prompt:r}=t;if(!r)return Response.json({error:"Missing prompt"},{status:400});const s=Se()||process.cwd(),a=H.join(s,".codeyam","tmp");G.mkdirSync(a,{recursive:!0});const o=Uo.randomUUID().slice(0,8),i=H.join(a,`scenario-prompt-${o}.md`);return G.writeFileSync(i,r,"utf8"),Response.json({promptFile:i})}const Ab=Object.freeze(Object.defineProperty({__proto__:null,action:Eb},Symbol.toStringTag,{value:"Module"}));let bn=null;async function jb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{scenarioSlug:r,scenarioId:s,scenarioName:a,scenarioType:o,skipBroadcast:i}=t;if(!r||typeof r!="string")return new Response(JSON.stringify({error:"scenarioSlug is required"}),{status:400,headers:{"Content-Type":"application/json"}});const l=Se()||process.cwd(),c=ee.join(l,".codeyam"),u=ee.join(c,"active-scenario.json");let p=o||null;if(!p&&s){const x=ee.join(c,"editor-scenarios",`${s}.json`);try{pe.existsSync(x)&&(p=JSON.parse(pe.readFileSync(x,"utf-8")).type||null)}catch{}}let h=null;try{pe.existsSync(u)&&(h=JSON.parse(pe.readFileSync(u,"utf-8")).scenarioId||null)}catch{}const m=h===s&&s!==null;pe.mkdirSync(c,{recursive:!0}),pe.writeFileSync(u,JSON.stringify({scenarioSlug:r,scenarioName:a||null,scenarioId:s||null,type:p,dataFile:s?`.codeyam/editor-scenarios/${s}.json`:null,switchedAt:new Date().toISOString()},null,2));let f=null;const y=p==="application"||p==="user";if(y&&s&&m)console.log(`[editor-switch-scenario] Same scenario "${r}" already active — skipping seed`),f={success:!0};else if(y&&s)if(bn&&bn.scenarioId===s)console.log(`[editor-switch-scenario] Seed already in progress for "${s}" — reusing`),f=await bn.promise;else{const x=Yr(l),b=ee.join(c,"editor-scenarios",`${s}.seed.json`);if(x&&pe.existsSync(b)){console.log(`[editor-switch-scenario] Running seed adapter for ${p} scenario "${a||r}"`);const v=pi(x,b).then(S=>{const w={success:S.success,error:S.error};if(S.success){console.log(`[editor-switch-scenario] Seed adapter completed in ${S.durationMs}ms`);const C=S.sessionCookies&&S.sessionCookies.length>0,k=S.externalApis&&Object.keys(S.externalApis).length>0;if(C||k)try{const N=ee.join(c,"editor-scenarios",`${s}.json`);if(pe.existsSync(N)){const A=JSON.parse(pe.readFileSync(N,"utf-8"));C&&(A.sessionCookies=S.sessionCookies),k&&(A.externalApis={...A.externalApis,...S.externalApis}),pe.writeFileSync(N,JSON.stringify(A,null,2))}}catch{}}else console.warn(`[editor-switch-scenario] Seed adapter failed: ${S.error}`);return w});bn={scenarioId:s,promise:v};try{f=await v}finally{bn&&bn.scenarioId===s&&(bn=null)}}else x||(console.warn("[editor-switch-scenario] No seed adapter found — skipping database seeding"),f={success:!1,error:"No seed adapter found"})}Pn();const g=i?0:wi();return new Response(JSON.stringify({success:!0,scenarioSlug:r,refreshedClients:g,seeded:y,...f?{seedResult:f}:{}}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Pb=Object.freeze(Object.defineProperty({__proto__:null,action:jb},Symbol.toStringTag,{value:"Module"}));var Ee;(e=>{(t=>{t.OPENAI_GPT5_1="openai/gpt-5.1",t.OPENAI_GPT5="openai/gpt-5",t.OPENAI_GPT5_MINI="openai/gpt-5-mini",t.OPENAI_GPT5_NANO="openai/gpt-5-nano",t.OPENAI_GPT4_1="openai/gpt-4.1",t.OPENAI_GPT4_1_MINI="openai/gpt-4.1-mini",t.OPENAI_GPT4_O="openai/gpt-4o",t.OPENAI_GPT4_O_MINI="openai/gpt-4o-mini",t.OPENAI_GPT_OSS_120B_GROQ="openai/gpt-oss-120b-groq",t.OPENAI_GPT_OSS_120B_DEEPINFRA="openai/gpt-oss-120b-deepinfra",t.QWEN3_235B_INSTRUCT_DEEPINFRA="qwen/qwen3-235b-instruct-deepinfra",t.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA="qwen/qwen3-coder-480b-instruct-deepinfra",t.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA="google/gemini-2.5-pro-deepinfra",t.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA="google/gemini-2.5-flash-deepinfra",t.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER="google/gemini-2.5-flash-lite-openrouter",t.META_LLAMA_4_MAVERICK_OPENROUTER="meta-llama/llama-4-maverick-openrouter",t.DEEPSEEK_V3_1_TERMINUS_OPENROUTER="deepseek/v3.1-terminus-openrouter",t.ANTHROPIC_CLAUDE_4_5_HAIKU="anthropic/claude-4.5-haiku",t.ANTHROPIC_CLAUDE_4_5_SONNET="anthropic/claude-4.5-sonnet",t.ANTHROPIC_CLAUDE_4_5_OPUS="anthropic/claude-4.5-opus",t.PHIND_CODELLAMA="phind/codellama",t.GOOGLE_GEMINI_PRO="google/gemini-pro",t.GOOGLE_PALM_2_CODE_CHAT_32K="google/palm-2-code-chat-32k",t.META_CODELLAMA_34B_INSTRUCT="meta-llama/codellama-34b-instruct",t.OPENAI_GPT4_PREVIEW="openai/gpt-4-preview"})(e.Model||(e.Model={}))})(Ee||(Ee={}));function Pu(e,t){return e?Object.values(Ee.Model).includes(e)?e:(console.warn(`Invalid model in environment variable: ${e}. Falling back to ${t}`),t):t}const Tu=Pu(process.env.DEFAULT_SMALLER_MODEL,Ee.Model.OPENAI_GPT4_1_MINI),Tb=Pu(process.env.DEFAULT_LARGER_MODEL,Ee.Model.OPENAI_GPT4_1),Pt={name:"OpenAI",baseURL:"https://api.openai.com/v1",apiKeyEnvVar:"OPENAI_API_KEY"},ao={name:"OpenRouter",baseURL:"https://openrouter.ai/api/v1",apiKeyEnvVar:"OPENROUTER_API_KEY"},Mb={name:"Groq",baseURL:"https://api.groq.com/openai/v1",apiKeyEnvVar:"GROQ_API_KEY"},oo={name:"Anthropic",baseURL:"https://api.anthropic.com/v1/",apiKeyEnvVar:"ANTHROPIC_API_KEY"},nn={name:"DeepInfra",baseURL:"https://api.deepinfra.com/v1/",apiKeyEnvVar:"DEEPINFRA_API_KEY"},$b={[Ee.Model.OPENAI_GPT5_1]:{id:Ee.Model.OPENAI_GPT5_1,provider:Pt,apiModelName:"gpt-5.1",maxCompletionTokens:128e3,pricing:{input:1.25,output:10},reasoningEffort:"none"},[Ee.Model.OPENAI_GPT5]:{id:Ee.Model.OPENAI_GPT5,provider:Pt,apiModelName:"gpt-5",maxCompletionTokens:128e3,pricing:{input:1.25,output:10},reasoningEffort:"minimal"},[Ee.Model.OPENAI_GPT5_MINI]:{id:Ee.Model.OPENAI_GPT5_MINI,provider:Pt,apiModelName:"gpt-5-mini",maxCompletionTokens:128e3,pricing:{input:.25,output:2},reasoningEffort:"minimal"},[Ee.Model.OPENAI_GPT5_NANO]:{id:Ee.Model.OPENAI_GPT5_NANO,provider:Pt,apiModelName:"gpt-5-nano",maxCompletionTokens:128e3,pricing:{input:.05,output:.4},reasoningEffort:"minimal"},[Ee.Model.OPENAI_GPT4_1]:{id:Ee.Model.OPENAI_GPT4_1,provider:Pt,apiModelName:"gpt-4.1",maxCompletionTokens:32768,pricing:{input:2,output:8}},[Ee.Model.OPENAI_GPT4_1_MINI]:{id:Ee.Model.OPENAI_GPT4_1_MINI,provider:Pt,apiModelName:"gpt-4.1-mini",maxCompletionTokens:32768,pricing:{input:.4,output:1.6}},[Ee.Model.OPENAI_GPT4_O]:{id:Ee.Model.OPENAI_GPT4_O,provider:Pt,apiModelName:"gpt-4o",maxCompletionTokens:16384,pricing:{input:2.5,output:10}},[Ee.Model.OPENAI_GPT4_O_MINI]:{id:Ee.Model.OPENAI_GPT4_O_MINI,provider:Pt,apiModelName:"gpt-4o-mini",maxCompletionTokens:16384,pricing:{input:.15,output:.6}},[Ee.Model.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER]:{id:Ee.Model.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER,provider:ao,apiModelName:"google/gemini-2.5-flash-lite",maxCompletionTokens:1048576,pricing:{input:.1,output:.4},reasoningEffort:"minimal"},[Ee.Model.META_LLAMA_4_MAVERICK_OPENROUTER]:{id:Ee.Model.META_LLAMA_4_MAVERICK_OPENROUTER,provider:ao,apiModelName:"meta-llama/llama-4-maverick",maxCompletionTokens:1048576,pricing:{input:.15,output:.6},reasoningEffort:"minimal"},[Ee.Model.DEEPSEEK_V3_1_TERMINUS_OPENROUTER]:{id:Ee.Model.DEEPSEEK_V3_1_TERMINUS_OPENROUTER,provider:ao,apiModelName:"deepseek/deepseek-v3.1-terminus",maxCompletionTokens:163840,pricing:{input:.23,output:.9},reasoningEffort:"minimal"},[Ee.Model.OPENAI_GPT_OSS_120B_GROQ]:{id:Ee.Model.OPENAI_GPT_OSS_120B_GROQ,provider:Mb,apiModelName:"openai/gpt-oss-120b",maxCompletionTokens:131072,pricing:{input:.15,output:.75},reasoningEffort:"low"},[Ee.Model.OPENAI_GPT_OSS_120B_DEEPINFRA]:{id:Ee.Model.OPENAI_GPT_OSS_120B_DEEPINFRA,provider:nn,apiModelName:"openai/gpt-oss-120b-Turbo",maxCompletionTokens:32768,pricing:{input:.15,output:.6},reasoningEffort:"low"},[Ee.Model.QWEN3_235B_INSTRUCT_DEEPINFRA]:{id:Ee.Model.QWEN3_235B_INSTRUCT_DEEPINFRA,provider:nn,apiModelName:"Qwen/Qwen3-235B-A22B-Instruct-2507",maxCompletionTokens:32768,pricing:{input:.09,output:.57}},[Ee.Model.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA]:{id:Ee.Model.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA,provider:nn,apiModelName:"Qwen/Qwen3-Coder-480B-A35B-Instruct",maxCompletionTokens:32768,pricing:{input:.4,output:1.6}},[Ee.Model.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA]:{id:Ee.Model.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA,provider:nn,apiModelName:"google/gemini-2.5-pro",maxCompletionTokens:1048576,pricing:{input:1.25,output:10},reasoningEffort:"low"},[Ee.Model.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA]:{id:Ee.Model.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA,provider:nn,apiModelName:"google/gemini-2.5-flash",maxCompletionTokens:1048576,pricing:{input:.3,output:2.5},reasoningEffort:"low"},[Ee.Model.ANTHROPIC_CLAUDE_4_5_HAIKU]:{id:Ee.Model.ANTHROPIC_CLAUDE_4_5_HAIKU,provider:oo,apiModelName:"claude-haiku-4-5",maxCompletionTokens:2e5,pricing:{input:1,output:5}},[Ee.Model.ANTHROPIC_CLAUDE_4_5_SONNET]:{id:Ee.Model.ANTHROPIC_CLAUDE_4_5_SONNET,provider:oo,apiModelName:"claude-sonnet-4-5",maxCompletionTokens:2e5,pricing:{input:3,output:15}},[Ee.Model.ANTHROPIC_CLAUDE_4_5_OPUS]:{id:Ee.Model.ANTHROPIC_CLAUDE_4_5_OPUS,provider:oo,apiModelName:"claude-opus-4-5",maxCompletionTokens:2e5,pricing:{input:5,output:25}},[Ee.Model.PHIND_CODELLAMA]:{id:Ee.Model.PHIND_CODELLAMA,provider:Pt,apiModelName:"phind-codellama",maxCompletionTokens:16384,pricing:{input:0,output:0}},[Ee.Model.GOOGLE_GEMINI_PRO]:{id:Ee.Model.GOOGLE_GEMINI_PRO,provider:nn,apiModelName:"google/gemini-pro",maxCompletionTokens:32768,pricing:{input:0,output:0}},[Ee.Model.GOOGLE_PALM_2_CODE_CHAT_32K]:{id:Ee.Model.GOOGLE_PALM_2_CODE_CHAT_32K,provider:nn,apiModelName:"google/palm-2-code-chat-32k",maxCompletionTokens:32768,pricing:{input:0,output:0}},[Ee.Model.META_CODELLAMA_34B_INSTRUCT]:{id:Ee.Model.META_CODELLAMA_34B_INSTRUCT,provider:nn,apiModelName:"meta-llama/codellama-34b-instruct",maxCompletionTokens:16384,pricing:{input:0,output:0}},[Ee.Model.OPENAI_GPT4_PREVIEW]:{id:Ee.Model.OPENAI_GPT4_PREVIEW,provider:Pt,apiModelName:"gpt-4-preview",maxCompletionTokens:128e3,pricing:{input:0,output:0}}};function ka(e){const t=$b[e];if(!t)throw new Error(`Unknown model: ${e}`);return t}function Ib(e){return ka(e).maxCompletionTokens}function Fb(e){return ka(e).pricing}const Ql=1e6;function Db({model:e,usage:t}){const r=Fb(e);return r?t.prompt_tokens*(r.input/Ql)+t.completion_tokens*(r.output/Ql):null}function Rb({chatRequest:e,chatCompletion:t,model:r}){if("error"in t&&t.error)return{model:r,prompt_type:e.type,system_message:e.messages.system,prompt_text:e.messages.prompt,response:JSON.stringify(t,null,2),error:JSON.stringify(t.error)};const s=t.usage||{prompt_tokens:0,completion_tokens:0},a=Db({model:r,usage:s});return{model:r,prompt_type:e.type,system_message:e.messages.system,prompt_text:e.messages.prompt,response:JSON.stringify(t,null,2),input_tokens:s.prompt_tokens,output_tokens:s.completion_tokens,cost:a?Math.round(a*1e5)/1e5:void 0}}function Ob({messages:{system:e,prompt:t},model:r,responseType:s,jsonSchema:a}){const o=r??Tu,i=ka(o);Ib(o);const l=[];return e&&l.push({role:"system",content:e}),l.push({role:"user",content:[{type:"text",text:t}]}),{messages:l,model:i.apiModelName,response_format:s==="json_schema"&&a?{type:"json_schema",json_schema:{name:a.name,schema:a.schema,strict:a.strict!==!1}}:{type:s&&s=="text"?"text":"json_object"},...i.reasoningEffort&&{reasoning_effort:i.reasoningEffort}}}let Rr=null;function Lb(e){if(typeof process>"u"||!process.versions||!process.versions.node)return!1;try{const t=zr(e,".codeyam","secrets.json");if(St(t)){const s=JSON.parse(Nl(t,"utf-8"));if(s.anthropicApiKey||s.ANTHROPIC_API_KEY||s.openAiApiKey||s.OPENAI_API_KEY||s.groqApiKey||s.GROQ_API_KEY)return!0}const r=zr(Zh(),".codeyam","secrets.json");if(St(r)){const s=JSON.parse(Nl(r,"utf-8"));if(s.anthropicApiKey||s.ANTHROPIC_API_KEY||s.openAiApiKey||s.OPENAI_API_KEY||s.groqApiKey||s.GROQ_API_KEY)return!0}return!!(process.env.OPENAI_API_KEY||process.env.ANTHROPIC_API_KEY||process.env.GROQ_API_KEY)}catch{return!1}}function zb(e){if(typeof process>"u"||!process.versions||!process.versions.node)return!1;const t=zr(e,".claude");return St(t)}function B_(e){if(Lb(e))return Rr={mode:"direct-api",projectRoot:e},"direct-api";if(zb(e))return Rr={mode:"claude-cli",projectRoot:e},"claude-cli";throw new Error(`No AI service configured. Please either:
|
|
340
|
-
1. Add an API key to ~/.codeyam/secrets.json (shared across projects) or .codeyam/secrets.json (project-specific), or
|
|
341
|
-
2. Use Claude Code CLI (detected by .claude folder)`)}function Bb(){return(Rr==null?void 0:Rr.mode)==="claude-cli"}const jo="/tmp/codeyam-e2e-tracking";let io,lo;function Yb(){return io===void 0&&(io=process.env.CODEYAM_E2E_TRACK_DATA==="true"),io}function Ub(){return lo===void 0&&(lo=!process.env.CODEYAM_LLM_FIXTURES_DIR),lo}function Wb(){G.existsSync(jo)||G.mkdirSync(jo,{recursive:!0})}function Jb(e){const t=JSON.stringify(e,null,0);return Uo.createHash("md5").update(t).digest("hex")}function Hb(e,t,r){return[e].join("_")+".json"}function Mu(e,t,r,s){if(!Yb())return;Wb();const a=Hb(e),o=H.join(jo,a),i=Jb(t);if(Ub()){const l={timestamp:Date.now(),checkpoint:e,entityName:r,scenarioName:s,dataHash:i,data:t};G.writeFileSync(o,JSON.stringify(l,null,2)),console.log(`[E2E Tracking] First run - saved snapshot: ${e} hash=${i.substring(0,8)}`)}else if(G.existsSync(o)){const l=JSON.parse(G.readFileSync(o,"utf-8")),c={matches:i===l.dataHash,firstRunHash:l.dataHash};if(c.matches)console.log(`[E2E Tracking] Match at ${e} hash=${i.substring(0,8)}`);else{c.differences=Po(l.data,t),console.log(`[E2E Tracking] MISMATCH at ${e}`),console.log(` First run hash: ${l.dataHash}`),console.log(` Second run hash: ${i}`);const u=o.replace(".json","_DIFF.json");G.writeFileSync(u,JSON.stringify({checkpoint:e,entityName:r,scenarioName:s,firstRun:l.data,secondRun:t,differences:c.differences},null,2)),console.log(` Diff saved to: ${u}`)}}else console.log(`[E2E Tracking] No first-run snapshot found for: ${e}`)}function Po(e,t,r=""){const s=[];if(typeof e!=typeof t)return s.push(`${r||"root"}: type mismatch (${typeof e} vs ${typeof t})`),s;if(e===null||t===null)return e!==t&&s.push(`${r||"root"}: ${JSON.stringify(e)} vs ${JSON.stringify(t)}`),s;if(Array.isArray(e)&&Array.isArray(t)){e.length!==t.length&&s.push(`${r||"root"}: array length ${e.length} vs ${t.length}`);const a=Math.max(e.length,t.length);for(let o=0;o<a;o++)s.push(...Po(e[o],t[o],`${r}[${o}]`));return s}if(typeof e=="object"&&typeof t=="object"){const a=Object.keys(e),o=Object.keys(t),i=Array.from(new Set([...a,...o]));for(const l of i){const c=e[l],u=t[l];l in e?l in t?s.push(...Po(c,u,`${r?r+".":""}${l}`)):s.push(`${r?r+".":""}${l}: missing in second run`):s.push(`${r?r+".":""}${l}: missing in first run`)}return s}if(e!==t){const a=JSON.stringify(e),o=JSON.stringify(t);a.length<100&&o.length<100?s.push(`${r||"root"}: ${a} vs ${o}`):s.push(`${r||"root"}: values differ (${a.length} chars vs ${o.length} chars)`)}return s}const Zl=Ho(Jo),Xl=2;function Vb(e){try{return JSON.parse(e),{valid:!0}}catch(t){return{valid:!1,error:t.message}}}function Kb(e){const t=e.trim(),r=(t.match(/\{/g)||[]).length,s=(t.match(/\}/g)||[]).length,a=(t.match(/\[/g)||[]).length,o=(t.match(/\]/g)||[]).length,i=(t.match(new RegExp('(?<!\\\\)"',"g"))||[]).length;return r>s||a>o||i%2!==0||!t.endsWith("}")&&!t.endsWith("]")}async function $u(e,t,r,s=0){try{const a=`${e}
|
|
342
|
-
|
|
343
|
-
${t}${r?`
|
|
344
|
-
|
|
345
|
-
Respond with valid JSON only.`:""}`;let o="claude";try{const{stdout:c}=await Zl("which claude",{timeout:1e3});o=c.trim()}catch{const c=["/usr/local/bin/claude",`${process.env.HOME}/.nvm/versions/node/v20.16.0/bin/claude`,`${process.env.HOME}/.npm-global/bin/claude`];for(const u of c)try{await Zl(`test -x "${u}"`,{timeout:1e3}),o=u;break}catch{}}const{stdout:i,stderr:l}=await new Promise((c,u)=>{var g,x,b;const h=xt(o,["-p",a,"--output-format","json","--max-turns","1"],{env:{...process.env}});(g=h.stdin)==null||g.end();let m="",f="";(x=h.stdout)==null||x.on("data",v=>{const S=v.toString();m+=S}),(b=h.stderr)==null||b.on("data",v=>{f+=v.toString()}),h.on("error",v=>{u(v)}),h.on("close",(v,S)=>{if(v===0)c({stdout:m,stderr:f});else{const w=new Error(`Command failed with exit code ${v}. stderr: ${f.substring(0,500)}`);w.code=v,w.stdout=m,w.stderr=f,u(w)}});const y=setTimeout(()=>{h.kill("SIGTERM"),setTimeout(()=>{h.killed||h.kill("SIGKILL")},5e3),u(new Error("Claude CLI command timed out after 60 seconds"))},6e4);h.on("close",()=>clearTimeout(y))});try{const c=JSON.parse(i);let u=c.result||c.response||c.text||c.content;if(!u)throw new Error("No response content from Claude CLI");const p=u.match(/^```(?:json)?\s*\n([\s\S]*?)\n```\s*$/);if(p&&(u=p[1]),r){const h=Vb(u);if(h.valid)console.log("✅ Claude CLI: JSON validation passed");else{console.log(`⚠️ Claude CLI: Invalid JSON response (attempt ${s+1}/${Xl+1})`),console.log(`⚠️ Claude CLI: JSON error: ${h.error}`),console.log(`⚠️ Claude CLI: Response length: ${u.length} bytes`);const m=Kb(u);if(console.log(`⚠️ Claude CLI: Appears truncated: ${m}`),m&&s<Xl){console.log(`🔄 Claude CLI: Attempting to recover truncated JSON (retry ${s+1})`);const f=`The previous response was truncated and incomplete. Here's what was received:
|
|
346
|
-
|
|
347
|
-
\`\`\`json
|
|
348
|
-
${u}
|
|
349
|
-
\`\`\`
|
|
350
|
-
|
|
351
|
-
Please complete this JSON response. Make sure it's valid, complete JSON that properly closes all braces, brackets, and quotes. Return ONLY the complete, valid JSON.`;try{return await $u(e,f,r,s+1)}catch(y){console.log(`⚠️ Claude CLI: Recovery attempt failed: ${y}`)}}console.log(`⚠️ Claude CLI: Returning invalid JSON response after ${s+1} attempts`),console.log(`⚠️ Claude CLI: Downstream parsing will likely fail. First 500 chars: ${u.substring(0,500)}`)}}return u}catch(c){if(i.trim())return i.trim();throw new Error(`Failed to parse Claude CLI response: ${c}`)}}catch(a){const o=a.message;throw o.includes("command not found")||o.includes("ENOENT")?new Error("Claude Code CLI not found. Please ensure Claude Code is installed."):o.includes("not authenticated")||o.includes("subscription")?new Error("Claude Code CLI not authenticated. Please run `claude` to authenticate."):a}}const xs=new am({concurrency:100,timeout:1200*1e3,autoStart:!0}),ec={retries:4,factor:2,minTimeout:1e3,maxTimeout:6e4,randomize:!0},rn={};async function To({type:e,systemMessage:t,prompt:r,jsonResponse:s=!0,jsonSchema:a,model:o=Tu,attempts:i=0}){var N,A,_,M,$,I,R;if(process.env.CODEYAM_LLM_FIXTURES_DIR)return await Gb(e,process.env.CODEYAM_LLM_FIXTURES_DIR,t);console.log(`CodeYam Debug: LLM Pool [queued=${xs.size}, running=${xs.pending}]`);const l=Date.now();let c,u=0;if(Bb()){console.log("Using Claude CLI mode for AI request");const P=await $u(t,r,s);return{finishReason:"stop",completion:P,stats:{model:"claude-sonnet-4-5",prompt_type:e,system_message:t,prompt_text:r,response:P,input_tokens:0,output_tokens:0,cost:0}}}const p=ka(o),h=process.env[p.provider.apiKeyEnvVar];if(!h)throw new Error(`API key not found for provider ${p.provider.name}. Please set ${p.provider.apiKeyEnvVar} environment variable.`);console.log(`Using ${p.provider.name} for AI request`);const m=new sm({apiKey:h,baseURL:p.provider.baseURL}),f={type:e,messages:{system:t,prompt:r},model:o,responseType:a?"json_schema":s?"json_object":"text",jsonSchema:a},y=Ob(f),g=await xs.add(()=>(c=Date.now(),Sl(async()=>{const P=Date.now(),F=["Waiting for LLM response","Still waiting for LLM response","LLM call in progress","Processing LLM request","Awaiting LLM completion"],Y=setInterval(()=>{const J=Math.floor((Date.now()-P)/1e3),O=Math.floor(J/10)%F.length;kl(1,`${F[O]} [type=${e}, model=${o}, elapsed=${J}s]`)},1e4);try{return await m.chat.completions.create(y,{timeout:300*1e3})}finally{clearInterval(Y)}},{...ec,onFailedAttempt:P=>{u++,console.log(`CodeYam Error: Completion call failed [model=${o}]`,{error:P,prompt:r,systemMessage:t,attempts:i,retryCount:u})}})));if(!g)throw new Error("Completion call returned no result");const x=g,b=Date.now(),v=Rb({chatRequest:f,chatCompletion:x,model:o});if(!v)throw new Error("Failed to get LLM call stats");v.retries=u,v.wait_ms=c-l,v.duration_ms=b-l;const S=(N=x.choices)==null?void 0:N[0];let w=null;if(S){if(!S.finish_reason)throw console.log(`CodeYam Error: completionCall(): empty completion from LLM, [type=${e}]`,JSON.stringify({chatCompletion:x,chatRequest:f},null,2)),new Error("completionCall(): missing finish_reason in LLM response");w=(A=S.message)==null?void 0:A.content}let C=w;w&&(C=w.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const k=s?C&&(((_=C.match(/\{[\s\S]*\}/))==null?void 0:_[0])??C):C;if(!k){if(console.log(`CodeYam Error: completionCall(): empty completion from LLM, [type=${e}]`,JSON.stringify({completion:k,rawCompletion:w,chatCompletion:x,chatRequest:f},null,2)),i<3)return console.log("CodeYam Error: Retrying completion",{prompt:r,systemMessage:t,attempts:i}),await To({type:e,systemMessage:t,prompt:r,jsonResponse:s,model:o,attempts:i+1});throw new Error("completionCall(): empty completion from LLM")}if(k.replace(/\s/g,"")==="")throw console.log("CodeYam Error: Empty Completion",{rawCompletion:w,prompt:r,systemMessage:t}),new Error("Empty completion");if(s)try{JSON.parse(k)}catch(P){if(console.log("CodeYam Error: Invalid JSON in completion",{error:P.message,model:o,completion:k.substring(0,500),rawCompletion:w==null?void 0:w.substring(0,500)}),i<3){console.log("CodeYam Error: Retrying with correction prompt",{attempts:i,parseError:P.message});const F=`Your previous response contained invalid JSON with the following error:
|
|
352
|
-
|
|
353
|
-
${P.message}
|
|
354
|
-
|
|
355
|
-
Here was your previous response:
|
|
356
|
-
\`\`\`
|
|
357
|
-
${k}
|
|
358
|
-
\`\`\`
|
|
359
|
-
|
|
360
|
-
Please provide a corrected version with valid JSON only. Do not include any explanatory text, just the valid JSON object.`,Y=await xs.add(()=>Sl(async()=>{const D=Date.now(),E=["Waiting for LLM correction response","Still waiting for LLM correction","LLM correction in progress","Processing LLM correction request","Awaiting LLM correction completion"],W=setInterval(()=>{const K=Math.floor((Date.now()-D)/1e3),Z=Math.floor(K/10)%E.length;kl(1,`${E[Z]} [type=${e}, model=${o}, elapsed=${K}s]`)},1e4);try{return await m.chat.completions.create({...y,messages:[{role:"system",content:t},{role:"user",content:r},{role:"assistant",content:k},{role:"user",content:F}]},{timeout:300*1e3})}finally{clearInterval(W)}},{...ec,onFailedAttempt:D=>{console.log("CodeYam Error: Correction call failed",{error:D,attempts:i})}}));if(!Y)throw new Error("Correction call returned no result");const J=Y,O=(I=($=(M=J.choices)==null?void 0:M[0])==null?void 0:$.message)==null?void 0:I.content;let B=O;O&&(B=O.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const T=B&&(((R=B.match(/\{[\s\S]*\}/))==null?void 0:R[0])??B);if(!T)throw new Error("Correction attempt returned empty completion");try{JSON.parse(T),console.log("CodeYam: JSON correction successful");const D=Date.now();return v.duration_ms=D-l,{finishReason:J.choices[0].finish_reason,completion:T,stats:v}}catch(D){return console.log("CodeYam Error: Corrected JSON still invalid",{error:D.message,correctedCompletion:T.substring(0,500)}),await To({type:e,systemMessage:t,prompt:r,jsonResponse:s,model:o,attempts:i+1})}}throw new Error(`Invalid JSON after ${i} attempts: ${P.message}`)}return Mu(`completionCall_${e}`,{completion:k,finishReason:x.choices[0].finish_reason}),{finishReason:x.choices[0].finish_reason,completion:k,stats:v}}async function Gb(e,t,r){var o,i,l,c,u;const s=await import("fs"),a=await import("path");console.log(`CodeYam Test: Replaying LLM call for type '${e}' from ${t}`);try{if(!s.existsSync(t))throw console.log(`CodeYam Test: Fixtures directory does not exist yet: ${t}`),new Error(`No LLM fixture files found - directory does not exist: ${t}`);const p=s.readdirSync(t).filter(v=>v.endsWith(".json"));if(p.length===0)throw new Error(`No LLM fixture files found in ${t}`);const h={};for(const v of p)try{const S=s.readFileSync(a.join(t,v),"utf-8"),w=JSON.parse(S);h[w.prompt_type]||(h[w.prompt_type]=[]),h[w.prompt_type].push(w)}catch(S){console.warn(`Failed to parse LLM fixture file ${v}:`,S)}for(const v of Object.keys(h))h[v].sort((S,w)=>{const C=S.created_at??0,k=w.created_at??0;return C-k});const m=h[e];if(!m||m.length===0){const v=Object.keys(h).join(", ");return console.warn(`CodeYam Test: No captured LLM call found for type '${e}'. Available types: ${v}`),{finishReason:"stop",completion:"{}",stats:{model:"fixture-fallback",prompt_type:e,system_message:"",prompt_text:"",response:"{}",input_tokens:0,output_tokens:0,cost:0}}}let f;if(["generateEntityScenarioData","generateChunkMockData","generateMissingMockData"].includes(e)&&r){const v=r.match(/Scenario name must match exactly: "([^"]+)"/),S=v==null?void 0:v[1];if(S){const w={};for(const k of m)try{const A=((o=JSON.parse(k.props||"{}").scenario)==null?void 0:o.name)||"__NO_SCENARIO__";w[A]||(w[A]=[]),w[A].push(k)}catch{}const C=w[S];if(C&&C.length>0){const k=`${t}::${e}::${S}`;rn[k]===void 0&&(rn[k]=0);const N=rn[k];rn[k]=(N+1)%C.length,f=C[N],console.log(`CodeYam Test: ✅ Matched fixture for scenario '${S}' [${N+1}/${C.length}]`)}else{const k=Object.keys(w).join(", ");console.warn(`CodeYam Test: ⚠️ No fixture found for scenario '${S}'. Available: [${k}]`)}}else console.warn(`CodeYam Test: ⚠️ Could not extract scenario name from system message for type '${e}'`)}if(!f){const v=`${t}::${e}`;rn[v]===void 0&&(rn[v]=0);const S=rn[v];rn[v]=(S+1)%m.length,f=m[S],console.log(`CodeYam Test: Replaying LLM response for '${e}' [${S+1}/${m.length}]`)}let g;try{g=((c=(l=(i=JSON.parse(f.response).choices)==null?void 0:i[0])==null?void 0:l.message)==null?void 0:c.content)||f.response}catch{g=f.response}let x=g;g&&(x=g.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const b=x&&(((u=x.match(/\{[\s\S]*\}/))==null?void 0:u[0])??x);return Mu(`completionCall_${e}`,{completion:b||"",finishReason:"stop"}),{finishReason:"stop",completion:b||"",stats:{model:f.model??"fixture",prompt_type:e,system_message:f.system_message??"",prompt_text:f.prompt_text??"",response:f.response??"",input_tokens:f.input_tokens??0,output_tokens:f.output_tokens??0,cost:f.cost??0,retries:0,wait_ms:0,duration_ms:1}}}catch(p){throw console.error("CodeYam Test Error: Failed to replay LLM call:",p),p}}function tc(){return process.env.DYNAMODB_PREFIX?`${process.env.DYNAMODB_PREFIX}-llm-calls`:null}async function qb(e){const{propsJson:t,...r}=e,s=JSON.stringify(t,null,2),a=Wo(),o=Date.now(),i={...r,id:a,created_at:o,props:s};let l;const c=`${i.object_id}_${a}.json`;if(process.env.DYNAMODB_PATH?l=H.join(process.env.DYNAMODB_PATH,c):process.env.CODEYAM_LOCAL_PROJECT_PATH&&(l=H.join(process.env.CODEYAM_LOCAL_PROJECT_PATH,".codeyam","llm-calls",c)),l)try{const p=H.dirname(l);return await je.mkdir(p,{recursive:!0}),await je.writeFile(l,JSON.stringify(i,null,2)),console.log(`CodeYam: Saved LLM call to local file: ${l}`),{id:a}}catch(p){return console.log("CodeYam Error: Failed to save LLM call to local file",p),{id:"-1"}}const u=tc();if(!u)return console.log("[CodeYam] No DynamoDB table name for LLM calls, skipping save"),{id:"-1"};for(const[p,h]of Object.entries(i))typeof h>"u"&&console.log(`CodeYam Warning: LLM call ${a} property ${p} with explicit value 'undefined'`);try{return await new ta().send(new om({TableName:tc(),Item:lm(i,{removeUndefinedValues:!0})})),{id:a}}catch(p){return console.log(`CodeYam Error: Failed to save LLM call to DynamoDB table ${u}`,p),{id:"-1"}}}new ta({});new ta({});new ta({});const Qb=3,Zb=2,Ai=()=>({max:1e4,maxSize:10*1e3*1e3,sizeCalculation:(e,t)=>16+Qb*String(t).length*(1+Zb)});new Go(Ai());new Go(Ai());new Go(Ai());class Xb{constructor(){this.byMethodName=new Map,this.byClassAndMethod=new Map}register(t,r,s){this.byMethodName.has(t)||this.byMethodName.set(t,[]),this.byMethodName.get(t).push(r),s&&(this.byClassAndMethod.has(s)||this.byClassAndMethod.set(s,new Map),this.byClassAndMethod.get(s).set(t,r))}getByMethodName(t){return this.byMethodName.get(t)}getByClassAndMethod(t,r){var s;return(s=this.byClassAndMethod.get(t))==null?void 0:s.get(r)}}class ev{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class tv{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"boolean");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class nv{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"boolean");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class rv{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class sv{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];if(s.addType(o,"function"),s.addEquivalence(o.withParameter(1),r.withElement("*")),a.args.length>1){const i=a.args[1];s.addEquivalence(o.withParameter(0),i)}}}isComplete(){return!0}}class av{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown");const a=t.getLastFunctionCallSegment();a&&a.args.forEach(o=>{s.addEquivalence(t,o)}),s.addEquivalence(t,r.withElement("*"))}isComplete(){return!0}}class ov{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown");const a=t.withReturnValues();s.addType(a,"unknown")}isComplete(){return!0}}class iv{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>2)for(let o=2;o<a.args.length;o++){const i=a.args[o];s.addEquivalence(r.withElement("*"),i)}}isComplete(){return!0}}class lv{getReturnType(){return"number"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0)for(let o=0;o<a.args.length;o++)s.addEquivalence(r.withElement("*"),t.withParameter(o))}isComplete(){return!0}}class cv{getReturnType(){return"string"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addEquivalence(t.withParameter(0),o)}}isComplete(){return!0}}class dv{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class uv{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class pv{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown"),s.addEquivalence(t.withReturnValues(),r.withElement("*"))}isComplete(){return!0}}class hv{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class mv{getReturnType(){return"object"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"array")}}isComplete(){return!0}}class fv{getReturnType(){return"string[]"}addEquivalences(t,r,s){s.addType(r,"string"),s.addType(t,"string[]"),s.addEquivalence(t.withReturnValues().withElement("*"),r)}isComplete(){return!0}}class gv{getReturnType(){return"unknown"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r),s.addEquivalence(t.withProperty("functionCallReturnValue"),o.withProperty("returnValue"))}}isComplete(){return!0}}class yv{getReturnType(){return"unknown"}addEquivalences(t,r,s){t.getLastFunctionCallSegment()}isComplete(){return!0}}class xv{getReturnType(){return"array"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(s.addType(t.withParameter(1),"function"),a&&a.args.length>0){const o=a.args[0];s.addEquivalence(t.withParameter(0),o)}}isComplete(){return!0}}class bv{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(t,"boolean")}isComplete(){return!0}}class vv{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(t,"boolean")}isComplete(){return!0}}function wv(){const e=new Xb;return e.register("filter",new ev,"Array"),e.register("map",new dv,"Array"),e.register("flatMap",new uv,"Array"),e.register("join",new cv,"Array"),e.register("find",new rv,"Array"),e.register("findLast",new hv,"Array"),e.register("at",new pv,"Array"),e.register("reduce",new sv,"Array"),e.register("concat",new av,"Array"),e.register("slice",new ov,"Array"),e.register("splice",new iv,"Array"),e.register("push",new lv,"Array"),e.register("some",new tv,"Array"),e.register("every",new nv,"Array"),e.register("fromEntries",new mv,"Object"),e.register("split",new fv,"String"),e.register("then",new gv,"Promise"),e.register("useState",new xv,"React"),e.register("useMemo",new yv,"React"),e.register("has",new bv),e.register("delete",new vv),e}wv();new Set(Object.getOwnPropertyNames(Array.prototype).filter(e=>typeof Array.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(String.prototype).filter(e=>typeof String.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Number.prototype).filter(e=>typeof Number.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Boolean.prototype).filter(e=>typeof Boolean.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Date.prototype).filter(e=>typeof Date.prototype[e]=="function"));const Nv=new Set(["filter","sort","slice","splice","unshift","push","reverse","entries"]),Sv=new Set(["find","findLast","at","pop","shift"]),Cv=new Set(["map","reduce","flatMap","concat","join","some","every","findIndex","findLastIndex","indexOf","lastIndexOf","includes"]),kv=new Set([...Nv,...Sv,...Cv]),_v=new Set(["trim","concat","replace","replaceAll","toLowerCase","toUpperCase","trimStart","trimEnd","padStart","padEnd","normalize","slice","substring","substr","toString()","toLocaleLowerCase","toLocaleUpperCase"]),Ev=new Set(["split","match","endsWith","startsWith","includes","indexOf","lastIndexOf","charAt","charCodeAt","codePointAt","repeat","search","valueOf","localeCompare","length"]),Av=new Set([..._v,...Ev]);[...kv,...Av];class jv{constructor(t){this.depth=0,this.traceCount=0,this.defaultOutput=(r,s)=>{const a=" ".repeat(this.depth),o=this.timestamps?`[${Date.now()}] `:"";s?console.info(`${o}${a}${r}`,JSON.stringify(s)):console.info(`${o}${a}${r}`)},this.enabled=t.enabled,this.pathPatterns=t.pathPatterns??[],this.scopePatterns=t.scopePatterns??[],this.maxDepth=t.maxDepth??50,this.output=t.output??this.defaultOutput,this.timestamps=t.timestamps??!1}shouldTrace(t){return!this.enabled||this.depth>=this.maxDepth?!1:!!(this.pathPatterns.length===0&&this.scopePatterns.length===0||t.path&&this.pathPatterns.length>0&&this.pathPatterns.some(r=>r.test(t.path))||t.scope&&this.scopePatterns.length>0&&this.scopePatterns.some(r=>r.test(t.scope)))}trace(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[TRACE] ${t}`,r))}traceEnter(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[ENTER] ${t}`,r),this.depth++)}traceExit(t,r={}){this.depth>0&&this.depth--,this.shouldTrace(r)&&this.output(`[EXIT] ${t}`,r)}traceWarn(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[WARN] ${t}`,r))}enable(){this.enabled=!0}disable(){this.enabled=!1}resetDepth(){this.depth=0}getStats(){return{traceCount:this.traceCount,currentDepth:this.depth,enabled:this.enabled}}reset(){this.depth=0,this.traceCount=0}}new jv({enabled:!1});function vn(e,t){const r={added:{},removed:{},changed:{}},s=new Set(Object.keys(e??{})),a=new Set(Object.keys(t??{}));for(const o of a)s.has(o)||(r.added[o]=t[o]);for(const o of s)a.has(o)||(r.removed[o]=e[o]);for(const o of s)a.has(o)&&e[o]!==t[o]&&(r.changed[o]={from:e[o],to:t[o]});return r}function Pv(e){return Object.keys(e.added).length>0||Object.keys(e.removed).length>0||Object.keys(e.changed).length>0}function bs(e){return Object.keys(e.added).length+Object.keys(e.removed).length+Object.keys(e.changed).length}let Tv=0;class ji{constructor(t){this.traces=new Map,this.currentEntity=null,this.currentStage=null,this.tracerId=++Tv,this.enabled=(t==null?void 0:t.enabled)??!1,this.outputPath=(t==null?void 0:t.outputPath)??"/tmp/codeyam/transform-trace.json",this.enabled&&console.log(`[Tracer] Initialized (id=${this.tracerId}, output=${this.outputPath})`)}log(t){this.isEnabled()&&console.log(`[Tracer] ${t}`)}isEnabled(){const t=process.env.CODEYAM_TRACE_TRANSFORMS;return t==="1"||t==="true"?!0:this.enabled}enable(){this.enabled=!0}disable(){this.enabled=!1}setOutputPath(t){this.outputPath=t}setProjectSlug(t){this.projectSlug=t}startEntity(t){if(!this.isEnabled())return;this.currentEntity=t.name;const r=this.traces.get(t.name);if(r){this.log(`startEntity: ${t.name} already exists, preserving ${r.stages.length} stages`);return}this.log(`startEntity: ${t.name}`),this.traces.set(t.name,{entityName:t.name,entityType:t.entityType,filePath:t.filePath,stages:[],operations:[]})}snapshot(t,r,s){var c,u,p,h;if(!this.isEnabled())return;const a=this.traces.get(t);if(!a)return this.log(`snapshot: no trace for ${t}, creating one`),this.startEntity({name:t,entityType:"unknown",filePath:"unknown"}),this.snapshot(t,r,s);this.log(`snapshot: ${t} → ${r}`),this.currentStage=r;const o=JSON.parse(JSON.stringify(s)),i={stage:r,timestamp:Date.now(),data:o},l=a.stages[a.stages.length-1];if(l&&(i.diffFromPrevious={signatureSchema:vn(l.data.signatureSchema,o.signatureSchema),returnValueSchema:vn(l.data.returnValueSchema,o.returnValueSchema)},o.dependencySchemas||l.data.dependencySchemas)){i.diffFromPrevious.dependencySchemas={};const m=new Set([...Object.keys(o.dependencySchemas??{}),...Object.keys(l.data.dependencySchemas??{})]);for(const f of m){const y=(c=l.data.dependencySchemas)==null?void 0:c[f],g=(u=o.dependencySchemas)==null?void 0:u[f];for(const x of new Set([...Object.keys(y??{}),...Object.keys(g??{})])){const b=`${f}::${x}`,v=(p=y==null?void 0:y[x])==null?void 0:p.returnValueSchema,S=(h=g==null?void 0:g[x])==null?void 0:h.returnValueSchema,w=vn(v,S);Pv(w)&&(i.diffFromPrevious.dependencySchemas[b]=w)}}}a.stages.push(i)}operation(t,r){if(!this.isEnabled())return;const s=this.traces.get(t);s&&s.operations.push({...r,stage:r.stage??this.currentStage??void 0,timestamp:Date.now()})}computeFlushSummary(){var a;const t={},r=new Map;for(const[o,i]of this.traces){let l=0;for(const c of i.stages){if(!c.diffFromPrevious)continue;const p=`${((a=i.stages[i.stages.indexOf(c)-1])==null?void 0:a.stage)??"start"}→${c.stage}`;if(t[p]||(t[p]={added:0,removed:0,changed:0}),c.diffFromPrevious.signatureSchema){const h=c.diffFromPrevious.signatureSchema;t[p].added+=Object.keys(h.added).length,t[p].removed+=Object.keys(h.removed).length,t[p].changed+=Object.keys(h.changed).length,l+=bs(h)}if(c.diffFromPrevious.returnValueSchema){const h=c.diffFromPrevious.returnValueSchema;t[p].added+=Object.keys(h.added).length,t[p].removed+=Object.keys(h.removed).length,t[p].changed+=Object.keys(h.changed).length,l+=bs(h)}}r.set(o,l)}const s=[...r.entries()].sort((o,i)=>i[1]-o[1]).slice(0,10).map(([o])=>o);return{stageChangeCounts:t,entitiesWithMostChanges:s}}flush(){if(!this.isEnabled())return;if(this.traces.size===0){this.log("flush: no traces to write");return}const t=Array.from(this.traces.keys()),r=t.map(u=>`${u}(${this.traces.get(u).stages.length})`).join(", ");this.log(`flush: writing ${t.length} entities: ${r}`);const{stageChangeCounts:s,entitiesWithMostChanges:a}=this.computeFlushSummary(),o={timestamp:new Date().toISOString(),projectSlug:this.projectSlug,entityCount:this.traces.size},i={stageChangeCounts:s,entitiesWithMostChanges:a},l=H.dirname(this.outputPath);G.existsSync(l)||G.mkdirSync(l,{recursive:!0});const c=G.openSync(this.outputPath,"w");try{G.writeSync(c,`{
|
|
361
|
-
"meta": `),G.writeSync(c,JSON.stringify(o,null,2)),G.writeSync(c,`,
|
|
362
|
-
"summary": `),G.writeSync(c,JSON.stringify(i,null,2)),G.writeSync(c,`,
|
|
363
|
-
"entities": {`);let u=!0;for(const[p,h]of this.traces)u||G.writeSync(c,","),G.writeSync(c,`
|
|
364
|
-
${JSON.stringify(p)}: `),G.writeSync(c,JSON.stringify(h,null,2)),u=!1;G.writeSync(c,`
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
`),this.log(`flush: wrote trace to ${this.outputPath}`)}finally{G.closeSync(c)}}clear(){this.traces.clear(),this.currentEntity=null,this.currentStage=null}static loadTrace(t){const r=G.readFileSync(t,"utf-8"),s=JSON.parse(r),a=new ji({enabled:!1});a.projectSlug=s.meta.projectSlug;for(const[o,i]of Object.entries(s.entities))a.traces.set(o,i);return a}getSummary(){var a,o,i;const t={},r=new Map;for(const[l,c]of this.traces){let u=0;for(let p=1;p<c.stages.length;p++){const h=c.stages[p],f=`${((a=c.stages[p-1])==null?void 0:a.stage)??"start"}→${h.stage}`;if(t[f]||(t[f]={added:0,removed:0,changed:0}),(o=h.diffFromPrevious)!=null&&o.signatureSchema){const y=h.diffFromPrevious.signatureSchema;t[f].added+=Object.keys(y.added).length,t[f].removed+=Object.keys(y.removed).length,t[f].changed+=Object.keys(y.changed).length,u+=bs(y)}if((i=h.diffFromPrevious)!=null&&i.returnValueSchema){const y=h.diffFromPrevious.returnValueSchema;t[f].added+=Object.keys(y.added).length,t[f].removed+=Object.keys(y.removed).length,t[f].changed+=Object.keys(y.changed).length,u+=bs(y)}}r.set(l,u)}const s=[...r.entries()].sort((l,c)=>c[1]-l[1]).slice(0,10).map(([l,c])=>({name:l,totalChanges:c}));return{entityCount:this.traces.size,stageChangeCounts:t,entitiesWithMostChanges:s}}getEntitySummary(t){const r=this.traces.get(t);return r?{entityName:t,stages:r.stages.map(s=>({stage:s.stage,diffFromPrevious:s.diffFromPrevious?{signatureSchema:s.diffFromPrevious.signatureSchema,returnValueSchema:s.diffFromPrevious.returnValueSchema}:void 0}))}:null}getOperations(t,r){const s=this.traces.get(t);return s?r?s.operations.filter(a=>a.path&&r.test(a.path)):s.operations:[]}tracePath(t,r){var o,i;const s=this.traces.get(t),a=[];if(!s)return{entityName:t,path:r,history:a};for(const l of s.stages){const c=(o=l.data.signatureSchema)==null?void 0:o[r],u=(i=l.data.returnValueSchema)==null?void 0:i[r],p=c??u;p!==void 0&&a.push({stage:l.stage,value:p})}for(const l of s.operations)l.path===r&&a.push({operation:l.operation,stage:l.stage,value:l.after??l.before,context:l.context});return{entityName:t,path:r,history:a}}getEntityTrace(t){return this.traces.get(t)}getEntityNames(){return[...this.traces.keys()]}findProperty(t,r){const s=this.traces.get(t);if(!s)return[];const a=[],o=new RegExp(`(^|\\.)${r}(\\.|\\[|$)`);for(const i of s.stages){for(const[l,c]of Object.entries(i.data.signatureSchema??{}))o.test(l)&&a.push({stage:i.stage,path:l,type:c,schemaType:"signature"});for(const[l,c]of Object.entries(i.data.returnValueSchema??{}))o.test(l)&&a.push({stage:i.stage,path:l,type:c,schemaType:"returnValue"});for(const[l,c]of Object.entries(i.data.dependencySchemas??{}))for(const[u,p]of Object.entries(c))for(const[h,m]of Object.entries(p.returnValueSchema??{}))o.test(h)&&a.push({stage:i.stage,path:`${l}/${u}::${h}`,type:m,schemaType:"dependency"})}return a}findTypeInconsistencies(t){const r=this.traces.get(t);if(!r)return[];let s=r.stages[r.stages.length-1];for(let c=r.stages.length-1;c>=0;c--)if(Object.keys(r.stages[c].data.dependencySchemas??{}).length>0){s=r.stages[c];break}if(!s)return[];const a=new Set(["length","toString","valueOf","constructor"]),o=new Map,i=(c,u)=>{const p=c.match(/\.([a-zA-Z_][a-zA-Z0-9_]*)(\[\])?$/);if(!p)return;const h=p[1],m=p[2]==="[]";if(a.has(h))return;const f=h+(m?"[]":"");o.has(f)||o.set(f,[]),o.get(f).push({path:c,type:u})};for(const[,c]of Object.entries(s.data.dependencySchemas??{}))for(const[,u]of Object.entries(c))for(const[p,h]of Object.entries(u.returnValueSchema??{}))i(p,h);const l=[];for(const[c,u]of o)new Set(u.map(h=>h.type.replace(/ \| undefined/g,"").replace(/ \| null/g,""))).size>1&&l.push({propertyName:c,paths:u.map(h=>({...h,stage:s.stage}))});return l.sort((c,u)=>{const p=new Set(c.paths.map(m=>m.type)).size;return new Set(u.paths.map(m=>m.type)).size-p}),l}getStageDiffSummary(t,r,s){const a=this.traces.get(t);if(!a)return null;const o=a.stages.find(m=>m.stage===r),i=a.stages.find(m=>m.stage===s);if(!o||!i)return null;const l={added:[],removed:[],typeChanged:[]},c=o.data.returnValueSchema??{},u=i.data.returnValueSchema??{},p=new Set(Object.keys(c)),h=new Set(Object.keys(u));for(const m of h)p.has(m)?c[m]!==u[m]&&l.typeChanged.push({path:m,from:c[m],to:u[m]}):l.added.push(`${m}: ${u[m]}`);for(const m of p)h.has(m)||l.removed.push(`${m}: ${c[m]}`);return l}traceSchemaTransform(t,r,s,a,o){if(!this.enabled)return a(s),s;const i={...s};a(s);const l=vn(i,s);for(const[c,u]of Object.entries(l.added))this.operation(t,{operation:r,path:c,before:void 0,after:u,context:{...o,changeType:"added"}});for(const[c,u]of Object.entries(l.removed))this.operation(t,{operation:r,path:c,before:u,after:void 0,context:{...o,changeType:"removed"}});for(const[c,{from:u,to:p}]of Object.entries(l.changed))this.operation(t,{operation:r,path:c,before:u,after:p,context:{...o,changeType:"changed"}});return s}traceSchemaTransformResult(t,r,s,a,o){if(!this.enabled)return;const i=vn(s,a);for(const[l,c]of Object.entries(i.added))this.operation(t,{operation:r,path:l,before:void 0,after:c,context:{...o,changeType:"added"}});for(const[l,c]of Object.entries(i.removed))this.operation(t,{operation:r,path:l,before:c,after:void 0,context:{...o,changeType:"removed"}});for(const[l,{from:c,to:u}]of Object.entries(i.changed))this.operation(t,{operation:r,path:l,before:c,after:u,context:{...o,changeType:"changed"}})}traceDependencySchemaTransform(t,r,s,a,o="both"){if(!this.enabled){for(const i in s)for(const l in s[i]){const c=s[i][l];(o==="signature"||o==="both")&&c.signatureSchema&&a(c.signatureSchema),(o==="returnValue"||o==="both")&&c.returnValueSchema&&a(c.returnValueSchema)}return}for(const i in s)for(const l in s[i]){const c=s[i][l],u={filePath:i,dependencyName:l};(o==="signature"||o==="both")&&c.signatureSchema&&this.traceSchemaTransform(t,r,c.signatureSchema,a,{...u,schemaType:"signature"}),(o==="returnValue"||o==="both")&&c.returnValueSchema&&this.traceSchemaTransform(t,r,c.returnValueSchema,a,{...u,schemaType:"returnValue"})}}traceDependencySchemaChanges(t,r,s,a){var i;if(!this.enabled){a();return}const o={};for(const l in s){o[l]={};for(const c in s[l]){const u=s[l][c];o[l][c]={sig:{...u.signatureSchema||{}},rv:{...u.returnValueSchema||{}}}}}a();for(const l in s)for(const c in s[l]){const u=s[l][c],p=(i=o[l])==null?void 0:i[c],h={filePath:l,dependencyName:c};if(u.signatureSchema){const m=(p==null?void 0:p.sig)||{},f=vn(m,u.signatureSchema);for(const[y,g]of Object.entries(f.added))this.operation(t,{operation:r,path:y,before:void 0,after:g,context:{...h,schemaType:"signature",changeType:"added"}});for(const[y,{from:g,to:x}]of Object.entries(f.changed))this.operation(t,{operation:r,path:y,before:g,after:x,context:{...h,schemaType:"signature",changeType:"changed"}})}if(u.returnValueSchema){const m=(p==null?void 0:p.rv)||{},f=vn(m,u.returnValueSchema);for(const[y,g]of Object.entries(f.added))this.operation(t,{operation:r,path:y,before:void 0,after:g,context:{...h,schemaType:"returnValue",changeType:"added"}});for(const[y,{from:g,to:x}]of Object.entries(f.changed))this.operation(t,{operation:r,path:y,before:g,after:x,context:{...h,schemaType:"returnValue",changeType:"changed"}})}}}}function Mv(){const e=process.env.CODEYAM_TRACE_TRANSFORMS;return e==="1"||e==="true"}const nc=new ji({enabled:Mv(),outputPath:"/tmp/codeyam/transform-trace.json"});process.on("beforeExit",()=>{nc.isEnabled()&&nc.flush()});function Iu(e){if(e==null)return null;const t=e.match(/```json\s*([\s\S]*?)\s*```/);t&&(e=t[1]),e=e.replace(/"[^"]+"\s*:\s*undefined\s*,?\s*/g,""),e=e.replace(/,(\s*[}\]])/g,"$1");try{return im.parse(e)}catch(r){const a=r.message.match(/invalid character .* at (\d+):(\d+)/);if(a){const o=parseInt(a[2],10);if(e.substring(o-2,o-1)==='"')return e=e.substring(0,o-2)+"\\"+e.substring(o-2),Iu(e)}return null}}function $v({description:e,existingScenarios:t,scenariosDataStructure:r,flowSelections:s}){let a="";return s&&s.length>0&&(a=`
|
|
368
|
-
User-selected Execution Flow Values:
|
|
369
|
-
The user has specifically requested these values be used in the scenario:
|
|
370
|
-
${s.map(o=>` - ${o.path}: ${o.value}${o.isCustom?" (custom value)":""}`).join(`
|
|
371
|
-
`)}
|
|
372
|
-
|
|
373
|
-
IMPORTANT: The mockData MUST include these specific values for the specified paths. Generate a scenario name and description that reflects these choices.
|
|
374
|
-
`),`Mock Scenario Data Structure:
|
|
375
|
-
\`\`\`
|
|
376
|
-
${JSON.stringify(r,null,2)}
|
|
377
|
-
\`\`\`
|
|
378
|
-
Existing Mock Scenario Data:
|
|
379
|
-
\`\`\`
|
|
380
|
-
${JSON.stringify(t,null,2)}
|
|
381
|
-
\`\`\`
|
|
382
|
-
${a}
|
|
383
|
-
New Scenario user-created prompt: "${e||"(No additional description - generate based on selected execution flow values)"}"
|
|
384
|
-
`}function Iv({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a}){const o=s.find(i=>i.name===sa);return`Mock Scenario Data Structure:
|
|
385
|
-
\`\`\`
|
|
386
|
-
${JSON.stringify({props:a.arguments,dataVariables:a.dataForMocks},null,2)}
|
|
387
|
-
\`\`\`
|
|
388
|
-
|
|
389
|
-
Existing Mock Scenario Data:
|
|
390
|
-
\`\`\`
|
|
391
|
-
${JSON.stringify(s.map(i=>({name:i.name,data:$r(o.metadata.data,i.metadata.data)})),null,2)}
|
|
392
|
-
\`\`\`
|
|
393
|
-
|
|
394
|
-
Mock Scenario that should be edited: "${t}"
|
|
395
|
-
${r?`The portion of the data that should be edited:
|
|
396
|
-
\`\`\`
|
|
397
|
-
${JSON.stringify(r,null,2)}
|
|
398
|
-
\`\`\``:""}
|
|
399
|
-
|
|
400
|
-
How this data should be changed: "${e}"
|
|
401
|
-
`}async function Fv({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a,flowSelections:o,model:i}){const l=t?Iv({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a}):$v({description:e,existingScenarios:s,scenariosDataStructure:a,flowSelections:o}),c=await To({type:"guessScenarioDataFromDescription",systemMessage:t?Rv(r):Dv,prompt:l,model:i??Tb});await qb({object_type:"guessScenarioDataFromDescription",object_id:"new",propsJson:{description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a,model:i},...c.stats});const{completion:u}=c;return u?Iu(u):(console.log("CodeYam: guessing scenario data failed: No response from AI"),null)}const Dv=`
|
|
402
|
-
You will be provided with a list of data secnarios for a component and the overall structure for the data. Additionally you'll receive a description for a new scenario written by the user.
|
|
403
|
-
|
|
404
|
-
Your goal is to add one scenario to the list of existing scenarios by generating an english name, proper description, and a JSON data structure that describes the data that would be used in a scenario for the code.
|
|
405
|
-
|
|
406
|
-
The data for the scenario will be merged with the "Default Scenario" data, so you don't need to replicate any data in the default scenario but must overwrite any data that should be different.
|
|
407
|
-
|
|
408
|
-
You must respond with valid JSON following this format of this TS type definition:
|
|
409
|
-
\`\`\`
|
|
410
|
-
export type ScenarioData = {
|
|
411
|
-
name: string;
|
|
412
|
-
description: string;
|
|
413
|
-
data: {
|
|
414
|
-
mockData: { [key: string]: unknown };
|
|
415
|
-
argumentsData: { [key: string]: unknown };
|
|
416
|
-
};
|
|
417
|
-
};
|
|
418
|
-
|
|
419
|
-
\`\`\`
|
|
420
|
-
`,Rv=e=>`
|
|
421
|
-
You will be provided with a list of data secnarios for a component and the overall structure for the data. Additionally you'll receive a description for a new scenario written by the user.
|
|
422
|
-
|
|
423
|
-
Your goal is to edit one of the scenarios, named as the "Mock Scenario that should be edited".
|
|
424
|
-
${e?`
|
|
425
|
-
We only want to edit a specific portion of the data, which is provided in the "The portion of the data that should be edited" section. You should only change the data that is provided in this section.`:""}
|
|
426
|
-
|
|
427
|
-
Always return the complete data structure for the scenario, with both mockData and argumentsData, even if you only changed a small portion of the data.
|
|
428
|
-
|
|
429
|
-
You must respond with valid JSON following this type definition:
|
|
430
|
-
\`\`\`
|
|
431
|
-
{
|
|
432
|
-
data: {
|
|
433
|
-
mockData: { [key: string]: unknown };
|
|
434
|
-
argumentsData: { [key: string]: unknown };
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
\`\`\`
|
|
438
|
-
`;async function Ov({request:e}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});try{const t=await e.json(),{description:r,existingScenarios:s,scenariosDataStructure:a,editingMockName:o,editingMockData:i,flowSelections:l}=t;if(!r&&(!l||l.length===0))return ne({error:"Missing required field: description or flowSelections"},{status:400});const c=await Fv({description:r||"",existingScenarios:s??[],scenariosDataStructure:a,editingMockName:o,editingMockData:i,flowSelections:l}),u=(c==null?void 0:c.data)||c;return ne({success:!0,data:u})}catch(t){return console.error("[Generate Scenario Data API] Error:",t),ne({error:"Failed to generate scenario data",details:t instanceof Error?t.message:String(t)},{status:500})}}const Lv=Object.freeze(Object.defineProperty({__proto__:null,action:Ov},Symbol.toStringTag,{value:"Module"}));function zv(e,t,r=new Date){const s={"1d":1,"3d":3,"7d":7,"30d":30}[t],a=new Date(r);a.setDate(a.getDate()-s);const o=a.toISOString().split("T")[0],i=e.filter(h=>h.date>=o),l=new Set(i.map(h=>h.commitSha).filter(Boolean)),c=new Map;for(const h of i)if(h.scenarioScreenshots)for(const m of h.scenarioScreenshots){c.has(m.name)||c.set(m.name,[]);const f=c.get(m.name);f.some(y=>y.path===m.path)||f.push({path:m.path,time:h.time})}for(const h of c.values())h.sort((m,f)=>m.time.localeCompare(f.time));const u=[],p=new Map;for(const[h,m]of c){const f=h.indexOf(" - ");if(f!==-1){const y=h.slice(0,f);p.has(y)||p.set(y,[]),p.get(y).push({name:h,screenshots:m})}else u.push({name:h,screenshots:m})}return{commitCount:l.size,entryCount:i.length,appScenarios:u,componentGroups:p,totalScenarios:c.size}}function Bv(e){const t=new Map;for(const r of[...e].reverse()){const s=t.get(r.date)||[];s.push(r),t.set(r.date,s)}return t}function Yv(e){const t=new Map;for(const r of e){let s;if("componentName"in r&&r.componentName)s=r.componentName;else if("componentName"in r&&r.componentName===null)s="App";else{const o=r.name.indexOf(" - ");s=o!==-1?r.name.slice(0,o):"App"}const a=t.get(s)||[];a.push(r),t.set(s,a)}return[...t.entries()].sort(([r],[s])=>r==="App"?-1:s==="App"?1:r.localeCompare(s))}function Uv(e,t){const r=e.replace(/[^a-zA-Z0-9_\-]/g,"_");return`${t.toISOString().replace(/:/g,"-").replace(/\.\d+Z$/,"")}_${r}.png`}function Wv(e){const{title:t,timeStr:r,type:s,description:a,allScenarioNames:o,screenshot:i,scenarioScreenshots:l,commitSha:c,commitMessage:u,featureName:p,userPrompt:h}=e,m=["","---","",`### ${t}`,`**Time:** ${r}`,`**Type:** ${s}`];if(p&&m.push(`**Feature:** ${p}`),h&&m.push(`**Prompt:** ${h}`),o.length>0&&m.push(`**Scenarios:** ${o.join(", ")}`),m.push(""),m.push(a),i&&(m.push(""),m.push(``)),l.length>0){m.push(""),m.push("**Scenario Screenshots:**");for(const f of l)m.push(""),m.push(``)}return c&&u&&(m.push(""),m.push(`**Commit:** \`${c}\` — ${u}`)),m.push(""),m.join(`
|
|
439
|
-
`)}function Jv(e,t){return e.findIndex(r=>r.time===t)}function Hv(e){return!!e.commitSha}function Vv(e,t){return t.commitSha!==void 0&&(e.commitSha=t.commitSha),t.commitMessage!==void 0&&(e.commitMessage=t.commitMessage),t.description!==void 0&&(e.description=t.description),t.scenarios!==void 0&&(e.scenarios=t.scenarios),t.scenarioScreenshots!==void 0&&(e.scenarioScreenshots=t.scenarioScreenshots),e}function Kv(e,t,r,s){const a=`
|
|
440
|
-
**Commit:** \`${r}\` — ${s||"no message"}
|
|
441
|
-
`,o=`### ${t}`,i=e.lastIndexOf(o);if(i===-1)return null;const l=e.indexOf(`
|
|
442
|
-
---
|
|
443
|
-
`,i+1),c=l!==-1?l:e.length;return e.slice(0,c)+a+e.slice(c)}async function Gv(e){console.log(`[editorScenarioLookup] Looking up screenshots for ${e.length} scenarios: ${e.join(", ")}`);try{const t=await Ye();if(!t)return console.warn("[editorScenarioLookup] No project slug found — cannot look up scenarios"),[];const{project:r}=await Re(t),a=await $e().selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","page_file_path","url"]).where("project_id","=",r.id).where("name","in",e).orderBy("created_at","asc").execute();console.log(`[editorScenarioLookup] DB query returned ${a.length} matching scenarios:`,a.map(c=>({name:c.name,screenshot_path:c.screenshot_path,id:c.id})));const o=a.filter(c=>!c.screenshot_path);o.length>0&&console.warn(`[editorScenarioLookup] ${o.length} scenarios have no screenshot_path:`,o.map(c=>c.name));const i=a.filter(c=>c.screenshot_path),l=kt(i,c=>c.name).map(c=>({name:c.name,screenshotPath:c.screenshot_path,scenarioId:c.id,componentName:c.component_name||null,pageFilePath:c.page_file_path||null,url:c.url||null}));return console.log(`[editorScenarioLookup] Found ${l.length} scenarios with screenshots`),l}catch(t){return console.error("[editorScenarioLookup] Failed to look up scenario screenshots:",t),[]}}async function qv(e){console.log(`[editorScenarioLookup] Looking up screenshots by entity names: ${e.join(", ")}`);try{const t=await Ye();if(!t)return[];const{project:r}=await Re(t),a=await $e().selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","page_file_path","url"]).where("project_id","=",r.id).orderBy("created_at","asc").execute(),o=new Set(e),l=a.filter(u=>{const p=Kt({componentName:u.component_name,pageFilePath:u.page_file_path,url:u.url});return o.has(p)}).filter(u=>u.screenshot_path),c=kt(l,u=>u.name).map(u=>({name:u.name,screenshotPath:u.screenshot_path,scenarioId:u.id,componentName:u.component_name||null,pageFilePath:u.page_file_path||null,url:u.url||null}));return console.log(`[editorScenarioLookup] Found ${c.length} scenarios for ${e.length} entities`),c}catch(t){return console.error("[editorScenarioLookup] Failed to look up entity screenshots:",t),[]}}async function Fu(e){console.log("[editorScenarioLookup] Looking up session scenario screenshots",e?`(after ${e})`:"(all session)");try{const t=await Ye();if(!t)return console.warn("[editorScenarioLookup] No project slug found — cannot look up session scenarios"),[];const{project:r}=await Re(t),s=$e(),a=Se()||process.cwd();let o=null;const i=H.join(a,".codeyam","editor-step.json");try{const m=G.readFileSync(i,"utf8");o=JSON.parse(m).featureStartedAt||null}catch{return console.warn("[editorScenarioLookup] No editor-step.json found — cannot determine session start"),[]}if(!o)return console.warn("[editorScenarioLookup] No featureStartedAt found in editor-step.json"),[];const l=e&&e>o?e:o,c=Qr(l),u=await s.selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","page_file_path","url"]).where("project_id","=",r.id).where("created_at",">=",c).orderBy("created_at","asc").execute();console.log(`[editorScenarioLookup] Query returned ${u.length} scenarios since ${l}`);const p=u.filter(m=>m.screenshot_path),h=kt(p,m=>m.name).map(m=>({name:m.name,screenshotPath:m.screenshot_path,scenarioId:m.id,componentName:m.component_name||null,pageFilePath:m.page_file_path||null,url:m.url||null}));return console.log(`[editorScenarioLookup] Found ${h.length} session scenarios with screenshots`),h}catch(t){return console.error("[editorScenarioLookup] Failed to look up session scenario screenshots:",t),[]}}async function Mo(e,t,r){const s=H.join(t,".codeyam","journal","screenshots");await je.mkdir(s,{recursive:!0});const a=[];for(const o of e){const i=H.join(t,".codeyam","editor-scenarios",o.screenshotPath),l=Uv(o.name,r),c=H.join(s,l);console.log(`[editorScenarioLookup] Copying scenario screenshot: "${o.name}" from ${i} → ${c}`);try{await je.access(i),await je.copyFile(i,c),a.push({name:o.name,path:`screenshots/${l}`,componentName:o.componentName,url:o.url}),console.log(`[editorScenarioLookup] Successfully copied screenshot for "${o.name}"`)}catch(u){console.warn(`[editorScenarioLookup] Scenario screenshot not found: ${i}`,u instanceof Error?u.message:u)}}return console.log(`[editorScenarioLookup] Scenario screenshot summary: ${a.length} scenarios have screenshots embedded`),a}async function Qv({request:e}){if(e.method!=="PATCH")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{time:r,commitSha:s,commitMessage:a,description:o,includeSessionScenarios:i}=t;if(!r)return new Response(JSON.stringify({error:"time is required to identify the entry"}),{status:400,headers:{"Content-Type":"application/json"}});const l=process.env.CODEYAM_ROOT_PATH||process.cwd(),c=H.join(l,".codeyam","journal"),u=H.join(c,"index.json");console.log(`[editor-journal-update] Updating entry with time="${r}"`);let p={entries:[]};try{const g=await je.readFile(u,"utf8");p=JSON.parse(g)}catch{return new Response(JSON.stringify({error:"No journal index found"}),{status:404,headers:{"Content-Type":"application/json"}})}const h=Jv(p.entries,r);if(h===-1)return new Response(JSON.stringify({error:`No journal entry found with time "${r}"`}),{status:404,headers:{"Content-Type":"application/json"}});const m=p.entries[h];if(Hv(m))return console.log(`[editor-journal-update] Rejected: entry "${m.title}" already committed (${m.commitSha}). Create a new entry instead.`),new Response(JSON.stringify({error:`Journal entry already committed (${m.commitSha}). Create a new entry via POST /api/editor-journal-entry instead of updating.`}),{status:409,headers:{"Content-Type":"application/json"}});let f,y;if(i){const g=await Fu();g.length>0&&(f=g.map(x=>x.name),y=await Mo(g,l,new Date))}if(Vv(m,{commitSha:s,commitMessage:a,description:o,scenarios:f,scenarioScreenshots:y}),p.entries[h]=m,await je.writeFile(u,JSON.stringify(p,null,2),"utf8"),console.log("[editor-journal-update] Updated index.json"),s)try{const g=m.date,x=H.join(c,`${g}.md`);let b="";try{b=await je.readFile(x,"utf8")}catch{}if(b){const v=Kv(b,m.title,s,a||null);v&&(await je.writeFile(x,v,"utf8"),console.log(`[editor-journal-update] Appended commit line to ${x}`))}}catch(g){console.warn("[editor-journal-update] Failed to update markdown:",g)}return ft.notifyChange("journal"),console.log(`[editor-journal-update] Done: updated entry "${m.title}"`),new Response(JSON.stringify({success:!0,entry:m}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-update] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Zv=Object.freeze(Object.defineProperty({__proto__:null,action:Qv},Symbol.toStringTag,{value:"Module"}));async function Xv({request:e}){var t;try{const r=process.env.CODEYAM_ROOT_PATH||process.cwd(),s=await vu(r);let a=0;const o={};for(const[c,u]of Object.entries(s))u.errors.length>0&&(o[c]=u,a+=u.errors.length);let i=Bl();if(!i)for(let c=0;c<20&&(await new Promise(u=>setTimeout(u,500)),i=Bl(),!i);c++);const l=((t=i==null?void 0:i.errors)==null?void 0:t.length)??0;return new Response(JSON.stringify({hasErrors:a>0||l>0,totalErrors:a+l,scenarios:o,livePreview:i?{loaded:i.loaded,hasContent:i.hasContent,errors:i.errors,url:i.url,lastUpdated:i.lastUpdated}:null}),{headers:{"Content-Type":"application/json"}})}catch(r){const s=r instanceof Error?r.message:String(r);return console.error("[editor-client-errors] Error:",r),new Response(JSON.stringify({error:s}),{status:500,headers:{"Content-Type":"application/json"}})}}const ew=Object.freeze(Object.defineProperty({__proto__:null,loader:Xv},Symbol.toStringTag,{value:"Module"}));async function tw({request:e}){try{const r=(await Mn()||[]).filter(i=>i.analyses&&i.analyses.length>0).map(i=>{var y;const l=i.analyses[0],c=l.scenarios||[],u=!((y=l.status)!=null&&y.finishedAt),p=i.entityType||"visual",m=p==="library"||p==="functionCall"?c.some(g=>{var x;return!!((x=g.metadata)!=null&&x.executionResult)}):c.some(g=>{var x,b,v,S;return((b=(x=g.metadata)==null?void 0:x.screenshotPaths)==null?void 0:b[0])&&!((v=g.metadata)!=null&&v.noScreenshotSaved)&&!((S=g.metadata)!=null&&S.sameAsDefault)}),f=c.length;return{name:i.name,entityType:p,filePath:i.filePath||"",hasScreenshot:m,isAnalyzing:u,scenarioCount:f}}),s=r.filter(i=>i.hasScreenshot),a=r.filter(i=>!i.hasScreenshot&&!i.isAnalyzing).map(i=>i.name),o=r.filter(i=>i.isAnalyzing).length;return new Response(JSON.stringify({entities:r,summary:{total:r.length,withScreenshots:s.length,missingScreenshots:a,analyzing:o}}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-entity-status] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const nw=Object.freeze(Object.defineProperty({__proto__:null,loader:tw},Symbol.toStringTag,{value:"Module"}));async function rw({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{title:r,type:s,description:a,scenarios:o,includeSessionScenarios:i,screenshot:l,commitSha:c,commitMessage:u}=t;if(console.log(`[editor-journal-entry] Creating journal entry: title="${r}", type="${s}", scenarios=${JSON.stringify(o||[])}, includeSessionScenarios=${!!i}, screenshot=${l||"none"}`),!r||!s||!a)return console.warn("[editor-journal-entry] Missing required fields:",{title:!!r,type:!!s,description:!!a}),new Response(JSON.stringify({error:"title, type, and description are required"}),{status:400,headers:{"Content-Type":"application/json"}});const p=process.env.CODEYAM_ROOT_PATH||process.cwd(),h=H.join(p,".codeyam","journal");await je.mkdir(h,{recursive:!0});const m=new Date,f=m.toISOString().split("T")[0],y=m.toISOString();let g=o||[];const x=H.join(h,"index.json");let b={entries:[]};try{const F=await je.readFile(x,"utf8");b=JSON.parse(F)}catch{}let v;i&&b.entries.length>0&&(v=b.entries[b.entries.length-1].time);const S=i?await Fu(v):o&&o.length>0?await Gv(o):[];i&&S.length>0&&(g=S.map(F=>F.name));const w=await Mo(S,p,m);let C;try{const F=Se()||process.cwd(),Y=await Ye();if(Y){const{project:J}=await Re(Y),B=await $e().selectFrom("editor_scenarios").select(["name","component_name","component_path","page_file_path","url","display_name"]).where("project_id","=",J.id).orderBy("created_at","asc").execute(),D=kt(B,W=>`${W.name}::${W.url||"/"}`).map(W=>({componentName:W.component_name||null,componentPath:W.component_path||null,pageFilePath:W.page_file_path??null,url:W.url??null,displayName:W.display_name??null})),E=await fr({projectRoot:F,scenarioInputs:D});Object.keys(E.entityChangeStatus).length>0&&(C=E.entityChangeStatus)}}catch{}if(C&&Object.keys(C).length>0){const F=new Set(S.map(J=>J.name)),Y=Object.entries(C).filter(([,J])=>J.status==="impacted").map(([J])=>J);if(Y.length>0){const J=[],O=new Set(S.map(B=>Kt(B)));for(const B of Y)O.has(B)||J.push(B);if(J.length>0)try{const B=await qv(J);if(B.length>0){const T=await Mo(B.filter(D=>!F.has(D.name)),p,m);w.push(...T),g.push(...T.map(D=>D.name))}}catch{}}}let k=w,N=g;if(!i&&C&&Object.keys(C).length>0){k=K0(w,C);const F=new Set(k.map(Y=>Y.name));N=g.filter(Y=>F.has(Y))}const A=Ca(p),_=_i(p);let M;try{const F=mr();F.length>0&&(M=F.filter(Y=>Y.status!=="deleted").map(Y=>({path:Y.path,status:Y.status})))}catch{}const $=H.join(h,`${f}.md`);let I="";try{I=await je.readFile($,"utf8")}catch{I=`# Development Journal — ${f}
|
|
444
|
-
`}const R=Wv({title:r,timeStr:y,type:s,description:a,allScenarioNames:N,screenshot:l||null,scenarioScreenshots:k,commitSha:c||null,commitMessage:u||null,featureName:A,userPrompt:_});await je.writeFile($,I+R,"utf8"),console.log(`[editor-journal-entry] Written daily markdown: ${$}`);const P={date:f,time:y,title:r,type:s,description:a,scenarios:N,screenshot:l||null,scenarioScreenshots:k,commitSha:c||null,commitMessage:u||null,entityChangeStatus:C,featureName:A,userPrompt:_,modifiedFiles:M};b.entries.push(P),await je.writeFile(x,JSON.stringify(b,null,2),"utf8"),console.log(`[editor-journal-entry] Updated index.json (now ${b.entries.length} entries)`);try{await je.unlink(H.join(p,"editor-user-prompt.txt"))}catch{}return ft.notifyChange("journal"),console.log(`[editor-journal-entry] Done: title="${r}", scenarioScreenshotsEmbedded=${k.length}`),new Response(JSON.stringify({success:!0,entry:P,scenarioScreenshotsFound:k.length}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-entry] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const sw=Object.freeze(Object.defineProperty({__proto__:null,action:rw},Symbol.toStringTag,{value:"Module"}));function aw({request:e}){const t={"Content-Type":"application/json","Access-Control-Allow-Origin":"*"};try{const r=Se()||process.cwd();let o=new URL(e.url).searchParams.get("scenarioId");if(!o){const c=H.join(r,".codeyam","active-scenario.json");if(!G.existsSync(c))return new Response(JSON.stringify({}),{headers:t});o=JSON.parse(G.readFileSync(c,"utf-8")).scenarioId||null}if(!o)return new Response(JSON.stringify({}),{headers:t});const i=H.join(r,".codeyam","editor-scenarios",`${o}.json`);if(!G.existsSync(i))return new Response(JSON.stringify({}),{headers:t});const l=G.readFileSync(i,"utf-8");return new Response(l,{headers:t})}catch{return new Response(JSON.stringify({}),{headers:t})}}const ow=Object.freeze(Object.defineProperty({__proto__:null,loader:aw},Symbol.toStringTag,{value:"Module"}));async function iw({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),r=Array.isArray(t.paths)?t.paths:[],s=Array.isArray(t.apiRoutes)?t.apiRoutes:[];if(r.length===0&&s.length===0)return new Response(JSON.stringify({error:'At least one entry in "paths" or "apiRoutes" is required.'}),{status:400,headers:{"Content-Type":"application/json"}});const a=globalThis.__codeyam_editor_dev_server__;if(!a||!a.url||a.status!=="running")return new Response(JSON.stringify({error:`Dev server is not running. Start it with: codeyam editor dev-server '{"action":"start"}'`}),{status:503,headers:{"Content-Type":"application/json"}});const o=a.url,i=1e4,l={},c={};let u=!0;for(const f of r)try{const y=await fetch(`${o}${f}`,{signal:AbortSignal.timeout(i)}),g=y.ok;g||(u=!1),l[f]={status:y.status,ok:g}}catch(y){u=!1,l[f]={status:0,ok:!1,error:y.message}}for(const f of s)try{const y=await fetch(`${o}${f}`,{signal:AbortSignal.timeout(i)}),g=y.ok;g||(u=!1);let x=!1,b;try{const v=await y.text();JSON.parse(v),x=!0,b=v.length>200?v.slice(0,200)+"…":v}catch{}c[f]={status:y.status,ok:g,isJSON:x,preview:b}}catch(y){u=!1,c[f]={status:0,ok:!1,isJSON:!1,error:y.message}}const p=r.length+s.length,h=Object.values(l).filter(f=>f.ok).length+Object.values(c).filter(f=>f.ok).length,m=u?`All ${p} routes OK`:`${h}/${p} routes passed`;return new Response(JSON.stringify({ok:u,routes:l,apiRoutes:c,summary:m}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-verify-routes] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const lw=Object.freeze(Object.defineProperty({__proto__:null,action:iw},Symbol.toStringTag,{value:"Module"}));async function cw(e,t){const r=Se();if(!r)return{entityCalls:[],analysisCalls:[]};const s=H.join(r,".codeyam","llm-calls");try{await je.access(s)}catch{return{entityCalls:[],analysisCalls:[]}}const a=[],o=[];try{const l=(await je.readdir(s)).filter(b=>b.endsWith(".json")),c=`${e}_`,u=t?`${t}_`:null,p=[],h=[];for(const b of l)b.startsWith(c)||u&&b.startsWith(u)?p.push(b):h.push(b);const m=p.map(async b=>{try{const v=H.join(s,b),S=await je.readFile(v,"utf-8");return JSON.parse(S)}catch{return null}}),f=h.map(async b=>{try{const v=H.join(s,b),S=await je.readFile(v,"utf-8"),w=JSON.parse(S);return w.object_id===e||t&&w.object_id===t?w:null}catch{return null}}),[y,g]=await Promise.all([Promise.all(m),Promise.all(f)]),x=[...y,...g].filter(b=>b!==null);for(const b of x)b.object_id===e?a.push(b):t&&b.object_id===t&&o.push(b);a.sort((b,v)=>v.created_at-b.created_at),o.sort((b,v)=>v.created_at-b.created_at)}catch(i){console.error("Error loading LLM calls:",i)}return{entityCalls:a,analysisCalls:o}}async function dw({params:e,request:t}){const{entitySha:r}=e;if(!r)return ne({error:"Entity SHA is required"},{status:400});const a=new URL(t.url).searchParams.get("analysisId")||void 0,o=await cw(r,a);return ne(o)}const uw=Object.freeze(Object.defineProperty({__proto__:null,loader:dw},Symbol.toStringTag,{value:"Module"}));function pw(){try{const e=Se()||process.cwd(),t=ee.join(e,".codeyam","config.json");if(!pe.existsSync(t))return Response.json({projectTitle:null,projectDescription:null,defaultScreenSize:null,screenSizes:null,projectScreenSizes:null,appFormats:null});const r=JSON.parse(pe.readFileSync(t,"utf8"));return Response.json({projectTitle:r.projectTitle||null,projectDescription:r.projectDescription||null,defaultScreenSize:r.defaultScreenSize||null,screenSizes:r.screenSizes||null,projectScreenSizes:r.projectScreenSizes||null,appFormats:r.appFormats||null,techStack:r.techStack||null})}catch{return Response.json({projectTitle:null,projectDescription:null,defaultScreenSize:null,screenSizes:null,appFormats:null,techStack:null})}}async function hw({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=Se()||process.cwd(),r=ee.join(t,".codeyam","config.json");if(!pe.existsSync(r))return new Response(JSON.stringify({error:"No config.json found"}),{status:404,headers:{"Content-Type":"application/json"}});const s=await e.json(),a=JSON.parse(pe.readFileSync(r,"utf8"));if(s.projectTitle!==void 0&&(a.projectTitle=s.projectTitle),s.projectDescription!==void 0&&(a.projectDescription=s.projectDescription),s.defaultScreenSize!==void 0&&(a.defaultScreenSize=s.defaultScreenSize),s.screenSizes!==void 0&&(a.screenSizes=s.screenSizes),s.appFormats!==void 0&&(a.appFormats=s.appFormats),s.techStack!==void 0&&(a.techStack=s.techStack),s.projectScreenSizes!==void 0&&(a.projectScreenSizes=s.projectScreenSizes),s.screenSizes&&!s.defaultScreenSize)for(const[o,i]of Object.entries(s.screenSizes)){const l=i;if(l.default){a.defaultScreenSize={name:o,width:l.width,height:l.height},s.defaultScreenSize=a.defaultScreenSize;break}}return pe.writeFileSync(r,JSON.stringify(a,null,2)),s.defaultScreenSize&&!s.skipBroadcast&&Ni(s.defaultScreenSize),ft.notifyChange("unknown"),new Response(JSON.stringify({success:!0,projectTitle:a.projectTitle||null,projectDescription:a.projectDescription||null,defaultScreenSize:a.defaultScreenSize||null,screenSizes:a.screenSizes||null,projectScreenSizes:a.projectScreenSizes||null,appFormats:a.appFormats||null,techStack:a.techStack||null}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const mw=Object.freeze(Object.defineProperty({__proto__:null,action:hw,loader:pw},Symbol.toStringTag,{value:"Module"}));function Du(e){try{const t=H.join(e,"package.json"),r=JSON.parse(G.readFileSync(t,"utf8")),s={...r.dependencies,...r.devDependencies};return s.vitest?"vitest":s.jest?"jest":null}catch{return null}}function fw(e,t){var i;const s=JSON.parse(t).testResults||[],a=[];for(const l of s)for(const c of l.assertionResults||[]){const u=c.ancestorTitles||[],p=c.title||c.fullName||"unknown",h=u.length>0?`${u.join(" > ")} > ${p}`:p;a.push({title:p,fullName:h,status:c.status==="passed"?"passed":c.status==="failed"?"failed":"skipped",duration:c.duration,failureMessages:(i=c.failureMessages)!=null&&i.length?c.failureMessages:void 0})}const o=a.some(l=>l.status==="failed");return{testFilePath:e,status:o?"failed":"passed",testCases:a}}function gw(e,t,r){var l;const a=JSON.parse(r).testResults||[],o=new Map;for(const c of a){const u=c.name||"",p=o.get(u);p?p.push(c):o.set(u,[c])}const i={};e.endsWith("/")||e+"";for(const c of t){const u=H.isAbsolute(c)?c:H.join(e,c),p=o.get(u);if(!p||p.length===0){i[c]={testFilePath:c,status:"error",testCases:[],errorMessage:`File not found in test output: ${c}`};continue}const h=[];for(const f of p)for(const y of f.assertionResults||[]){const g=y.ancestorTitles||[],x=y.title||y.fullName||"unknown",b=g.length>0?`${g.join(" > ")} > ${x}`:x;h.push({title:x,fullName:b,status:y.status==="passed"?"passed":y.status==="failed"?"failed":"skipped",duration:y.duration,failureMessages:(l=y.failureMessages)!=null&&l.length?y.failureMessages:void 0})}const m=h.some(f=>f.status==="failed");i[c]={testFilePath:c,status:m?"failed":"passed",testCases:h}}return i}function yw(e,t,r){return e==="vitest"?{cmd:"node",args:["./node_modules/.bin/vitest","run","--reporter=json","--outputFile",t,...r]}:{cmd:"./node_modules/.bin/jest",args:["--json","--outputFile",t,...r]}}async function xw(e,t){if(t.length===0)return{};const r=Du(e);if(!r){const c={};for(const u of t)c[u]={testFilePath:u,status:"error",testCases:[],errorMessage:"No test runner found (install vitest or jest)"};return c}const s=[],a={};for(const c of t){const u=H.isAbsolute(c)?c:H.join(e,c);G.existsSync(u)?s.push(c):a[c]={testFilePath:c,status:"error",testCases:[],errorMessage:"Test file not found"}}if(s.length===0)return a;const o=H.join(Xs.tmpdir(),`codeyam-test-result-${Date.now()}.json`),{cmd:i,args:l}=yw(r,o,s);return new Promise(c=>{var m;const u=xt(i,l,{cwd:e,stdio:"pipe",env:{...process.env,NODE_ENV:"test"}});let p="";(m=u.stderr)==null||m.on("data",f=>{p+=f.toString()});const h=setTimeout(()=>{u.kill("SIGTERM");for(const f of s)a[f]={testFilePath:f,status:"error",testCases:[],errorMessage:"Test timed out after 60 seconds"};c(a)},6e4);u.on("close",()=>{clearTimeout(h);try{const f=G.readFileSync(o,"utf8");G.unlinkSync(o);const y=gw(e,s,f);Object.assign(a,y)}catch{for(const f of s)a[f]={testFilePath:f,status:"error",testCases:[],errorMessage:p.trim().slice(0,500)||"Test runner failed to produce output"}}c(a)}),u.on("error",f=>{clearTimeout(h);for(const y of s)a[y]={testFilePath:y,status:"error",testCases:[],errorMessage:`Failed to spawn test runner: ${f.message}`};c(a)})})}async function bw(e,t){const r=Du(e);if(!r)return{testFilePath:t,status:"error",testCases:[],errorMessage:"No test runner found (install vitest or jest)"};const s=H.isAbsolute(t)?t:H.join(e,t);if(!G.existsSync(s))return{testFilePath:t,status:"error",testCases:[],errorMessage:"Test file not found"};const a=H.join(Xs.tmpdir(),`codeyam-test-result-${Date.now()}.json`);return new Promise(o=>{var h;let i,l;r==="vitest"?(l="node",i=["./node_modules/.bin/vitest","run","--reporter=json","--outputFile",a,t]):(l="./node_modules/.bin/jest",i=["--json","--outputFile",a,"--testPathPatterns",t]);const c=xt(l,i,{cwd:e,stdio:"pipe",env:{...process.env,NODE_ENV:"test"}});let u="";(h=c.stderr)==null||h.on("data",m=>{u+=m.toString()});const p=setTimeout(()=>{c.kill("SIGTERM"),o({testFilePath:t,status:"error",testCases:[],errorMessage:"Test timed out after 30 seconds"})},3e4);c.on("close",()=>{clearTimeout(p);try{const m=G.readFileSync(a,"utf8");G.unlinkSync(a),o(fw(t,m))}catch{o({testFilePath:t,status:"error",testCases:[],errorMessage:u.trim().slice(0,500)||"Test runner failed to produce output"})}}),c.on("error",m=>{clearTimeout(p),o({testFilePath:t,status:"error",testCases:[],errorMessage:`Failed to spawn test runner: ${m.message}`})})})}function rc(){return{version:1,results:{}}}function Ru(e,t,r){return e.sourceHash!==t||e.testHash!==r}function vw(e,t,r){return{testFilePath:e.testFilePath,status:e.status,testCases:e.testCases,...e.errorMessage?{errorMessage:e.errorMessage}:{},sourceHash:t,testHash:r,timestamp:new Date().toISOString()}}function ww(e,t){return{version:1,results:{...e.results,...t}}}const Ou="test-results.json";function Pi(e){const t=H.join(e,".codeyam",Ou);try{const r=G.readFileSync(t,"utf8"),s=JSON.parse(r);return s&&s.version===1&&s.results?s:rc()}catch{return rc()}}function Nw(e,t){const r=H.join(e,".codeyam");G.mkdirSync(r,{recursive:!0});const s=H.join(r,Ou);G.writeFileSync(s,JSON.stringify(t,null,2)+`
|
|
445
|
-
`)}function sc(e){try{const t=G.readFileSync(e);return Uo.createHash("sha256").update(t).digest("hex")}catch{return""}}function Ti(e,t){const r={};for(const s of t){const a=H.join(e,s.filePath),o=H.join(e,s.testFile);r[s.testFile]={sourceHash:sc(a),testHash:sc(o)}}return r}function Lu(e,t,r){const s=Pi(e),a=Ti(e,r),o={};for(const[l,c]of Object.entries(t)){const u=a[l];u&&(o[l]=vw(c,u.sourceHash,u.testHash))}const i=ww(s,o);Nw(e,i)}async function Sw({request:e}){const r=new URL(e.url).searchParams.get("testFile");if(!r)return new Response(JSON.stringify({status:"error",errorMessage:"Missing testFile parameter",testCases:[],testFilePath:""}),{headers:{"Content-Type":"application/json"}});const s=Se()||process.cwd();try{const a=await bw(s,r);try{const o=H.join(s,".codeyam","glossary.json"),i=G.readFileSync(o,"utf8"),c=fa(JSON.parse(i)).find(u=>u.testFile===r);c&&Lu(s,{[r]:a},[{filePath:c.filePath,testFile:r}])}catch{}return new Response(JSON.stringify(a),{headers:{"Content-Type":"application/json"}})}catch(a){const o=a instanceof Error?a.message:"Unknown error";return new Response(JSON.stringify({testFilePath:r,status:"error",testCases:[],errorMessage:o}),{status:500,headers:{"Content-Type":"application/json"}})}}const Cw=Object.freeze(Object.defineProperty({__proto__:null,loader:Sw},Symbol.toStringTag,{value:"Module"}));function ac(e,t){var r,s;try{return((s=(r=De(`git rev-parse ${e}`,{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}))==null?void 0:r.toString())==null?void 0:s.trim())??null}catch(a){return console.error(`Failed to get commit SHA for ${e}:`,a),""}}function kw(e,t,r,s){const a=lr.createHash("sha256");return a.update(`${e}:${t}:${r}:${s}`),a.digest("hex").substring(0,16)}function zu(){const e=Se();if(!e)throw new Error("No project root found");const t=ee.join(e,".codeyam","cache","branch-entity-diff");return pe.existsSync(t)||pe.mkdirSync(t,{recursive:!0}),t}function _w(e){try{const t=zu(),r=ee.join(t,`${e}.json`);if(!pe.existsSync(r))return null;const s=pe.readFileSync(r,"utf8");return JSON.parse(s)}catch(t){return console.error("Failed to read cache:",t),null}}function Ew(e,t){try{const r=zu(),s=ee.join(r,`${e}.json`);pe.writeFileSync(s,JSON.stringify(t,null,2))}catch(r){console.error("Failed to write cache:",r)}}function Aw(e,t,r){const s=Ys(t,e),a=Ys(r,e),o=new Map(s.map(p=>[p.name,p])),i=new Map(a.map(p=>[p.name,p])),l=[],c=[],u=[];for(const[p,h]of i){const m=o.get(p);m?m.sha!==h.sha&&c.push({name:p,baseSha:m.sha,compareSha:h.sha,entityType:h.entityType}):l.push(h)}for(const[p,h]of o)i.has(p)||u.push(h);return{filePath:e,newEntities:l,modifiedEntities:c,deletedEntities:u}}function jw(e,t){const r=Se();if(!r)throw new Error("No project root found");const s=ac(e,r),a=ac(t,r);if(!s||!a)throw new Error(`Failed to get commit SHAs for branches: ${e}, ${t}`);const o=kw(e,t,s,a),i=_w(o);if(i)return console.log(`Using cached branch entity diff: ${o}`),i;const l=Nu(e,t),c=[];for(const p of l)if(p.path.match(/\.(tsx?|jsx?)$/))if(p.status==="deleted"){const h=Ps(p.path,e,t),m=Ys(h.oldContent,p.path);c.push({filePath:p.path,newEntities:[],modifiedEntities:[],deletedEntities:m})}else if(p.status==="added"){const h=Ps(p.path,e,t),m=Ys(h.newContent,p.path);c.push({filePath:p.path,newEntities:m,modifiedEntities:[],deletedEntities:[]})}else{const h=Ps(p.path,e,t),m=Aw(p.path,h.oldContent,h.newContent);(m.newEntities.length>0||m.modifiedEntities.length>0||m.deletedEntities.length>0)&&c.push(m)}const u={baseBranch:e,compareBranch:t,baseCommitSha:s,compareCommitSha:a,fileComparisons:c,cacheKey:o,computedAt:new Date().toISOString()};return Ew(o,u),u}function Pw({request:e}){try{const t=new URL(e.url),r=t.searchParams.get("base"),s=t.searchParams.get("compare");if(!r||!s)return ne({error:"Missing required parameters: base and compare"},{status:400});const a=jw(r,s);return ne(a)}catch(t){return console.error("Failed to compute branch entity diff:",t),ne({error:"Failed to compute branch entity diff",details:t instanceof Error?t.message:String(t)},{status:500})}}const Tw=Object.freeze(Object.defineProperty({__proto__:null,loader:Pw},Symbol.toStringTag,{value:"Module"}));async function Mw({request:e}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});try{const t=await e.json(),{serverUrl:r,scenarioId:s,projectId:a,viewportWidth:o=1440}=t;if(!r||!s||!a)return ne({error:"Missing required fields: serverUrl, scenarioId, and projectId"},{status:400});console.log(`[Capture] URL to capture: ${r}`),console.log(`[Capture] Scenario ID from request: ${s}`);const i=Se();if(!i)return ne({error:"Project root not found"},{status:500});const l=H.join(i,"background","src","lib","virtualized","playwright","captureFromUrl.ts"),c=JSON.stringify({url:r,scenarioId:s,projectId:a,projectRoot:i,viewportWidth:o}),u=await new Promise(m=>{const f=H.join(i,".codeyam","db.sqlite3"),y=xt("npx",["tsx",l,c],{cwd:i,env:{...process.env,SQLITE_PATH:f}});let g="",x="";y.stdout.on("data",b=>{const v=b.toString();g+=v;const S=v.trim().split(`
|
|
446
|
-
`);for(const w of S)w.includes("[Capture]")&&console.log(w)}),y.stderr.on("data",b=>{const v=b.toString();x+=v,console.error("[Capture:Error]",v.trim())}),y.on("close",b=>{m(b===0?{success:!0,output:g}:{success:!1,output:g,error:x||`Process exited with code ${b}`})}),y.on("error",b=>{console.error("[Capture] Failed to spawn child process:",b),m({success:!1,output:"",error:b.message})})});if(!u.success)return ne({error:"Failed to capture screenshot",details:u.error},{status:500});const p=u.output.match(/\[Capture\] RESULT:(.+)/);if(!p)return ne({error:"Failed to parse capture result"},{status:500});const h=JSON.parse(p[1]);return ne(h)}catch(t){return console.error("[Capture] Error:",t),ne({error:"Failed to capture screenshot",details:t instanceof Error?t.message:String(t)},{status:500})}}const $w=Object.freeze(Object.defineProperty({__proto__:null,action:Mw},Symbol.toStringTag,{value:"Module"}));function Iw(e){const t=e||process.cwd();try{return De("git rev-parse HEAD",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim()}catch(r){throw new Error(`Failed to get HEAD SHA: ${r}`)}}function Fw(e){const t=e||process.cwd();try{return De("git rev-parse --git-dir",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),!0}catch{return!1}}function Dw(e){if(Fw(e))return!1;De("git init",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]});try{De('git config user.email "codeyam@local"',{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),De('git config user.name "CodeYam"',{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]})}catch{}return!0}function Rw(e){De("git add -A",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]})}function Ow(e,t){return De(`git commit -m ${JSON.stringify(t)}`,{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),Iw(e)}function Lw(e){return/^[0-9a-f]{7,40}$/i.test(e)}function zw(e,t){try{return De(`git cat-file -t ${t}`,{cwd:e,encoding:"utf8",stdio:"pipe"}),!0}catch{return!1}}function Bw(e,t){try{return{stashed:!De(`git stash push -m ${JSON.stringify(t)}`,{cwd:e,encoding:"utf8",stdio:"pipe"}).includes("No local changes")}}catch{return{stashed:!1}}}function Yw(e,t){De(`git checkout ${t}`,{cwd:e,encoding:"utf8",stdio:"pipe"})}async function Uw({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{commitSha:r}=t;if(!r||typeof r!="string")return new Response(JSON.stringify({success:!1,error:"commitSha is required"}),{status:400,headers:{"Content-Type":"application/json"}});if(!Lw(r))return new Response(JSON.stringify({success:!1,error:"Invalid commit SHA format"}),{status:400,headers:{"Content-Type":"application/json"}});const s=process.env.CODEYAM_ROOT_PATH||process.cwd();if(console.log(`[editor-load-commit] Loading commit ${r} in ${s}`),!zw(s,r))return new Response(JSON.stringify({success:!1,error:`Commit ${r} not found`}),{status:400,headers:{"Content-Type":"application/json"}});const{stashed:a}=Bw(s,"codeyam: auto-stash before time travel");a&&console.log("[editor-load-commit] Stashed uncommitted changes");try{Yw(s,r),console.log(`[editor-load-commit] Checked out ${r}`)}catch(o){const i=o instanceof Error?o.message:String(o);return console.error("[editor-load-commit] Checkout failed:",i),new Response(JSON.stringify({success:!1,error:`Checkout failed: ${i}`}),{status:500,headers:{"Content-Type":"application/json"}})}try{const i=await(await fetch(`http://localhost:${process.env.CODEYAM_PORT||"3111"}/api/editor-dev-server`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"restart"})})).json();console.log("[editor-load-commit] Dev server restart:",i)}catch(o){console.warn("[editor-load-commit] Dev server restart warning:",o)}return new Response(JSON.stringify({success:!0,stashed:a}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-load-commit] Error:",t),new Response(JSON.stringify({success:!1,error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Ww=Object.freeze(Object.defineProperty({__proto__:null,action:Uw},Symbol.toStringTag,{value:"Module"}));async function Jw(e,t,r){var f;console.log(`[recapture] Starting recapture for analysis ${e} with width ${t}`),await Je();const s=await Ht({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw console.log(`[recapture] Analysis ${e} not found`),new Error(`Analysis ${e} not found`);const a=$e(),o=s.entitySha,i=await a.selectFrom("entities").select(["metadata"]).where("sha","=",o).executeTakeFirst();let l={};if(i!=null&&i.metadata&&(typeof i.metadata=="string"?l=JSON.parse(i.metadata):l=i.metadata),l.defaultWidth=t,await a.updateTable("entities").set({metadata:JSON.stringify(l)}).where("sha","=",o).execute(),console.log(`[recapture] Updated defaultWidth for entity ${o} to ${t}`),!s.commit)throw new Error(`Commit not found for analysis ${e}`);console.log(`[recapture] Loaded analysis with ${((f=s.scenarios)==null?void 0:f.length)||0} scenarios`),await dr(e,y=>{if(y){if(y.readyToBeCaptured=!0,y.scenarios)for(const g of y.scenarios)delete g.finishedAt,delete g.startedAt,delete g.screenshotStartedAt,delete g.screenshotFinishedAt,delete g.interactiveStartedAt,delete g.interactiveFinishedAt,delete g.error,delete g.errorStack;delete y.finishedAt}}),console.log(`[recapture] Marked analysis ${e} as ready to be captured`);const c=Se();if(!c)throw new Error("Project root not found");const u=H.join(c,".codeyam","config.json"),p=JSON.parse(G.readFileSync(u,"utf8")),{projectSlug:h}=p;if(!h)throw new Error("Project slug not found in config");const{jobId:m}=r.enqueue({type:"recapture",commitSha:s.commit.sha,projectSlug:h,analysisId:e,defaultWidth:t});return console.log(`[recapture] Recapture job queued with ID: ${m}`),{jobId:m}}async function Hw(e,t,r){var p;console.log(`[recapture] Starting scenario recapture for analysis ${e}, scenario ${t}`),await Je();const s=await Ht({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw console.log(`[recapture] Analysis ${e} not found`),new Error(`Analysis ${e} not found`);if(!s.commit)throw new Error(`Commit not found for analysis ${e}`);const a=(p=s.scenarios)==null?void 0:p.find(h=>h.id===t);if(!a)throw console.log(`[recapture] Scenario ${t} not found in analysis ${e}`),new Error(`Scenario ${t} not found in analysis ${e}`);console.log(`[recapture] Found scenario: ${a.name}`),await dr(e,h=>{if(h&&(h.readyToBeCaptured=!0,delete h.finishedAt,h.scenarios)){const m=h.scenarios.find(f=>f.name===a.name);m&&(delete m.finishedAt,delete m.startedAt,delete m.error,delete m.errorStack,delete m.screenshotStartedAt,delete m.screenshotFinishedAt,delete m.interactiveStartedAt,delete m.interactiveFinishedAt)}}),console.log(`[recapture] Cleared errors and marked scenario ${a.name} for recapture`);const o=Se();if(!o)throw new Error("Project root not found");const i=H.join(o,".codeyam","config.json"),l=JSON.parse(G.readFileSync(i,"utf8")),{projectSlug:c}=l;if(!c)throw new Error("Project slug not found in config");const{jobId:u}=r.enqueue({type:"recapture",commitSha:s.commit.sha,projectSlug:c,analysisId:e,scenarioId:t});return console.log(`[recapture] Scenario recapture job queued with ID: ${u}`),{jobId:u}}async function Vw({request:e,context:t}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Vt()),!r)return ne({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("scenarioId");if(!a||!o)return ne({error:"Missing required fields: analysisId and scenarioId"},{status:400});console.log(`[API] Starting scenario recapture for analysis ${a}, scenario ${o}`);const i=await Hw(a,o,r);return console.log("[API] Scenario recapture queued",i),ne({success:!0,message:"Scenario recapture queued",...i})}catch(s){return console.log("[API] Error during scenario recapture:",s),ne({error:"Failed to recapture scenario",details:s instanceof Error?s.message:String(s)},{status:500})}}const Kw=Object.freeze(Object.defineProperty({__proto__:null,action:Vw},Symbol.toStringTag,{value:"Module"}));async function $o(e){try{return await Pe.stat(e),!0}catch{return!1}}async function Bu(){try{const e=Se();if(!e)return null;const t=ee.join(e,".codeyam","config.json");return JSON.parse(await Pe.readFile(t,"utf-8")).projectSlug||null}catch{return null}}function Gw(){return`/private/tmp/claude-501/-${(Se()||process.cwd()).replace(/^\//,"").replace(/\//g,"-")}/tasks`}const Ts="/tmp/claude-rule-markers",qw=/<system-reminder>[\s\S]*?<\/system-reminder>/g,oc=2e3;function Qw(e,t){if(e==="Read"||e==="Write"||e==="Edit")return String(t.file_path||"");if(e==="Glob")return String(t.pattern||"");if(e==="Grep"){const r=String(t.pattern||""),s=String(t.path||"");return s?`"${r}" in ${s}`:`"${r}"`}if(e==="Bash"){const r=String(t.command||"");return r.length>100?r.slice(0,100)+"...":r}if(e==="Task")return String(t.description||String(t.prompt||"").slice(0,80));for(const r of Object.values(t))if(typeof r=="string"&&r)return r.slice(0,80);return""}const Zw=["no,","no ","that's not","thats not","that is not","wrong","incorrect","actually,","actually ","i meant","i mean","not what i","stop","wait","don't do","dont do","shouldn't","should not","try again","let me clarify","to clarify","that broke","that failed","error","bug"];function Xw(e){const t=[],r=new Set;for(const s of e)if(!(s.type!=="tool_call"||!s.name||!s.input)){if(s.name==="Write"||s.name==="Edit"){const a=String(s.input.file_path||"");if(a.includes(".claude/rules/")){const o=a.replace(/^.*?(\.claude\/rules\/)/,"$1"),i=`${s.name}:${o}`;r.has(i)||(r.add(i),s.name==="Write"?t.push({action:"created",filePath:o,content:String(s.input.content||"")}):t.push({action:"modified",filePath:o,oldString:String(s.input.old_string||""),newString:String(s.input.new_string||"")}))}}else if(s.name==="Bash"){const a=String(s.input.command||"");if(a.includes("codeyam memory touch")){const o=`touch:${a}`;r.has(o)||(r.add(o),t.push({action:"touched",filePath:a}))}}}return t}function eN(e){if(!e)return;const t="### Session transcript",r=e.indexOf(t);if(r===-1)return;let s=e.slice(r+t.length).trim();const a=s.indexOf(`
|
|
447
|
-
###`);return a!==-1&&(s=s.slice(0,a).trim()),s||void 0}function tN(e){for(const t of e){if(t.type!=="user_prompt")continue;const r=(t.text||"").toLowerCase();for(const s of Zw)if(r.includes(s))return!0}return!1}function nN(e){for(const t of e){const r=t.trim();if(r)try{const s=JSON.parse(r);if(s.type==="assistant"){const a=(s.message||{}).model;if(typeof a=="string"&&a)return a}}catch{continue}}}function rN(e){for(const t of e){const r=t.trim();if(r)try{const s=JSON.parse(r);if(s.type!=="result")continue;const a={subtype:String(s.subtype||"unknown"),is_error:!!s.is_error};if(typeof s.duration_ms=="number"&&(a.duration_ms=s.duration_ms),typeof s.duration_api_ms=="number"&&(a.duration_api_ms=s.duration_api_ms),typeof s.num_turns=="number"&&(a.num_turns=s.num_turns),typeof s.total_cost_usd=="number"&&(a.total_cost_usd=s.total_cost_usd),s.usage&&typeof s.usage=="object"){a.usage={};for(const o of["input_tokens","output_tokens","cache_read_input_tokens","cache_creation_input_tokens"])typeof s.usage[o]=="number"&&(a.usage[o]=s.usage[o])}return Array.isArray(s.errors)&&s.errors.length>0&&(a.errors=s.errors.map(String)),a}catch{continue}}}function sN(e){const t=[],r={};for(const s of e){const a=s.trim();if(!a)continue;let o;try{o=JSON.parse(a)}catch{continue}const i=o.type;if(i==="progress"||i==="system"||i==="result")continue;const c=(o.message||{}).content,u=o.timestamp||"";if(i==="user"){if(typeof c=="string")t.push({type:"user_prompt",text:c,timestamp:u,agent_id:String(o.agentId||o.session_id||"unknown"),slug:String(o.slug||"")});else if(Array.isArray(c)){for(const p of c)if(typeof p=="object"&&p!==null&&p.type==="tool_result"){const h=p,m=String(h.tool_use_id||"");let f=h.content;const y=!!h.is_error;typeof f=="string"&&(f=f.replace(qw,"").trim()),t.push({type:"tool_result",tool_use_id:m,tool_name:r[m]||"unknown",content:typeof f=="string"?f:JSON.stringify(f),is_error:y,timestamp:u})}}}else if(i==="assistant"&&Array.isArray(c))for(const p of c){if(typeof p!="object"||p===null)continue;const h=p;if(h.type==="text"){const m=String(h.text||"").trim();m&&t.push({type:"assistant_text",text:m,timestamp:u})}else if(h.type==="tool_use"){const m=String(h.id||""),f=String(h.name||"unknown"),y=h.input||{};r[m]=f,t.push({type:"tool_call",tool_use_id:m,name:f,input:y,timestamp:u})}}}return t}function aN(e,t){return e.type==="user_prompt"||e.type==="assistant_text"?(e.text||"").toLowerCase().includes(t):e.type==="tool_call"?(e.name||"").toLowerCase().includes(t)?!0:JSON.stringify(e.input||{}).toLowerCase().includes(t):e.type==="tool_result"?(e.content||"").toLowerCase().includes(t):!1}const Qn=20;async function ic(e){const r=(await Pe.readFile(e.filePath,"utf-8")).split(`
|
|
448
|
-
`),s=sN(r);if(s.length===0)return null;const a=s.find(S=>S.type==="user_prompt"),o=e.stem,i=nN(r);let l=(a==null?void 0:a.slug)||"",c=(a==null?void 0:a.timestamp)||"";c||(c=new Date(e.mtime).toISOString());let u;if(e.filePath.endsWith(".log")){e.stem.endsWith("-stale")?l=l||"rule-reflection/stale":e.stem.endsWith("-conversation")?l=l||"rule-reflection/conversation":e.stem.endsWith("-interruption")?l=l||"rule-reflection/interruption":l=l||"rule-reflection";const S=e.filePath.replace(/\.log$/,".context");if(await $o(S))try{u=await Pe.readFile(S,"utf-8")}catch{}}const p=s.filter(S=>S.type==="tool_call").length,h=s.filter(S=>S.type==="assistant_text").length,m=s.filter(S=>S.type==="tool_result"&&S.is_error&&S.content!=="Sibling tool call errored"),f=m.length,y=m.map(S=>{const w=S.content||"Unknown error";return w.length>150?w.slice(0,150)+"...":w});for(const S of s)S.type==="tool_call"&&S.name&&S.input&&(S.summary=Qw(S.name,S.input));for(const S of s)S.type==="tool_result"&&S.content&&S.content.length>oc&&(S.truncated=!0,S.fullLength=S.content.length,S.content=S.content.slice(0,oc));const g=Xw(s),x=tN(s),b=eN(u),v=rN(r);return{id:o,slug:l,timestamp:c,model:i,sourceFile:e.filePath,stats:{toolCalls:p,textBlocks:h,errors:f,errorMessages:y},entries:s,context:u,conversationSnippet:b,ruleChanges:g,hasConfusion:x,sessionResult:v}}async function oN(){const e=Gw(),t=Ts,r=[];if(await $o(e)){const i=await Pe.readdir(e);for(const l of i)if(l.endsWith(".output")){const c=ee.join(e,l),u=await Pe.stat(c);r.push({filePath:c,stem:l.replace(".output",""),mtime:u.mtimeMs})}}const s=new Set,a=await Bu(),o=[];a&&o.push(ee.join(t,a)),o.push(t);for(const i of o){if(!await $o(i))continue;const l=await Pe.readdir(i);for(const c of l){if(!c.endsWith(".log")||s.has(c))continue;s.add(c);const u=ee.join(i,c),p=await Pe.stat(u);r.push({filePath:u,stem:c.replace(".log",""),mtime:p.mtimeMs})}}return r.sort((i,l)=>l.mtime-i.mtime),r}async function iN({request:e}){var t;try{const r=new URL(e.url),s=((t=r.searchParams.get("search"))==null?void 0:t.toLowerCase())||"",a=Math.max(1,parseInt(r.searchParams.get("page")||"1",10)),o=await oN();if(!s){const p=o.length,h=(a-1)*Qn,m=o.slice(h,h+Qn),f=[];for(const y of m){const g=await ic(y);g&&f.push(g)}return Response.json({agents:f,total:p,page:a,pageSize:Qn})}const i=[];for(const p of o){const h=await ic(p);if(!h)continue;(h.id.toLowerCase().includes(s)||h.slug.toLowerCase().includes(s)||h.entries.some(f=>aN(f,s)))&&i.push(h)}const l=i.length,c=(a-1)*Qn,u=i.slice(c,c+Qn);return Response.json({agents:u,total:l,page:a,pageSize:Qn})}catch(r){return console.error("[api.agent-transcripts] Error:",r),Response.json({error:"Failed to load agent transcripts",details:r instanceof Error?r.message:String(r)},{status:500})}}const lN=Object.freeze(Object.defineProperty({__proto__:null,loader:iN},Symbol.toStringTag,{value:"Module"})),Yu="__codeyam_editor_dev_server__",lc=30;function Mi(){return globalThis[Yu]??null}function Uu(e){globalThis[Yu]=e}function vs(e,t){const r=[ee.join(e,".next","dev","lock"),ee.join(e,"node_modules",".vite","deps","_lock")];for(const s of r)try{pe.existsSync(s)&&(pe.unlinkSync(s),console.log(`[editor-dev-server] Removed stale lock file: ${s}`))}catch(a){console.warn(`[editor-dev-server] Failed to remove lock file ${s}:`,a)}if(t)try{const s=De(`lsof -ti:${t}`,{encoding:"utf8"}).trim();if(s){const a=process.pid,o=s.split(`
|
|
449
|
-
`).filter(i=>i&&parseInt(i,10)!==a);if(o.length>0){for(const i of o)try{De(`kill ${i}`)}catch{}console.log(`[editor-dev-server] Killed orphaned process(es) on port ${t}: ${o.join(", ")}`)}}}catch{}}function cN({request:e}){const t=Mi();return t?new Response(JSON.stringify({status:t.status,url:t.url,proxyUrl:uu(),pid:t.pid,errorMessage:t.status==="error"?t.errorMessage:null}),{headers:{"Content-Type":"application/json"}}):new Response(JSON.stringify({status:"stopped",url:null,proxyUrl:null}),{headers:{"Content-Type":"application/json"}})}async function dN({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{action:r}=t;return r==="start"?Io():r==="stop"?cc():r==="restart"?(cc(),await new Promise(s=>setTimeout(s,1e3)),Io()):new Response(JSON.stringify({error:'Invalid action. Use "start", "stop", or "restart".'}),{status:400,headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}function uN(){let t=ee.dirname(new URL(import.meta.url).pathname);for(let s=0;s<5;s++){const a=ee.dirname(t);if(ee.basename(a)==="webserver"||ee.basename(t)==="webserver"){t=ee.basename(t)==="webserver"?t:a;break}t=a}const r=[ee.join(t,"scripts","codeyam-preload.mjs"),ee.join(t,"scripts","codeyam-preload.mjs")];for(const s of r)if(pe.existsSync(s))return s;return console.warn("[editor-dev-server] codeyam-preload.mjs not found, SSR fetch interception disabled"),null}function Io(e=!1){var N,A;const t=Mi();if(t&&t.status!=="stopped"&&t.status!=="error")return new Response(JSON.stringify({status:t.status,url:t.url,message:"Dev server is already running"}),{headers:{"Content-Type":"application/json"}});const r=Se()||process.cwd(),s=parseInt(process.env.CODEYAM_PORT||"3111",10),{proxyPort:a,devServerPort:o}=ru(s),i=Ey(r,o);if("error"in i)return new Response(JSON.stringify({error:i.error}),{status:400,headers:{"Content-Type":"application/json"}});const{command:l,args:c,env:u}=i;vs(r,o),vs(r,3e3),vs(r,3001),vs(r,5173),console.log(`[editor-dev-server] Starting: ${l} ${c.join(" ")} in ${r}`);const p=uN(),h=p?`--import ${p}`:"",{NODE_OPTIONS:m,PORT:f,CODEYAM_PORT:y,...g}=process.env,x={};for(const _ of[".env",".env.local",".env.development",".env.development.local"])try{const M=ee.join(r,_);if(!pe.existsSync(M))continue;const $=pe.readFileSync(M,"utf-8");for(const I of $.split(`
|
|
450
|
-
`)){const R=I.trim();if(!R||R.startsWith("#"))continue;const P=R.indexOf("=");if(P===-1)continue;const F=R.slice(0,P).trim();let Y=R.slice(P+1).trim();(Y.startsWith('"')&&Y.endsWith('"')||Y.startsWith("'")&&Y.endsWith("'"))&&(Y=Y.slice(1,-1)),F&&(x[F]=Y)}}catch{}const b={};try{const _=ee.join(r,".codeyam","config.json"),M=JSON.parse(pe.readFileSync(_,"utf-8"));for(const $ of M.environmentVariables||[])$.key&&$.value!==void 0&&(b[$.key]=$.value)}catch{}const v=xt(l,c,{cwd:r,stdio:["ignore","pipe","pipe"],env:{...x,...g,...b,FORCE_COLOR:"1",BROWSER:"none",...h?{NODE_OPTIONS:h}:{},CODEYAM_PROXY_URL:`http://localhost:${a}`,...u},detached:!0});v.unref();const S=e?((t==null?void 0:t.retryCount)??0)+1:0,w={process:v,url:null,status:"starting",errorMessage:null,stderrBuffer:[],pid:v.pid||0,startedAt:Date.now(),retryCount:S};Uu(w);const C=(_,M)=>{const $=_.toString(),I=$.split(`
|
|
451
|
-
`).filter(R=>R.trim());if(I.length>0&&(w.stderrBuffer.push(...I),w.stderrBuffer.length>lc&&(w.stderrBuffer=w.stderrBuffer.slice(-lc))),w.status==="starting"){const R=jy($);R&&(w.url=R,w.status="running",console.log(`[editor-dev-server] URL detected: ${w.url}`),Eo({port:a,targetUrl:w.url}).then(()=>Wl()))}};(N=v.stdout)==null||N.on("data",_=>C(_)),(A=v.stderr)==null||A.on("data",_=>C(_));const k=parseInt(u.PORT||"0",10);return k>0&&(async()=>{if(await new Promise(M=>setTimeout(M,1e4)),w.status!=="starting")return;console.log(`[editor-dev-server] Stdout detection timed out, polling port ${k}...`);const _=await Ty(k,{intervalMs:2e3,maxAttempts:15});_&&w.status==="starting"&&(w.url=_,w.status="running",console.log(`[editor-dev-server] URL detected via polling: ${w.url}`),Eo({port:a,targetUrl:w.url}).then(()=>Wl()))})(),v.on("exit",_=>{console.log(`[editor-dev-server] Process exited with code ${_}`);const M=Date.now()-w.startedAt,$=w.status==="running",I=My({exitCode:_??null,uptime:M,retryCount:w.retryCount,wasRunning:$});if(I.action==="retry")console.log(`[editor-dev-server] Quick failure (${M}ms), auto-retrying...`),w.status="stopped",Io(!0);else if(I.action==="error"){w.status="error";const R=w.stderrBuffer.length>0?w.stderrBuffer.join(`
|
|
452
|
-
`):"",P=$?`Dev server exited with code ${_}`:`Dev server exited (code ${_}) before it started serving`;w.errorMessage=R?`${P}
|
|
453
|
-
|
|
454
|
-
${R}`:P,console.error(`[editor-dev-server] Server failed: ${w.errorMessage}`)}else w.status="stopped"}),v.on("error",_=>{console.error("[editor-dev-server] Process error:",_),w.status="error",w.errorMessage=_.message}),new Response(JSON.stringify({status:"starting",pid:v.pid,message:`Starting ${l} ${c.join(" ")}`}),{headers:{"Content-Type":"application/json"}})}function cc(){const e=Mi();if(!e||e.status==="stopped")return new Response(JSON.stringify({status:"stopped",message:"No server to stop"}),{headers:{"Content-Type":"application/json"}});fu();try{e.process.pid&&process.kill(-e.process.pid,"SIGTERM")}catch{try{e.process.kill("SIGTERM")}catch{}}return e.status="stopped",Uu(null),new Response(JSON.stringify({status:"stopped",message:"Dev server stopped"}),{headers:{"Content-Type":"application/json"}})}const pN=Object.freeze(Object.defineProperty({__proto__:null,action:dN,loader:cN},Symbol.toStringTag,{value:"Module"}));async function hN({params:e,request:t}){const{projectSlug:r}=e;if(!r)return new Response("Project slug is required",{status:400});if(t.method!=="DELETE")return new Response("Method not allowed",{status:405});const s=Gr(r);try{return await Mr(s,"","utf-8"),new Response("Logs cleared successfully",{status:200,headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch(a){console.error("[api.logs] Error clearing log file:",a);const o=a instanceof Error?a.message:String(a);return new Response(`Error clearing log file: ${o}`,{status:500,headers:{"Content-Type":"text/plain; charset=utf-8"}})}}async function mN({params:e}){const{projectSlug:t}=e;if(!t)return new Response("Project slug is required",{status:400});const r=Gr(t);try{if(!St(r))return new Response("No logs available yet. Analysis may not have started.",{status:404,headers:{"Content-Type":"text/plain; charset=utf-8"}});const s=await bo(r,"utf-8");return!s||s.trim().length===0?new Response("Log file is empty. Waiting for analysis to start...",{headers:{"Content-Type":"text/plain; charset=utf-8"}}):new Response(s,{headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch(s){console.error("[api.logs] Error reading log file:",s);const a=s instanceof Error?s.message:String(s);return new Response(`Error reading log file: ${a}`,{status:500,headers:{"Content-Type":"text/plain; charset=utf-8"}})}}const fN=Object.freeze(Object.defineProperty({__proto__:null,action:hN,loader:mN},Symbol.toStringTag,{value:"Module"}));function gN({request:e}){const r=new URL(e.url).searchParams.get("path");if(!r)return Response.json({error:"Missing path parameter"},{status:400});const s=Se()||process.cwd(),a=H.resolve(s,r);if(!a.startsWith(s+H.sep)&&a!==s)return Response.json({error:"Path outside project root"},{status:403});const o=Su(r,s);return Response.json(o)}const yN=Object.freeze(Object.defineProperty({__proto__:null,loader:gN},Symbol.toStringTag,{value:"Module"}));async function xN(){const e=await Ye();if(!e)return Response.json({error:"No project configured"},{status:400});const{project:t}=await Re(e),r=$e(),s=process.env.CODEYAM_PORT||"3111",a=Se()||process.cwd(),o=await r.selectFrom("editor_scenarios").select(["id","name","component_name","component_path","url","type","screenshot_path","page_file_path","display_name"]).where("project_id","=",t.id).orderBy("created_at","asc").execute(),i=kt(o,u=>`${u.name}::${u.url||"/"}`);let l={};try{const u=i.map(h=>({componentName:h.component_name||null,componentPath:h.component_path||null,pageFilePath:h.page_file_path??null,url:h.url??null,displayName:h.display_name??null}));l=(await fr({projectRoot:a,scenarioInputs:u})).entityChangeStatus}catch{}const c=i.map(u=>{const p=u,h=Kt({componentName:u.component_name,pageFilePath:p.page_file_path,url:p.url}),m=h?l[h]:void 0;return{id:u.id,name:u.name,componentName:u.component_name||null,type:u.type||null,changeStatus:(m==null?void 0:m.status)||null,screenshotPath:u.screenshot_path||null,link:`http://localhost:${s}/editor?scenario=${u.id}&ref=link`}});return Response.json({scenarios:c})}const bN=Object.freeze(Object.defineProperty({__proto__:null,loader:xN},Symbol.toStringTag,{value:"Module"}));async function vN(e,t){var o,i,l,c,u,p;console.log(`[executeLibraryFunction] Starting execution for analysis ${e}, scenario ${t}`),await Je();const r=await Ht({id:e,includeScenarios:!0,includeFile:!0});if(!r)throw new Error(`Analysis ${e} not found`);const s=(o=r.scenarios)==null?void 0:o.find(h=>h.id===t);if(!s)throw new Error(`Scenario ${t} not found in analysis ${e}`);console.log(`[executeLibraryFunction] Executing ${r.entityName} with scenario ${s.name}`);const a={returnValue:{status:"success",data:((c=(l=(i=s.metadata)==null?void 0:i.data)==null?void 0:l.argumentsData)==null?void 0:c[0])||{},timestamp:new Date().toISOString()},error:null,sideEffects:{consoleOutput:[{level:"log",args:[`Executing ${r.entityName}...`]},{level:"log",args:["Processing input:",JSON.stringify((p=(u=s.metadata)==null?void 0:u.data)==null?void 0:p.argumentsData)]},{level:"log",args:["Execution completed successfully"]}],fileWrites:[],apiCalls:[]},timing:{duration:Math.floor(Math.random()*100)+10,timestamp:new Date().toISOString()}};return console.log(`[executeLibraryFunction] Execution completed for ${r.entityName}`),a}async function wN({request:e}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});try{const t=await e.formData(),r=t.get("analysisId"),s=t.get("scenarioId");if(!r||!s)return ne({error:"Missing required fields: analysisId and scenarioId"},{status:400});console.log(`[API] Executing library function for analysis ${r}, scenario ${s}`);const a=await vN(r,s);return console.log("[API] Function execution completed successfully"),ne({success:!0,result:a})}catch(t){return console.log("[API] Error during function execution:",t),ne({success:!1,error:"Failed to execute function",details:t instanceof Error?t.message:String(t)},{status:500})}}const NN=Object.freeze(Object.defineProperty({__proto__:null,action:wN},Symbol.toStringTag,{value:"Module"}));function SN({request:e}){return ne({status:"ok"})}async function CN({request:e,context:t}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Vt()),!r)return console.error("[Interactive Mode API] Queue not initialized"),ne({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("action"),o=s.get("analysisId"),i=s.get("scenarioId");if(!a||!o)return ne({error:"Missing required fields: action and analysisId"},{status:400});if(a!=="start"&&a!=="stop")return ne({error:'Invalid action. Must be "start" or "stop"'},{status:400});const l=await Ye();if(console.log("[Interactive Mode API] projectSlug:",l),!l)return ne({error:"Project not initialized"},{status:500});if(a==="start"){const c=await r.enqueue({type:"interactive-start",analysisId:o,scenarioId:i,projectSlug:l});return ne({success:!0,action:"start",message:"Interactive mode starting...",jobId:c})}else{const c=await r.enqueue({type:"interactive-stop",analysisId:o,projectSlug:l});return ne({success:!0,action:"stop",message:"Interactive mode stopping...",jobId:c})}}catch(s){console.error("[Interactive Mode API] Error:",s);const a=s instanceof Error?s.message:String(s),o=s instanceof Error?s.stack:void 0;return console.error("[Interactive Mode API] Error stack:",o),ne({error:"Failed to control interactive mode",details:a},{status:500})}}const kN=Object.freeze(Object.defineProperty({__proto__:null,action:CN,loader:SN},Symbol.toStringTag,{value:"Module"}));async function _N({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{scenarioId:r,screenshotPaths:s}=t;if(!r)return Response.json({error:"Missing required field: scenarioId"},{status:400});if(console.log(`[API] Deleting scenario ${r}`),s&&s.length>0){const a=Se();if(a)for(const o of s){const i=ee.join(a,".codeyam","captures","screenshots",o);try{await Pe.unlink(i),console.log(`[API] Deleted screenshot: ${i}`)}catch(l){console.log(`[API] Could not delete screenshot ${i}:`,l instanceof Error?l.message:l)}}}await Rf({ids:[r]});try{await $e().deleteFrom("editor_scenarios").where("id","=",r).execute()}catch{}try{const a=Se()||process.cwd();Ex(a,r)}catch{}return console.log(`[API] Scenario ${r} deleted successfully`),Response.json({success:!0,message:"Scenario deleted successfully"})}catch(t){return console.error("[API] Error deleting scenario:",t),Response.json({error:"Failed to delete scenario",details:t instanceof Error?t.message:String(t)},{status:500})}}const EN=Object.freeze(Object.defineProperty({__proto__:null,action:_N},Symbol.toStringTag,{value:"Module"}));class AN extends Vr{emitFileSynced(t,r){this.emit("event",{type:"file-synced",fileName:t,filePath:r,timestamp:Date.now()})}emitError(t,r){this.emit("event",{type:"sync-error",fileName:t,filePath:r,timestamp:Date.now()})}emitRefreshPreview(){this.emit("event",{type:"refresh-preview",timestamp:Date.now()})}}const Fo="__codeyam_dev_mode_event_emitter__";if(!globalThis[Fo]){const e=new AN;e.setMaxListeners(20),globalThis[Fo]=e}const dc=globalThis[Fo];function jN({request:e}){const t=new ReadableStream({start(r){const s=new TextEncoder;r.enqueue(s.encode(`data: ${JSON.stringify({type:"connected"})}
|
|
455
|
-
|
|
456
|
-
`));let a=!1;const o=()=>{if(!a){a=!0,dc.off("event",i),clearInterval(l);try{r.close()}catch{}}},i=c=>{try{r.enqueue(s.encode(`data: ${JSON.stringify(c)}
|
|
457
|
-
|
|
458
|
-
`))}catch{o()}};dc.on("event",i);const l=setInterval(()=>{try{r.enqueue(s.encode(`data: ${JSON.stringify({type:"keepalive"})}
|
|
459
|
-
|
|
460
|
-
`))}catch{o()}},3e4);e.signal.addEventListener("abort",o)}});return new Response(t,{headers:{"Content-Type":"text/event-stream","Cache-Control":"no-cache",Connection:"keep-alive"}})}const PN=Object.freeze(Object.defineProperty({__proto__:null,loader:jN},Symbol.toStringTag,{value:"Module"})),Ur="/tmp/codeyam",Do=process.env.CODEYAM_API_BASE||"https://dev.codeyam.com",Wu=500,TN=Wu*1024*1024;function Sn(e,t){try{return De(`git ${e}`,{cwd:t,encoding:"utf8",stdio:["pipe","pipe","pipe"]}).trim()}catch{return null}}function Ms(e){return e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`}function Ju(e){return Sn("config user.email",e)}function MN(e){const t=H.join(e,".codeyam","debug-report.md");if(!G.existsSync(t))return null;try{return G.readFileSync(t,"utf8")}catch{return null}}function $N(e,t=20){const r=H.join(Ur,"local-dev",e,"codeyam","log.txt");if(!G.existsSync(r))return[];try{return G.readFileSync(r,"utf8").split(`
|
|
461
|
-
`).filter(i=>i.includes("CodeYam Log Level 1")).slice(-t)}catch{return[]}}async function IN(e){try{const t=await fetch(`${Do}/api/reports/check-base`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({baseSha:e})});if(!t.ok)return!1;const{hasBase:r}=await t.json();return r}catch{return!1}}function FN(e,t){try{De(`git archive HEAD | gzip > "${t}"`,{cwd:e,stdio:"pipe",shell:"/bin/bash"})}catch(r){throw new Error(`Failed to create base archive: ${r.message}`)}}function DN(e){const{projectRoot:t,projectSlug:r,outputPath:s,metadata:a,screenshot:o,onProgress:i}=e,l=i||(()=>{}),c=Date.now(),u=H.join(Ur,`delta-staging-${c}`),p=H.join(u,"delta");G.mkdirSync(p,{recursive:!0});try{const h=Sn("diff --binary HEAD",t)||"";G.writeFileSync(H.join(p,"tracked.patch"),h?h+`
|
|
462
|
-
`:"");const m=Sn("ls-files --others --exclude-standard",t);if(m){const x=H.join(p,"untracked");G.mkdirSync(x,{recursive:!0});for(const b of m.split(`
|
|
463
|
-
`).filter(Boolean)){const v=H.join(t,b),S=H.join(x,b);if(G.existsSync(v)){const w=H.dirname(S);G.mkdirSync(w,{recursive:!0}),G.statSync(v).isFile()&&G.copyFileSync(v,S)}}}const f=H.join(t,".codeyam");if(G.existsSync(f)){const x=H.join(p,"codeyam");G.cpSync(f,x,{recursive:!0})}G.writeFileSync(H.join(p,"meta.json"),JSON.stringify(a,null,2));const y=H.join(Ur,"local-dev",r,"codeyam","log.txt");G.existsSync(y)?G.copyFileSync(y,H.join(p,"codeyam-log.txt")):G.writeFileSync(H.join(p,"codeyam-log.txt"),`# Log file not found
|
|
464
|
-
`);const g=H.join(t,".codeyam","debug-report.md");G.existsSync(g)&&(G.copyFileSync(g,H.join(p,"debug-report.md")),l("Debug report included")),o&&o.length>0&&(G.writeFileSync(H.join(p,"screenshot.jpg"),o),l(`Screenshot included (${Ms(o.length)})`));try{De(`tar -czf "${s}" -C "${u}" delta`,{stdio:"pipe"})}catch(x){throw new Error(`tar failed: ${x.message}`)}}finally{G.rmSync(u,{recursive:!0,force:!0})}}async function RN(e){const{projectRoot:t,projectSlug:r,feedback:s,screenshot:a,onProgress:o}=e,i=o||(()=>{});i("Gathering metadata...");const l=Sn("rev-parse HEAD",t);if(!l)throw new Error("At least one commit is required to generate a bundle. Please commit your changes first.");const c=Sn("rev-parse --abbrev-ref HEAD",t)||"unknown",u=Sn("status --porcelain",t),p=Sn("remote get-url origin",t),h=u!==null&&u.length>0,m=zd(r),f=MN(t);let y=s;f&&(y={...s||{issueType:"other",source:"cli"},debugReport:f},i("Found debug report from /codeyam-diagnose workflow"));const g={timestamp:new Date().toISOString(),projectSlug:r,git:{sha:l,branch:c,isDirty:h,remoteUrl:p},versions:{cli:m.cliVersion,webserver:m.webserverVersion,node:process.version},system:{platform:process.platform,arch:process.arch},feedback:y},x=Date.now(),b=H.join(Ur,`base-${l}-${x}.tar.gz`),v=H.join(Ur,`delta-${r}-${x}.tar.gz`);i("Checking for existing base...");const S=await IN(l);let w=null;S?i("Server already has base, skipping..."):(i("Generating base archive..."),FN(t,b),w=G.statSync(b).size,i(`Base archive: ${Ms(w)}`)),i("Generating delta archive..."),DN({projectRoot:t,projectSlug:r,outputPath:v,metadata:g,screenshot:a,onProgress:o});const k=G.statSync(v).size;i(`Delta archive: ${Ms(k)}`);const N=(w||0)+k;if(N>TN)throw G.existsSync(b)&&G.unlinkSync(b),G.unlinkSync(v),new Error(`Bundle too large: ${Ms(N)} (max: ${Wu} MB). Try removing large files from the project or adding them to .gitignore`);return{basePath:S?null:b,deltaPath:v,metadata:g,baseSha:l,baseSize:w,deltaSize:k}}async function ON(e){const{basePath:t,deltaPath:r,projectSlug:s,metadata:a,baseSha:o,deltaSize:i,onProgress:l}=e,c=l||(()=>{}),u=G.statSync(r),p=t?G.statSync(t):null,h=u.size+((p==null?void 0:p.size)||0);c("Requesting upload URLs...");const m=await fetch(`${Do}/api/reports/request-upload`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({projectSlug:s,fileSizeBytes:h,baseSha:o,needsBaseUpload:t!==null,deltaSizeBytes:i,metadata:{timestamp:a.timestamp,git:a.git,versions:a.versions,system:a.system,feedback:a.feedback}})});if(!m.ok){const S=await m.json();throw new Error(S.error||`Server returned ${m.status}`)}const{reportId:f,deltaUploadUrl:y,baseUploadUrl:g}=await m.json(),x=[];if(t&&g){c("Uploading base...");const S=G.readFileSync(t);x.push(fetch(g,{method:"PUT",headers:{"Content-Type":"application/gzip"},body:S}).then(w=>{if(!w.ok)throw new Error(`Base upload failed: ${w.status}`)}))}c("Uploading delta...");const b=G.readFileSync(r);x.push(fetch(y,{method:"PUT",headers:{"Content-Type":"application/gzip"},body:b}).then(S=>{if(!S.ok)throw new Error(`Delta upload failed: ${S.status}`)})),await Promise.all(x),c("Confirming upload...");const v=await fetch(`${Do}/api/reports/confirm-upload`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({reportId:f})});if(!v.ok){const S=await v.json();throw new Error(S.error||`Confirm failed: ${v.status}`)}return t&&G.existsSync(t)&&G.unlinkSync(t),G.unlinkSync(r),{bundleId:f}}async function LN({request:e}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});try{const t=await e.formData(),r=t.get("issueType"),s=t.get("description"),a=t.get("email"),o=t.get("source"),i=t.get("entitySha"),l=t.get("scenarioId"),c=t.get("analysisId"),u=t.get("currentUrl"),p=t.get("entityName"),h=t.get("entityType"),m=t.get("scenarioName"),f=t.get("errorMessage"),y=t.get("screenshot");let g=s||void 0;!g&&p&&(m?g=`Issue on ${p} scenario "${m}"`:g=`Issue on ${p}`);let x;if(y&&y.size>0){const N=await y.arrayBuffer();x=Buffer.from(N),console.log(`[Bundle] Screenshot received: ${y.size} bytes`)}const b=Se();if(!b)return ne({error:"Project root not found"},{status:500});const v=await Ye();if(!v)return ne({error:"Project slug not found"},{status:500});const S={issueType:r||"other",description:g,email:a||void 0,source:o||"navbar",entitySha:i||void 0,scenarioId:l||void 0,analysisId:c||void 0,currentUrl:u||void 0,recentActivity:$N(v,20),entityName:p||void 0,entityType:h||void 0,scenarioName:m||void 0,errorMessage:f||void 0};console.log(`[Bundle] Generating bundle for ${v}...`),console.log(`[Bundle] Context: ${S.source}, issue: ${S.issueType}`);const w=await RN({projectRoot:b,projectSlug:v,feedback:S,screenshot:x,onProgress:N=>{console.log(`[Bundle] ${N}`)}}),C=(w.baseSize||0)+w.deltaSize;console.log(`[Bundle] Archives created: delta=${w.deltaSize} bytes${w.basePath?`, base=${w.baseSize} bytes`:" (base reused)"}`);const k=await ON({basePath:w.basePath,deltaPath:w.deltaPath,projectSlug:v,metadata:w.metadata,baseSha:w.baseSha,deltaSize:w.deltaSize,onProgress:N=>{console.log(`[Bundle] ${N}`)}});return console.log(`[Bundle] Upload complete: ${k.bundleId}`),ne({success:!0,reportId:k.bundleId,size:C})}catch(t){return console.error("[Bundle] Error:",t),ne({error:t.message||"Failed to generate bundle"},{status:500})}}function zN(){const e=Se(),t=e?Ju(e):null;return ne({defaultEmail:t})}const BN=Object.freeze(Object.defineProperty({__proto__:null,action:LN,loader:zN},Symbol.toStringTag,{value:"Module"}));async function YN({request:e}){try{const r=new URL(e.url).searchParams.get("date"),s=process.env.CODEYAM_ROOT_PATH||process.cwd(),a=H.join(s,".codeyam","journal","index.json");let o={entries:[]};try{const l=await je.readFile(a,"utf8");o=JSON.parse(l)}catch{}let i=o.entries;return r&&(i=i.filter(l=>l.date===r)),new Response(JSON.stringify({entries:i}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const UN=Object.freeze(Object.defineProperty({__proto__:null,loader:YN},Symbol.toStringTag,{value:"Module"}));function Hu(e){if(!G.existsSync(e))return nt.Unknown;try{const t=JSON.parse(G.readFileSync(e,"utf8")),r={...t.dependencies,...t.devDependencies};return r.next?nt.Next:r["@remix-run/node"]||r["@remix-run/react"]||r["react-router"]?nt.Remix:r["react-scripts"]?nt.CRA:r.expo?nt.Expo:r.vite?nt.Vite:nt.Unknown}catch{return nt.Unknown}}function WN(e,t){let r=e;const s=H.resolve(t);for(;;){const a=H.resolve(r);if(G.existsSync(H.join(a,"pnpm-lock.yaml")))return"pnpm";if(G.existsSync(H.join(a,"yarn.lock")))return"yarn";if(G.existsSync(H.join(a,"package-lock.json")))return"npm";if(a===s)break;const o=H.dirname(a);if(o===a)break;r=o}throw new Error(`Could not detect package manager in ${e} or any parent directory up to ${t}`)}function JN(e){const t=/cd\s+([^\s;&|]+)\s*(?:&&|;)/,r=e.match(t);return r?r[1]:null}function HN(e){const t=H.join(e,"package.json");if(!G.existsSync(t))return{isWebApp:!1};if(Hu(t)===nt.Unknown)return{isWebApp:!1};try{const a=JSON.parse(G.readFileSync(t,"utf8")).scripts||{},o=["remix","react-router","next dev","vite","react-scripts","webpack-dev-server","parcel","expo"],l=Object.keys(a).filter(c=>["dev","start","serve","build"].some(u=>c.includes(u))).filter(c=>o.some(u=>a[c].includes(u)));if(l.length===0)return{isWebApp:!1};for(const c of l){const u=a[c],p=JN(u);if(p){const h=H.join(e,p);if(G.existsSync(h)&&G.statSync(h).isDirectory())return{isWebApp:!0,actualPath:h}}}return{isWebApp:!0}}catch{return{isWebApp:!1}}}function Vu(e,t=e,r=0,s=3){if(r>s)return[];const a=[],o=HN(t);if(o.isWebApp){const l=o.actualPath||t,c=H.relative(e,l);return a.push(c||"."),a}const i=["node_modules",".git",".next","dist","build",".cache","coverage",".codeyam"];try{const l=G.readdirSync(t,{withFileTypes:!0});for(const c of l)if(c.isDirectory()&&!i.includes(c.name)){const u=H.join(t,c.name);a.push(...Vu(e,u,r+1,s))}}catch{}return a}function VN(e){const t=Vu(e);return t.length===0?[]:t.map(s=>{const a=H.join(e,s),o=H.join(a,"package.json"),i=Hu(o),l=WN(a,e);let c;if(i===nt.Remix||i===nt.Next||i===nt.Expo){const m=H.join(a,"app");G.existsSync(m)&&G.statSync(m).isDirectory()&&(c="app")}const u=KN(s,e),h=u?{command:"sh",args:["-c",`${l} run ${u} -- --port $PORT`]}:void 0;return{path:s,framework:i,packageManager:l,appDirectory:c,startCommand:h}})}function KN(e,t){const r=H.join(t,e),s=H.join(r,"package.json");if(!G.existsSync(s))return null;try{const o=JSON.parse(G.readFileSync(s,"utf8")).scripts||{},i=["dev","start","serve"];for(const l of i)if(o[l])return l;return null}catch{return null}}function GN(e,t){const r=new Set(e.map(a=>a.path)),s=[...e];for(const a of t)r.has(a.path)||s.push(a);return s}async function qN({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=Se()||process.cwd(),r=ee.join(t,".codeyam","config.json");let s=[];try{s=VN(t)}catch{}if(pe.existsSync(r)){const i=JSON.parse(pe.readFileSync(r,"utf8")),l=i.webapps||[];i.webapps=GN(s,l),s=i.webapps,pe.writeFileSync(r,JSON.stringify(i,null,2))}const a=await Ye();if(a)try{await rr({projectSlug:a,metadataUpdate:{webapps:s}})}catch{}let o=!1;if(s.length>0)try{const i=process.env.CODEYAM_PORT||"3111",c=await(await fetch(`http://localhost:${i}/api/editor-dev-server`)).json();(c.status==="stopped"||c.status===void 0)&&(await fetch(`http://localhost:${i}/api/editor-dev-server`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})}),o=!0)}catch{}return new Response(JSON.stringify({success:!0,webapps:s,devServerStarted:o,message:`Detected ${s.length} webapp(s)`}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const QN=Object.freeze(Object.defineProperty({__proto__:null,action:qN},Symbol.toStringTag,{value:"Module"})),ZN=[{id:"plan-project-name",label:"Define project name and description",completed:!1,autoDetect:"project-title-exists"},{id:"plan-tech-stack",label:"Review tech stack",completed:!1,autoDetect:"tech-stack-configured"},{id:"plan-design-system",label:"Create design system",completed:!1,autoDetect:"design-system-exists"},{id:"plan-screen-sizes",label:"Configure screen sizes",completed:!1,autoDetect:"screen-sizes-configured"},{id:"plan-pages-routes",label:"Define pages and routes",completed:!1},{id:"plan-initial-scenarios",label:"Create initial scenarios",completed:!1,autoDetect:"scenarios-exist"}],XN=[{id:"deploy-hosting",label:"Set up hosting provider",completed:!1},{id:"deploy-env-vars",label:"Configure environment variables",completed:!1},{id:"deploy-cicd",label:"Set up CI/CD pipeline",completed:!1},{id:"deploy-domain",label:"Configure custom domain",completed:!1},{id:"deploy-production",label:"Deploy to production",completed:!1}];function Ku(){return{plan:ZN.map(e=>({...e})),deploy:XN.map(e=>({...e}))}}function Gu(e){return ee.join(e,".codeyam","roadmap.json")}function qu(e){try{const t=pe.readFileSync(Gu(e),"utf8");return t1(JSON.parse(t))}catch{return Ku()}}function e1(e,t){const r=Gu(e),s=ee.dirname(r);pe.existsSync(s)||pe.mkdirSync(s,{recursive:!0}),pe.writeFileSync(r,JSON.stringify(t,null,2))}function uc(e){if(typeof e!="object"||e===null)return null;const t=e;return typeof t.id!="string"||typeof t.label!="string"?null:{id:t.id,label:t.label,completed:t.completed===!0,...typeof t.completedAt=="string"?{completedAt:t.completedAt}:{},...typeof t.autoDetect=="string"?{autoDetect:t.autoDetect}:{},...t.userCreated===!0?{userCreated:!0}:{}}}function pc(e,t){const r=new Set(e.map(o=>o.id)),s=t.filter(o=>!r.has(o.id));if(s.length===0)return e;const a=[...e];for(const o of s){const i=t.indexOf(o),l=t[i-1];if(l){const c=a.findIndex(u=>u.id===l.id);a.splice(c+1,0,{...o})}else a.unshift({...o})}return a}function t1(e){const t=Ku();if(typeof e!="object"||e===null)return t;const r=e,s=Array.isArray(r.plan)?pc(r.plan.map(uc).filter(Boolean),t.plan):t.plan,a=Array.isArray(r.deploy)?pc(r.deploy.map(uc).filter(Boolean),t.deploy):t.deploy;return{plan:s,deploy:a}}const n1={"project-title-exists":e=>{try{const t=ee.join(e,".codeyam","config.json");return!!JSON.parse(pe.readFileSync(t,"utf8")).projectTitle}catch{return!1}},"tech-stack-configured":e=>{try{const t=ee.join(e,".codeyam","config.json"),r=JSON.parse(pe.readFileSync(t,"utf8"));return r.techStack&&typeof r.techStack=="object"&&Object.values(r.techStack).some(a=>Array.isArray(a)&&a.length>0)?!0:Array.isArray(r.webapps)&&r.webapps.length>0}catch{return!1}},"webapps-configured":e=>{try{const t=ee.join(e,".codeyam","config.json"),r=JSON.parse(pe.readFileSync(t,"utf8"));return Array.isArray(r.webapps)&&r.webapps.length>0}catch{return!1}},"design-system-exists":e=>pe.existsSync(ee.join(e,".codeyam","design-system.md")),"screen-sizes-configured":e=>{try{const t=ee.join(e,".codeyam","config.json"),r=JSON.parse(pe.readFileSync(t,"utf8"));return r.screenSizes!=null&&Object.keys(r.screenSizes).length>0}catch{return!1}},"scenarios-exist":e=>{const t=ee.join(e,".codeyam","editor-scenarios");try{return pe.readdirSync(t).some(s=>s.endsWith(".json"))}catch{return!1}}};function r1(e,t){return t.map(r=>{if(!r.autoDetect)return r;const s=n1[r.autoDetect];if(!s)return r;const a=s(e);if(a&&!r.completed)return{...r,completed:!0,completedAt:new Date().toISOString()};if(!a&&r.completed&&!r.userCreated){const{completedAt:o,...i}=r;return{...i,completed:!1}}return r})}function s1(e){try{const t=ee.join(e,".codeyam","journal","index.json"),r=pe.readFileSync(t,"utf8"),s=JSON.parse(r);return Array.isArray(s.entries)?s.entries.length:0}catch{return 0}}function a1(e,t=3){try{const r=ee.join(e,".codeyam","journal","index.json"),s=pe.readFileSync(r,"utf8"),a=JSON.parse(s);return Array.isArray(a.entries)?a.entries.slice().reverse().slice(0,t).map(o=>({title:o.title,time:o.time,type:o.type||"feature"})):[]}catch{return[]}}function o1(){try{const e=Se()||process.cwd(),t=qu(e),r=r1(e,t.plan),s=t.deploy,a=s1(e),o=a1(e,3),i=Ca(e),l=Ci(e);let c=null,u=null,p=[],h=null,m=null,f=null,y=null,g=null;try{const x=ee.join(e,".codeyam","config.json"),b=JSON.parse(pe.readFileSync(x,"utf8"));c=b.projectTitle||null,u=b.projectDescription||null,Array.isArray(b.webapps)&&(p=b.webapps.map(v=>({path:v.path||".",framework:v.framework||"Unknown"}))),b.techStack&&typeof b.techStack=="object"&&(h=b.techStack),b.screenSizes&&typeof b.screenSizes=="object"&&(m=b.screenSizes),b.projectScreenSizes&&typeof b.projectScreenSizes=="object"&&(f=b.projectScreenSizes),y=b.defaultScreenSize||null,Array.isArray(b.appFormats)&&(g=b.appFormats)}catch{}return g||(g=ki(e)),Response.json({plan:r,deploy:s,buildSessionCount:a,recentEntries:o,featureName:i,editorStep:(l==null?void 0:l.step)??null,editorStepLabel:(l==null?void 0:l.label)??null,projectTitle:c,projectDescription:u,webapps:p,techStack:h,screenSizes:m,projectScreenSizes:f,defaultScreenSize:y,appFormats:g})}catch{return Response.json({plan:[],deploy:[],buildSessionCount:0,recentEntries:[],featureName:null,editorStep:null,editorStepLabel:null,projectTitle:null,projectDescription:null,webapps:[],techStack:null,screenSizes:null,projectScreenSizes:null,defaultScreenSize:null,appFormats:null})}}async function i1({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=Se()||process.cwd(),r=await e.json(),s=qu(t);return Array.isArray(r.plan)&&(s.plan=r.plan),Array.isArray(r.deploy)&&(s.deploy=r.deploy),e1(t,s),ft.notifyChange("unknown"),Response.json({success:!0,...s})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const l1=Object.freeze(Object.defineProperty({__proto__:null,action:i1,loader:o1},Symbol.toStringTag,{value:"Module"}));async function c1({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),r=Se()||process.cwd();if(t.action==="clear"){ry(r);try{G.unlinkSync(H.join(r,".codeyam","claude-session-id.txt"))}catch{}return new Response(JSON.stringify({success:!0,message:"Editor state cleared"}),{headers:{"Content-Type":"application/json"}})}return new Response(JSON.stringify({error:"Unknown action"}),{status:400,headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const d1=Object.freeze(Object.defineProperty({__proto__:null,action:c1},Symbol.toStringTag,{value:"Module"}));function kn(){const e=process.memoryUsage(),t=cm.getHeapStatistics();return{process:{rss:Math.round(e.rss/1024/1024),heapTotal:Math.round(e.heapTotal/1024/1024),heapUsed:Math.round(e.heapUsed/1024/1024),external:Math.round(e.external/1024/1024),arrayBuffers:Math.round(e.arrayBuffers/1024/1024)},heap:{totalHeapSize:Math.round(t.total_heap_size/1024/1024),totalHeapSizeExecutable:Math.round(t.total_heap_size_executable/1024/1024),totalPhysicalSize:Math.round(t.total_physical_size/1024/1024),totalAvailableSize:Math.round(t.total_available_size/1024/1024),usedHeapSize:Math.round(t.used_heap_size/1024/1024),heapSizeLimit:Math.round(t.heap_size_limit/1024/1024),mallocedMemory:Math.round(t.malloced_memory/1024/1024),peakMallocedMemory:Math.round(t.peak_malloced_memory/1024/1024)},system:{totalMemory:Math.round(vo.totalmem()/1024/1024),freeMemory:Math.round(vo.freemem()/1024/1024)}}}function u1(){const e=kn();console.log(`
|
|
465
|
-
[Memory Profiler] Detailed Statistics:`),console.log(" Process Memory:"),console.log(` RSS: ${e.process.rss} MB (total memory used by process)`),console.log(` Heap Used: ${e.process.heapUsed} MB / ${e.process.heapTotal} MB`),console.log(` External: ${e.process.external} MB (C++ objects)`),console.log(` ArrayBuffers: ${e.process.arrayBuffers} MB`),console.log(" V8 Heap:"),console.log(` Used: ${e.heap.usedHeapSize} MB / ${e.heap.totalHeapSize} MB`),console.log(` Physical: ${e.heap.totalPhysicalSize} MB`),console.log(` Limit: ${e.heap.heapSizeLimit} MB`),console.log(` Malloced: ${e.heap.mallocedMemory} MB (peak: ${e.heap.peakMallocedMemory} MB)`),console.log(" System:"),console.log(` Total: ${e.system.totalMemory} MB`),console.log(` Free: ${e.system.freeMemory} MB`);const t=(e.heap.usedHeapSize/e.heap.heapSizeLimit*100).toFixed(1);return console.log(` Heap Usage: ${t}% of limit`),e}function p1(){if(global.gc){console.log("[Memory Profiler] Running garbage collection...");const e=kn();global.gc();const t=kn(),r=e.process.heapUsed-t.process.heapUsed;return console.log(`[Memory Profiler] GC freed ${r} MB`),console.log(`[Memory Profiler] Heap: ${t.process.heapUsed} MB (was ${e.process.heapUsed} MB)`),!0}else return console.log("[Memory Profiler] GC not available. Start Node with --expose-gc to enable."),!1}function h1(){const e=kn(),t=e.heap.usedHeapSize/e.heap.heapSizeLimit*100,r={highHeapUsage:t>80,highExternalMemory:e.process.external>200,highArrayBuffers:e.process.arrayBuffers>100,nearHeapLimit:e.heap.totalAvailableSize<100},s=[];return r.highHeapUsage&&s.push(`High heap usage: ${t.toFixed(1)}% of limit`),r.highExternalMemory&&s.push(`High external memory: ${e.process.external} MB`),r.highArrayBuffers&&s.push(`High ArrayBuffer usage: ${e.process.arrayBuffers} MB`),r.nearHeapLimit&&s.push(`Near heap limit: only ${e.heap.totalAvailableSize} MB available`),{indicators:r,warnings:s,hasIssues:s.length>0}}function m1({request:e}){const r=new URL(e.url).searchParams.get("action");try{switch(r){case"snapshot":return Response.json({success:!1,error:"Heap snapshots are disabled because they block the server for several minutes. Use action=leaks instead."},{status:400});case"gc":{const s=p1(),a=kn();return Response.json({success:s,message:s?"Garbage collection completed":"GC not available. Restart server with --expose-gc flag.",stats:a})}case"detailed":{const s=u1();return Response.json({success:!0,stats:s})}case"leaks":{const s=h1(),a=kn();return Response.json({success:!0,leakCheck:s,stats:a})}default:{const s=kn();return Response.json({success:!0,stats:s,actions:{gc:"/api/memory-profile?action=gc - Force garbage collection (requires --expose-gc)",detailed:"/api/memory-profile?action=detailed - Log detailed stats to console",leaks:"/api/memory-profile?action=leaks - Check for memory leak indicators"}})}}}catch(s){return console.error("[Memory API] Error:",s),Response.json({success:!1,error:s.message},{status:500})}}const f1=Object.freeze(Object.defineProperty({__proto__:null,loader:m1},Symbol.toStringTag,{value:"Module"})),ws=Ho(Jo);async function g1({request:e}){const r=new URL(e.url).searchParams.get("pids");if(!r)return Response.json({error:"Missing pids parameter"},{status:400});const s=r.split(",").map(o=>parseInt(o.trim(),10)).filter(o=>!isNaN(o));if(s.length===0)return Response.json({error:"No valid PIDs provided"},{status:400});const a=await Promise.all(s.map(async o=>{const i=y1(o),l=i?await x1(o):null;return{pid:o,isRunning:i,processName:l}}));return Response.json({processes:a})}function y1(e){try{return process.kill(e,0),!0}catch{return!1}}async function x1(e){if(process.platform==="win32")try{const{stdout:r}=await ws(`tasklist /FI "PID eq ${e}" /FO CSV /NH`),s=r.match(/"([^"]+)"/);if(!s)return null;const a=s[1];if(a.toLowerCase()==="node.exe")try{const{stdout:o}=await ws(`wmic process where "ProcessId=${e}" get CommandLine /FORMAT:LIST`),i=o.match(/codeyam-(\w+)/);if(i)return`codeyam-${i[1]}`}catch{}return a}catch{return null}try{const{stdout:r}=await ws(`ps -p ${e} -o comm=`);return r.trim()||null}catch{try{const{stdout:s}=await ws(`ps -p ${e} -o args=`),a=s.trim(),o=a.match(/codeyam-(\w+)/);return o?`codeyam-${o[1]}`:a.split(" ")[0]||null}catch{return null}}}const b1=Object.freeze(Object.defineProperty({__proto__:null,loader:g1},Symbol.toStringTag,{value:"Module"})),v1=ea(import.meta.url),w1=H.dirname(v1);function N1({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=pa(),r=Se()||(t==null?void 0:t.projectRoot);if(!r)throw new Error("Could not determine project root");const s=(t==null?void 0:t.port)||3111,a=H.join(w1,"..","..","..","..","webserver","bootstrap.js"),o=H.join(r,".codeyam","logs");G.existsSync(o)||G.mkdirSync(o,{recursive:!0});const i=G.openSync(H.join(o,"background-server.log"),"a"),l=G.openSync(H.join(o,"background-server-error.log"),"a"),c=new Date().toISOString();G.appendFileSync(H.join(o,"background-server.log"),`
|
|
466
|
-
[${c}] Server restart requested via dashboard
|
|
467
|
-
`),oi();const u=xt("node",[a],{detached:!0,stdio:["ignore",i,l],env:{...process.env,CODEYAM_PORT:s.toString(),CODEYAM_ROOT_PATH:r,CODEYAM_PROCESS_NAME:"codeyam-server",CODEYAM_WAIT_FOR_PORT:"true"}});u.unref(),console.log(`[api.restart-server] Spawned new server process (pid: ${u.pid})`);const p=new Response(JSON.stringify({success:!0}),{status:200,headers:{"Content-Type":"application/json"}});return setTimeout(()=>{console.log("[api.restart-server] Exiting old server process"),process.exit(0)},100),p}catch(t){return console.error("[api.restart-server] Error restarting server:",t),new Response(JSON.stringify({success:!1,error:t instanceof Error?t.message:"Unknown error"}),{status:500,headers:{"Content-Type":"application/json"}})}}const S1=Object.freeze(Object.defineProperty({__proto__:null,action:N1},Symbol.toStringTag,{value:"Module"}));async function C1({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{analysis:r,scenarios:s}=t;if(!r||!s)return Response.json({error:"Missing required fields: analysis and scenarios"},{status:400});console.log(`[API] Saving scenarios for analysis ${r.id}`),console.log(`[API] Received ${s.length} scenarios to save`),s.forEach((l,c)=>{var h,m,f,y,g;const u=(m=(h=l.metadata)==null?void 0:h.data)==null?void 0:m.argumentsData,p=Array.isArray(u)&&u.length>0?JSON.stringify(u[0]).substring(0,200):"empty-or-not-array";console.log(`[API] Scenario ${c}: ${l.name}`,{id:l.id,projectId:l.projectId,analysisId:l.analysisId,hasMetadata:!!l.metadata,hasData:!!((f=l.metadata)!=null&&f.data),mockDataKeys:(g=(y=l.metadata)==null?void 0:y.data)!=null&&g.mockData?Object.keys(l.metadata.data.mockData):[],argumentsDataLength:Array.isArray(u)?u.length:"not-array",argumentsDataPreview:p})});const a=s.map(l=>({...l,projectId:l.projectId||r.projectId,analysisId:l.analysisId||r.id})),o=await Xf(a);if(!o||o.length===0)throw new Error("Failed to save scenarios to database");console.log(`[API] Scenarios saved successfully for analysis ${r.id}`),console.log(`[API] Saved ${o.length} scenarios to database`),o.forEach((l,c)=>{var p,h;const u=(h=(p=l.metadata)==null?void 0:p.data)==null?void 0:h.argumentsData;console.log(`[API] Saved scenario ${c}: ${l.name}`,{id:l.id,argumentsDataLength:Array.isArray(u)?u.length:"not-array"})});const i={...r,scenarios:o};return Response.json({success:!0,analysis:i})}catch(t){return console.error("[API] Error saving scenarios:",t),Response.json({error:"Failed to save scenarios",details:t instanceof Error?t.message:String(t)},{status:500})}}const k1=Object.freeze(Object.defineProperty({__proto__:null,action:C1},Symbol.toStringTag,{value:"Module"})),_1=()=>[{title:"Agent Transcripts - CodeYam"},{name:"description",content:"View background agent transcripts and tool call history"}];async function E1({request:e}){try{const t=new URL(e.url),r=t.searchParams.get("search")||"",s=t.searchParams.get("page")||"1",a=new URLSearchParams;r&&a.set("search",r),s!=="1"&&a.set("page",s);const o=a.toString(),i=new URL(`/api/agent-transcripts${o?`?${o}`:""}`,e.url),c=await(await fetch(i.toString())).json();if(c.error)return ne({agents:[],error:c.error,search:r,page:1,totalPages:1});const u=c.total??(c.agents||[]).length,p=c.pageSize??20;return ne({agents:c.agents||[],error:null,search:r,page:c.page??parseInt(s,10),totalPages:Math.max(1,Math.ceil(u/p))})}catch(t){return console.error("Failed to load agent transcripts:",t),ne({agents:[],error:"Failed to load agent transcripts",search:"",page:1,totalPages:1})}}function A1(e){if(!e)return"";try{return new Date(e).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch{return e}}function j1(e){if(!e)return"";try{return new Date(e).toLocaleDateString("en-US",{month:"short",day:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1})}catch{return e}}function P1(e){return e.includes("opus")?"Opus":e.includes("sonnet")?"Sonnet":e.includes("haiku")?"Haiku":e}function $s({type:e,toolName:t}){const r={user_prompt:"bg-[#00b4d8] text-black",assistant_text:"bg-[#a8dadc] text-black",tool_call:"bg-[#f4a261] text-black",tool_result:"bg-[#2a9d8f] text-black",context:"bg-[#7c3aed] text-white"},s={user_prompt:"USER",assistant_text:"ASSISTANT",tool_call:t||"TOOL",tool_result:"RESULT",context:"CONTEXT"};return n("span",{className:`inline-block px-2 py-0.5 rounded text-[10px] font-bold uppercase tracking-wide ${r[e]||"bg-gray-300 text-black"}`,children:s[e]||e})}function T1({input:e}){return n("div",{className:"text-xs font-mono space-y-1",children:Object.entries(e).map(([t,r])=>{let s=typeof r=="string"?r:JSON.stringify(r);return s.length>500&&(s=s.slice(0,500)+"..."),d("div",{children:[d("span",{className:"text-[#f4a261] font-bold",children:[t,":"]})," ",n("span",{className:"text-gray-700",children:s})]},t)})})}function M1({content:e,truncated:t,fullLength:r}){const[s,a]=j(!1);return d("div",{children:[d("pre",{className:"whitespace-pre-wrap break-words text-xs max-h-96 overflow-y-auto text-gray-700",children:[e,t&&!s&&"..."]}),t&&n("button",{onClick:()=>a(!s),className:"text-[11px] text-gray-500 hover:text-gray-700 mt-1 font-mono cursor-pointer",children:s?"Show less":`Show more (${(r||0)-e.length} more chars)`})]})}function $1({entry:e,pairedResult:t}){const[r,s]=j(!1),a=A1(e.timestamp||"");return e.type==="user_prompt"?d("div",{className:"my-2",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n($s,{type:"user_prompt"}),n("span",{className:"text-[11px] text-gray-400 font-mono",children:a})]}),n("pre",{className:"bg-white border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-xs font-mono border-l-[3px] border-l-[#00b4d8] max-h-72 overflow-y-auto text-gray-800",children:e.text})]}):e.type==="assistant_text"?d("div",{className:"my-2",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n($s,{type:"assistant_text"}),n("span",{className:"text-[11px] text-gray-400 font-mono",children:a})]}),n("div",{className:"bg-white border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-sm border-l-[3px] border-l-[#a8dadc] text-gray-800",children:e.text})]}):e.type==="tool_call"?d("div",{className:"my-2",children:[d("button",{onClick:()=>s(!r),className:"flex items-center gap-2 w-full text-left bg-white border border-gray-200 rounded-md px-3 py-2 hover:bg-gray-50 cursor-pointer",children:[r?n(Ct,{className:"w-3 h-3 text-gray-400 flex-shrink-0"}):n(dn,{className:"w-3 h-3 text-gray-400 flex-shrink-0"}),n($s,{type:"tool_call",toolName:e.name}),n("span",{className:"text-xs text-gray-500 font-mono truncate flex-1",children:e.summary||""}),n("span",{className:"text-[11px] text-gray-400 font-mono flex-shrink-0",children:a})]}),r&&d("div",{className:"bg-white border border-t-0 border-gray-200 rounded-b-md px-3 py-2 border-l-[3px] border-l-[#f4a261]",children:[n(T1,{input:e.input||{}}),t&&d("div",{className:"mt-3 pt-3 border-t border-gray-200",children:[d("div",{className:"text-[11px] font-bold uppercase tracking-wide text-[#2a9d8f] mb-1",children:["Result",t.is_error?" (Error)":"",":"]}),n(M1,{content:t.content||"",truncated:t.truncated,fullLength:t.fullLength})]})]})]}):(e.type==="tool_result",null)}function I1({context:e}){const[t,r]=j(!1);return d("div",{className:"my-2",children:[d("button",{onClick:()=>r(!t),className:"flex items-center gap-2 mb-1 cursor-pointer hover:opacity-80",children:[t?n(Ct,{className:"w-3 h-3 text-gray-400"}):n(dn,{className:"w-3 h-3 text-gray-400"}),n($s,{type:"context"}),n("span",{className:"text-xs text-gray-500",children:"Full prompt context"})]}),t&&n("pre",{className:"bg-gray-50 border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-xs font-mono border-l-[3px] border-l-[#7c3aed] max-h-96 overflow-y-auto text-gray-700",children:e})]})}function F1({snippet:e}){const[t,r]=j(!1),s=e.split(`
|
|
468
|
-
`).filter(l=>l.trim()),a=s.slice(0,4),o=s.length>4,i=t?s:a;return d("div",{className:"my-2 bg-blue-50 border border-blue-200 rounded-md p-3",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n(jh,{className:"w-3.5 h-3.5 text-blue-600"}),n("span",{className:"text-xs font-bold text-blue-800",children:"Source Conversation"}),d("span",{className:"text-[10px] text-blue-500",children:[s.length," message",s.length!==1?"s":""]})]}),n("div",{className:"space-y-1",children:i.map((l,c)=>{const u=l.match(/^\[(\w+)\]:\s*(.*)/);if(!u)return null;const[,p,h]=u,m=p==="user";return d("div",{className:"text-xs",children:[d("span",{className:`font-bold ${m?"text-blue-700":"text-gray-500"}`,children:[m?"User":"Assistant",":"]})," ",n("span",{className:"text-gray-700",children:h.length>200?h.slice(0,200)+"...":h})]},c)})}),o&&n("button",{onClick:()=>r(!t),className:"text-[11px] text-blue-600 hover:text-blue-800 mt-2 font-mono cursor-pointer",children:t?"Show less":`Show all ${s.length} messages`})]})}function D1({change:e}){const[t,r]=j(!1),s=e.action==="created"?!!e.content:e.action==="modified"?!!(e.oldString||e.newString):!1;return d("li",{children:[n("button",{onClick:()=>s&&r(!t),className:`text-left w-full ${s?"hover:text-green-900 cursor-pointer":""}`,children:d("span",{className:"inline-flex items-center gap-1",children:[s&&(t?n(Ct,{className:"w-3 h-3 inline flex-shrink-0"}):n(dn,{className:"w-3 h-3 inline flex-shrink-0"})),e.action==="created"?"Created":"Modified"," ",e.filePath]})}),t&&e.action==="created"&&e.content&&n("pre",{className:"mt-1 mb-2 ml-4 p-2 bg-white border border-green-200 rounded text-[11px] text-gray-700 whitespace-pre-wrap break-words max-h-64 overflow-y-auto",children:e.content}),t&&e.action==="modified"&&d("div",{className:"mt-1 mb-2 ml-4 space-y-1",children:[e.oldString&&d("pre",{className:"p-2 bg-red-50 border border-red-200 rounded text-[11px] text-red-800 whitespace-pre-wrap break-words max-h-32 overflow-y-auto",children:["- ",e.oldString]}),e.newString&&d("pre",{className:"p-2 bg-green-50 border border-green-300 rounded text-[11px] text-green-800 whitespace-pre-wrap break-words max-h-32 overflow-y-auto",children:["+ ",e.newString]})]})]})}function R1({changes:e}){const t=e.filter(i=>i.action==="touched"),r=e.filter(i=>i.action!=="touched"),s=r.some(i=>i.action==="created"),a=r.some(i=>i.action==="modified");return d("div",{className:`my-2 border rounded-md p-3 ${s?"bg-green-50 border-green-200 text-green-800 [&_ul]:text-green-700":a?"bg-amber-50 border-amber-200 text-amber-800 [&_ul]:text-amber-700":"bg-gray-50 border-gray-200 text-gray-600 [&_ul]:text-gray-500"}`,children:[n("div",{className:"text-xs font-bold mb-1",children:"Rule Changes:"}),d("ul",{className:"text-xs space-y-0.5 font-mono",children:[r.map((i,l)=>n(D1,{change:i},l)),t.length>0&&d("li",{children:["Touched timestamps on ",t.length," rule",t.length!==1?"s":""]})]})]})}function O1({result:e}){const t=e.is_error,r=t?"bg-red-50 border-red-200":"bg-green-50 border-green-200",s=t?"text-red-800":"text-green-800",a=t?"text-red-700":"text-green-700",o=e.subtype.replace(/^error_/,"").replace(/_/g," "),i=c=>c>=6e4?`${(c/6e4).toFixed(1)}m`:`${(c/1e3).toFixed(1)}s`,l=c=>c>=1e3?`${(c/1e3).toFixed(1)}k`:String(c);return d("div",{className:`my-2 border rounded-md p-3 ${r}`,children:[d("div",{className:`text-xs font-bold mb-1 ${s}`,children:["Session Result: ",o]}),d("div",{className:`text-xs ${a} font-mono space-y-0.5`,children:[d("div",{className:"flex flex-wrap gap-x-4 gap-y-0.5",children:[e.duration_ms!=null&&d("span",{children:["Duration: ",i(e.duration_ms)]}),e.duration_api_ms!=null&&d("span",{children:["API time: ",i(e.duration_api_ms)]}),e.num_turns!=null&&d("span",{children:["Turns: ",e.num_turns]}),e.total_cost_usd!=null&&d("span",{children:["Cost: $",e.total_cost_usd.toFixed(4)]})]}),e.usage&&d("div",{className:"flex flex-wrap gap-x-4 gap-y-0.5 mt-1",children:[e.usage.input_tokens!=null&&d("span",{children:["Input: ",l(e.usage.input_tokens)]}),e.usage.output_tokens!=null&&d("span",{children:["Output: ",l(e.usage.output_tokens)]}),e.usage.cache_read_input_tokens!=null&&d("span",{children:["Cache read: ",l(e.usage.cache_read_input_tokens)]}),e.usage.cache_creation_input_tokens!=null&&d("span",{children:["Cache write:"," ",l(e.usage.cache_creation_input_tokens)]})]}),e.errors&&e.errors.length>0&&n("div",{className:"mt-1",children:e.errors.map((c,u)=>n("div",{className:"text-red-700 break-words",children:c},u))})]})]})}function L1({agent:e,defaultOpen:t,isAdmin:r}){var C,k,N;const[s,a]=j(t),[o,i]=j(!1),[l,c]=j(null),[u,p]=j(!1),h=le(()=>{const A={};for(const _ of e.entries)_.type==="tool_result"&&_.tool_use_id&&(A[_.tool_use_id]=_);return A},[e.entries]),m=le(()=>{const A=new Set;for(const _ of e.entries)_.type==="tool_call"&&_.tool_use_id&&h[_.tool_use_id]&&A.add(_.tool_use_id);return A},[e.entries,h]),f=A=>{A.stopPropagation(),i(!0),c(null),fetch("/api/save-fixture",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({sessionId:e.id})}).then(_=>_.json()).then(_=>{_.success?c(`Saved to ${_.fixturePath}`):c(`Error: ${_.error}`)}).catch(_=>{c(`Error: ${_ instanceof Error?_.message:String(_)}`)}).finally(()=>{i(!1)})},y=(e.ruleChanges||[]).filter(A=>A.action!=="touched"),g=y.filter(A=>A.action==="created"),x=y.filter(A=>A.action==="modified"),b=(e.ruleChanges||[]).filter(A=>A.action==="touched"),v=y.length>0,S=b.length>0,w=v||S;return d("div",{className:`bg-white border rounded-lg overflow-hidden mb-4 ${e.stats.errors>0?"border-red-300":g.length>0?"border-green-300":x.length>0?"border-amber-300":"border-gray-200"}`,children:[d("button",{onClick:()=>a(!s),className:"w-full flex items-center gap-3 px-4 py-3 text-left hover:bg-gray-50 cursor-pointer",children:[s?n(Ct,{className:"w-4 h-4 text-gray-400 flex-shrink-0"}):n(dn,{className:"w-4 h-4 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm font-bold text-[#005C75] font-mono",children:e.id.slice(0,8)}),e.slug&&n("span",{className:"text-xs text-gray-500",children:e.slug}),e.model&&n("span",{className:"inline-flex items-center px-2 py-0.5 rounded-full text-[10px] font-bold bg-purple-100 text-purple-700",title:e.model,children:P1(e.model)}),g.length>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-green-100 text-green-800",children:[n(Rs,{className:"w-3 h-3"}),g.length," rule",g.length!==1?"s":""," ","created"]}),x.length>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-amber-100 text-amber-800",children:[n(Rs,{className:"w-3 h-3"}),x.length," rule",x.length!==1?"s":""," ","modified"]}),!v&&S&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-gray-100 text-gray-500",children:[b.length," timestamp",b.length!==1?"s":""," ","touched"]}),e.stats.errors>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-red-100 text-red-800",children:[n(Ds,{className:"w-3 h-3 flex-shrink-0"}),e.stats.errors," ",e.stats.errors===1?"Error":"Errors"]}),d("span",{className:"text-[11px] text-gray-400 font-mono",children:[e.stats.toolCalls," tool calls, ",e.stats.textBlocks," text blocks",((C=e.sessionResult)==null?void 0:C.duration_ms)!=null&&d(we,{children:[" · ",e.sessionResult.duration_ms>=6e4?`${(e.sessionResult.duration_ms/6e4).toFixed(1)}m`:`${(e.sessionResult.duration_ms/1e3).toFixed(1)}s`]}),((k=e.sessionResult)==null?void 0:k.total_cost_usd)!=null&&d(we,{children:[" · ","$",e.sessionResult.total_cost_usd.toFixed(2)]})]}),d("span",{className:"text-[11px] text-gray-400 font-mono ml-auto flex items-center gap-2",children:[j1(e.timestamp),r&&v&&d("button",{onClick:f,disabled:o,className:"inline-flex items-center gap-1 px-2 py-1 rounded text-[10px] font-bold bg-gray-100 text-gray-600 hover:bg-gray-200 disabled:opacity-50 cursor-pointer",title:"Save as test fixture",children:[n(Ah,{className:"w-3 h-3"}),o?"Saving...":"Save Fixture"]})]})]}),l&&n("div",{className:`px-4 py-2 text-xs font-mono ${l.startsWith("Error")?"bg-red-50 text-red-700":"bg-green-50 text-green-700"}`,children:l}),s&&d("div",{className:"px-4 pb-4 border-t border-gray-100",children:[e.sourceFile&&d("div",{className:"flex items-center gap-2 py-2 text-xs text-gray-500 font-mono",children:[n("span",{className:"text-gray-400",children:"FILE:"}),n("span",{className:"truncate",children:e.sourceFile}),n("button",{onClick:A=>{A.stopPropagation(),navigator.clipboard.writeText(e.sourceFile),p(!0),setTimeout(()=>p(!1),2e3)},className:"p-0.5 rounded text-gray-400 hover:text-gray-600 cursor-pointer transition-colors flex-shrink-0",title:"Copy file path",children:u?n(_t,{className:"w-3.5 h-3.5 text-green-500"}):n($t,{className:"w-3.5 h-3.5"})})]}),e.sessionResult&&n(O1,{result:e.sessionResult}),e.stats.errors>0&&((N=e.stats.errorMessages)==null?void 0:N.length)>0&&d("div",{className:"my-2 bg-red-50 border border-red-200 rounded-md p-3",children:[d("div",{className:"text-xs font-bold text-red-800 mb-1",children:[e.stats.errors," Error",e.stats.errors!==1?"s":"",":"]}),n("ul",{className:"text-xs text-red-700 space-y-1 font-mono",children:e.stats.errorMessages.map((A,_)=>n("li",{className:"break-words",children:A},_))})]}),e.conversationSnippet&&n(F1,{snippet:e.conversationSnippet}),w&&n(R1,{changes:e.ruleChanges}),e.context&&n(I1,{context:e.context}),e.entries.map((A,_)=>{if(A.type==="tool_result"&&A.tool_use_id&&m.has(A.tool_use_id))return null;const M=A.type==="tool_call"&&A.tool_use_id?h[A.tool_use_id]:void 0;return n($1,{entry:A,pairedResult:M},`${e.id}-${_}`)})]})]})}function co(e,t){const r=new URLSearchParams;t&&r.set("search",t),e>1&&r.set("page",String(e));const s=r.toString();return`/agent-transcripts${s?`?${s}`:""}`}const z1=et(function(){const{agents:t,error:r,search:s,page:a,totalPages:o}=ot(),i=Ft(),l=td("root"),c=(l==null?void 0:l.isAdmin)??!1,[u,p]=j(s),[h,m]=j(!1),[f,y]=j(0);Rt({source:"agent-transcripts-page"});const g=b=>{b.preventDefault(),window.location.href=co(1,u)},x=()=>{m(!h),y(b=>b+1)};return r?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:r})]})}):n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[d("div",{className:"flex items-center gap-3 mb-1",children:[n("button",{onClick:()=>{i("/memory")},className:"text-gray-600 hover:text-[#005C75] transition-colors cursor-pointer",title:"Back to Memory","aria-label":"Back to Memory",children:n(_h,{className:"w-5 h-5"})}),n(Os,{className:"w-6 h-6 text-[#232323]"}),n("h1",{className:"text-[24px] font-semibold mb-0",style:{fontFamily:"Sora",color:"#232323"},children:"Agent Transcripts"})]}),n("p",{className:"text-[15px] text-gray-500 ml-14",children:"View background agent transcripts and tool call history"})]}),d("div",{className:"flex items-center gap-4 mb-6",children:[d("form",{onSubmit:g,className:"relative flex-1 max-w-md",children:[n(Hr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",value:u,onChange:b=>p(b.target.value),placeholder:"Search transcripts...",className:"w-full pl-10 pr-4 py-2 border border-gray-200 rounded-md bg-white focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent text-sm"})]}),n("button",{onClick:x,className:"text-xs text-[#005C75] hover:underline cursor-pointer font-mono uppercase font-semibold",children:h?"Collapse All":"Expand All"})]}),d("div",{className:"text-sm text-gray-500 mb-4",children:["Page ",a," of ",o,s&&d("span",{children:[" ","matching “",s,"”",n(ke,{to:"/agent-transcripts",className:"text-[#005C75] hover:underline ml-2",children:"Clear"})]})]}),t.length===0?d("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:[n(Os,{className:"w-12 h-12 text-gray-300 mx-auto mb-4"}),n("h3",{className:"text-lg font-medium text-gray-900 mb-2",children:"No Agent Transcripts Found"}),n("p",{className:"text-gray-500",children:"Background agent output files will appear here when available."})]}):n("div",{children:t.map(b=>n(L1,{agent:b,defaultOpen:h,isAdmin:c},b.id))},f),o>1&&d("div",{className:"flex items-center justify-center gap-3 mt-8",children:[d("a",{href:a>1?co(a-1,s):void 0,className:`inline-flex items-center gap-1 px-3 py-1.5 rounded-md text-sm font-medium ${a>1?"bg-white border border-gray-200 text-gray-700 hover:bg-gray-50 cursor-pointer":"bg-gray-100 text-gray-400 pointer-events-none"}`,children:[n(Eh,{className:"w-4 h-4"}),"Prev"]}),d("span",{className:"text-sm text-gray-500 font-mono",children:[a," / ",o]}),d("a",{href:a<o?co(a+1,s):void 0,className:`inline-flex items-center gap-1 px-3 py-1.5 rounded-md text-sm font-medium ${a<o?"bg-white border border-gray-200 text-gray-700 hover:bg-gray-50 cursor-pointer":"bg-gray-100 text-gray-400 pointer-events-none"}`,children:["Next",n(dn,{className:"w-4 h-4"})]})]})]})})}),B1=Object.freeze(Object.defineProperty({__proto__:null,default:z1,loader:E1,meta:_1},Symbol.toStringTag,{value:"Module"}));async function Y1({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{message:r}=t;if(!r)return new Response(JSON.stringify({error:"message is required"}),{status:400,headers:{"Content-Type":"application/json"}});const s=process.env.CODEYAM_ROOT_PATH||process.cwd();console.log(`[editor-commit] Committing with message: "${r}" in ${s}`);const a=Dw(s);a&&console.log("[editor-commit] Initialized new git repository"),Rw(s),console.log("[editor-commit] Staged all changes");const o=Ow(s,r);console.log(`[editor-commit] Created commit: ${o}`);try{const{broadcastHideResults:i}=await Promise.resolve().then(()=>jx);i()}catch{}return new Response(JSON.stringify({success:!0,commitSha:o,initialized:a}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-commit] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const U1=Object.freeze(Object.defineProperty({__proto__:null,action:Y1},Symbol.toStringTag,{value:"Module"}));function W1(){const e={"Content-Type":"application/json","Access-Control-Allow-Origin":"*"};try{const t=Se()||process.cwd(),r=H.join(t,".codeyam","data-structure.json");if(G.existsSync(r))try{const o=JSON.parse(G.readFileSync(r,"utf-8")),i=Array.isArray(o)?o:[];return i.sort((l,c)=>(l.order??99)-(c.order??99)),new Response(JSON.stringify({dataStructures:i,source:"explicit"}),{headers:e})}catch{}const s=H.join(t,"prisma","schema.prisma");if(G.existsSync(s)){const o=G.readFileSync(s,"utf-8"),i=J1(o);return new Response(JSON.stringify({models:i,source:"prisma"}),{headers:e})}const a=H1(t);return a.length>0?new Response(JSON.stringify({models:a,source:"typescript"}),{headers:e}):new Response(JSON.stringify({models:[],source:null}),{headers:e})}catch{return new Response(JSON.stringify({models:[],source:null}),{headers:e})}}function J1(e){const t=[],r=/model\s+(\w+)\s*\{([^}]+)\}/g,s=new Set;let a;const o=/model\s+(\w+)\s*\{/g;for(;(a=o.exec(e))!==null;)s.add(a[1]);let i;for(;(i=r.exec(e))!==null;){const l=i[1],c=i[2],u=[];for(const p of c.split(`
|
|
469
|
-
`)){const h=p.trim();if(!h||h.startsWith("//")||h.startsWith("@@"))continue;const m=h.match(/^(\w+)\s+([\w[\]?]+)\??(\s+.*)?$/);if(!m)continue;const f=m[1];let y=m[2];const g=m[3]||"",x=y.endsWith("[]"),b=y.endsWith("?")||h.includes("?");y=y.replace(/[[\]?]/g,"");const v=s.has(y),S=g.includes("@id");u.push({name:f,type:y,isRelation:v,isOptional:b,isList:x,isId:S,...v?{relatedModel:y}:{}})}t.push({name:l,fields:u})}return t}function H1(e){const t=H.join(e,"src");if(!G.existsSync(t))return[];const r=[],s=new Set,a=[],o=["src","src/lib","src/types","src/utils","src/models"];for(const i of o){const l=H.join(e,i);if(G.existsSync(l))try{for(const c of G.readdirSync(l))c.endsWith(".ts")&&!c.endsWith(".test.ts")&&!c.endsWith(".spec.ts")&&a.push(H.join(l,c))}catch{}}for(const i of a){const l=G.readFileSync(i,"utf-8"),c=/export\s+interface\s+(\w+)/g;let u;for(;(u=c.exec(l))!==null;)s.add(u[1])}for(const i of a){const l=G.readFileSync(i,"utf-8"),c=/export\s+interface\s+(\w+)\s*\{([^}]+)\}/g;let u;for(;(u=c.exec(l))!==null;){const p=u[1],h=u[2],m=[];for(const f of h.split(`
|
|
470
|
-
`)){const y=f.trim();if(!y||y.startsWith("//"))continue;const g=y.match(/^(\w+)(\?)?:\s*([^;/]+)/);if(!g)continue;const x=g[1],b=!!g[2];let v=g[3].trim();const S=v.endsWith("[]");v=v.replace(/\[\]$/,"");const w=s.has(v);m.push({name:x,type:v,isRelation:w,isOptional:b,isList:S,isId:x==="id",...w?{relatedModel:v}:{}})}r.push({name:p,fields:m})}}return r}const V1=Object.freeze(Object.defineProperty({__proto__:null,loader:W1},Symbol.toStringTag,{value:"Module"}));async function K1({request:e}){const r=new URL(e.url).searchParams.get("skipTests")==="true",s=Se()||process.cwd(),a=H.join(s,".codeyam","glossary.json");let o;try{const P=G.readFileSync(a,"utf8");o=fa(JSON.parse(P))}catch{return Response.json(so({components:[],functions:[],scenarioCounts:{},testFileExistence:{}}))}if(o.length===0)return Response.json(so({components:[],functions:[],scenarioCounts:{},testFileExistence:{}}));const i=H.join(s,".codeyam","editor-step.json");let l=null;try{const P=G.readFileSync(i,"utf8");l=JSON.parse(P).featureStartedAt||null}catch{}let c,u=[];const p=await Ye();if(p)try{const{project:P}=await Re(p),Y=await $e().selectFrom("editor_scenarios").select(["name","component_name","component_path","page_file_path","url","display_name"]).where("project_id","=",P.id).orderBy("created_at","asc").execute(),J=kt(Y,T=>`${T.name}::${T.url||"/"}`),O=J.map(T=>({componentName:T.component_name||null,componentPath:T.component_path||null,pageFilePath:T.page_file_path??null,url:T.url??null,displayName:T.display_name??null}));u=J.map(T=>({name:T.name,componentName:T.component_name||null,pageFilePath:T.page_file_path??null,url:T.url??null}));const B=await fr({projectRoot:s,scenarioInputs:O});Object.keys(B.entityChangeStatus).length>0&&(c=B.entityChangeStatus)}catch{}const h=hb({featureStartedAt:l,entityChangeStatus:c});l=h.featureStartedAt,c=h.entityChangeStatus;const m=mb(o,c),{components:f,functions:y}=pb(m);let g={},x={};if(p)try{const{project:P}=await Re(p),F=$e();g=await Gl(F,P.id,l);const Y=await ql(F,P.id,l);for(const[J,O]of Object.entries(Y)){const B=m.find(T=>T.filePath===J);B&&(g[B.name]=(g[B.name]||0)+O)}if(l&&c){const J=await Gl(F,P.id,null),O=await ql(F,P.id,null);x={...J};for(const[B,T]of Object.entries(O)){const D=m.find(E=>E.filePath===B);D&&(x[D.name]=(x[D.name]||0)+T)}}}catch{}let b={};try{const P=process.env.CODEYAM_ROOT_PATH||process.cwd(),F=await vu(P);b=bb(F,u)}catch{}const v={};for(const P of y)P.testFile&&(v[P.testFile]=G.existsSync(H.join(s,P.testFile)));const S={},w={};if(!r){const P=y.filter(Y=>Y.testFile&&v[Y.testFile]).map(Y=>Y.testFile),F=[...new Set(P)];if(F.length>0){const Y=Pi(s),J=y.filter(E=>!!E.testFile&&v[E.testFile]).map(E=>({filePath:E.filePath,testFile:E.testFile})),O=Ti(s,J),B=new Set(c?Object.entries(c).filter(([,E])=>E.status==="impacted").map(([E])=>E):[]),T=[],D={};for(const E of F){const W=Y.results[E],K=O[E],Z=y.some(q=>q.testFile===E&&B.has(q.name));W&&K&&!Ru(W,K.sourceHash,K.testHash)&&!Z?D[E]={testFilePath:W.testFilePath,status:W.status,testCases:W.testCases,...W.errorMessage?{errorMessage:W.errorMessage}:{}}:T.push(E)}try{const E=T.length>0?await xw(s,T):{},W={...D,...E};try{Lu(s,E,J)}catch{}for(const K of y){if(!K.testFile||!v[K.testFile])continue;const Z=W[K.testFile];if(!Z)continue;const q=Z.status==="passed",U=Z.testCases.some(L=>L.fullName.startsWith(K.name));w[K.name]=Z.testCases.filter(L=>L.fullName.startsWith(K.name)&&L.status!=="skipped").length,S[K.testFile]={passing:q,hasEntityNameDescribe:U,...Z.status==="error"&&Z.errorMessage?{errorMessage:Z.errorMessage}:{}}}}catch(E){for(const W of F)S[W]={passing:!1,hasEntityNameDescribe:!1,errorMessage:E.message||"Unknown test runner error"}}}}const C=new Set(o.map(P=>P.filePath)),k=[];if(p)try{const{project:P}=await Re(p),Y=await $e().selectFrom("editor_scenarios").select(["component_name","component_path","page_file_path"]).where("project_id","=",P.id).execute(),J=new Map;for(const O of Y){const B=O,T=B.component_path||B.page_file_path;if(!T)continue;const D=J.get(T);D?D.count++:J.set(T,{name:B.component_name||H.basename(T,H.extname(T)),count:1})}for(const[O,B]of J)C.has(O)||k.push({name:B.name,filePath:O,scenarioCount:B.count})}catch{}const N=so({components:f,functions:y,scenarioCounts:g,testFileExistence:v,testResults:S,clientErrors:b,totalScenarioCounts:x,entityChangeStatus:c,testCaseCounts:w});N.missingFromGlossary=k,k.length>0&&(N.summary.allPassing=!1,N.summary.missingFromGlossary=k.length);let A=[];if(p)try{const{project:P}=await Re(p),F=$e();A=await fb(F,P.id,l)}catch{}if(N.incompleteEntities=A,A.length>0){N.summary.allPassing=!1,N.summary.incompleteEntities=A.length;const P=A.filter(F=>F.preExisting).length;P>0&&(N.summary.preExistingIncompleteEntities=P)}let _=[];if(p)try{const{project:P}=await Re(p),F=$e();_=await gb(F,P.id,l)}catch{}N.miscategorizedScenarios=_,_.length>0&&(N.summary.allPassing=!1,N.summary.miscategorizedScenarios=_.length);let M=[];if(p)try{const{project:P}=await Re(p),F=$e();M=await yb(F,P.id,l)}catch{}N.unassociatedScenarios=M,M.length>0&&(N.summary.allPassing=!1,N.summary.unassociatedScenarios=M.length);let $=[];if(p&&c&&Object.keys(c).length>0)try{const{project:P}=await Re(p),Y=await $e().selectFrom("editor_scenarios").select(["editor_scenarios.name","editor_scenarios.component_name","editor_scenarios.page_file_path","editor_scenarios.url","editor_scenarios.created_at","editor_scenarios.updated_at"]).where("editor_scenarios.project_id","=",P.id).execute(),J=l?Qr(l):null,O=Y.map(B=>({name:B.name,entityName:Kt({componentName:B.component_name,pageFilePath:B.page_file_path,url:B.url}),updatedInSession:J?ci({created_at:B.created_at,updated_at:B.updated_at},J):!1}));$=Au({scenarios:O,entityChangeStatus:c})}catch{}N.scenariosNeedingRecapture=$,$.length>0&&(N.summary.allPassing=!1,N.summary.scenariosNeedingRecapture=$.length);const I=[],R=xb(o);for(const[P,F]of R)I.push({name:P,filePaths:F.map(Y=>Y.filePath)});return N.duplicateNames=I,Response.json(N)}const G1=Object.freeze(Object.defineProperty({__proto__:null,loader:K1},Symbol.toStringTag,{value:"Module"}));async function q1({request:e}){try{const t=await e.json(),{pid:r,signal:s="SIGTERM",commitSha:a}=t;if(!r||typeof r!="number")return Response.json({error:"Missing or invalid pid parameter"},{status:400});if(!hc(r))return Response.json({error:"Process not running",pid:r},{status:404});try{process.kill(r,s)}catch(p){return Response.json({error:"Failed to kill process",pid:r,details:p instanceof Error?p.message:String(p)},{status:500})}const i=3e4,l=500,c=Date.now();let u=!0;for(;u&&Date.now()-c<i;)await new Promise(p=>setTimeout(p,l)),u=hc(r);if(u){console.warn(`Process ${r} didn't die after SIGTERM, sending SIGKILL`);try{process.kill(r,"SIGKILL"),await new Promise(p=>setTimeout(p,2e3))}catch(p){console.error(`Failed to SIGKILL process ${r}:`,p)}}if(a)try{await sn({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0,failedAt:new Date().toISOString(),failureReason:`Process ${r} killed by user`}})}catch(p){console.error("Failed to update database after killing process:",p)}return Response.json({success:!0,pid:r,signal:s,message:`Process ${r} killed successfully`,waitedMs:Date.now()-c})}catch(t){return console.error("Error in kill-process API:",t),Response.json({error:"Internal server error",details:t instanceof Error?t.message:String(t)},{status:500})}}function hc(e){try{return process.kill(e,0),!0}catch{return!1}}const Q1=Object.freeze(Object.defineProperty({__proto__:null,action:q1},Symbol.toStringTag,{value:"Module"})),Z1=ea(import.meta.url),X1=ee.dirname(Z1),eS=ee.resolve(X1,"../../../../src/utils/ruleReflection/__tests__/fixtures/captured");function tS(e){const t=[],r=new Set;for(const s of e.split(`
|
|
471
|
-
`)){const a=s.trim();if(!a)continue;let o;try{o=JSON.parse(a)}catch{continue}if(o.type!=="assistant")continue;const i=o.message;if(!(!i||!Array.isArray(i.content)))for(const l of i.content){if(typeof l!="object"||l===null)continue;const c=l;if(c.type!=="tool_use")continue;const u=String(c.name||""),p=c.input||{};if(u==="Write"||u==="Edit"){const h=String(p.file_path||"");if(h.includes(".claude/rules/")){const m=h.replace(/^.*?(\.claude\/rules\/)/,"$1"),f=`${u}:${m}`;r.has(f)||(r.add(f),t.push({action:u==="Write"?"created":"modified",filePath:m}))}}else if(u==="Bash"){const h=String(p.command||"");if(h.includes("codeyam memory touch")){const m=`touch:${h}`;r.has(m)||(r.add(m),t.push({action:"touched",filePath:h}))}}}}return t}async function nS({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{sessionId:r}=t;if(!r)return Response.json({error:"Missing required field: sessionId"},{status:400});const s=await Bu(),a=s?ee.join(Ts,s):null;let o=a?ee.join(a,`${r}.log`):"";if((!o||!St(o))&&(o=ee.join(Ts,`${r}.log`)),!St(o))return Response.json({error:`Log file not found: ${r}.log`},{status:404});const i=await bo(o,"utf-8");let l=a?ee.join(a,`${r}.context`):"";(!l||!St(l))&&(l=ee.join(Ts,`${r}.context`));let c=null;if(St(l))try{c=await bo(l,"utf-8")}catch{}const u=tS(i),h=c?["no,","no ","that's not","wrong","incorrect","actually,","actually ","i meant","i mean","not what i","stop","wait","don't do","shouldn't","try again","that broke","that failed","error","bug"].some(x=>c.toLowerCase().includes(x)):!1,m=r.endsWith("-stale")?"-stale":r.endsWith("-conversation")?"-conv":r.endsWith("-interruption")?"-int":"",f=r.slice(0,8)+m,y=ee.join(eS,f);await Qh(y,{recursive:!0}),await Mr(ee.join(y,"agent-log.jsonl"),i),c&&await Mr(ee.join(y,"context.md"),c),await Mr(ee.join(y,"rule-changes.json"),JSON.stringify(u,null,2)),await Mr(ee.join(y,"metadata.json"),JSON.stringify({sessionId:r,capturedAt:new Date().toISOString(),hasConfusion:h,ruleChangeCount:u.length},null,2));const g=ee.relative(process.cwd(),y);return console.log(`[api.save-fixture] Saved fixture to ${g}`),Response.json({success:!0,fixturePath:g})}catch(t){return console.error("[api.save-fixture] Error:",t),Response.json({error:"Failed to save fixture",details:t instanceof Error?t.message:String(t)},{status:500})}}const rS=Object.freeze(Object.defineProperty({__proto__:null,action:nS},Symbol.toStringTag,{value:"Module"}));async function sS({params:e}){const t=e["*"];if(!t)return new Response("Screenshot path is required",{status:400});const r=Se();if(!r)return console.error("[screenshot api] Project root not found"),new Response("Project root not found",{status:500});const s=ee.join(r,".codeyam","captures","screenshots",t);try{await Pe.access(s);const a=await Pe.readFile(s),o=ee.extname(s).toLowerCase(),i=o===".png"?"image/png":o===".jpg"||o===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(a,{status:200,headers:{"Content-Type":i,"Cache-Control":"public, max-age=3600"}})}catch{return new Response("Screenshot not found",{status:404})}}const aS=Object.freeze(Object.defineProperty({__proto__:null,loader:sS},Symbol.toStringTag,{value:"Module"})),mc={visual:{label:"VISUAL",bgColor:"#f9f9f9",textColor:"#9040f5"},library:{label:"LIBRARY",bgColor:"#f9f9f9",textColor:"#06b6d5"},type:{label:"TYPE",bgColor:"#ffe1e1",textColor:"#db2627"},other:{label:"OTHER",bgColor:"#f9f9f9",textColor:"#646464"}};function $i({type:e,className:t=""}){const r=mc[e]||mc.other;return n("div",{className:`inline-flex items-center justify-center px-[4px] rounded-[4px] ${t}`,style:{backgroundColor:r.bgColor,color:r.textColor,height:"15px"},children:n("span",{className:"text-[10px] font-['IBM_Plex_Sans'] font-semibold leading-[15px] uppercase",children:r.label})})}const oS={analyzer:{bgColor:"#e1e1e1",textColor:"#3e3e3e",borderColor:"#e1e1e1"},capture:{bgColor:"#e1e1e1",textColor:"#3e3e3e",borderColor:"#e1e1e1"},running:{bgColor:"#e8ffe6",textColor:"#00925d",borderColor:"#c3f3bf"},error:{bgColor:"#fee2e2",textColor:"#991b1b",borderColor:"#fecaca"}};function Ns({variant:e,pid:t,label:r,className:s=""}){const a=oS[e],o=r||(e==="analyzer"&&t?`Analyzer: ${t}`:e==="capture"&&t?`Capture: ${t}`:e==="running"?"Running":e==="error"?"Error":"");return n("div",{className:`inline-flex items-center justify-center px-[8px] rounded-[4px] ${s}`,style:{backgroundColor:a.bgColor,borderWidth:"1px",borderStyle:"solid",borderColor:a.borderColor,height:"20px"},children:n("span",{className:"font-['IBM_Plex_Sans']",style:{fontSize:"10px",fontWeight:400,lineHeight:"15px",color:a.textColor},children:o})})}let fc=!1;function iS(){if(fc)return;const e=document.createElement("style");e.textContent=`
|
|
472
|
-
@keyframes strongPulse {
|
|
473
|
-
0%, 100% { opacity: 0.2; }
|
|
474
|
-
50% { opacity: 1; }
|
|
475
|
-
}
|
|
476
|
-
`,document.head.appendChild(e),fc=!0}function Ii({size:e="medium",className:t=""}){typeof document<"u"&&iS();const r={small:{sideDotSize:3,centerDotSize:4,gap:2},medium:{sideDotSize:4,centerDotSize:6,gap:2},large:{sideDotSize:6,centerDotSize:8,gap:3}},{sideDotSize:s,centerDotSize:a,gap:o}=r[e];return d("div",{className:`flex items-center justify-center ${t}`,style:{gap:`${o}px`},role:"status","aria-label":"Loading",children:[n("div",{className:"rounded-full",style:{width:`${s}px`,height:`${s}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0s"}}),n("div",{className:"rounded-full",style:{width:`${a}px`,height:`${a}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0.3s"}}),n("div",{className:"rounded-full",style:{width:`${s}px`,height:`${s}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0.6s"}})]})}const lS=()=>[{title:"Activity - CodeYam"},{name:"description",content:"View analysis activity and queue status"}];async function cS({request:e,context:t,params:r}){var B,T,D,E,W,K,Z,q;let s=t.analysisQueue;s||(s=await Vt());const a=new URL(e.url),o=parseInt(a.searchParams.get("page")||"1",10),i=20,l=r.tab||"current";if(!s)return ne({error:"Queue not initialized",state:{paused:!1,jobs:[]},currentRun:void 0,historicalRuns:[],totalHistoricalRuns:0,currentPage:o,totalPages:0,projectSlug:null,commitSha:void 0,queueJobs:[],currentlyExecuting:null,currentEntities:[],tab:l,hasCurrentActivity:!1,queuedCount:0,recentCompletedEntities:[],hasMoreCompletedRuns:!1,currentEntityScenarios:[],currentEntityForScenarios:null,currentAnalysisStatus:null},{status:500});const c=s.getState(),u=await Ye();let p=null;if(u&&((B=c==null?void 0:c.currentlyExecuting)!=null&&B.commitSha)){const{project:U,branch:L}=await Re(u),z=await Us({projectId:U.id,branchId:L.id,shas:[c.currentlyExecuting.commitSha]});p=z&&z.length>0?z[0]:null}else p=await ur();const h=async U=>{const L=await jn(U);if(!L)return null;const{getAnalysesForEntity:z}=await Promise.resolve().then(()=>wg),V=await z(U,!1);return{...L,analyses:V||[]}},m=await Promise.all(((c==null?void 0:c.jobs)||[]).map(async U=>{const L=[];if(U.entityShas&&U.entityShas.length>0){const z=U.entityShas.map(re=>h(re)),V=await Promise.all(z);L.push(...V.filter(re=>re!==null))}return{...U,entities:L}}));let f=null;if(c!=null&&c.currentlyExecuting){const U=c.currentlyExecuting,L=[];if(U.entityShas&&U.entityShas.length>0){const z=U.entityShas.map(re=>h(re)),V=await Promise.all(z);L.push(...V.filter(re=>re!==null))}f={...U,entities:L}}const y=f?m.filter(U=>U.id!==f.id):m,g=((D=(T=p==null?void 0:p.metadata)==null?void 0:T.currentRun)==null?void 0:D.currentEntityShas)||[],b=(await Promise.all(g.map(U=>h(U)))).filter(U=>U!==null),v=[];if(u)try{const{project:U,branch:L}=await Re(u),z=await Us({projectId:U.id,branchId:L.id,limit:100});for(const V of z){const re=((E=V.metadata)==null?void 0:E.historicalRuns)||[];v.push(...re)}}catch(U){console.error("[activity.tsx] Failed to load historical runs from commits:",U)}const S=[...v].sort((U,L)=>{const z=U.lastCaptureAt||U.analysisCompletedAt||U.archivedAt||U.createdAt||"";return(L.lastCaptureAt||L.analysisCompletedAt||L.archivedAt||L.createdAt||"").localeCompare(z)}),w=(o-1)*i,C=w+i,k=S.slice(w,C),N=Math.ceil(S.length/i),A=await Promise.all(k.map(async U=>{const L=U.currentEntityShas||[];if(L.length===0)return{...U,entities:[]};const z=await Promise.all(L.map(V=>h(V)));return{...U,entities:z.filter(V=>V!==null)}})),_=!!f,M=y.length,$=S.filter(U=>{const L=!!U.failedAt,z=U.readyToBeCaptured,V=U.capturesCompleted??0,re=z===void 0?!0:z===0||V>=z;return!L&&!!U.analysisCompletedAt&&re}),I=new Set(((W=f==null?void 0:f.entities)==null?void 0:W.map(U=>U.sha))||[]),R=$.filter(U=>!(U.currentEntityShas||[]).some(z=>I.has(z))),F=(await Promise.all(R.slice(0,3).map(async U=>{const L=U.currentEntityShas||[];if(L.length===0)return{run:U,entities:[]};const z=await Promise.all(L.map(V=>h(V)));return{run:U,entities:z.filter(V=>V!==null)}}))).flatMap(({run:U,entities:L})=>L.map(z=>({...z,runId:U.id,completedAt:U.lastCaptureAt||U.analysisCompletedAt||U.archivedAt||U.createdAt})));let Y=[],J=null,O=null;if((Z=(K=p==null?void 0:p.metadata)==null?void 0:K.currentRun)!=null&&Z.analysisCompletedAt&&b.length>0){const U=b[0].sha;J=b[0];const L=await aa(U);L&&L.length>0&&L[0].scenarios&&(Y=L[0].scenarios,O=L[0].status)}return ne({state:{...c,jobs:y,currentlyExecuting:f},currentRun:(q=p==null?void 0:p.metadata)==null?void 0:q.currentRun,historicalRuns:A,totalHistoricalRuns:S.length,currentPage:o,totalPages:N,projectSlug:u,commitSha:p==null?void 0:p.sha,queueJobs:y,currentlyExecuting:f,currentEntities:b,tab:l,hasCurrentActivity:_,queuedCount:M,recentCompletedEntities:F,hasMoreCompletedRuns:R.length>3,currentEntityScenarios:Y,currentEntityForScenarios:J,currentAnalysisStatus:O})}function dS({activeTab:e,hasCurrentActivity:t,queuedCount:r,historicCount:s}){const a=[{id:"current",label:"Current Activity",hasContent:t,count:t?1:null},{id:"queued",label:"Queued Activity",hasContent:r>0,count:r},{id:"historic",label:"Historic Activity",hasContent:s>0,count:s}];return n("div",{className:"border-b border-gray-200 mb-6",children:n("nav",{className:"flex gap-8",children:a.map(o=>{const i=e===o.id;return n(ke,{to:o.id==="current"?"/activity":`/activity/${o.id}`,className:`
|
|
477
|
-
relative pb-4 px-2 text-sm transition-colors cursor-pointer
|
|
478
|
-
${i?"font-medium border-b-2":"font-normal hover:text-gray-700"}
|
|
479
|
-
`,style:i?{color:"#005C75",borderColor:"#005C75"}:{color:"#9ca3af"},children:d("span",{className:"flex items-center gap-2",children:[o.label,o.count!==null&&o.count>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${i?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:o.count}),o.count===null&&o.hasContent&&n("span",{className:`
|
|
480
|
-
inline-block w-2 h-2 rounded-full
|
|
481
|
-
${i?"":"bg-gray-400"}
|
|
482
|
-
`,style:i?{backgroundColor:"#005C75"}:{}})]})},o.id)})})})}function uS({currentlyExecuting:e,currentRun:t,state:r,projectSlug:s,commitSha:a,onShowLogs:o,recentCompletedEntities:i,hasMoreCompletedRuns:l,currentEntityScenarios:c,currentEntityForScenarios:u,currentAnalysisStatus:p}){var P,F,Y,J;const[h,m]=j({}),[f,y]=j({isKilling:!1,current:0,total:0}),g=Dt(),x=!!e,b=(e==null?void 0:e.entities)||[],v=!!(t!=null&&t.analysisCompletedAt),S=v&&!!(t!=null&&t.capturePid),w=!v,C=x,k=c||[],{lastLine:N}=Wt(s,C);te(()=>{if(!t)return;const O=[t.analyzerPid,t.capturePid].filter(E=>!!E);if(O.length===0)return;let B=!0;const T=async()=>{try{const W=await(await fetch(`/api/process-status?pids=${O.join(",")}`)).json();if(W.processes&&B){const K={};W.processes.forEach(Z=>{K[Z.pid]={isRunning:Z.isRunning,processName:Z.processName}}),m(K)}}catch(E){B&&console.error("Failed to fetch process statuses:",E)}};T();const D=setInterval(()=>void T(),5e3);return()=>{B=!1,clearInterval(D)}},[t==null?void 0:t.analyzerPid,t==null?void 0:t.capturePid]);const[A,_]=j(!1),[M,$]=j(!1);te(()=>{b.length<=3&&A&&_(!1)},[b.length,A]),te(()=>{i.length<=3&&M&&$(!1)},[i.length,M]);const I=A?b:b.slice(0,3),R=b.length>3;return d("div",{className:"flex flex-col gap-[45px]",children:[C?d("div",{className:"rounded-[10px] p-[15px]",style:{backgroundColor:"#f6f9fc",border:"1px solid #e0e9ec"},children:[d("div",{className:"flex items-center gap-2 mb-[15px]",children:[n(Mt,{size:14,strokeWidth:2.5,className:"animate-spin",style:{color:"#005c75"}}),n("span",{className:"font-medium",style:{fontSize:"14px",lineHeight:"18px",color:"#005c75"},children:S?"Capturing...":"Analyzing..."})]}),I.map(O=>d("div",{className:"bg-white border border-[#e1e1e1] rounded-[4px] mb-[15px]",style:{height:"60px",padding:"0 15px",display:"flex",alignItems:"center",justifyContent:"space-between",boxShadow:"0 1px 3px 0 rgb(0 0 0 / 0.1)"},children:[d("div",{className:"flex items-center gap-3",children:[n("div",{children:n(gt,{type:O.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col gap-[1px]",children:[d("div",{className:"flex items-center gap-[14px]",children:[n(ke,{to:`/entity/${O.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:O.name}),O.entityType&&n($i,{type:O.entityType})]}),n("div",{className:"truncate font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e",width:"422px"},title:O.filePath,children:O.filePath})]})]}),n("button",{onClick:o,className:"px-[10px] rounded-[4px] transition-colors whitespace-nowrap cursor-pointer",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},children:"View Logs"})]},O.sha)),R&&!A&&d("button",{onClick:()=>_(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] mb-[15px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",b.length-3," more"," ",b.length-3===1?"entity":"entities"]}),A&&R&&n("button",{onClick:()=>_(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] mb-[15px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"}),S&&k&&k.length>0&&u&&n("div",{className:"flex gap-[10px] overflow-x-auto mb-[15px]",children:k.map(O=>{var Z,q,U,L;if(!O.id)return null;const B=(q=(Z=O.metadata)==null?void 0:Z.screenshotPaths)==null?void 0:q[0],T=(U=O.metadata)==null?void 0:U.noScreenshotSaved,D=B&&!T,E=(L=p==null?void 0:p.scenarios)==null?void 0:L.find(z=>z.name===O.name),K=E&&E.screenshotStartedAt&&!E.screenshotFinishedAt||!D&&!T;return n(ke,{to:`/entity/${u.sha}/scenarios/${O.id}`,className:"border border-solid rounded-[6px] overflow-hidden flex-shrink-0 cursor-pointer",style:{width:"160px",height:"90px",backgroundColor:K?"#f9f9f9":void 0,borderColor:K?"#efefef":"#ccc"},children:D?n(dt,{screenshotPath:B,alt:O.name,className:"w-full h-full object-contain bg-gray-100"}):K?n("div",{className:"w-full h-full flex items-center justify-center",children:n(Ii,{size:"medium"})}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundColor:"#FAFAFA",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})},O.id)})}),N&&n("div",{className:"mb-[15px] font-['IBM_Plex_Mono']",style:{fontSize:"12px",lineHeight:"20px",fontWeight:500,color:"#005c75"},children:N}),n("div",{className:"mb-[15px]",style:{height:"1px",backgroundColor:"#e0e9ec"}}),((t==null?void 0:t.analyzerPid)||(t==null?void 0:t.capturePid))&&d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center gap-2",children:[d("span",{style:{fontSize:"12px",lineHeight:"15px",fontWeight:400,color:"#000"},children:["Running Processes:"," "]}),(t==null?void 0:t.analyzerPid)&&n(Ns,{variant:"analyzer",pid:t.analyzerPid}),(t==null?void 0:t.analyzerPid)&&(w||((P=h[t.analyzerPid])==null?void 0:P.isRunning))&&n(Ns,{variant:"running"}),(t==null?void 0:t.capturePid)&&n(Ns,{variant:"capture",pid:t.capturePid}),(t==null?void 0:t.capturePid)&&(S||((F=h[t.capturePid])==null?void 0:F.isRunning))&&n(Ns,{variant:"running"})]}),(((Y=h[t==null?void 0:t.analyzerPid])==null?void 0:Y.isRunning)||((J=h[t==null?void 0:t.capturePid])==null?void 0:J.isRunning))&&n("button",{onClick:()=>{const O=[t==null?void 0:t.analyzerPid,t==null?void 0:t.capturePid].filter(D=>{var E;return!!D&&((E=h[D])==null?void 0:E.isRunning)});if(O.length===0)return;const B=O.join(", ");if(!confirm(`Are you sure you want to kill all running processes (${B})?`))return;y({isKilling:!0,current:1,total:O.length}),(async()=>{for(let D=0;D<O.length;D++){const E=O[D];try{await fetch("/api/kill-process",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({pid:E,commitSha:a||""})})}catch(W){console.error(`Failed to kill process ${E}:`,W)}D<O.length-1&&y({isKilling:!0,current:D+2,total:O.length})}y({isKilling:!1,current:0,total:0}),g.revalidate()})()},disabled:f.isKilling,className:"px-[8px] rounded-[4px] transition-colors whitespace-nowrap cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed",style:{backgroundColor:"#991b1b",color:"white",fontSize:"12px",lineHeight:"15px",fontWeight:500,height:"27px",width:"114px"},children:f.isKilling?"Killing...":"Kill All Processes"})]})]}):d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(ad,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Current Activity"}),d("p",{className:"text-sm",style:{color:"#8e8e8e"},children:["There are no analyses running. Trigger one from"," ",n(ke,{to:"/git",className:"text-[#005C75] hover:underline font-medium cursor-pointer",children:"Git"})," ","or"," ",n(ke,{to:"/files",className:"text-[#005C75] hover:underline font-medium cursor-pointer",children:"Files"}),"."]})]})]}),d(ke,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]}),i&&i.length>0&&d("div",{children:[n("h3",{className:"font-mono uppercase",style:{fontSize:"12px",lineHeight:"18px",color:"#8e8e8e",marginBottom:"16px",fontWeight:500,letterSpacing:"0.05em"},children:"Recently Completed Analyses"}),d("div",{className:"flex flex-col gap-4",children:[(M?i:i.slice(0,3)).map(O=>{var D;const B=(D=O.analyses)==null?void 0:D[0],T=(B==null?void 0:B.scenarios)||[];return B==null||B.status,n("div",{className:"rounded-[8px] p-[15px]",style:{backgroundColor:"#ffffff",border:"1px solid #aff1a9"},children:d("div",{className:"flex flex-col gap-[15px]",children:[d("div",{className:"flex items-center",children:[n("div",{className:"flex-shrink-0",children:n(gt,{type:O.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col flex-shrink-0",style:{marginLeft:"15px",gap:"4px"},children:[d("div",{className:"flex items-center gap-[5px]",children:[n(ke,{to:`/entity/${O.sha}`,className:"hover:underline cursor-pointer",title:O.name,style:{fontSize:"14px",lineHeight:"18px",color:"#343434",fontWeight:500},children:O.name}),n("div",{className:"flex items-center justify-center px-2 rounded",style:{height:"20px",backgroundColor:"#e8ffe6",color:"#00925d",fontSize:"12px",lineHeight:"16px",fontWeight:400},children:O.isUncommitted?"Modified":"Up to date"})]}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e",fontWeight:400},className:"font-mono",title:O.filePath,children:O.filePath})]}),n("div",{className:"flex-1"}),n("div",{className:"flex-shrink-0",children:n("button",{onClick:o,className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:E=>{E.currentTarget.style.backgroundColor="#d0dfe3"},onMouseLeave:E=>{E.currentTarget.style.backgroundColor="#e0e9ec"},children:"View Logs"})})]}),n("div",{className:"border-t border-gray-200 mx-[-15px]"}),T.length>0?n("div",{className:"flex gap-2.5 overflow-x-auto pb-3 px-[15px] pt-3",style:{paddingLeft:"47px"},children:T.map(E=>{var q,U,L;if(!E.id)return null;const W=(U=(q=E.metadata)==null?void 0:q.screenshotPaths)==null?void 0:U[0],K=(L=E.metadata)==null?void 0:L.noScreenshotSaved,Z=W&&!K;return d("div",{className:"shrink-0 flex flex-col gap-2",children:[n(ke,{to:`/entity/${O.sha}/scenarios/${E.id}`,className:"block cursor-pointer",children:n("div",{className:"w-36 h-24 rounded-md border overflow-hidden flex items-center justify-center transition-all",style:{backgroundColor:Z?"#f3f4f6":"#FAFAFA",borderColor:Z?"#d1d5db":"#BCCDD3",borderStyle:Z?"solid":"dashed"},onMouseEnter:z=>{Z&&(z.currentTarget.style.borderColor="#005C75",z.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.15)")},onMouseLeave:z=>{z.currentTarget.style.borderColor=Z?"#d1d5db":"#BCCDD3",z.currentTarget.style.boxShadow="none"},children:Z?n(dt,{screenshotPath:W,alt:E.name,className:"max-w-full max-h-full object-contain"}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})})}),n("div",{className:"text-left text-xs text-gray-600 cursor-default",style:{fontSize:"11px",lineHeight:"14px",maxWidth:"144px",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:E.name})]},E.id)})}):n("div",{className:"italic",style:{fontSize:"12px",color:"#646464",marginLeft:"49px"},children:"No scenarios available"})]})},O.sha)}),i.length>3&&!M&&d("button",{onClick:()=>$(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",i.length-3," more"," ",i.length-3===1?"entity":"entities"]}),M&&i.length>3&&n("button",{onClick:()=>$(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})]})]})}function pS({queueJobs:e,state:t,currentRun:r}){if(!e||e.length===0)return d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(Ph,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Queued Jobs"}),n("p",{className:"text-sm",style:{color:"#8e8e8e"},children:"Analysis jobs will appear here when they are queued but not yet started."})]})]}),d(ke,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]});const[s,a]=j(null),[o,i]=j(null),[l,c]=j(null),[u,p]=j(!1),[h,m]=j(!1),[f,y]=j(new Set),g=Dt();te(()=>{e.length<=3&&h&&m(!1)},[e.length,h]);const x=k=>{a(k)},b=(k,N)=>{k.preventDefault(),i(N)},v=async(k,N)=>{if(k.preventDefault(),!s){i(null);return}const A=e.findIndex($=>$.id===s);if(A===-1){a(null),i(null);return}if(A===N){a(null),i(null);return}const _=A<N?"down":"up",M=Math.abs(N-A);p(!0);try{for(let $=0;$<M;$++)await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"reorder",jobId:s,direction:_})});g.revalidate()}catch($){console.error("Failed to reorder job:",$)}finally{p(!1),a(null),i(null)}},S=()=>{u||(a(null),i(null))},w=async k=>{if(confirm("Are you sure you want to cancel this job?"))try{await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"remove",jobId:k})}),window.location.reload()}catch(N){console.error("Failed to cancel job:",N)}},C=async()=>{if(confirm(`Are you sure you want to cancel all ${e.length} queued jobs?`))try{await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}),window.location.reload()}catch(k){console.error("Failed to cancel jobs:",k)}};return d("div",{children:[d("div",{className:"flex items-center justify-between mb-4",children:[d("h3",{className:"font-semibold",style:{fontSize:"16px",lineHeight:"24px",color:"#343434"},children:[e.length," Queued Job",e.length!==1?"s":""]}),e.length>0&&n("button",{onClick:()=>void C(),className:"px-[10px] py-0 rounded transition-colors cursor-pointer hover:bg-red-300",style:{backgroundColor:"#ffdcd9",color:"#ef4444",fontSize:"12px",fontWeight:500,height:"29px"},children:"Cancel All"})]}),d("div",{className:"flex flex-col gap-3",children:[(h?e:e.slice(0,3)).map(k=>{var R,P,F,Y;const N=e.findIndex(J=>J.id===k.id),A=l===N,_=s===k.id,M=o===N,$=f.has(k.id),I=((R=k.entities)==null?void 0:R.length)>0?$?k.entities:k.entities.slice(0,3):[];return d("div",{className:"rounded-lg p-4 relative",style:{backgroundColor:"#f6f9fc",border:"1px solid #005C75",opacity:_||u?.5:1,transform:M&&s!==null&&!_?"translateY(-2px)":"translateY(0)",transition:"transform 0.2s ease, opacity 0.2s ease",cursor:u?"not-allowed":_?"grabbing":"grab"},onMouseEnter:()=>c(N),onMouseLeave:()=>c(null),draggable:!u,onDragStart:J=>{x(k.id),J.dataTransfer.effectAllowed="move"},onDragOver:J=>b(J,N),onDrop:J=>void v(J,N),onDragEnd:S,children:[d("div",{className:"absolute left-4 top-4 flex items-center gap-1.5 flex-shrink-0",children:[n(Th,{size:16,style:{color:"#005C75"}}),d("span",{style:{fontSize:"14px",fontWeight:500,lineHeight:"18px",color:"#005C75"},children:["Job ",N+1]})]}),d("div",{className:"flex flex-col gap-2 mt-8",children:[I.length>0?d(we,{children:[I.map(J=>n("div",{className:"bg-white rounded",style:{border:"1px solid #e1e1e1",height:"60px"},children:n("div",{className:"flex items-center justify-between h-full px-[15px]",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{children:n(gt,{type:J.entityType||"other",size:"large"})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(ke,{to:`/entity/${J.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:J.name}),J.entityType&&n($i,{type:J.entityType})]}),n("div",{className:"font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},children:J.filePath})]})]})})},J.sha)),((P=k.entities)==null?void 0:P.length)>3&&n("button",{onClick:()=>{y(J=>{const O=new Set(J);return O.has(k.id)?O.delete(k.id):O.add(k.id),O})},className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"40px",fontSize:"12px",color:"#646464",fontWeight:500},children:$?"Show less":`+${k.entities.length-3} more ${k.entities.length-3===1?"entity":"entities"}`})]}):n("div",{className:"bg-white rounded",style:{border:"1px solid #e1e1e1",height:"60px"},children:n("div",{className:"flex items-center justify-between h-full px-[15px]",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{style:{transform:"scale(1.0)"},children:n(Ls,{size:18,style:{color:"#8e8e8e"}})}),d("div",{className:"flex-1",children:[n("div",{style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:((F=k.entityNames)==null?void 0:F[0])||(k.type==="analysis"?"Analysis Job":k.type==="recapture"?"Recapture Job":k.type==="debug-setup"?"Debug Setup":k.type.charAt(0).toUpperCase()+k.type.slice(1))}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},children:((Y=k.filePaths)==null?void 0:Y[0])||(k.filePaths&&k.filePaths.length>1?`${k.filePaths.length} files`:k.entityShas&&k.entityShas.length>0?`${k.entityShas.length} ${k.entityShas.length===1?"entity":"entities"}`:"Queued for processing")})]})]})})}),d("div",{className:"flex items-center justify-end gap-2 mt-1",children:[A&&n("div",{className:"cursor-grab active:cursor-grabbing",style:{color:"#8e8e8e"},title:"Drag to reorder",children:n(Mh,{size:20})}),n("button",{onClick:()=>void w(k.id),className:"transition-colors cursor-pointer hover:bg-red-100 rounded flex items-center justify-center",style:{fontSize:"10px",fontWeight:600,lineHeight:"22px",color:"#ef4444",backgroundColor:"#fef6f6",padding:"0 10px",height:"22px"},children:"Cancel"})]})]})]},k.id)}),e.length>3&&!h&&d("button",{onClick:()=>m(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",e.length-3," more"," ",e.length-3===1?"job":"jobs"]}),h&&e.length>3&&n("button",{onClick:()=>m(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})]})}function hS({historicalRuns:e,totalHistoricalRuns:t,currentPage:r,totalPages:s,tab:a,onShowLogs:o}){if(t===0)return d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n($h,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Historic Activity"}),n("p",{className:"text-sm",style:{color:"#8e8e8e"},children:"Completed analyses will appear here for historical reference."})]})]}),d(ke,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]});const[i,l]=j(!1),c=[];e.forEach(p=>{p.entities&&p.entities.length>0&&p.entities.forEach(h=>{c.push({...h,runCreatedAt:p.createdAt})})});const u=i?c:c.slice(0,3);return d("div",{className:"flex flex-col gap-4",children:[u.map(p=>{var y;const h=(y=p.analyses)==null?void 0:y[0],m=(h==null?void 0:h.scenarios)||[],f=!p.isUncommitted;return d("div",{className:"rounded-lg p-4",style:{backgroundColor:f?"#ffffff":"#fef9e7",border:"1px solid",borderColor:f?"#aff1a9":"#f9d689"},children:[d("div",{className:"flex items-start justify-between mb-3",children:[d("div",{className:"flex items-start gap-3 flex-1",children:[n("div",{children:n(gt,{type:p.entityType||"other",size:"large"})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(ke,{to:`/entity/${p.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#343434"},children:p.name}),n("div",{className:"px-2 py-0.5 rounded",style:{backgroundColor:f?"#e8ffe6":"#fef3cd",color:f?"#00925d":"#a16207",fontSize:"12px",fontWeight:400},children:f?"Up to date":"Out of date"})]}),n("div",{className:"font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},title:p.filePath,children:p.filePath})]})]}),n("button",{onClick:o,className:"px-3 py-1 rounded transition-colors whitespace-nowrap cursor-pointer",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",fontWeight:600},children:"View Logs"})]}),m.length>0&&d("div",{className:"flex gap-2 overflow-x-auto",style:{marginLeft:"44px"},children:[m.slice(0,8).map(g=>{var S,w,C;if(!g.id)return null;const x=(w=(S=g.metadata)==null?void 0:S.screenshotPaths)==null?void 0:w[0],b=(C=g.metadata)==null?void 0:C.noScreenshotSaved,v=x&&!b;return n(ke,{to:`/entity/${p.sha}/scenarios/${g.id}`,className:"border rounded overflow-hidden flex-shrink-0 cursor-pointer",style:{width:"120px",height:"80px",borderColor:v?"#ccc":"#BCCDD3",borderStyle:v?"solid":"dashed"},children:v?n(dt,{screenshotPath:x,alt:g.name,className:"w-full h-full object-cover bg-gray-100"}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundColor:"#FAFAFA",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})},g.id)}),m.length>8&&d("div",{className:"flex items-center justify-center flex-shrink-0",style:{width:"120px",height:"80px",fontSize:"12px",color:"#646464"},children:["+",m.length-8," more"]})]})]},`${p.sha}-${p.runCreatedAt}`)}),c.length>3&&!i&&d("button",{onClick:()=>l(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",c.length-3," more"," ",c.length-3===1?"entity":"entities"]}),i&&c.length>3&&n("button",{onClick:()=>l(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})}const mS=et(function(){const t=ot(),r=nd(),[s,a]=j(!1);Rt({source:"activity-page"});const o=r.tab||"current";return t?d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Activity"}),n("p",{className:"text-[15px] text-gray-500",children:"View queued, current, and historical analysis activity."})]}),n(dS,{activeTab:o,hasCurrentActivity:t.hasCurrentActivity,queuedCount:t.queuedCount,historicCount:t.totalHistoricalRuns}),o==="current"&&n(uS,{currentlyExecuting:t.currentlyExecuting,currentRun:t.currentRun,state:t.state,projectSlug:t.projectSlug,commitSha:t.commitSha,onShowLogs:()=>a(!0),recentCompletedEntities:t.recentCompletedEntities||[],hasMoreCompletedRuns:t.hasMoreCompletedRuns||!1,currentEntityScenarios:t.currentEntityScenarios||[],currentEntityForScenarios:t.currentEntityForScenarios,currentAnalysisStatus:t.currentAnalysisStatus}),o==="queued"&&n(pS,{queueJobs:t.queueJobs,state:t.state,currentRun:t.currentRun}),o==="historic"&&n(hS,{historicalRuns:t.historicalRuns,totalHistoricalRuns:t.totalHistoricalRuns,currentPage:t.currentPage,totalPages:t.totalPages,tab:o,onShowLogs:()=>a(!0)}),s&&t.projectSlug&&n(an,{projectSlug:t.projectSlug,onClose:()=>a(!1)})]}):n("div",{className:"px-20 py-12",children:n("div",{className:"text-center",children:n("p",{className:"text-gray-600",children:"Loading..."})})})}),fS=Object.freeze(Object.defineProperty({__proto__:null,default:mS,loader:cS,meta:lS},Symbol.toStringTag,{value:"Module"}));async function Qu(e,t,r){var w,C;await Je();const s=await Ht({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw new Error(`Analysis ${e} not found`);if(!s.commit)throw new Error(`Commit not found for analysis ${e}`);const a=Se();if(!a)throw new Error("Project root not found");const o=H.join(a,".codeyam","config.json"),i=JSON.parse(G.readFileSync(o,"utf8")),{projectSlug:l}=i;if(!l)throw new Error("Project slug not found in config");const c=Gr(l);try{G.writeFileSync(c,"","utf8")}catch{}const{project:u}=await Re(l),p=((w=u.metadata)==null?void 0:w.packageManager)||"npm",h=3112,m=It(l),f=((C=u.metadata)==null?void 0:C.webapps)||[];if(f.length===0)throw new Error(`No webapps found in project metadata for project ${l}`);const y=i.environmentVariables||[],g=If({filePath:s.filePath,webapps:f,environmentVariables:y,port:h,packageManager:p});await dr(e,k=>{if(k&&(k.readyToBeCaptured=!0,k.scenarios))for(const N of k.scenarios)(!t||N.name===t)&&(delete N.screenshotStartedAt,delete N.screenshotFinishedAt,delete N.interactiveStartedAt,delete N.interactiveFinishedAt,delete N.error,delete N.errorStack)});const{jobId:x}=r.enqueue({type:"debug-setup",commitSha:s.commit.sha,projectSlug:l,analysisId:e,scenarioId:t,prepOnly:!0}),b=g.startCommand,v={title:"Debug Setup In Progress",sections:[{heading:"Status",items:[{content:"Setting up debug environment... This may take a minute."},{label:"Project Path",content:m}]},{heading:"What's Happening",items:[{content:"1. Preparing analyzer and dependencies"},{content:"2. Syncing project files"},{content:"3. Setting up mock environment"}]},{heading:"Next Steps (Once Complete)",items:[{label:"1. Open the project directory",content:`code ${m}`,isCode:!0},{label:"2. Start the development server (copy & paste this exact command)",content:b,isCode:!0},{label:"3. View the scenario in your browser",content:`http://localhost:${h}/static/codeyam-sample`,isLink:!0}]}]};return{success:!0,jobId:x,analysisId:e,scenarioId:t,projectPath:m,projectSlug:l,port:h,packageManager:p,framework:g.framework,instructions:v}}async function gS({request:e,context:t}){const r=new URL(e.url),s=r.searchParams.get("analysisId"),a=r.searchParams.get("scenarioId")||void 0;if(!s)return ne({error:"Missing analysisId parameter",usage:"GET /api/debug-setup?analysisId=<uuid>&scenarioId=<uuid>",example:'curl "http://localhost:3111/api/debug-setup?analysisId=f35509cb-b8f1-4d86-998e-fc24201ae2c7"'},{status:400});let o=t.analysisQueue;if(o||(o=await Vt()),!o)return ne({error:"Queue not initialized"},{status:500});console.log("[Debug Setup API] GET request for:",{analysisId:s,scenarioId:a});try{const i=await Qu(s,a,o);return ne({...i,success:!0,message:"Debug setup queued"})}catch(i){return console.error("[Debug Setup API] GET Error:",i),ne({error:"Failed to setup debug environment",details:i.message},{status:500})}}async function yS({request:e,context:t}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Vt()),!r)return ne({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("scenarioId");if(!a)return ne({error:"Missing required field: analysisId"},{status:400});const i=await Qu(a,o,r);return ne({...i,success:!0,message:"Debug setup queued"})}catch(s){console.error("[Debug Setup API] Error during debug setup:",s);const a=s instanceof Error?s.message:String(s),o=s instanceof Error?s.stack:void 0;return console.error("[Debug Setup API] Error stack:",o),ne({error:"Failed to setup debug environment",details:a},{status:500})}}const xS=Object.freeze(Object.defineProperty({__proto__:null,action:yS,loader:gS},Symbol.toStringTag,{value:"Module"}));function bS({request:e}){const r=new URL(e.url).searchParams.get("path");if(!r)return new Response("Missing path parameter",{status:400});const s=Se()||process.cwd(),a=H.resolve(s,r);if(!a.startsWith(s+H.sep)&&a!==s)return new Response("Path outside project root",{status:403});try{const o=G.readFileSync(a,"utf8");return new Response(o,{headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch{return new Response("File not found",{status:404})}}const vS=Object.freeze(Object.defineProperty({__proto__:null,loader:bS},Symbol.toStringTag,{value:"Module"})),wS=process.env.LABS_UNLOCK_SALT||"codeyam-labs-default-salt";function Zu(e){const t=em("sha256",wS);return t.update(e),`CY-${t.digest("hex").slice(0,16)}`}function NS(e,t){return t===Zu(e)}async function SS({request:e}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});try{const r=(await e.formData()).get("unlockCode");if(!r)return ne({success:!1,error:"Unlock code is required"},{status:400});const s=await Ye();return s?NS(s,r)?(await rr({projectSlug:s,metadataUpdate:{labs:{accessGranted:!0,simulations:!0}}}),ne({success:!0})):ne({success:!1,error:"Invalid unlock code"},{status:400}):ne({success:!1,error:"Project not found"},{status:404})}catch(t){return console.error("[Labs Unlock] Error:",t),ne({success:!1,error:"Failed to validate unlock code. Please try again."},{status:500})}}const CS=Object.freeze(Object.defineProperty({__proto__:null,action:SS},Symbol.toStringTag,{value:"Module"}));async function kS({request:e,context:t}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Vt()),!r)return ne({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("defaultWidth");if(!a||!o)return ne({error:"Missing required fields: analysisId and defaultWidth"},{status:400});const i=parseInt(o,10);if(isNaN(i)||i<320||i>3840)return ne({error:"Invalid defaultWidth: must be between 320 and 3840"},{status:400});console.log(`[API] Starting recapture for analysis ${a} with width ${i}`);const l=await Jw(a,i,r);return console.log("[API] Recapture queued",l),ne({success:!0,message:"Recapture queued",...l})}catch(s){return console.log("[API] Error during recapture:",s),ne({error:"Failed to recapture screenshots",details:s instanceof Error?s.message:String(s)},{status:500})}}const _S=Object.freeze(Object.defineProperty({__proto__:null,action:kS},Symbol.toStringTag,{value:"Module"}));function ES(e){if(e.length===0)throw new Error("paths array must not be empty");return e.map(AS).map(a=>a===""?[]:a.split("/")).reduce((a,o)=>{const i=[];for(let l=0;l<Math.min(a.length,o.length)&&a[l]===o[l];l++)i.push(a[l]);return i}).join("/")}function AS(e){const r=e.replace(/\/+$/,"").split("/");for(;r.length>0;){const s=r[r.length-1];if(jS(s))r.pop();else break}return r.join("/")}function jS(e){return!!(e.includes("*")||/\.\w+$/.test(e))}function PS({request:e}){const r=new URL(e.url).searchParams.getAll("paths");if(r.length===0)return Response.json({error:"Missing required query parameter: paths"},{status:400});const s=ES(r),a=s?`.claude/rules/${s}/`:".claude/rules/";return Response.json({result:a})}const TS=Object.freeze(Object.defineProperty({__proto__:null,loader:PS},Symbol.toStringTag,{value:"Module"}));function MS(e,t){var i,l,c,u,p;const r=((i=e.metadata)==null?void 0:i.isUncommitted)===!0,s=e.analyses&&e.analyses.length>0&&e.analyses.some(h=>h.scenarios&&h.scenarios.length>0);if(!r){const h=!!((l=e.metadata)!=null&&l.previousVersionWithAnalyses),m=s&&e.analyses&&e.analyses.length>0&&e.analyses[0].entitySha!==e.sha;return h||m?s?{state:"committed_no_simulations",hasSimulations:!0,hasOutdatedSimulations:!0,canGenerateSimulations:!0,badge:{label:"Committed - Simulations Outdated",color:"text-orange-700",bgColor:"bg-orange-50",borderColor:"border-orange-300",icon:"⚠"}}:{state:"committed_no_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not Yet Analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}:s?{state:"committed_with_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up to date",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"✓"}}:{state:"committed_no_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}}const a=!!((c=e.metadata)!=null&&c.previousCommittedSha);if(!!((u=e.metadata)!=null&&u.previousVersionWithAnalyses)||a){const h=s&&e.analyses&&e.analyses.length>0&&e.analyses[0].entitySha===((p=e.metadata)==null?void 0:p.previousVersionWithAnalyses);return s&&!h?{state:"uncommitted_with_new_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up-to-date Simulations",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"●"}}:s?{state:"uncommitted_outdated_simulations",hasSimulations:!0,hasOutdatedSimulations:!0,canGenerateSimulations:!0,badge:{label:"Edited - Simulations Outdated",color:"text-amber-700",bgColor:"bg-amber-50",borderColor:"border-amber-300",icon:"⚠"}}:{state:"uncommitted_outdated_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not Analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}}else return s?{state:"uncommitted_with_new_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up-to-date Simulations",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"●"}}:{state:"uncommitted_no_previous_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"New",color:"text-purple-700",bgColor:"bg-purple-50",borderColor:"border-purple-200",icon:"+"}}}function $S(e){return MS(e).hasOutdatedSimulations}function _a(e,t,r,s,a){var J,O,B,T,D,E,W,K;const o=(J=t==null?void 0:t.scenarios)==null?void 0:J.find(Z=>Z.name===e.name),i=!!(o!=null&&o.startedAt),l=!!(o!=null&&o.screenshotStartedAt),c=!!(o!=null&&o.screenshotFinishedAt),u=!!(o!=null&&o.finishedAt),p=1800*1e3,h=l&&!c&&(o==null?void 0:o.screenshotStartedAt)&&Date.now()-new Date(o.screenshotStartedAt).getTime()>p,m=!!((B=(O=e.metadata)==null?void 0:O.screenshotPaths)!=null&&B[0])||!!((T=e.metadata)!=null&&T.executionResult),f=l&&!c,y=o==null?void 0:o.error,g=(E=(D=e.metadata)==null?void 0:D.executionResult)==null?void 0:E.error,x=[];if(t!=null&&t.errors&&t.errors.length>0)for(const Z of t.errors)x.push({source:`${Z.phase} phase`,message:Z.message});if(t!=null&&t.steps)for(const Z of t.steps)Z.error&&x.push({source:Z.name,message:Z.error});const b=!m&&!y&&!g&&x.length>0,v=!!(y||g||h||b),S=h?"Capture timed out after 30 minutes":(typeof y=="string"?y:null)||(g==null?void 0:g.message)||(b?`Analysis error: ${x[0].message}`:null),w=h?"The capture process has been running for more than 30 minutes and likely got stuck. Consider re-running the analysis.":(o==null?void 0:o.errorStack)||(g==null?void 0:g.stack)||null,k=(s&&a?a.jobs.some(Z=>{var q;return((q=Z.entityShas)==null?void 0:q.includes(s))||Z.type==="analysis"&&Z.entityShas&&Z.entityShas.length===0})||((K=(W=a.currentlyExecuting)==null?void 0:W.entityShas)==null?void 0:K.includes(s)):!1)&&!i&&!v||!!(o!=null&&o.analyzing)&&!i&&!v,N=i&&!l&&!u&&!v,A=(k||N||f)&&!v,_=(k||N)&&r===!1&&!m;let M;_?M="crashed":v?M="error":m||u?M="completed":f?M="capturing":N?M="starting":k?M="queued":M="pending";let $="📷",I="pending",R=!1,P=`Not captured: ${e.name}`;const F="border-gray-300",Y=v||_?"bg-red-50":"bg-white";return v||_?($="⚠️",I="error",P=`Error: ${_?"Analysis process crashed":S||"Unknown error"}`):k?($="⋯",I="queued",P=`Queued: ${e.name}`):N?($="⋯",I="starting",R=!0,P=`Starting server for ${e.name}...`):f&&!v?($="⋯",I="capturing",R=!0,P=`Capturing ${e.name}...`):m&&($="✓",I="completed",P=e.name),{hasError:v||_,errorMessage:_?"Analysis process crashed":S,errorStack:_?"Process terminated unexpectedly before completing analysis":w,isCapturing:f,isCaptured:m,hasCrashed:_,isAnalyzing:A,isQueued:k,isServerStarting:N,status:M,icon:$,iconType:I,shouldSpin:R,title:P,borderColor:F,bgColor:Y}}function Xu({scenario:e,entitySha:t,size:r="medium",showBorder:s=!0,isOutdated:a=!1}){var w,C,k,N,A,_;const o=_a(e,void 0,void 0,t,void 0),i=(w=e.metadata)==null?void 0:w.executionResult,l=!!i,u=(((k=(C=e.metadata)==null?void 0:C.data)==null?void 0:k.argumentsData)||[]).length,p=(i==null?void 0:i.returnValue)!==void 0&&(i==null?void 0:i.returnValue)!==null,h=((A=(N=i==null?void 0:i.sideEffects)==null?void 0:N.consoleOutput)==null?void 0:A.length)||0,m=((_=i==null?void 0:i.timing)==null?void 0:_.duration)||0;let f=0;u>0&&f++,u>2&&f++,p&&f++,h>0&&f++,f=Math.min(3,f);const y=r==="small"?{width:"w-[50px]",height:"h-[38px]",iconSize:"text-base",textSize:"text-[8px]"}:{width:"w-20",height:"h-15",iconSize:"text-xl",textSize:"text-[10px]"},x=o.hasError?{border:"border-red-400",bg:"bg-red-50",icon:"text-red-600",badge:"bg-red-100 text-red-700"}:l?a?{border:"border-amber-500",bg:"bg-amber-50",icon:"text-amber-700",badge:"bg-amber-100 text-amber-700"}:{border:"border-blue-400",bg:"bg-blue-50",icon:"text-blue-600",badge:"bg-blue-100 text-blue-700"}:{border:"border-gray-300 border-dashed",bg:"bg-gray-50",icon:"text-gray-400",badge:"bg-gray-100 text-gray-600"},b=s?`border-2 ${x.border}`:"",v=Array.from({length:3},(M,$)=>n("div",{className:`w-1 h-1 rounded-full ${$<f?x.icon.replace("text-","bg-"):"bg-gray-300"}`},$)),S=o.hasError?`Error: ${o.errorMessage||"Unknown error"}`:l?`${e.name}
|
|
483
|
-
${u} args → ${p?"value":"void"}${h>0?` (${h} logs)`:""}
|
|
484
|
-
${m}ms`:`Not executed: ${e.name}`;return d(ke,{to:`/entity/${t}/scenarios/${e.id}`,className:`relative ${y.width} ${y.height} ${b} rounded ${x.bg} flex flex-col items-center justify-center gap-0.5 cursor-pointer transition-all hover:scale-105 hover:shadow-md`,title:S,onClick:M=>M.stopPropagation(),children:[n("div",{className:`${x.icon} ${y.iconSize} font-mono font-bold`,children:o.hasError?"⚠":l?"ƒ":"○"}),l&&!o.hasError&&d("div",{className:`flex items-center gap-0.5 ${y.textSize} ${x.badge} px-1 rounded`,children:[n("span",{children:u}),n("span",{children:"→"}),n("span",{children:p?"✓":"∅"})]}),l&&!o.hasError&&r==="medium"&&n("div",{className:"flex gap-0.5 mt-0.5",children:v}),l&&!o.hasError&&m>100&&r==="medium"&&n("div",{className:`absolute top-0.5 right-0.5 ${y.textSize} ${x.badge} px-1 rounded`,children:m>1e3?`${Math.round(m/1e3)}s`:`${m}ms`}),l&&!o.hasError&&h>0&&r==="medium"&&d("div",{className:"absolute bottom-0.5 left-0.5 text-[8px] text-gray-500",children:["📝",h]})]})}function Ro({size:e=24,className:t=""}){return d("svg",{width:e,height:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:t,"aria-hidden":"true",children:[n("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z",fill:"#ef4444",stroke:"none"}),n("line",{x1:"12",y1:"9",x2:"12",y2:"13",stroke:"#FFFFFF",strokeWidth:"2",strokeLinecap:"round"}),n("circle",{cx:"12",cy:"17",r:"1",fill:"#FFFFFF"})]})}function gc({scenario:e,entity:t,analysisStatus:r,queueState:s,processIsRunning:a,size:o="medium",cacheBuster:i,className:l="",viewMode:c}){var g,x;if(t.entityType==="library")return n(Xu,{scenario:e,entitySha:t.sha,size:o==="small"?"small":"medium"});const p=_a(e,r,a,t.sha,s),h=o==="small"?{containerClass:"w-16 h-12",iconSize:"text-xl"}:o==="large"?{containerClass:"w-full h-[67px]",iconSize:"text-2xl"}:{containerClass:"w-20 h-15",iconSize:"text-2xl"},m=`relative ${h.containerClass} ${l}`,f=()=>{const b=`/entity/${t.sha}/scenarios/${e.id}`;return c?`${b}/${c}`:b};if(p.isCaptured){const b=(x=(g=e.metadata)==null?void 0:g.screenshotPaths)==null?void 0:x[0];return n(ke,{to:f(),className:`${m} overflow-hidden bg-gray-50 cursor-pointer transition-all flex items-center justify-center hover:scale-105 hover:shadow-md`,children:n(dt,{screenshotPath:b,cacheBuster:i,alt:e.name,title:e.name,className:"max-w-full max-h-full object-contain object-center"})})}const y=()=>{const b={size:o==="small"?16:o==="large"?24:20,strokeWidth:2},v=n(Ii,{size:o});if(p.shouldSpin||p.iconType==="queued"||p.iconType==="pending")return v;switch(p.iconType){case"starting":case"capturing":return v;case"error":return d("div",{className:"flex flex-col items-center justify-center gap-1",children:[n(Ro,{size:24}),n("span",{className:"text-[10px] text-[#ef4444] font-medium",children:"Capture Error"})]});case"completed":return n(Ih,{...b});default:return v}};return n(ke,{to:f(),className:`${m} ${p.bgColor} flex flex-col items-center justify-center cursor-pointer transition-all hover:scale-105 hover:shadow-md`,title:p.title,children:n("div",{className:h.iconSize,children:y()})})}const Zn=70;function IS({scenarios:e,hiddenScenarios:t=[],analysis:r,selectedScenario:s,entitySha:a,cacheBuster:o,activeTab:i,entityType:l,entity:c,queueState:u,processIsRunning:p,isEntityAnalyzing:h,areScenariosStale:m,viewMode:f,setViewMode:y,isBreakdownView:g,onCreateScenario:x}){var P,F,Y,J,O,B;const b=ye(null),[v,S]=j(new Set),[w,C]=j(!1);te(()=>{b.current&&i==="scenarios"&&b.current.scrollIntoView({behavior:"smooth",block:"nearest"})},[s==null?void 0:s.id,i]);const k=T=>`/entity/${a}/scenarios/${T}`,N=T=>{S(D=>{const E=new Set(D);return E.has(T)?E.delete(T):E.add(T),E})},A=(T,D=2)=>{const W=T.split(`
|
|
485
|
-
`).slice(0,D).join(" ").trim();return W.length>Zn?W.substring(0,Zn-3):(T.split(`
|
|
486
|
-
`).length>D||T.length>W.length,W)},_=le(()=>{var D;if(!((D=r==null?void 0:r.metadata)!=null&&D.executionFlows)||!(r!=null&&r.scenarios))return null;const T=r.scenarios.filter(E=>{var W;return!((W=E.metadata)!=null&&W.sameAsDefault)});return Ei(r.metadata.executionFlows,T)},[r]),M=(_==null?void 0:_.totalFlows)||0,$=(_==null?void 0:_.coveredFlows)||0,I=(_==null?void 0:_.coveragePercentage)||0;(P=c==null?void 0:c.metadata)!=null&&P.defaultWidth||(F=r==null?void 0:r.metadata)!=null&&F.defaultWidth;const R=(Y=r==null?void 0:r.status)!=null&&Y.finishedAt?new Date(r.status.finishedAt).toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"}):null;return d("aside",{className:"w-[250px] bg-white border-r border-[#e1e1e1] shrink-0 flex flex-col gap-2 p-4",children:[r&&e.length>0&&d("div",{className:"flex flex-col gap-2",children:[n("div",{className:"text-[10px] text-black font-normal uppercase font-mono",children:"SCENARIOS"}),d("div",{className:"grid grid-cols-2 gap-2",children:[d(ke,{to:g?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((J=e[0])==null?void 0:J.id)}`:`/entity/${a}/scenarios/breakdown`,className:"bg-[#F6F9FC] border border-[#E0E9EC] rounded px-3 py-3 text-center no-underline cursor-pointer hover:bg-[#EDF4F8] transition-colors",children:[d("div",{className:"text-xl font-semibold text-[#005c75] font-mono",children:[Math.round(I),"%"]}),n("div",{className:"text-[10px] text-[#9e9e9e] font-normal uppercase mt-1",children:"COVERAGE"})]}),d(ke,{to:g?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((O=e[0])==null?void 0:O.id)}`:`/entity/${a}/scenarios/breakdown`,className:"bg-[#F6F9FC] border border-[#E0E9EC] rounded px-3 py-3 text-center no-underline cursor-pointer hover:bg-[#EDF4F8] transition-colors",children:[d("div",{className:"text-xl font-semibold text-[#005c75] font-mono",children:[$,"/",M]}),n("div",{className:"text-[10px] text-[#9e9e9e] font-normal uppercase mt-1 whitespace-nowrap",children:"FLOWS COVERED"})]})]}),d(ke,{to:g?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((B=e[0])==null?void 0:B.id)}`:`/entity/${a}/scenarios/breakdown`,className:`border rounded px-3 py-2 no-underline hover:shadow-sm transition-shadow flex items-center justify-between ${g?"bg-[#CBF3FA] border-[#CBF3FA]":"bg-[#F6F9FC] border-[#E0E9EC]"}`,children:[n("div",{className:"text-[11px] text-[#005c75] font-normal uppercase font-mono underline",children:"EXECUTION FLOWS"}),g?n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M3 3L9 9M9 3L3 9",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}):n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})]}),c&&c.filePath&&n("div",{children:n("button",{onClick:x,className:"w-full px-3 py-2 bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[11px] font-medium font-mono cursor-pointer transition-colors hover:bg-[#004a5e] flex items-center justify-center gap-1",children:"+ Create New Scenario"})}),e.length>0&&d("div",{className:"py-3 flex items-center justify-between",children:[d("div",{className:"text-[10px] text-black font-normal uppercase font-mono",children:[e.length," AUTO-GENERATED"]}),R&&n("div",{className:"text-[10px] text-[#9e9e9e] font-normal font-mono",children:R})]}),h&&(m||e.length===0)?d("div",{className:"",children:[d("span",{className:"text-[12px] px-2 rounded inline-flex items-center gap-1.5",style:{backgroundColor:"#FFF4FC",color:"#FF2AB5",height:"23px"},children:[d("svg",{width:"9",height:"9",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}),n("p",{className:"text-[#8e8e8e] text-xs font-normal m-0 mt-2 text-left leading-5",children:"Scenarios will appear here once analysis completes"})]}):e.length===0?n("div",{className:"",children:n("p",{className:"text-[#8e8e8e] text-xs font-medium m-0 text-left leading-5",children:"No Scenarios"})}):n("div",{className:"overflow-y-auto flex-1",children:n("div",{className:"flex flex-col gap-[11.6px]",children:e.map((T,D)=>{const E=!g&&(s==null?void 0:s.id)===T.id,W=v.has(T.id||"");return T.id?d(ke,{to:k(T.id),ref:E?b:null,className:`group flex flex-col w-full border rounded-[5.155px] cursor-pointer transition-all no-underline overflow-hidden ${E?"border-[#005c75] bg-white":"border-[#e1e1e1] bg-white hover:border-[#005c75]"}`,children:[n("div",{className:"w-full flex justify-center border-b border-[#e1e1e1]",children:n(gc,{scenario:T,entity:{sha:a,entityType:l},analysisStatus:r==null?void 0:r.status,queueState:u,processIsRunning:p,size:"large",cacheBuster:o,viewMode:f})}),d("div",{className:"px-3 py-3",children:[n("div",{className:`text-xs font-semibold text-[#343434] ${W?"":"line-clamp-1"}`,children:T.name}),T.description&&n("div",{className:"mt-2",children:d("div",{className:"text-xs leading-[15px] text-[#808080] font-normal",children:[W?T.description:A(T.description),!W&&T.description.length>Zn&&d(we,{children:["...",n("button",{onClick:K=>{K.preventDefault(),K.stopPropagation(),N(T.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read More"})]}),W&&T.description.length>Zn&&n("button",{onClick:K=>{K.preventDefault(),K.stopPropagation(),N(T.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read Less"})]})})]})]},D):null})})}),t.length>0&&!(h&&m)&&d("div",{className:"border-t border-[#e1e1e1] pt-3",children:[d("button",{onClick:()=>C(!w),className:"flex items-center gap-1 text-[10px] text-[#626262] font-medium cursor-pointer bg-transparent border-none p-0 hover:text-[#005c75] transition-colors w-full",children:[n("svg",{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",className:`transition-transform ${w?"rotate-90":""}`,children:n("path",{d:"M3.5 2L6.5 5L3.5 8",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),"Hidden Scenarios (",t.length,")"]}),w&&d("div",{className:"mt-2",children:[n("p",{className:"text-[10px] text-[#8e8e8e] leading-[14px] mb-3",children:"These scenarios were hidden because the screenshots did not differ from the Default Scenario."}),n("div",{className:"flex flex-col gap-[11.6px]",children:t.map((T,D)=>{const E=!g&&(s==null?void 0:s.id)===T.id,W=v.has(T.id||"");return T.id?d(ke,{to:`/entity/${a}/scenarios/${T.id}`,ref:E?b:null,className:`group flex flex-col w-full border rounded-[5.155px] cursor-pointer transition-all no-underline overflow-hidden ${E?"border-[#005c75] bg-white":"border-[#e1e1e1] bg-white hover:border-[#005c75]"}`,children:[n("div",{className:"w-full flex justify-center border-b border-[#e1e1e1]",children:n(gc,{scenario:T,entity:{sha:a,entityType:l},analysisStatus:r==null?void 0:r.status,queueState:u,processIsRunning:p,size:"large",cacheBuster:o,viewMode:f})}),d("div",{className:"px-3 py-3",children:[n("div",{className:`text-xs font-semibold text-[#343434] ${W?"":"line-clamp-1"}`,children:T.name}),T.description&&n("div",{className:"mt-2",children:d("div",{className:"text-xs leading-[15px] text-[#808080] font-normal",children:[W?T.description:A(T.description),!W&&T.description.length>Zn&&d(we,{children:["...",n("button",{onClick:K=>{K.preventDefault(),K.stopPropagation(),N(T.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read More"})]}),W&&T.description.length>Zn&&n("button",{onClick:K=>{K.preventDefault(),K.stopPropagation(),N(T.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read Less"})]})})]})]},D):null})})]})]})]})}function FS({scenario:e,entitySha:t,onApply:r,onSave:s,onEditMockData:a,onDelete:o,isApplying:i=!1,isSaving:l=!1,saveMessage:c=null,showDeleteConfirm:u=!1,onShowDeleteConfirm:p,isDeleting:h=!1,deleteError:m=null}){const[f,y]=j(""),g=async()=>{await r(f)},x=async b=>{await s(f,b),b||y("")};return d("aside",{className:"w-[220px] bg-white border-r border-[#e1e1e1] shrink-0 flex flex-col gap-2 p-3 h-full",children:[d("div",{className:"border-b border-[#e1e1e1] pb-3",children:[d("div",{className:"flex items-start justify-between mb-2",children:[n("div",{className:"text-[10px] text-[#626262] font-medium",children:"Edit Scenario"}),n(ke,{to:`/entity/${t}`,className:"text-[#626262] hover:text-[#3e3e3e] transition-colors text-sm leading-none no-underline cursor-pointer",title:"Close",children:"×"})]}),n("div",{className:"text-xs font-semibold text-[#626262]",children:e.name})]}),d("div",{className:"flex-1 overflow-y-auto flex flex-col gap-2",children:[d("div",{className:"pt-1",children:[n("label",{htmlFor:"ai-description",className:"block text-xs text-[#343434] font-semibold mb-[6px]",children:"Describe changes to the AI"}),n("textarea",{id:"ai-description",value:f,onChange:b=>y(b.target.value),placeholder:"e.g. change amount of data to zero",className:"w-full px-[7px] py-[6px] border border-[#c7c7c7] rounded-[4px] text-xs focus:outline-none focus:ring-1 focus:ring-[#005c75] focus:border-[#005c75] resize-none",rows:4}),d("button",{onClick:()=>void g(),disabled:i||!f.trim(),className:"w-full mt-1 h-[22px] bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed flex items-center justify-center gap-1",children:[i&&d("svg",{className:"animate-spin h-3 w-3",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),i?"Applying...":"Apply"]})]}),n("div",{className:"border-t border-[#e1e1e1] my-1"}),d("div",{className:"pt-1",children:[n("div",{className:"text-xs text-[#343434] font-semibold mb-[6px]",children:"Change file"}),n("p",{className:"text-[10px] text-[#808080] mb-2",children:"You can edit the data used for this scenario directly."}),n("button",{onClick:a,className:"w-full h-[22px] bg-[#e0e9ec] text-[#005c75] border border-[#e0e9ec] rounded-[4px] text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#cbf3fa]",children:"Edit Mock Data"})]}),c&&n("div",{className:`text-[10px] px-[7px] py-[6px] rounded-[4px] ${c.startsWith("Error")?"bg-red-50 text-red-600":"bg-green-50 text-green-600"}`,children:c}),c==="Recapture successful"&&n("div",{children:n(ke,{to:`/entity/${t}`,className:"text-[#005c75] hover:text-[#004a5e] hover:underline text-[10px] cursor-pointer",children:"View updated screenshot on entity page →"})})]}),d("div",{className:"border-t border-[#e1e1e1] pt-2 bg-white flex flex-col gap-1",children:[n("button",{onClick:()=>void x(!1),disabled:l||!f.trim(),className:"w-full h-[22px] bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed flex items-center justify-center",children:l?"Saving...":"Save Scenario Data"}),n("button",{onClick:()=>void x(!0),disabled:l||!f.trim(),className:"w-full h-[22px] bg-[#e0e9ec] text-[#005c75] border border-[#e0e9ec] rounded-[4px] text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#cbf3fa] disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center",children:"Save As New"}),o&&d(we,{children:[u?d("div",{className:"flex flex-col gap-1",children:[d("div",{className:"text-[10px] text-red-600 font-medium",children:['Are you sure you want to delete "',e.name,'"?']}),d("div",{className:"flex gap-1",children:[n("button",{onClick:()=>void o(),disabled:h,className:"flex-1 h-[22px] bg-red-600 text-white rounded text-[10px] font-normal hover:bg-red-700 disabled:bg-red-400 disabled:cursor-not-allowed transition-colors flex items-center justify-center cursor-pointer",children:h?"Deleting...":"Yes, Delete"}),n("button",{onClick:()=>p==null?void 0:p(!1),disabled:h,className:"flex-1 h-[22px] bg-gray-100 text-gray-700 border border-gray-300 rounded text-[10px] font-normal hover:bg-gray-200 disabled:opacity-50 transition-colors flex items-center justify-center cursor-pointer",children:"Cancel"})]})]}):n("button",{onClick:()=>p==null?void 0:p(!0),className:"w-full h-[22px] bg-red-50 text-red-600 border border-red-200 rounded text-[10px] font-normal hover:bg-red-100 transition-colors flex items-center justify-center cursor-pointer",children:"Delete Scenario"}),m&&n("div",{className:"text-[10px] text-red-600 bg-red-50 px-[7px] py-[6px] rounded-[4px]",children:m})]})]})]})}function DS({scenario:e,analysis:t,entity:r}){var i,l,c;const s=((i=e.metadata)==null?void 0:i.executionResult)||null,a=((c=(l=e.metadata)==null?void 0:l.data)==null?void 0:c.argumentsData)||[],o=u=>{var y,g,x;if(!u)return"No execution results available yet. Run the function to capture side effects including console output, file operations, and API calls.";const p=[],h=((y=u.sideEffects)==null?void 0:y.consoleOutput)||[];h.length>0&&(p.push(`Console Output: ${h.length} log ${h.length===1?"entry":"entries"} captured`),h.forEach(b=>{p.push(` [${b.level.toUpperCase()}] ${b.args.join(" ")}`)}));const m=((g=u.sideEffects)==null?void 0:g.fileWrites)||[];m.length>0&&(p.push(`
|
|
487
|
-
File System Operations: ${m.length} ${m.length===1?"operation":"operations"} detected`),m.forEach(b=>{p.push(` ${b.operation}: ${b.path}${b.size?` (${b.size} bytes)`:""}`)}));const f=((x=u.sideEffects)==null?void 0:x.apiCalls)||[];return f.length>0&&(p.push(`
|
|
488
|
-
API Calls: ${f.length} ${f.length===1?"call":"calls"} made`),f.forEach(b=>{p.push(` ${b.method} ${b.url}${b.status?` → ${b.status}`:""}${b.duration?` (${b.duration}ms)`:""}`)})),u.error&&p.push(`
|
|
489
|
-
Error: ${u.error.name||"Error"}: ${u.error.message}`),p.length===0?"No side effects detected. The function executed without console output, file operations, or API calls.":p.join(`
|
|
490
|
-
`)};return d("div",{className:"flex w-full h-full gap-0",children:[d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Input Data"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-0",children:n("pre",{className:"text-xs font-mono text-gray-800 whitespace-pre-wrap break-words m-0",children:JSON.stringify(a,null,2)})})]}),d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col ml-[-1px]",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Returned Data"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-0",children:s?n("pre",{className:"text-xs font-mono text-gray-800 whitespace-pre-wrap break-words m-0",children:s.returnValue!==void 0?JSON.stringify(s.returnValue,null,2):"undefined"}):n("div",{className:"text-sm text-gray-500 italic",children:"No execution results yet"})})]}),d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col ml-[-1px]",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Side Effects"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-4",children:n("p",{className:"text-sm text-gray-700 leading-[22px] m-0 whitespace-pre-wrap",children:o(s)})})]})]})}const wn={commandBoxBg:"#f6f9fc",commandBoxBorder:"#e1e1e1",commandBoxText:"#005c75",heading:"#000",subtext:"#646464",link:"#005c75"};function Ss({scenarioId:e,analysisId:t}){const[r,s]=j(!1),[a,o]=j(!1),[i,l]=j(null),[c,u]=j(!1),p=e||t;if(!p)return null;const h=`/codeyam-diagnose ${p}`,m=async()=>{o(!0);try{const{default:y}=await import("html2canvas-pro"),x=(await y(document.body,{scale:.5})).toDataURL("image/jpeg",.8);l(x),s(!0)}catch(y){console.error("Screenshot capture failed:",y),s(!0)}finally{o(!1)}},f=()=>{s(!1),l(null)};return d(we,{children:[d("div",{className:"text-center p-6 bg-cywhite-100 rounded-lg border-cygray-30 border",children:[n("h3",{className:"font-semibold font-['IBM_Plex_Sans']",style:{fontSize:"18px",lineHeight:"26px",color:wn.heading},children:"Claude can help debug this error."}),n("p",{className:"m-0 mb-4 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"18px",color:wn.subtext},children:"Simply run this command in Claude Code:"}),d("div",{className:"flex items-center justify-between rounded mx-auto mb-3 border",style:{backgroundColor:wn.commandBoxBg,borderColor:wn.commandBoxBorder,maxWidth:"505px",height:"35px",paddingLeft:"13px",paddingRight:"13px",paddingTop:"6px",paddingBottom:"6px"},children:[n("code",{className:"font-mono font-['IBM_Plex_Mono'] flex-1 text-left",style:{fontSize:"12px",lineHeight:"20px",color:wn.commandBoxText},children:h}),n("button",{onClick:y=>{y.stopPropagation(),navigator.clipboard.writeText(h),u(!0),setTimeout(()=>u(!1),2e3)},className:"ml-3 cursor-pointer p-0 bg-transparent border-none hover:opacity-80 transition-opacity",style:{width:"14px",height:"14px",color:c?"#22c55e":wn.commandBoxText},title:c?"Copied!":"Copy command","aria-label":"Copy command to clipboard",children:c?n(_t,{size:14}):n($t,{size:14})})]}),d("p",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"12px",lineHeight:"15px",color:"#005c75"},children:["If Claude is unable to address this issue or suggests reporting it,"," ",n("button",{onClick:()=>void m(),disabled:a,className:"underline cursor-pointer bg-transparent border-none p-0 font-normal hover:opacity-80 disabled:opacity-50 disabled:cursor-not-allowed font-['IBM_Plex_Sans']",style:{fontSize:"12px",lineHeight:"15px",color:wn.link},children:a?"capturing...":"please do so here"}),"."]})]}),n(pd,{isOpen:r,onClose:f,context:{source:e?"scenario-page":"entity-page",entitySha:void 0,scenarioId:e,analysisId:t,currentUrl:typeof window<"u"?window.location.pathname:"/"},screenshotDataUrl:i??void 0})]})}const yc=1440,Cs=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1440,height:900}],Bt={background:"#ffdcd9",border:"#fda4a4",text:"#ef4444",link:"#991b1b"};function ep({selectedScenario:e,analysis:t,entity:r,viewMode:s,cacheBuster:a,hasScenarios:o,isAnalyzing:i=!1,projectSlug:l,hasAnApiKey:c=!0,processIsRunning:u,queueState:p}){var V,re,ue,be,ie,fe,ce,Ce,Ae,_e,Q;const h=Ge(),[m,f]=j(!1),[y,g]=j(!1),[x,b]=j({name:"Desktop",width:yc,height:900}),[v,S]=j(yc),[w,C]=j(1),{customSizes:k,addCustomSize:N,removeCustomSize:A}=ha(l),_=le(()=>[...Cs,...k],[k]),M=(xe,oe)=>{S(xe);const se=_.find(he=>he.width===xe&&he.height===oe);b({name:(se==null?void 0:se.name)||"Custom",width:xe,height:oe})},$=xe=>{S(xe.width),b({name:xe.name,width:xe.width,height:xe.height})},I=xe=>{N(xe,x.width,x.height??900),g(!1),b(oe=>({...oe,name:xe}))},R=(xe,oe)=>{S(xe);const se=_.find(he=>he.width===xe&&he.height===oe);b(he=>({name:(se==null?void 0:se.name)||"Custom",width:xe,height:he.height}))},P=(re=(V=e==null?void 0:e.metadata)==null?void 0:V.screenshotPaths)==null?void 0:re[0],F=le(()=>e?_a(e,t==null?void 0:t.status,u,r==null?void 0:r.sha,p):null,[e,t==null?void 0:t.status,u,r==null?void 0:r.sha,p]),Y=le(()=>{var oe,se;const xe=[];if((oe=t==null?void 0:t.status)!=null&&oe.errors&&t.status.errors.length>0)for(const he of t.status.errors)xe.push({source:`${he.phase} phase`,message:he.message,stack:he.stack});if((se=t==null?void 0:t.status)!=null&&se.steps)for(const he of t.status.steps)he.error&&xe.push({source:he.name,message:he.error,stack:he.errorStack});return xe},[(ue=t==null?void 0:t.status)==null?void 0:ue.errors,(be=t==null?void 0:t.status)==null?void 0:be.steps]),J=(F==null?void 0:F.errorMessage)||null,O=(F==null?void 0:F.errorStack)||null,{interactiveServerUrl:B,isStarting:T,isLoading:D,showIframe:E,iframeKey:W,onIframeLoad:K}=$n({analysisId:t==null?void 0:t.id,scenarioId:e==null?void 0:e.id,scenarioName:e==null?void 0:e.name,projectSlug:l,enabled:s==="interactive"}),Z=le(()=>B||null,[B]),q=!i&&o&&e&&!((fe=(ie=e.metadata)==null?void 0:ie.screenshotPaths)!=null&&fe[0])&&((Ce=(ce=t==null?void 0:t.status)==null?void 0:ce.scenarios)==null?void 0:Ce.some(xe=>xe.name===e.name&&xe.screenshotStartedAt&&!xe.screenshotFinishedAt)),{lastLine:U}=Wt(l,i||s==="interactive"||q||!1);if(!e){if(i&&r)return d(we,{children:[n("div",{className:"flex-1 flex flex-col items-center justify-center p-12 text-center bg-[#f6f9fc]",children:d("div",{className:"flex flex-col items-center gap-6 max-w-2xl",children:[n("div",{className:"w-12 h-12 mb-2",children:n("svg",{className:"animate-spin",viewBox:"0 0 50 50",children:n("circle",{cx:"25",cy:"25",r:"20",fill:"none",stroke:"#005c75",strokeWidth:"4",strokeDasharray:"31.4 31.4",strokeLinecap:"round"})})}),n("h2",{className:"text-2xl font-semibold text-[#005c75] leading-[30px] m-0 font-['IBM_Plex_Sans']",children:q?"Capturing screenshots...":"Analyzing..."}),n("p",{className:"text-xs text-[#8e8e8e] text-center leading-5 m-0 font-['IBM_Plex_Mono']",children:"This may take a few minutes."}),U&&n("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 max-w-xl",children:U}),l&&n("button",{onClick:()=>f(!0),className:"w-[148px] px-2.5 py-[5px] bg-[#005c75] text-white border-none rounded-sm text-xs font-medium cursor-pointer transition-colors hover:bg-[#004a5c] font-['IBM_Plex_Sans']",children:"View full logs"})]})}),m&&l&&n(an,{projectSlug:l,onClose:()=>f(!1)})]});if(!o&&r&&!i){if(Y.length>0){const xe=Y.length===1?((Ae=Y[0])==null?void 0:Ae.message)||"An error occurred during analysis.":`${Y.length} errors occurred during analysis.`;return d(we,{children:[n("div",{className:"flex-1 flex flex-col justify-center items-center px-5",style:{minHeight:"75vh"},children:d("div",{className:"w-full flex flex-col gap-4",style:{maxWidth:"600px"},children:[n("div",{className:"p-4 rounded",style:{backgroundColor:Bt.background,border:`2px solid ${Bt.border}`},role:"alert",children:d("div",{className:"flex items-center gap-3",children:[n(Ro,{size:24,className:"shrink-0"}),n("div",{className:"flex-1 min-w-0",children:d("p",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"20px",color:Bt.text},children:[n("span",{className:"font-semibold",children:"Analysis Error."})," ",xe," ",n("button",{onClick:()=>f(!0),className:"underline cursor-pointer bg-transparent border-none p-0 font-medium hover:opacity-80",style:{color:Bt.link},children:"See logs"})," ","for details."]})})]})}),n("div",{className:"bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Ss,{analysisId:t==null?void 0:t.id})})]})}),m&&l&&n(an,{projectSlug:l,onClose:()=>f(!1)})]})}return n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center bg-[#f6f9fc]",children:d("div",{className:"max-w-[600px]",children:[n("h2",{className:"text-[28px] font-semibold text-[#343434] mb-4 m-0 leading-10",children:"No simulations yet"}),n("p",{className:"text-base font-normal text-[#3e3e3e] mb-8 leading-6 m-0",children:"Analyze the code to create simulations and create test scenarios automatically."}),r.filePath&&n("button",{onClick:()=>{h.submit({entitySha:r.sha,filePath:r.filePath},{method:"post",action:"/api/analyze"})},disabled:h.state!=="idle",className:"h-[54px] w-[183px] px-2.5 py-[5px] bg-[#005c75] text-white border-none rounded-lg text-base font-medium cursor-pointer transition-all hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed",children:h.state!=="idle"?"Analyzing...":"Analyze"})]})})}return n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center",children:n("p",{className:"text-base text-gray-500 m-0",children:"Select a scenario to view its screenshot"})})}return d(we,{children:[n("main",{className:"flex-1 overflow-auto flex flex-col min-w-0",style:{backgroundImage:`
|
|
491
|
-
linear-gradient(45deg, #ebebeb 25%, transparent 25%),
|
|
492
|
-
linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
|
|
493
|
-
linear-gradient(45deg, transparent 75%, #ebebeb 75%),
|
|
494
|
-
linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
|
|
495
|
-
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:(i||q&&!P)&&!J&&s==="screenshot"?n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center bg-linear-to-br from-blue-50 to-indigo-50",children:d("div",{className:"max-w-2xl w-full bg-white rounded-t-2xl shadow-xl p-8",children:[d("div",{className:"mb-8",children:[n("div",{className:"inline-flex items-center justify-center w-24 h-24 bg-blue-100 rounded-full mb-6",children:n("span",{className:"text-5xl animate-spin",children:"⚙️"})}),n("h2",{className:"text-3xl font-bold text-gray-900 mb-4 m-0",children:q?`Capturing ${r==null?void 0:r.name}`:`Analyzing ${r==null?void 0:r.name}`}),n("p",{className:"text-base text-gray-600 leading-relaxed m-0 mb-2",children:q?`Taking screenshots for ${((_e=t==null?void 0:t.scenarios)==null?void 0:_e.length)||0} scenario${((Q=t==null?void 0:t.scenarios)==null?void 0:Q.length)!==1?"s":""}...`:`Generating simulations and scenarios for this ${r==null?void 0:r.entityType} entity...`}),e&&d("p",{className:"text-sm text-blue-600 font-semibold m-0",children:["Currently processing: ",e.name]})]}),U&&n("div",{className:"bg-[#f6f9fc] border-2 border-[#e1e1e1] rounded-lg p-6 mb-6",children:d("div",{className:"flex items-start gap-3",children:[n("span",{className:"text-xl shrink-0",children:"📝"}),d("div",{className:"flex-1 min-w-0",children:[n("h3",{className:"text-xs font-semibold text-gray-700 uppercase tracking-wide mb-2 m-0",children:"Current Progress"}),n("p",{className:"text-sm text-gray-900 font-mono wrap-break-word m-0",title:U,children:U})]})]})}),l&&n("button",{onClick:()=>f(!0),className:"px-6 py-3 bg-[#005c75] text-white border-none rounded-lg text-base font-semibold cursor-pointer transition-all hover:bg-[#004a5e] hover:shadow-lg",children:"📋 View Full Logs"}),n("p",{className:"text-xs text-gray-500 mt-8 m-0",children:"Screenshots will appear here as they are captured. This may take a few minutes."})]})}):s==="screenshot"&&(P||J)||s==="interactive"&&(Z||T)||s==="data"?d(we,{children:[J&&!P&&n("div",{className:"flex-1 flex flex-col justify-center items-center p-6",children:d("div",{className:"w-full flex flex-col gap-4",style:{maxWidth:"600px"},children:[n("div",{className:"p-4 rounded overflow-auto",style:{backgroundColor:Bt.background,border:`2px solid ${Bt.border}`,maxHeight:"50vh"},role:"alert",children:d("div",{className:"flex flex-col gap-3",children:[d("div",{className:"flex items-center justify-center gap-2 font-bold",style:{color:Bt.text},children:[n(Ro,{size:24,className:"shrink-0"}),n("div",{children:"Capture Error"})]}),d("div",{className:"text-center",children:[n("button",{onClick:()=>f(!0),className:"underline cursor-pointer bg-transparent border-none p-0 font-medium hover:opacity-80",style:{color:Bt.link},children:"See logs"})," ","for details."]}),n("div",{className:"flex-1 min-w-0",children:n("div",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"20px",color:Bt.text},children:J})})]})}),n("div",{className:"bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Ss,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})}),s==="interactive"?d("div",{className:"flex-1 flex flex-col min-h-0",children:[Z&&d("div",{className:"bg-gray-50 border-b border-gray-200 px-6 py-3 shrink-0 flex justify-center items-center gap-4",children:[n(ax,{presets:[...Cs],customSizes:k,currentWidth:x.width,currentHeight:x.height??900,scale:w,onSizeChange:M,onSaveCustomSize:()=>g(!0),onRemoveCustomSize:A}),e&&r&&d(ke,{to:`/entity/${r.sha}/scenarios/${e.id}/fullscreen?from=${encodeURIComponent(`/entity/${r.sha}/scenarios/${e.id}/interactive`)}`,className:"flex items-center gap-2 px-4 py-2 bg-[#005c75] text-white rounded hover:bg-[#004a5c] transition-colors text-sm font-medium no-underline",title:"Open in fullscreen",children:[n("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",children:n("path",{d:"M2 5V2H5M11 2H14V5M14 11V14H11M5 14H2V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})}),"Fullscreen"]})]}),Z&&n("div",{className:"bg-[#005c75] border-b border-[rgba(0,0,0,0.2)] flex justify-center",children:n("div",{style:{maxWidth:`${Cs[Cs.length-1].width}px`,width:"100%"},children:n(ii,{currentViewportWidth:v,currentPresetName:x.name,onDevicePresetClick:$,devicePresets:_})})}),n(Sa,{scenarioId:e.id,scenarioName:e.name,iframeUrl:Z,isStarting:T,isLoading:D,showIframe:E,iframeKey:W,onIframeLoad:K,onScaleChange:C,onDimensionChange:R,projectSlug:l,defaultWidth:x.width,defaultHeight:x.height})]}):s==="data"?n("div",{className:"flex-1 min-h-0",children:n(DS,{scenario:e,analysis:t,entity:r})}):n("div",{className:"flex-1 flex flex-col",children:n("div",{className:"flex-1 p-6 flex items-center justify-center",children:n("div",{className:"transition-all duration-300",style:{maxWidth:`${v}px`},children:(P||!J)&&n(dt,{screenshotPath:P,cacheBuster:a,alt:e.name,className:"w-full rounded-lg shadow-[0_10px_25px_rgba(0,0,0,0.1)] bg-white"})})})})]}):n("div",{className:"flex-1 flex flex-col",children:n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 overflow-auto w-full",children:i&&!P?n("div",{className:"w-full h-full flex items-center justify-center",children:n("div",{className:"bg-blue-50 border-2 border-blue-200 rounded-lg p-8",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"animate-spin text-4xl shrink-0",children:"⚙️"}),d("div",{className:"flex-1",children:[n("h3",{className:"text-xl font-semibold text-blue-900 m-0 mb-3",children:"Capturing Screenshot"}),d("p",{className:"text-sm text-blue-800 m-0 mb-4",children:["Analysis is in progress for"," ",n("strong",{children:e.name}),". The screenshot will appear here once capture is complete."]}),U&&d("div",{className:"bg-white border border-blue-200 rounded p-4 mt-4",children:[n("h4",{className:"text-xs font-semibold text-blue-800 m-0 mb-2 uppercase tracking-wide",children:"Current Progress"}),n("p",{className:"text-sm text-blue-900 m-0 font-mono wrap-break-word",children:U})]}),l&&n("button",{onClick:()=>f(!0),className:"mt-4 px-4 py-2 bg-[#005c75] text-white border-none rounded-md text-sm font-semibold cursor-pointer transition-colors hover:bg-[#004a5e]",children:"📋 View Full Logs"})]})]})})}):J?d("div",{className:"w-full h-full flex flex-col items-center justify-center overflow-auto gap-6",children:[!c&&n("div",{className:"bg-blue-50 border-2 border-blue-300 rounded-lg p-8",children:d("div",{className:"flex-1 flex flex-col gap-4 items-center justify-center",children:[d("div",{className:"flex items-start gap-4",children:[n("span",{className:"text-blue-600 text-2xl shrink-0",children:"🔑"}),n("h3",{className:"text-xl font-semibold text-blue-900 m-0 mb-3",children:"Improve Analysis Quality with an API Key"})]}),d("div",{className:"bg-white border border-blue-200 rounded p-4",children:[n("h4",{className:"text-xs font-semibold text-blue-900 m-0 mb-2 uppercase tracking-wide",children:"CodeYam requires an AI API key for reliable analysis."}),d("ul",{className:"text-sm text-blue-800 m-0 space-y-1 pl-5 list-disc",children:[n("li",{children:"You can use API keys for a variety of models"}),n("li",{children:"Faster analysis processing"}),n("li",{children:"Better handling of complex code structures"}),n("li",{children:"Improved scenario generation quality"})]})]}),n(ke,{to:"/settings",className:"inline-block px-4 py-2 bg-blue-600 text-white border-none rounded-md text-sm font-semibold cursor-pointer transition-colors hover:bg-blue-700",children:"🔐 Configure API Keys"})]})}),n("div",{className:"bg-red-50 border-2 border-red-300 rounded-lg p-8 w-full max-w-4xl my-auto",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"text-red-500 text-4xl shrink-0",children:"⚠️"}),d("div",{className:"flex-1 min-w-0",children:[n("h3",{className:"text-xl font-semibold text-red-800 m-0 mb-3",children:"Capture Failed"}),n("p",{className:"text-sm text-red-700 m-0 mb-4",children:"An error occurred while capturing this scenario. No screenshot is available."}),d("div",{className:"bg-white border border-red-200 rounded p-4",children:[n("h4",{className:"text-xs font-semibold text-red-800 m-0 mb-2 uppercase tracking-wide",children:"Error Message"}),n("div",{className:"max-h-[300px] overflow-auto",children:n("p",{className:"text-sm text-red-900 m-0 font-mono whitespace-pre-wrap wrap-break-word",children:J})})]}),O&&d("details",{className:"mt-4",children:[n("summary",{className:"text-sm text-red-700 cursor-pointer hover:text-red-900 font-semibold",children:"📋 View full stack trace"}),n("div",{className:"mt-3 bg-white border border-red-200 rounded p-4 overflow-auto",children:n("pre",{className:"text-xs text-red-900 font-mono whitespace-pre-wrap wrap-break-word m-0",children:O})})]}),n("div",{className:"mt-4 bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Ss,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})]})})]}):Y.length>0?n("div",{className:"w-full h-full flex items-center justify-center overflow-auto",children:n("div",{className:"bg-red-50 border-2 border-red-300 rounded-lg p-8 w-full max-w-4xl my-auto",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"text-red-500 text-4xl shrink-0",children:"⚠️"}),d("div",{className:"flex-1 min-w-0",children:[n(AnalysisErrorDisplay,{errors:Y,title:"Analysis Error",description:Y.length===1?"An error occurred during analysis. Screenshot capture was not completed.":`${Y.length} errors occurred during analysis. Screenshot capture was not completed.`}),n("div",{className:"mt-4 bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Ss,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})]})})}):d("div",{className:"flex flex-col items-center gap-4 text-center",children:[n("span",{className:"text-6xl text-gray-300",children:"📷"}),n("p",{className:"text-lg text-gray-500 m-0",children:"No screenshot available for this scenario"}),n("p",{className:"text-sm text-gray-400 m-0",children:"Try recapturing or debugging this scenario"})]})})})}),m&&l&&n(an,{projectSlug:l,onClose:()=>f(!1)}),y&&n(li,{width:x.width,height:x.height??900,onSave:I,onCancel:()=>g(!1)})]})}function RS({analysis:e,entitySha:t,onCreateScenario:r}){Dt();const[s,a]=j(e);te(()=>{a(e)},[e]);const[o,i]=j(null),l=le(()=>{var m;if(!((m=s==null?void 0:s.metadata)!=null&&m.executionFlows)||!(s!=null&&s.scenarios))return null;const h=s.scenarios.filter(f=>{var y;return!((y=f.metadata)!=null&&y.sameAsDefault)});return Ei(s.metadata.executionFlows,h)},[s]),c=le(()=>l?qx(l):[],[l]),u=le(()=>s!=null&&s.scenarios?s.scenarios.filter(h=>{var m;return!((m=h.metadata)!=null&&m.sameAsDefault)}):[],[s]),p=h=>{var f;const m=((f=h.metadata)==null?void 0:f.coveredFlows)||[];return l?l.executionFlows.filter(y=>m.includes(y.id)):[]};return s?!l||l.executionFlows.length===0?n("div",{className:"flex-1 flex items-center justify-center p-8 bg-[#F8F7F6]",children:d("div",{className:"text-center text-gray-500",children:[n("p",{className:"text-lg font-medium mb-2",children:"No Execution Flows"}),n("p",{className:"text-sm",children:"Re-analyze this entity to generate execution flows."})]})}):n("div",{className:"flex-1 overflow-auto bg-[#fafafa]",children:d("div",{className:"p-6 space-y-6",children:[d("div",{className:"bg-white border border-gray-200 rounded-lg p-4",children:[n("h2",{className:"text-lg font-semibold text-gray-900 m-0 mb-3",children:"Scenarios Breakdown"}),d("div",{className:"grid grid-cols-4 gap-4 text-center",children:[d("div",{className:"bg-gray-50 rounded-lg p-3",children:[n("div",{className:"text-2xl font-bold text-gray-900",children:u.length}),n("div",{className:"text-xs text-gray-500",children:"Scenarios"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[n("div",{className:"text-2xl font-bold text-gray-900",children:l.executionFlows.length}),n("div",{className:"text-xs text-gray-500",children:"Execution Flows"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[d("div",{className:"text-2xl font-bold text-gray-900",children:[l.coveredFlows,"/",l.totalFlows]}),n("div",{className:"text-xs text-gray-500",children:"Flows Covered"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[d("div",{className:`text-2xl font-bold ${l.coveragePercentage===100?"text-green-600":l.coveragePercentage>=50?"text-amber-600":"text-red-600"}`,children:[l.coveragePercentage.toFixed(0),"%"]}),n("div",{className:"text-xs text-gray-500",children:"Coverage"})]})]})]}),d("div",{className:"bg-white border border-gray-200 rounded-lg overflow-hidden",children:[n("div",{className:"px-4 py-3 border-b border-gray-100 bg-gray-50",children:d("h3",{className:"text-sm font-semibold text-gray-900 m-0",children:["Scenarios (",u.length,")"]})}),n("div",{className:"divide-y divide-gray-100",children:u.length===0?d("div",{className:"p-4 text-center text-gray-500 text-sm",children:["No scenarios yet."," ",n("button",{onClick:r,className:"text-blue-600 hover:underline bg-transparent border-none cursor-pointer p-0 text-sm",children:"Create one"})]}):u.map(h=>{var y,g,x;const m=(g=(y=h.metadata)==null?void 0:y.screenshotPaths)==null?void 0:g[0],f=p(h);return d("div",{className:"p-4 flex gap-4",children:[n("div",{className:"w-72 h-40 shrink-0 bg-gray-100 rounded overflow-hidden flex items-start justify-center",children:n(dt,{screenshotPath:m,alt:h.name||"Scenario screenshot",className:"max-w-full max-h-full object-contain object-top"})}),d("div",{className:"flex-1 min-w-0",children:[n("div",{className:"flex items-start justify-between gap-2",children:d("div",{children:[n(ke,{to:`/entity/${t}/scenarios/${h.id}`,className:"font-medium text-gray-900 hover:text-blue-600 no-underline text-sm",children:h.name}),((x=h.metadata)==null?void 0:x.error)&&n("span",{className:"ml-2 text-xs px-1.5 py-0.5 bg-red-100 text-red-700 rounded",children:"Error"})]})}),n("p",{className:"text-xs text-gray-500 mt-1 line-clamp-2",children:h.description}),f.length>0&&n("div",{className:"flex flex-wrap gap-1 mt-2",children:f.map(b=>n("span",{className:`text-xs px-1.5 py-0.5 rounded ${b.isError?"bg-red-50 text-red-700":b.blocksOtherFlows?"bg-purple-50 text-purple-700":"bg-blue-50 text-blue-700"}`,children:b.name},b.id))})]})]},h.id)})}),n("div",{className:"px-4 py-3 border-t border-gray-100 bg-gray-50",children:d("button",{onClick:r,className:"w-full px-4 py-2 text-sm font-medium text-blue-600 bg-blue-50 rounded-lg hover:bg-blue-100 flex items-center justify-center gap-2 border-none cursor-pointer",children:[n("span",{className:"text-lg leading-none",children:"+"}),"Add Scenario"]})})]}),c.length>0&&d("div",{className:"p-3 bg-amber-50 border border-amber-200 rounded-lg",children:[d("p",{className:"text-sm text-amber-800 font-medium mb-2",children:[c.length," uncovered execution flow",c.length>1?"s":""," — consider adding scenarios to cover these"]}),d("div",{className:"flex flex-wrap gap-1",children:[c.slice(0,10).map(h=>d("span",{className:`text-xs px-2 py-0.5 rounded ${h.impact==="high"?"bg-red-100 text-red-700":"bg-amber-100 text-amber-700"}`,children:[h.name,h.impact==="high"&&" (high impact)"]},h.id)),c.length>10&&d("span",{className:"text-xs text-amber-600",children:["+",c.length-10," more"]})]})]}),d("div",{className:"bg-white border border-gray-200 rounded-lg overflow-hidden",children:[n("div",{className:"px-4 py-3 border-b border-gray-100 bg-gray-50",children:d("h3",{className:"text-sm font-semibold text-gray-900 m-0",children:["Execution Flows (",l.executionFlows.length,")"]})}),n("div",{className:"divide-y divide-gray-100",children:l.executionFlows.map(h=>{const m=o===h.id,f=h.usedInScenarios.length>0;return d("div",{children:[n("button",{onClick:()=>i(m?null:h.id),className:"w-full px-4 py-3 flex items-start justify-between text-left bg-transparent border-none cursor-pointer hover:bg-gray-50",children:d("div",{className:"flex items-start gap-3 flex-1",children:[n("span",{className:"text-gray-400 text-sm mt-0.5 shrink-0",children:m?"▼":"▶"}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[n("span",{className:"font-medium text-sm text-gray-900",children:h.name}),f?n("span",{className:"text-xs px-2 py-0.5 rounded bg-green-100 text-green-700",children:"Covered"}):n("span",{className:"text-xs px-2 py-0.5 rounded bg-amber-100 text-amber-700",children:"Uncovered"}),h.blocksOtherFlows&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-purple-100 text-purple-700",children:"Blocking"}),h.impact==="high"&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-red-100 text-red-700",children:"High Impact"}),h.isError&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-red-100 text-red-700",children:"Error"})]}),h.description&&n("p",{className:"text-sm text-gray-600 mt-1 m-0",children:h.description})]})]})}),m&&d("div",{className:"border-t border-gray-100 px-4 py-3 bg-gray-50/50",children:[h.requiredValues.length>0&&d("div",{className:"mb-4",children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Required Values"}),n("div",{className:"space-y-1",children:h.requiredValues.map((y,g)=>d("div",{className:"flex items-center gap-2 text-xs",children:[n("code",{className:"font-mono text-gray-800 bg-gray-100 px-1 py-0.5 rounded",children:y.attributePath}),n("span",{className:"text-gray-400",children:y.comparison}),n("code",{className:"font-mono text-blue-700 bg-blue-50 px-1 py-0.5 rounded",children:y.value})]},g))})]}),f&&d("div",{children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Covered by Scenarios"}),n("div",{className:"flex flex-wrap gap-1",children:h.usedInScenarios.map(y=>n("span",{className:"text-xs px-1.5 py-0.5 bg-green-50 text-green-700 rounded",children:y.name},y.id))})]}),h.codeSnippet&&d("div",{className:"mt-4 pt-3 border-t border-gray-200",children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Code Location"}),n("pre",{className:"text-xs bg-gray-900 text-gray-100 p-2 rounded overflow-x-auto font-mono whitespace-pre-wrap",children:n("code",{children:h.codeSnippet})})]})]})]},h.id)})})]})]})}):n("div",{className:"flex-1 flex items-center justify-center p-8 bg-[#F8F7F6]",children:d("div",{className:"text-center text-gray-500",children:[n("p",{className:"text-lg font-medium mb-2",children:"No Analysis Found"}),n("p",{className:"text-sm",children:"Analyze this entity to see the scenarios breakdown."})]})})}function xc({hasIndirectBadge:e,onAnalyze:t}){return d(we,{children:[n("div",{className:"px-5 py-3 bg-white border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-end gap-2",children:[e&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5",children:"Indirect"}),n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-xs font-medium leading-5",children:"0 scenarios"})]})}),d("div",{className:"px-5 py-5 bg-white rounded-bl-lg rounded-br-lg flex items-center justify-between",children:[n("p",{className:"text-sm font-normal text-[#8e8e8e] m-0 leading-[22px]",children:"No analyses available for this version."}),n("button",{className:"px-[15px] py-0 h-[23px] bg-[#005c75] text-white rounded text-xs font-medium leading-5 border-none cursor-pointer hover:bg-[#004a5e] transition-colors flex items-center justify-center",onClick:t,children:"Analyze"})]})]})}function OS({entity:e,history:t}){const[r,s]=j("entity"),[a,o]=j(new Set),i=t.filter(p=>p.analyses.length>0).length,l=le(()=>{const p=new Map;return t.forEach(h=>{h.analyses.forEach(m=>{(m.scenarios??[]).filter(y=>{var g;return!((g=y.metadata)!=null&&g.sameAsDefault)}).forEach(y=>{p.has(y.name)||p.set(y.name,[]),p.get(y.name).push({version:h,analysis:m,scenario:y})})})}),Array.from(p.entries()).map(([h,m])=>{var f;return{name:h,description:((f=m[0])==null?void 0:f.scenario.description)||"",versions:m.sort((y,g)=>{const x=new Date(y.analysis.createdAt||0).getTime();return new Date(g.analysis.createdAt||0).getTime()-x})}})},[t]),c=l.length,u=p=>{o(h=>{const m=new Set(h);return m.has(p)?m.delete(p):m.add(p),m})};return n("div",{className:"flex-1 bg-[#f9f9f9] overflow-auto",children:d("div",{className:"max-w-[1400px] mx-auto px-8 py-8",children:[n("div",{className:"mb-8",children:d("div",{className:"flex items-center gap-6 border-b-2 border-[#e1e1e1]",children:[d("button",{onClick:()=>s("entity"),className:`flex items-center gap-2 px-0 py-3 border-b-2 transition-colors bg-transparent cursor-pointer ${r==="entity"?"border-[#005c75] text-[#232323]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:[n("span",{className:"text-base font-semibold leading-6",children:"Entity History"}),n("span",{className:`flex items-center justify-center min-w-[22px] h-[22px] px-[5px] rounded-lg text-xs font-medium leading-5 ${r==="entity"?"bg-[#e0e9ec] text-[#005c75]":"bg-[#ebf0f2] text-[#626262]"}`,children:i})]}),d("button",{onClick:()=>s("scenarios"),className:`flex items-center gap-2 px-0 py-3 border-b-2 transition-colors bg-transparent cursor-pointer ${r==="scenarios"?"border-[#005c75] text-[#232323]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:[n("span",{className:"text-base font-normal leading-6",children:"Scenario Changes"}),n("span",{className:`flex items-center justify-center min-w-[22px] h-[22px] px-[5px] rounded-lg text-xs font-medium leading-5 ${r==="scenarios"?"bg-[#e0e9ec] text-[#005c75]":"bg-[#ebf0f2] text-[#626262]"}`,children:c})]})]})}),t.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:n("p",{className:"text-gray-500 text-base m-0",children:"No history available"})}):r==="entity"?d("div",{className:"relative pl-12",children:[t.length>1&&n("div",{className:"absolute left-[17.5px] top-10 bottom-10 w-px bg-[#c7c7c7]"}),t.map((p,h)=>d("div",{className:"relative mb-12 last:mb-0",children:[n("div",{className:"absolute left-[-35px] top-[19px] w-[11.5px] h-[11.5px] rounded-full bg-[#00925d]"}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[n("div",{className:"px-5 py-3 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3",children:[p.sha===(e==null?void 0:e.sha)&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-xs font-medium leading-5",children:"Current Version"}),d(ke,{to:`/entity/${p.sha}/scenarios`,className:"text-xs font-mono text-[#646464] leading-5 hover:text-[#005c75] transition-colors",children:["SHA:"," ",n("span",{className:"text-[#3e3e3e] hover:text-[#005c75]",children:p.sha.substring(0,8)})]})]}),n("span",{className:"text-xs font-medium text-[#8e8e8e] leading-[22px]",children:p.createdAt&&new Date(p.createdAt).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1})})]})}),p.analyses.length>0?n("div",{children:p.analyses.map((m,f)=>{var g;const y=(m.scenarios??[]).filter(x=>{var b;return!((b=x.metadata)!=null&&b.sameAsDefault)});return n("div",{children:y.length===0?n(xc,{hasIndirectBadge:m.indirect,onAnalyze:()=>{console.log("Analyze version:",p.sha)}}):d(we,{children:[n("div",{className:"px-5 py-3 bg-white border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-end gap-2",children:[m.indirect&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5",children:"Indirect"}),d("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-xs font-medium leading-5",children:[y.length," scenario",y.length!==1?"s":""]})]})}),((g=m.metadata)==null?void 0:g.scenarioChangesOverview)&&n("div",{className:"p-5 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:d("p",{className:"text-sm text-[#005c75] m-0 leading-[22px]",children:[d("span",{className:"font-medium",children:["What Changed:"," "]}),m.metadata.scenarioChangesOverview]})}),y.length>0&&n("div",{className:"p-5 bg-white",children:n("div",{className:"flex gap-4 flex-wrap",children:y.map((x,b)=>{var w,C;const v=(C=(w=x.metadata)==null?void 0:w.screenshotPaths)==null?void 0:C[0],S=`${x.name}-${b}`;return d(ke,{to:`/entity/${p.sha}/scenarios/${x.id}`,className:"w-[187px] border border-[#e1e1e1] rounded bg-white overflow-hidden hover:border-[#005c75] hover:shadow-sm transition-all",children:[n("div",{className:"h-[110px] border-b border-[#e1e1e1] bg-gray-50 flex items-center justify-center p-[5.6px]",children:v?n(dt,{screenshotPath:v,alt:x.name,className:"max-w-full max-h-full object-contain rounded-sm"}):d("div",{className:"flex flex-col items-center gap-1",children:[n("span",{className:"text-gray-400 text-xl",children:"📷"}),n("span",{className:"text-gray-400 text-[10px]",children:"No Screenshot"})]})}),n("div",{className:"p-[5.6px]",children:n("p",{className:"text-[10.2px] font-medium text-[#343434] m-0 leading-[13px] line-clamp-3",children:x.name})})]},S)})})})]})},m.id||f)})}):n(xc,{onAnalyze:()=>{console.log("Analyze version:",p.sha)}})]})]},p.sha))]}):n("div",{className:"relative pl-12",children:l.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:n("p",{className:"text-gray-500 text-base m-0",children:"No scenarios found"})}):l.map((p,h)=>{const m=a.has(p.name),f=m?p.versions:p.versions.slice(0,1),y=p.versions.length-1,g=p.versions[0];return g==null||g.version.sha,e==null||e.sha,d("div",{className:"relative mb-12 last:mb-0",children:[n("div",{className:"absolute left-[-35px] top-[42px] w-[13.26px] h-[13.26px] rounded-full bg-[#00925d]"}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-5 py-5 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:[n("h3",{className:"text-base font-semibold text-[#232323] m-0 mb-1 leading-6",children:p.name}),p.description&&n("p",{className:"text-sm font-normal text-[#626262] m-0 leading-[22px]",children:p.description})]}),d("div",{className:"p-5 bg-white",children:[f.map((x,b)=>{var N,A;const{version:v,analysis:S,scenario:w}=x,C=(A=(N=w.metadata)==null?void 0:N.screenshotPaths)==null?void 0:A[0],k=b===0;return d("div",{className:`flex gap-5 items-start ${k?"":"mt-5 pt-5 border-t border-[#e1e1e1]"}`,children:[n(ke,{to:`/entity/${v.sha}/scenarios/${w.id}`,className:"w-[175px] h-[110px] border border-[#e1e1e1] rounded bg-gray-50 flex items-center justify-center shrink-0 hover:border-[#005c75] hover:shadow-sm transition-all",children:C?n(dt,{screenshotPath:C,alt:w.name,className:"max-w-full max-h-full object-contain rounded-sm"}):d("div",{className:"flex flex-col items-center gap-1",children:[n("span",{className:"text-gray-400 text-xl",children:"📷"}),n("span",{className:"text-gray-400 text-[10px]",children:"No screenshot"})]})}),d("div",{className:"flex-1 flex flex-col gap-2",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[v.sha===(e==null?void 0:e.sha)&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-xs font-medium leading-5",children:"Current Version"}),k&&p.versions.length>1&&d("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#e0e9ec] text-[#005c75] rounded text-xs font-medium leading-5",children:[p.versions.length," versions"]})]}),d(ke,{to:`/entity/${v.sha}/scenarios`,className:"text-xs font-mono text-[#646464] m-0 leading-5 hover:text-[#005c75] transition-colors w-fit",children:["SHA:"," ",n("span",{className:"text-[#3e3e3e] hover:text-[#005c75]",children:v.sha.substring(0,8)})]}),S.createdAt&&d("p",{className:"text-xs font-medium text-[#8e8e8e] m-0 leading-[22px]",children:["Captured:"," ",new Date(S.createdAt).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1})]}),S.indirect&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5 self-start",children:"Indirect"})]})]},`${v.sha}-${b}`)}),y>0&&d("button",{onClick:()=>u(p.name),className:"mt-5 flex items-center gap-2 text-sm text-[#005c75] bg-transparent border-none cursor-pointer p-0 hover:underline",children:[n("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",className:`transition-transform ${m?"rotate-180":""}`,children:n("path",{d:"M4 6L8 10L12 6",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),m?"Hide":`${y} previous version${y!==1?"s":""}`]})]})]})]},p.name)})})]})})}function bc({entity:e,analysisInfo:t,from:r}){const s=Ge(),a=s.state!=="idle",o=e.entityType==="visual"||e.entityType==="library",i=l=>{l.preventDefault(),l.stopPropagation(),o&&s.submit({entitySha:e.sha,filePath:e.filePath},{method:"post",action:"/api/analyze"})};return n(ke,{to:`/entity/${e.sha}${r?`?from=${r}`:""}`,className:"block group cursor-pointer",children:d("div",{className:"flex gap-0 border border-gray-200 rounded-lg overflow-hidden transition-all hover:border-[#005c75] hover:shadow-md bg-white h-[100px]",children:[e.screenshotPath?n("div",{className:"w-[125px] h-full bg-gray-50 flex items-center justify-center shrink-0 rounded-bl-[8px] rounded-tl-[8px] border-r border-gray-200",children:n(dt,{screenshotPath:e.screenshotPath,alt:e.name,className:"max-w-full max-h-full object-contain"})}):n("div",{className:"w-[125px] h-full bg-[#efefef] flex items-center justify-center shrink-0 rounded-bl-[8px] rounded-tl-[8px] border-r border-gray-200",children:n("span",{className:"text-[40px]",children:n(gt,{type:e.entityType})})}),d("div",{className:"flex-1 flex items-center justify-between px-4 min-w-0",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(gt,{type:e.entityType}),n("div",{className:"text-base font-medium text-black truncate group-hover:text-[#005c75] transition-colors",children:e.name})]}),n("div",{className:"text-[10px] text-[#8e8e8e] truncate mb-1 font-mono",title:e.filePath,children:e.filePath}),t.hasScenarios&&d("div",{className:"flex items-center gap-2 mt-2",children:[d("span",{className:"px-[5px] py-0 bg-[#efefef] text-[#3e3e3e] rounded text-[10px] font-medium",children:[t.scenarioCount," scenarios"]}),n("span",{className:"text-xs text-[#8e8e8e]",children:t.timestamp})]})]}),n("div",{className:"shrink-0 ml-4",children:t.status==="not_analyzed"?d(we,{children:[d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#f9f9f9] border border-[#e1e1e1] rounded mb-2",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#c7c7c7]"}),n("span",{className:"text-[10px] font-semibold text-[#646464]",children:"Not analyzed"})]}),o&&n("button",{className:`w-full px-3 py-1 bg-[#005c75] text-white border-none rounded text-[10px] font-medium transition-colors ${a?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,onClick:i,disabled:a,children:a?"Analyzing...":"Analyze"})]}):t.status==="up_to_date"?d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#f2fcf9] border border-[#c8f2e3] rounded",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#00925d]"}),n("span",{className:"text-[10px] font-semibold text-[#00925d]",children:"Up to date"})]}):d(we,{children:[d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#e0e9ec] border border-[#e0e9ec] rounded mb-2",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#005c75]"}),n("span",{className:"text-[10px] font-semibold text-[#005c75]",children:"Out of date"})]}),o&&n("button",{className:`w-full px-3 py-1 bg-[#005c75] text-white border-none rounded text-[10px] font-medium transition-colors ${a?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,onClick:i,disabled:a,children:a?"Analyzing...":"Analyze"})]})})]})]})},e.sha)}const vc=e=>{var a,o,i;const t=((a=e.analysisStatus)==null?void 0:a.status)||"not_analyzed",r=((o=e.analysisStatus)==null?void 0:o.scenarioCount)||0,s=(i=e.analysisStatus)==null?void 0:i.timestamp;return t==="not_analyzed"?{status:"not_analyzed",label:"Not analyzed",color:"gray"}:t==="up_to_date"?{status:"up_to_date",label:"Up to date",color:"green",hasScenarios:r>0,scenarioCount:r,timestamp:s}:{status:"out_of_date",label:"Out of date",color:"teal",hasScenarios:r>0,scenarioCount:r,timestamp:s}};function LS({importedEntities:e,importingEntities:t}){const[r]=or(),s=r.get("from"),a=Ge(),o=a.state!=="idle",i=e.length>0,l=t.length>0,c=m=>m.filter(f=>f.entityType==="visual"||f.entityType==="library"),u=m=>{const f=c(m);f.length!==0&&a.submit({entityShas:f.map(y=>y.sha).join(",")},{method:"post",action:"/api/analyze"})},p=c(e).length>0,h=c(t).length>0;return n("div",{className:"max-w-[1400px] mx-auto",children:d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-8",children:[d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-6 py-4 flex items-start justify-between",children:[d("div",{children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-base font-semibold text-black m-0 leading-6",children:"Imports"}),n("span",{className:"px-2 h-[20.464px] flex items-center justify-center bg-[#deeafc] text-[#2f80ed] rounded-[9.095px] text-xs font-semibold leading-5",children:e.length})]}),n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"Entities imported by this component."})]}),p&&n("button",{onClick:()=>u(e),disabled:o,className:`px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium transition-colors ${o?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,children:o?"Analyzing...":"Analyze All"})]}),i?n("div",{className:"p-6 space-y-4",children:e.map(m=>n(bc,{entity:m,analysisInfo:vc(m),from:s},m.sha))}):n("div",{className:"bg-[#f6f9fc] h-[339.923px] flex items-center justify-center",children:n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"No imports."})})]}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-6 py-4 flex items-start justify-between",children:[d("div",{children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-base font-semibold text-black m-0 leading-6",children:"Imported By"}),n("span",{className:"px-2 h-[20.464px] flex items-center justify-center bg-[#f3eefe] text-[#9b51e0] rounded-[9.095px] text-xs font-semibold leading-5",children:t.length})]}),n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"Entities that import this component."})]}),h&&n("button",{onClick:()=>u(t),disabled:o,className:`px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium transition-colors ${o?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,children:o?"Analyzing...":"Analyze All"})]}),l?n("div",{className:"p-6 space-y-4",children:t.map(m=>n(bc,{entity:m,analysisInfo:vc(m),from:s},m.sha))}):n("div",{className:"bg-[#f6f9fc] h-[339.923px] flex items-center justify-center",children:n("p",{className:"text-sm text-[#646464] m-0 leading-[22px] text-center",children:"Not imported by any entity."})})]})]})})}function zS({relatedEntities:e}){return n("div",{className:"flex-1 bg-[#f9f9f9] overflow-auto p-8",children:n(LS,{importedEntities:e.importedEntities,importingEntities:e.importingEntities})})}function BS({data:e,defaultExpanded:t=!1,maxDepth:r=3}){return n("div",{className:"font-mono text-sm",children:n(Wr,{data:e,depth:0,defaultExpanded:t,maxDepth:r})})}function Wr({data:e,depth:t,defaultExpanded:r,maxDepth:s,objectKey:a,showInlineToggle:o=!1}){const[i,l]=j(r||t<2);if(te(()=>{l(r||t<2)},[r,t]),e===null)return n("span",{className:"text-gray-500",children:"null"});if(e===void 0)return n("span",{className:"text-gray-500",children:"undefined"});const c=typeof e;if(c==="string")return d("span",{className:"text-green-600",children:['"',e,'"']});if(c==="number")return n("span",{className:"text-blue-600",children:e});if(c==="boolean")return n("span",{className:"text-purple-600",children:e.toString()});if(Array.isArray(e))return e.length===0?n("span",{className:"text-gray-600",children:"[]"}):d("span",{children:[d("button",{className:"text-gray-600 hover:text-gray-900 cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded",onClick:()=>l(!i),children:[d("span",{children:[i?"▼":"▶"," ","["]}),!i&&d("span",{children:[e.length,"]"]})]}),i?d(we,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:e.map((u,p)=>n("div",{className:"py-0.5",children:n(Wr,{data:u,depth:t+1,defaultExpanded:r,maxDepth:s})},p))}),n("div",{className:"text-gray-600",children:"]"})]}):null]});if(c==="object"){const u=Object.keys(e);if(u.length===0)return n("span",{className:"text-gray-600",children:"{}"});const p=m=>m!==null&&typeof m=="object"&&!Array.isArray(m)&&Object.keys(m).length>0,h=m=>Array.isArray(m)&&m.length>0;return d("span",{children:[d("button",{className:"text-gray-600 hover:text-gray-900 cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded",onClick:()=>l(!i),children:[d("span",{children:[i?"▼":"▶"," ","{"]}),!i&&d("span",{children:[u.length,"}"]})]}),i?d(we,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:u.map(m=>{const f=e[m],y=p(f),g=h(f);return n("div",{className:"py-0.5",children:y?n(Fi,{propertyKey:m,value:f,depth:t,defaultExpanded:r,maxDepth:s}):g?n(Di,{propertyKey:m,value:f,depth:t,defaultExpanded:r,maxDepth:s}):d(we,{children:[d("span",{className:"text-orange-600",children:[m,": "]}),n(Wr,{data:f,depth:t+1,defaultExpanded:r,maxDepth:s})]})},m)})}),n("div",{className:"text-gray-600",children:"}"})]}):null]})}return n("span",{className:"text-gray-500",children:String(e)})}function Fi({propertyKey:e,value:t,depth:r,defaultExpanded:s,maxDepth:a}){const[o,i]=j(s||r<2),l=Object.keys(t);return te(()=>{i(s||r<2)},[s,r]),d(we,{children:[d("button",{className:"cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded inline-flex items-baseline",style:{marginLeft:"-14px"},onClick:()=>i(!o),children:[n("span",{className:"text-gray-600 hover:text-gray-900 mr-1",children:o?"▼":"▶"}),d("span",{className:"text-orange-600",children:[e,": "]}),n("span",{className:"text-gray-600 ml-0.5",children:"{"}),!o&&d("span",{className:"text-gray-600",children:[l.length,"}"]})]}),o&&d(we,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:l.map(c=>{const u=t[c],p=u!==null&&typeof u=="object"&&!Array.isArray(u)&&Object.keys(u).length>0,h=Array.isArray(u)&&u.length>0;return n("div",{className:"py-0.5",children:p?n(Fi,{propertyKey:c,value:u,depth:r+1,defaultExpanded:s,maxDepth:a}):h?n(Di,{propertyKey:c,value:u,depth:r+1,defaultExpanded:s,maxDepth:a}):d(we,{children:[d("span",{className:"text-orange-600",children:[c,": "]}),n(Wr,{data:u,depth:r+2,defaultExpanded:s,maxDepth:a})]})},c)})}),n("div",{className:"text-gray-600",children:"}"})]})]})}function Di({propertyKey:e,value:t,depth:r,defaultExpanded:s,maxDepth:a}){const[o,i]=j(s||r<2);return te(()=>{i(s||r<2)},[s,r]),d(we,{children:[d("button",{className:"cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded inline-flex items-baseline",style:{marginLeft:"-14px"},onClick:()=>i(!o),children:[n("span",{className:"text-gray-600 hover:text-gray-900 mr-1",children:o?"▼":"▶"}),d("span",{className:"text-orange-600",children:[e,": "]}),n("span",{className:"text-gray-600 ml-0.5",children:"["}),!o&&d("span",{className:"text-gray-600",children:[t.length,"]"]})]}),o&&d(we,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:t.map((l,c)=>{const u=l!==null&&typeof l=="object"&&!Array.isArray(l)&&Object.keys(l).length>0,p=Array.isArray(l)&&l.length>0;return n("div",{className:"py-0.5",children:u?n(Fi,{propertyKey:c.toString(),value:l,depth:r+1,defaultExpanded:s,maxDepth:a}):p?n(Di,{propertyKey:c.toString(),value:l,depth:r+1,defaultExpanded:s,maxDepth:a}):n(Wr,{data:l,depth:r+2,defaultExpanded:s,maxDepth:a})},c)})}),n("div",{className:"text-gray-600",children:"]"})]})]})}function uo({label:e,count:t,isActive:r,onClick:s,badgeColorActive:a,badgeTextActive:o}){return d("button",{onClick:s,className:`px-6 py-3 text-sm font-medium relative transition-colors cursor-pointer ${r?"text-[#005c75]":"text-[#3e3e3e] hover:text-gray-900 hover:bg-gray-50"}`,children:[e,t!==void 0&&n("span",{className:`ml-2 px-2 py-0.5 rounded-full text-xs font-semibold ${r?`${a} ${o}`:"bg-gray-200 text-gray-700"}`,children:t}),r&&n("div",{className:"absolute bottom-0 left-0 right-0 h-0.5 bg-[#005c75]"})]})}function wc({label:e,isActive:t,onClick:r,disabled:s=!1}){return n("button",{onClick:r,className:`w-full text-left px-3 py-2.5 rounded-md transition-all text-sm cursor-pointer ${t?"bg-[#f6f9fc] text-[#005c75] font-medium border-l-2 border-[#005c75] pl-[10px]":"text-[#3e3e3e] hover:bg-gray-50"}`,disabled:s,children:e})}function Nc({call:e,scenarioName:t}){const[r,s]=j(!1),[a,o]=j("system"),i=m=>new Date(m).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1}),l=m=>m?`$${m.toFixed(4)}`:null,c=(m,f)=>{if(!m&&!f)return null;const y=[];return m&&y.push(`${m.toLocaleString()} in`),f&&y.push(`${f.toLocaleString()} out`),y.join(" / ")},u=le(()=>{var m,f,y,g,x;try{const b=JSON.parse(e.response);return(y=(f=(m=b.choices)==null?void 0:m[0])==null?void 0:f.message)!=null&&y.content?b.choices[0].message.content:(x=(g=b.content)==null?void 0:g[0])!=null&&x.text?b.content[0].text:e.response}catch{return e.response}},[e.response]),p=le(()=>{try{return JSON.stringify(JSON.parse(e.props),null,2)}catch{return e.props}},[e.props]),h=le(()=>{var m;if(t)return t;try{const f=JSON.parse(e.props);return((m=f==null?void 0:f.scenario)==null?void 0:m.name)||null}catch{return null}},[e.props,t]);return d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[n("div",{className:"px-5 py-4 bg-[#f6f9fc] border-b border-[#e1e1e1] cursor-pointer hover:bg-[#edf2f7] transition-colors",onClick:()=>s(!r),children:d("div",{className:"flex items-start justify-between gap-4",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-2 flex-wrap",children:[n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#005c75] text-white rounded text-[11px] font-medium",children:e.prompt_type}),n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-[11px] font-medium",children:e.model}),h&&n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-[11px] font-medium",children:h}),e.error&&n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-[11px] font-medium",children:"Error"})]}),d("div",{className:"flex items-center gap-4 text-xs text-[#626262]",children:[n("span",{children:i(e.created_at)}),c(e.input_tokens,e.output_tokens)&&n("span",{children:c(e.input_tokens,e.output_tokens)}),l(e.cost)&&n("span",{className:"text-[#005c75] font-medium",children:l(e.cost)})]}),d("div",{className:"text-[11px] text-[#8a8a8a] font-mono mt-1",children:[".codeyam/llm-calls/",e.object_id,"_",e.id,".json"]})]}),n("svg",{width:"20",height:"20",viewBox:"0 0 16 16",fill:"none",className:`transition-transform shrink-0 ${r?"rotate-180":""}`,children:n("path",{d:"M4 6L8 10L12 6",stroke:"#626262",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})}),r&&d("div",{className:"border-t border-[#e1e1e1]",children:[d("div",{className:"flex border-b border-[#e1e1e1] bg-[#fafafa]",children:[n("button",{onClick:()=>o("system"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="system"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"System"}),n("button",{onClick:()=>o("prompt"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="prompt"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Prompt"}),n("button",{onClick:()=>o("response"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="response"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Response"}),n("button",{onClick:()=>o("props"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="props"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Context"})]}),a&&d("div",{className:"p-4 bg-white max-h-[400px] overflow-auto",children:[a==="system"&&n("div",{children:e.system_message?n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:e.system_message}):n("p",{className:"text-xs text-[#626262] italic m-0",children:"No system message"})}),a==="prompt"&&n("div",{children:n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:e.prompt_text})}),a==="response"&&d("div",{children:[e.error&&d("div",{className:"mb-4 p-3 bg-[#fef2f2] border border-[#fecaca] rounded",children:[n("h4",{className:"text-xs font-semibold text-[#dc2626] uppercase mb-1",children:"Error"}),n("p",{className:"text-xs text-[#dc2626] m-0",children:e.error})]}),n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:u})]}),a==="props"&&n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:p})]}),e.error&&!a&&n("div",{className:"p-4 bg-[#fef2f2] border-t border-[#fecaca]",children:d("p",{className:"text-xs text-[#dc2626] m-0",children:[n("span",{className:"font-semibold",children:"Error: "}),e.error]})})]})]})}const Sc=["generateEntityScenarios","analyzeEntity","generateDataStructure","generateEntityDescription"];function YS({entity:e,analysis:t,scenarios:r,onAnalyze:s,llmCalls:a}){var S,w,C,k,N,A,_,M,$;const[o,i]=j("entity"),[l,c]=j("analysis"),[u,p]=j(r.length>0?{scenarioId:r[0].id||r[0].name}:null),[h,m]=j("entity"),{entityLlmCalls:f,scenarioLlmCalls:y,totalLlmCalls:g}=le(()=>{if(!a)return{entityLlmCalls:[],scenarioLlmCalls:[],totalLlmCalls:0};const I=[...a.entityCalls,...a.analysisCalls],R=I.filter(F=>F.object_type==="entity"||Sc.includes(F.prompt_type)),P=I.filter(F=>F.object_type!=="entity"&&!Sc.includes(F.prompt_type));return R.sort((F,Y)=>Y.created_at-F.created_at),P.sort((F,Y)=>Y.created_at-F.created_at),{entityLlmCalls:R,scenarioLlmCalls:P,totalLlmCalls:I.length}},[a]),x=[{id:"analysis",title:"Analysis",data:t?{id:t.id,status:t.status}:void 0,description:"Analysis metadata including ID and processing status"},{id:"isolatedDataStructure",title:"Isolated Data Structure",data:(S=e==null?void 0:e.metadata)==null?void 0:S.isolatedDataStructure,description:"Entity's own data structure without dependencies"},{id:"mergedDataStructure",title:"Merged Data Structure",data:(w=t==null?void 0:t.metadata)==null?void 0:w.mergedDataStructure,description:"Combined data structure including dependencies"},{id:"conditionalUsages",title:"Conditional Usages",data:(k=(C=e==null?void 0:e.metadata)==null?void 0:C.isolatedDataStructure)==null?void 0:k.conditionalUsages,description:"Attributes used in conditionals (if, ternary, switch, &&) - candidates for key attributes"},{id:"executionFlows",title:"Execution Flows",data:(N=t==null?void 0:t.metadata)==null?void 0:N.executionFlows,description:"Distinct outcomes/behaviors this component can produce"},{id:"importedExports",title:"Imported Dependencies",data:{"Internal Dependencies":(A=e==null?void 0:e.metadata)==null?void 0:A.importedExports,"External Dependencies":(_=e==null?void 0:e.metadata)==null?void 0:_.nodeModuleImports},description:"Internal and external dependencies used by this entity"},{id:"scenariosDataStructure",title:"Scenarios Data Structure",data:(M=t==null?void 0:t.metadata)==null?void 0:M.scenariosDataStructure,description:"Structure template used across all scenarios"}],b=x.filter(I=>I.data!==void 0&&I.data!==null).length;let v=null;if(o==="entity"){const I=x.find(R=>R.id===l);I&&I.data!==void 0&&I.data!==null&&(v={title:I.title,description:I.description,data:I.data})}else if(o==="scenarios"&&u){const I=r.find(R=>(R.id||R.name)===u.scenarioId);I&&(v={title:I.name,description:I.description||"Scenario data and configuration",data:I.metadata})}return d("div",{className:"max-w-[1800px] mx-auto h-full flex flex-col",children:[n("div",{className:"mb-6 shrink-0",children:d("div",{className:"flex border-b border-gray-200 relative",children:[n(uo,{label:"Entity",isActive:o==="entity",onClick:()=>i("entity"),badgeColorActive:"bg-[#e0e9ec]",badgeTextActive:"text-[#005c75]"}),n(uo,{label:"Scenarios",count:r.length,isActive:o==="scenarios",onClick:()=>i("scenarios"),badgeColorActive:"bg-[#ebf0f2]",badgeTextActive:"text-[#626262]"}),n(uo,{label:"LLM Calls",count:g,isActive:o==="llm-calls",onClick:()=>i("llm-calls"),badgeColorActive:"bg-[#ebf0f2]",badgeTextActive:"text-[#626262]"}),(($=t==null?void 0:t.metadata)==null?void 0:$.analyzerVersion)&&d("div",{className:"ml-auto flex items-center text-xs text-gray-500",children:[n("span",{className:"font-medium",children:"Analyzer:"}),n("span",{className:"ml-1 font-mono",children:t.metadata.analyzerVersion})]})]})}),o==="llm-calls"?d("div",{className:"flex-1 min-h-0",children:[d("div",{className:"flex gap-4 mb-4",children:[d("button",{onClick:()=>m("entity"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-colors cursor-pointer ${h==="entity"?"bg-[#005c75] text-white":"bg-white border border-gray-200 text-gray-600 hover:bg-gray-50"}`,children:["Entity Calls (",f.length,")"]}),d("button",{onClick:()=>m("scenario"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-colors cursor-pointer ${h==="scenario"?"bg-[#005c75] text-white":"bg-white border border-gray-200 text-gray-600 hover:bg-gray-50"}`,children:["Scenario Calls (",y.length,")"]})]}),n("div",{className:"space-y-4 overflow-y-auto",style:{maxHeight:"calc(100vh - 350px)"},children:h==="entity"?f.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-8 text-center",children:n("p",{className:"text-gray-500 text-sm m-0",children:"No entity-level LLM calls found"})}):f.map(I=>n(Nc,{call:I},I.id)):y.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-8 text-center",children:n("p",{className:"text-gray-500 text-sm m-0",children:"No scenario-level LLM calls found"})}):y.map(I=>n(Nc,{call:I},I.id))})]}):d("div",{className:"grid grid-cols-[340px_1fr] gap-6 flex-1 min-h-0",children:[n("div",{className:"bg-white rounded-lg border border-gray-200 p-4 overflow-y-auto",children:o==="entity"?d(we,{children:[n("h3",{className:"text-xs font-medium text-black mb-3 uppercase tracking-wide",children:"ENTITY SECTIONS"}),b===0?n("p",{className:"text-sm text-[#646464] leading-[22px]",children:"No entity data available."}):n("nav",{className:"space-y-1",children:x.map(I=>{const R=I.data!==void 0&&I.data!==null;return n(wc,{label:I.title,isActive:l===I.id,onClick:()=>c(I.id),disabled:!R},I.id)})})]}):d(we,{children:[n("h3",{className:"text-xs font-medium text-black mb-3 uppercase tracking-wide",children:"SCENARIOS"}),r.length===0?n("p",{className:"text-sm text-[#646464] leading-[22px]",children:"No scenarios available."}):n("nav",{className:"space-y-1",children:r.map(I=>{const R=I.id||I.name,P=(u==null?void 0:u.scenarioId)===R;return n(wc,{label:I.name,isActive:P,onClick:()=>p({scenarioId:R})},R)})})]})}),n("div",{className:"bg-white rounded-lg border border-gray-200 overflow-hidden flex flex-col",children:v?n(US,{title:v.title,description:v.description,data:v.data}):o==="scenarios"&&r.length===0?n(Cc,{title:"No Simulations Yet",description:"Analyze the code to create simulations and create test scenarios automatically.",onAnalyze:s}):o==="entity"?n(Cc,{title:"No Entity Data Yet",description:"Entity data structures will appear here after analysis is complete.",onAnalyze:s}):n("div",{className:"p-6 text-center py-12 text-gray-500",children:"Select a section to view data"})})]})]})}function Cc({title:e,description:t,onAnalyze:r}){return d("div",{className:"flex flex-col items-center justify-center h-full bg-[#f6f9fc]",children:[n("h2",{className:"text-[28px] font-semibold text-[#646464] leading-[40px] mb-2 text-center",children:e}),n("p",{className:"text-base text-[#646464] leading-6 mb-6 text-center max-w-[600px]",children:t}),r&&n("button",{onClick:r,className:"h-[54px] w-[183px] bg-[#005c75] text-white text-base font-medium rounded-lg border-none cursor-pointer hover:bg-[#004a5e] transition-colors",children:"Analyze"})]})}function US({title:e,description:t,data:r}){const[s,a]=j(!0);return d(we,{children:[d("div",{className:"px-6 py-4 border-b border-gray-200 bg-gray-50",children:[n("h3",{className:"text-base font-semibold text-black m-0",children:e}),n("p",{className:"text-sm text-[#646464] mt-1 m-0",children:t})]}),d("div",{className:"px-6 py-4 bg-white flex justify-between items-center",children:[d("div",{className:"flex gap-2",children:[n("button",{onClick:()=>a(!0),className:`px-4 h-8 text-sm font-medium rounded border-none cursor-pointer transition-colors ${s?"bg-[#005c75] text-white":"bg-[#e0e9ec] hover:bg-[#d0dfe4] text-[#005c75]"}`,children:"Expand All"}),n("button",{onClick:()=>a(!1),className:`px-4 h-8 text-sm font-medium rounded border-none cursor-pointer transition-colors ${s?"bg-[#e0e9ec] hover:bg-[#d0dfe4] text-[#005c75]":"bg-[#005c75] text-white"}`,children:"Collapse All"})]}),n(pt,{content:JSON.stringify(r,null,2),label:"Copy JSON",copiedLabel:"Copied!",className:"px-4 h-8 bg-[#343434] hover:bg-[#232323] text-white text-sm font-medium rounded border-none transition-colors whitespace-nowrap"})]}),n("div",{className:"overflow-y-auto flex-1",children:n("div",{className:"p-6",children:r?n("div",{className:"bg-gray-50 rounded-lg p-3 overflow-x-auto",children:n(BS,{data:r,defaultExpanded:s,maxDepth:99})}):n("div",{className:"text-center py-12 text-gray-500",children:"No data available for this section"})})})]})}function WS({entity:e,analysis:t,scenarios:r,onAnalyze:s}){const a=Ge();return te(()=>{if(e!=null&&e.sha&&a.state==="idle"&&!a.data){const o=t!=null&&t.id?`/api/llm-calls/${e.sha}?analysisId=${t.id}`:`/api/llm-calls/${e.sha}`;a.load(o)}},[e==null?void 0:e.sha,t==null?void 0:t.id,a.state,a.data]),n("div",{className:"flex-1 min-h-0 bg-[#f9f9f9] overflow-auto p-8",children:n(YS,{entity:e,analysis:t,scenarios:r,onAnalyze:s,llmCalls:a.data})})}const JS={margin:0,padding:"24px",backgroundColor:"#101827",fontSize:"14px",lineHeight:"1.5"},HS={minWidth:"3em",paddingRight:"1em",color:"#6b7280",userSelect:"none"},VS=2e3,KS=e=>{var r;if(!e)return"typescript";switch((r=e.split(".").pop())==null?void 0:r.toLowerCase()){case"ts":case"tsx":return"typescript";case"js":case"jsx":return"javascript";case"json":return"json";case"css":return"css";default:return"typescript"}};function GS({entity:e,entityCode:t}){const r=Jr(),s=ye(null);return te(()=>{const a=r.hash;if(!a||!s.current)return;const o=a.match(/^#L(\d+)$/);if(!o)return;const i=parseInt(o[1],10);setTimeout(()=>{if(!s.current)return;const l=s.current.querySelector(`[data-line-number="${i}"]`);if(l&&l instanceof HTMLElement){l.scrollIntoView({behavior:"smooth",block:"center"});const c=l.style.backgroundColor;l.style.backgroundColor="rgba(255, 255, 0, 0.2)",setTimeout(()=>{l.style.backgroundColor=c},2e3)}},300)},[r.hash,t]),n("div",{ref:s,className:"flex-1 bg-[#f9f9f9] overflow-auto p-8",children:d("div",{className:"bg-white rounded-tl-lg rounded-tr-lg border border-gray-200 overflow-hidden",children:[d("div",{className:"px-6 py-4 border-b border-gray-200 bg-gray-50 flex justify-between items-center",children:[d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-900 m-0",children:"Source Code"}),n("p",{className:"text-xs text-[#646464] font-mono mt-1 m-0",children:e==null?void 0:e.filePath})]}),t&&n(pt,{content:t,label:"Copy Code",duration:VS,className:"px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium cursor-pointer transition-colors hover:bg-[#004a5c] disabled:opacity-75 disabled:cursor-not-allowed"})]}),n("div",{className:"p-0",children:t?n("div",{className:"relative",children:n(dm,{language:KS(e==null?void 0:e.filePath),style:um,showLineNumbers:!0,customStyle:JS,lineNumberStyle:HS,wrapLines:!0,lineProps:a=>({"data-line-number":a,style:{display:"block"}}),children:t})}):n("div",{className:"p-12 text-center text-gray-500",children:"No code available"})})]})})}function cn({prompt:e,height:t=300,onClose:r,hideHeader:s}){const a=ye(null),o=ye(null),i=ye(null),l=ye(!1),c=ye(e);te(()=>{const p=a.current;if(!p)return;let h=!1,m=null;async function f(){const[y,g]=await Promise.all([import("@xterm/xterm"),import("@xterm/addon-fit")]);if(h)return;{let _=document.getElementById("xterm-css");_||(_=document.createElement("style"),_.id="xterm-css",document.head.appendChild(_)),_.textContent=`
|
|
496
|
-
.xterm { cursor: text; position: relative; user-select: none; -ms-user-select: none; -webkit-user-select: none; }
|
|
497
|
-
.xterm.focus, .xterm:focus { outline: none; }
|
|
498
|
-
.xterm .xterm-helpers { position: absolute; top: 0; z-index: 5; }
|
|
499
|
-
.xterm .xterm-helper-textarea { padding: 0; border: 0; margin: 0; position: absolute; opacity: 0; left: -9999em; top: 0; width: 0; height: 0; z-index: -5; white-space: nowrap; overflow: hidden; resize: none; caret-color: transparent !important; clip-path: inset(100%) !important; }
|
|
500
|
-
.xterm .composition-view { background: #000; color: #FFF; display: none; position: absolute; white-space: nowrap; z-index: 1; }
|
|
501
|
-
.xterm .composition-view.active { display: block; }
|
|
502
|
-
.xterm .xterm-viewport { background-color: #000; overflow-y: scroll; cursor: default; position: absolute; right: 0; left: 0; top: 0; bottom: 0; }
|
|
503
|
-
.xterm .xterm-screen { position: relative; }
|
|
504
|
-
.xterm .xterm-screen canvas { position: absolute; left: 0; top: 0; }
|
|
505
|
-
.xterm .xterm-scroll-area { visibility: hidden; }
|
|
506
|
-
.xterm-char-measure-element { display: inline-block; visibility: hidden; position: absolute; top: 0; left: -9999em; line-height: normal; }
|
|
507
|
-
.xterm.enable-mouse-events { cursor: default; }
|
|
508
|
-
.xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer { cursor: pointer; }
|
|
509
|
-
.xterm.column-select.focus { cursor: crosshair; }
|
|
510
|
-
.xterm .xterm-accessibility:not(.debug), .xterm .xterm-message { position: absolute; left: 0; top: 0; bottom: 0; right: 0; z-index: 10; color: transparent; pointer-events: none; }
|
|
511
|
-
.xterm .xterm-accessibility-tree:not(.debug) *::selection { color: transparent; }
|
|
512
|
-
.xterm .xterm-accessibility-tree { user-select: text; white-space: pre; }
|
|
513
|
-
.xterm .live-region { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
|
|
514
|
-
.xterm-dim { opacity: 1 !important; }
|
|
515
|
-
.xterm-underline-1 { text-decoration: underline; }
|
|
516
|
-
.xterm-underline-2 { text-decoration: double underline; }
|
|
517
|
-
.xterm-underline-3 { text-decoration: wavy underline; }
|
|
518
|
-
.xterm-underline-4 { text-decoration: dotted underline; }
|
|
519
|
-
.xterm-underline-5 { text-decoration: dashed underline; }
|
|
520
|
-
.xterm-overline { text-decoration: overline; }
|
|
521
|
-
.xterm-strikethrough { text-decoration: line-through; }
|
|
522
|
-
.xterm-screen .xterm-decoration-container .xterm-decoration { z-index: 6; position: absolute; }
|
|
523
|
-
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer { z-index: 7; }
|
|
524
|
-
.xterm-decoration-overview-ruler { z-index: 8; position: absolute; top: 0; right: 0; pointer-events: none; }
|
|
525
|
-
.xterm-decoration-top { z-index: 2; position: relative; }
|
|
526
|
-
`}const x=new y.Terminal({theme:{background:"#1a1a1a",foreground:"#d4d4d4",cursor:"#d4d4d4",selectionBackground:"#264f78"},fontSize:12,fontFamily:"'IBM Plex Mono', 'Menlo', 'Monaco', monospace",cursorBlink:!0,scrollback:5e3,allowProposedApi:!0}),b=new g.FitAddon;x.loadAddon(b),x.open(p),requestAnimationFrame(()=>{try{b.fit()}catch{}}),i.current=x;let v=null;try{const _=await fetch("/api/editor-scenario-prompt",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({prompt:c.current})});_.ok&&(v=(await _.json()).promptFile)}catch{}if(h)return;const S=window.location.protocol==="https:"?"wss:":"ws:",w=window.location.host,C=new URLSearchParams;C.set("entityName","inline-claude");const k=`${S}//${w}/ws/terminal?${C.toString()}`,N=new WebSocket(k);o.current=N,N.onopen=()=>{N.send(JSON.stringify({type:"resize",cols:x.cols,rows:x.rows}))};let A=!1;N.onmessage=_=>{try{const M=JSON.parse(_.data);if(M.type==="session-id"&&!A){A=!0,setTimeout(()=>{const $=v?`claude "Read the file at '${v.replace(/'/g,"'\\''")}' for your instructions."`:"claude";N.send(JSON.stringify({type:"input",data:$+"\r"}))},300);return}if(M.type==="output"&&M.data){x.write(M.data);return}}catch{x.write(_.data)}},N.onclose=()=>{l.current||x.write(`\r
|
|
527
|
-
\x1B[90m--- Session ended ---\x1B[0m\r
|
|
528
|
-
`)},N.onerror=()=>{x.write(`\r
|
|
529
|
-
\x1B[31mConnection error\x1B[0m\r
|
|
530
|
-
`)},x.onData(_=>{N.readyState===WebSocket.OPEN&&N.send(JSON.stringify({type:"input",data:_}))}),m=new ResizeObserver(()=>{try{b.fit(),N.readyState===WebSocket.OPEN&&N.send(JSON.stringify({type:"resize",cols:x.cols,rows:x.rows}))}catch{}}),m.observe(p)}return f(),()=>{var y,g;h=!0,l.current=!0,m==null||m.disconnect(),((y=o.current)==null?void 0:y.readyState)===WebSocket.OPEN&&o.current.close(),(g=i.current)==null||g.dispose()}},[]);const u=t==="100%";return d("div",{className:s?"":"border-t border-[#2d2d2d]",style:u?{height:"100%",display:"flex",flexDirection:"column"}:void 0,children:[!s&&d("div",{className:"flex items-center justify-between px-3 py-1.5 bg-[#1e1e1e]",children:[n("span",{className:"text-[10px] font-medium text-[#00a0c4]",children:"Claude"}),r&&n("button",{onClick:r,className:"text-gray-500 hover:text-gray-300 text-[10px] bg-transparent border-none cursor-pointer",children:"Close"})]}),n("div",{ref:a,style:{height:u?void 0:t,flex:u?1:void 0,background:"#1a1a1a",padding:"4px 0",position:"relative",overflow:"hidden"}})]})}const qS=({data:e})=>[{title:e!=null&&e.entity?`${e.entity.name} - CodeYam`:"Entity - CodeYam"},{name:"description",content:"View entity scenarios and screenshots"}];function QS({currentParams:e,nextParams:t,currentUrl:r,nextUrl:s,formMethod:a,defaultShouldRevalidate:o}){return r.pathname===s.pathname&&r.search===s.search?o:!!(e.sha!==t.sha||a)}async function ZS({params:e,request:t,context:r}){const{sha:s}=e;if(!s)throw new Response("Entity SHA is required",{status:400});const o=new URL(t.url).searchParams.get("from"),l=(e["*"]||"").split("/").filter(Boolean),c=l[0]||"scenarios",u=l[1]||null,p=l[2]||null,h=r.analysisQueue,m=h?h.getState():{paused:!1,jobs:[]},[f,y,g,x]=await Promise.all([jn(s),Ye(),ur(),Sg(Se()||process.cwd())]),b=f?await oa(f):null,v=f?await Ed(f.sha):null;let S={importedEntities:[],importingEntities:[]},w=null,C=[];f&&(S=await Ad(f),w=await jd(f),C=await Td(f));const k=!!(f&&C.length>0&&C[0].sha!==f.sha),N=C.length>0?C[0].sha:null,A=!!(C.length>0&&C[0].analyses&&C[0].analyses.length>0),_=f?await Pd(f):!1;return ne({entity:f??void 0,analysis:b??void 0,currentEntityAnalysis:v??void 0,projectSlug:y,from:o,relatedEntities:S,entityCode:w??void 0,hasNewerVersion:k,newestEntitySha:N,newestVersionHasAnalysis:A,fileModifiedSinceEntity:_,history:C,tab:c,scenarioId:u,viewModeFromUrl:p,currentCommit:g,hasAnApiKey:x,queueState:m})}const XS=et(function(){var mn,wr,Nr,Sr,es,ts,ns,zn,rs,ss,as,Bn,Yn,os,Cr;const t=ot(),a=(nd()["*"]||"").split("/").filter(Boolean),o=a[0]||"scenarios",i=a[1]||null,l=a[2]||null,c=t.entity,u=t.analysis,p=t.currentEntityAnalysis,h=p||u,m=t.projectSlug;t.from;const f=t.relatedEntities,y=t.entityCode,g=t.hasNewerVersion,x=t.newestEntitySha,b=t.newestVersionHasAnalysis,v=t.fileModifiedSinceEntity,S=t.history,w=t.currentCommit,C=t.hasAnApiKey,k=t.queueState;(mn=h==null?void 0:h.status)==null||mn.errors;const N=(h==null?void 0:h.scenarios)||[],A=N.filter(me=>{var Me;return!((Me=me.metadata)!=null&&Me.sameAsDefault)}),_=N.filter(me=>{var Me;return(Me=me.metadata)==null?void 0:Me.sameAsDefault}),M=Ft(),$=ye(null);te(()=>{$.current===null&&($.current=window.history.length)},[]);const I=()=>{if(typeof window>"u")return;const me=window.history.state;if(me===null||(me==null?void 0:me.idx)===void 0||(me==null?void 0:me.idx)===0)M("/");else{const Me=window.history.length,tt=$.current;if(tt!==null&&Me>tt){const Ue=Me-tt+1;M(-Ue)}else M(-1)}},R=!!k.currentlyExecuting,P=o,F=(wr=w==null?void 0:w.metadata)==null?void 0:wr.currentRun,Y=!!(F!=null&&F.createdAt)&&!(F!=null&&F.analysisCompletedAt),J=!!(c!=null&&c.sha&&((Nr=F==null?void 0:F.currentEntityShas)!=null&&Nr.includes(c.sha))),O=!!(c!=null&&c.sha&&((es=(Sr=k.currentlyExecuting)==null?void 0:Sr.entityShas)!=null&&es.includes(c.sha))),B=!!(c!=null&&c.sha&&((ts=k.jobs)!=null&&ts.some(me=>{var Me;return(Me=me.entityShas)==null?void 0:Me.includes(c.sha)}))),T=J||O||B,D=T&&((ns=h==null?void 0:h.status)==null?void 0:ns.finishedAt)!=null&&A.length>0&&h.entitySha!==(c==null?void 0:c.sha),E=le(()=>{if(P!=="scenarios")return null;if(i){const me=A.find(Me=>Me.id===i);if(me)return me}return A.length>0&&!T?A[0]:null},[P,i,A,T]),W=((ss=(rs=(zn=E==null?void 0:E.metadata)==null?void 0:zn.executionResult)==null?void 0:rs.error)==null?void 0:ss.message)||((Yn=(Bn=(as=h==null?void 0:h.status)==null?void 0:as.errors)==null?void 0:Bn[0])==null?void 0:Yn.message);Rt({source:E?"scenario-page":"entity-page",entitySha:c==null?void 0:c.sha,scenarioId:E==null?void 0:E.id,analysisId:h==null?void 0:h.id,entityName:c==null?void 0:c.name,entityType:c==null?void 0:c.entityType,scenarioName:E==null?void 0:E.name,errorMessage:W});const[K,Z]=j(()=>l&&l!=="edit"?l:(c==null?void 0:c.entityType)==="library"?"data":"screenshot");te(()=>{l&&l!==K&&l!=="edit"&&Z(l)},[l]);const q=l==="edit",[U,L]=j(!1),[z,V]=j(!1),[re,ue]=j(null),[be,ie]=j(!1),[fe,ce]=j(!1),[Ce,Ae]=j(null),[_e,Q]=j(null),[xe,oe]=j(0),{interactiveServerUrl:se,isStarting:he,isLoading:Te,showIframe:ge,iframeKey:ze,onIframeLoad:Ve}=$n({analysisId:h==null?void 0:h.id,scenarioId:E==null?void 0:E.id,scenarioName:E==null?void 0:E.name,projectSlug:m,enabled:q&&!!E,refreshTrigger:xe}),[it,Le]=j(!1),[lt,Xr]=j(""),[hn,At]=j(!1),[In,Fn]=j(Date.now()),[Dn,vt]=j(!1),[Rn,Lt]=j(!1),wt=Ge(),zt=Ge(),rt=Ge(),Fe=Dt(),Gt=k.jobs.some(me=>{var Me;return(c==null?void 0:c.sha)&&((Me=me.entityShas)==null?void 0:Me.includes(c.sha))||me.type==="analysis"&&me.commitSha===(w==null?void 0:w.sha)&&me.entityShas&&me.entityShas.length===0}),On=T,gr=((os=c==null?void 0:c.metadata)==null?void 0:os.defaultWidth)||((Cr=h==null?void 0:h.metadata)==null?void 0:Cr.defaultWidth)||1440,ct=Math.round(gr*(900/1440));wt.state==="submitting"||wt.state,le(()=>{var me;return!!((me=E==null?void 0:E.metadata)!=null&&me.interactiveExamplePath)},[E]);const{isCompleted:yr}=Wt(m,hn);te(()=>{wt.state==="idle"&&wt.data&&(wt.data.success?setTimeout(()=>{Fn(Date.now()),Fe.revalidate(),At(!1)},1500):wt.data.error&&(At(!1),alert(`Recapture failed: ${wt.data.error}`)))},[wt.state,wt.data,Fe]),te(()=>{hn&&yr&&setTimeout(()=>{Fn(Date.now()),Fe.revalidate(),At(!1)},1500)},[hn,yr,Fe]),te(()=>{zt.state==="idle"&&zt.data&&(zt.data.success?setTimeout(()=>{Fn(Date.now()),Fe.revalidate(),At(!1)},1500):zt.data.error&&(At(!1),alert(`Recapture failed: ${zt.data.error}`)))},[zt.state,zt.data,Fe]);const ja=le(()=>{var tt;if(!c)return"";const me=[];if(me.push(`# Create a New Scenario for "${c.name}"`),me.push(""),me.push(`**Entity**: ${c.name}`),me.push(`**Type**: ${c.entityType}`),c.filePath&&me.push(`**File**: ${c.filePath}`),me.push(""),A.length>0){me.push("## Existing Scenarios");for(const Ue of A)me.push(`- **${Ue.name}**${Ue.description?`: ${Ue.description}`:""}`);me.push("")}const Me=(tt=h==null?void 0:h.metadata)==null?void 0:tt.executionFlows;if(Me&&Me.length>0){me.push("## Execution Flows");const Ue=new Set(A.flatMap(He=>{var st;return((st=He.metadata)==null?void 0:st.coveredFlows)||[]})),Ke=Me.filter(He=>!Ue.has(He.id)),jt=Me.filter(He=>Ue.has(He.id));if(jt.length>0){me.push(`### Covered (${jt.length})`);for(const He of jt)me.push(`- ${He.name}${He.description?`: ${He.description}`:""}`);me.push("")}if(Ke.length>0){me.push(`### Uncovered (${Ke.length}) — gaps to consider`);for(const He of Ke)me.push(`- ${He.name}${He.description?`: ${He.description}`:""}${He.impact==="high"?" **(high impact)**":""}`);me.push("")}}return me.push("## Your Task"),me.push("Ask the user what scenario they would like to create. Offer two options:"),me.push("1. **Describe a scenario** — the user tells you what they want and you create it"),me.push("2. **Analyze gaps** — you review the existing scenarios and execution flows to suggest scenarios that would improve coverage"),me.push(""),me.push("Once you know what scenario to create, use the `codeyam editor register` CLI command to register it. Write the scenario JSON to `.codeyam/tmp/scenario.json` first, then run `codeyam editor register @.codeyam/tmp/scenario.json`."),me.join(`
|
|
531
|
-
`)},[c,A,h]),xr=()=>{Lt(!0)},br=()=>{c&&(g&&x&&x!==c.sha?(M(`/entity/${x}/scenarios`),setTimeout(()=>{rt.submit({entitySha:x,filePath:c.filePath||""},{method:"post",action:"/api/analyze"})},100)):rt.submit({entitySha:c.sha,filePath:c.filePath||""},{method:"post",action:"/api/analyze"}))};te(()=>{rt.state==="idle"&&rt.data&&(rt.data.success?Fe.revalidate():rt.data.error&&alert(`Analysis failed: ${rt.data.error}`))},[rt.state,rt.data,c==null?void 0:c.sha,Fe]),te(()=>{const me=setTimeout(()=>{Fe.revalidate()},500);return()=>clearTimeout(me)},[]),te(()=>{if(Y||On){const me=setInterval(()=>{Fe.revalidate()},3e3);return()=>clearInterval(me)}},[Y,On,Fe]);const Qe=(me,Me)=>me==="scenarios"?`/entity/${c==null?void 0:c.sha}/scenarios`:`/entity/${c==null?void 0:c.sha}/${me}`,ut=(me,Me)=>`/entity/${c==null?void 0:c.sha}/scenarios/${me}/${Me}`,vr=me=>{Z(me),E!=null&&E.id&&(me==="interactive"?M(`/entity/${c==null?void 0:c.sha}/scenarios/${E.id}/fullscreen`,{replace:!0}):M(ut(E.id,me),{replace:!0}))},Pa=async me=>{var Me,tt;if(console.log("[EntityDetail] ===== APPLY CHANGES CALLED =====",{description:me,hasSelectedScenario:!!E,hasAnalysis:!!h}),!E||!h){const Ue="Error: No scenario or analysis available";console.error("[EntityDetail]",Ue),ue(Ue);return}L(!0),ue(null),console.log("[EntityDetail] Applying changes (preview mode)",{description:me,scenarioId:E.id,scenarioName:E.name,currentData:E.data});try{const Ue=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:me,existingScenarios:h.scenarios,scenariosDataStructure:(Me=h.metadata)==null?void 0:Me.scenariosDataStructure,editingMockName:E.name,editingMockData:_e||((tt=E.metadata)==null?void 0:tt.data)})}),Ke=await Ue.json();if(!Ue.ok||!Ke.success)throw new Error(Ke.error||"Failed to generate scenario data");console.log("[EntityDetail] Generated data:",Ke.data),Q(Ke.data);const jt=(h.scenarios||[]).map(at=>at.id===E.id?{...at,metadata:{...at.metadata,data:Ke.data}}:at),He=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:h,scenarios:jt})}),st=await He.json();if(!He.ok||!st.success)throw console.error("[EntityDetail] Temp save failed:",st),new Error(st.error||"Failed to apply preview");if(ue("Generating preview. Capturing screenshot..."),se){console.log("[EntityDetail] Using direct capture from running server",{serverUrl:se});const at=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({serverUrl:se,scenarioId:E.id,projectId:h.projectId,viewportWidth:1440})}),Zt=await at.json();!at.ok||!Zt.success?(console.error("[EntityDetail] Direct capture failed:",Zt),ue("Preview applied. Screenshot capture failed.")):(console.log("[EntityDetail] Direct capture successful"),ue('Preview applied. Click "Save Scenario Data" to persist.'))}else{console.log("[EntityDetail] No server running, using queued recapture");const at=new FormData;at.append("analysisId",h.id||""),at.append("scenarioId",E.id||"");const Zt=await fetch("/api/recapture-scenario",{method:"POST",body:at}),Un=await Zt.json();!Zt.ok||!Un.success?(console.warn("[EntityDetail] Recapture failed:",Un.error),ue("Preview applied. Screenshot recapture failed.")):(console.log("[EntityDetail] Recapture queued:",Un.jobId),ue('Preview applied. Screenshot will update shortly. Click "Save Scenario Data" to persist.'))}oe(at=>at+1),Fe.revalidate()}catch(Ue){console.error("Error applying changes:",Ue),ue(`Error: ${Ue instanceof Error?Ue.message:String(Ue)}`)}finally{L(!1)}},Ta=async(me,Me)=>{var tt;if(!E||!h){ue("Error: No scenario or analysis available");return}V(!0),ue(null),console.log("[EntityDetail] Saving scenario to database",{description:me,saveAsNew:Me});try{const Ue=_e||((tt=E.metadata)==null?void 0:tt.data);let Ke;if(Me){const st={...E,id:`${E.name}-${Date.now()}`,name:`${E.name} (Copy)`,metadata:{...E.metadata,data:Ue},description:me||E.description};Ke=[...h.scenarios||[],st]}else Ke=(h.scenarios||[]).map(st=>st.id===E.id?{...st,metadata:{...st.metadata,data:Ue},description:me||st.description}:st);const jt=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:h,scenarios:Ke})}),He=await jt.json();if(!jt.ok||!He.success)throw new Error(He.error||"Failed to save scenarios");console.log("[EntityDetail] Scenarios saved successfully"),ue(Me?"New scenario created successfully":"Scenario saved successfully"),Q(null),Fe.revalidate()}catch(Ue){console.error("Error saving scenario:",Ue),ue(`Error: ${Ue instanceof Error?Ue.message:String(Ue)}`)}finally{V(!1)}},Ma=()=>{E!=null&&E.id&&(c!=null&&c.sha)&&M(`/entity/${c.sha}/scenarios/${E.id}/dev`)},qt=async()=>{var me;if(!(E!=null&&E.id)){Ae("Cannot delete scenario without ID");return}ie(!0),Ae(null);try{const Me=await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:E.id,screenshotPaths:((me=E.metadata)==null?void 0:me.screenshotPaths)||[]})}),tt=await Me.json();if(!Me.ok||!tt.success)throw new Error(tt.error||"Failed to delete scenario");M(`/entity/${c==null?void 0:c.sha}/scenarios`)}catch(Me){console.error("[EntityDetail] Error deleting scenario:",Me),Ae(Me instanceof Error?Me.message:"Failed to delete scenario"),ce(!1)}finally{ie(!1)}},Qt=h&&c&&h.entitySha!==c.sha,Ln=c?$S(c):!1;return n(Na,{children:d("div",{className:"h-screen bg-white flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-end h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0 flex-1 pb-[14px]",children:[n("button",{onClick:I,className:"no-underline shrink-0 bg-transparent border-none cursor-pointer p-0 flex items-center",title:"Back",children:n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),n("h1",{className:"text-base font-semibold text-black m-0 leading-[20px] shrink-0",children:c==null?void 0:c.name}),n("span",{className:"text-xs text-[#9e9e9e] font-mono font-normal whitespace-nowrap overflow-hidden text-ellipsis min-w-0",title:c==null?void 0:c.filePath,children:c==null?void 0:c.filePath})]}),n("div",{className:"flex items-end gap-8 shrink-0",children:[{id:"scenarios",label:"Scenarios",count:A.length},{id:"related",label:"Related Entities",count:f.importedEntities.length+f.importingEntities.length},{id:"code",label:"Code"},{id:"data",label:"Data Structure"},{id:"history",label:"History"}].map(me=>n(ke,{to:Qe(me.id),className:`relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline ${P===me.id?"font-medium border-b-2":"font-normal hover:text-gray-700"}`,style:P===me.id?{color:"#005C75",borderColor:"#005C75"}:{color:"#9ca3af"},children:d("span",{className:"flex items-center gap-2",children:[me.label,me.count!==void 0&&me.count>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${P===me.id?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:me.count})]})},me.id))})]})}),(g||Qt&&!p||v&&Ln)&&!T&&!Gt&&n("div",{className:"border-b border-[#FEE585] px-6 py-3 flex items-center justify-center shrink-0",style:{backgroundColor:"#FEE585"},children:d("div",{className:"flex items-center gap-3",children:[n("svg",{className:"w-4 h-4",style:{color:"#714A25"},fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})}),n("span",{className:"text-sm font-semibold",style:{color:"#714A25"},children:Qt&&!g?"This entity version has not been analyzed yet.":"This entity has been recently changed."}),n("span",{className:"text-sm",style:{color:"#714A25"},children:g?"You are viewing an older version. A newer version is available.":Qt?"Showing scenarios from a previous version.":"The file on disk has been modified since this entity was analyzed."}),g&&x&&b?n(ke,{to:`/entity/${x}/scenarios`,className:"px-3 py-1.5 text-white rounded text-[11px] font-medium font-mono cursor-pointer transition-colors no-underline",style:{backgroundColor:"#C69538"},onMouseEnter:me=>{me.currentTarget.style.backgroundColor="#B58530"},onMouseLeave:me=>{me.currentTarget.style.backgroundColor="#C69538"},children:"View Latest Version"}):n("button",{onClick:br,disabled:rt.state!=="idle",className:"px-3 py-1.5 text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer transition-colors disabled:bg-gray-400 disabled:cursor-not-allowed",style:{backgroundColor:"#C69538"},onMouseEnter:me=>{rt.state==="idle"&&(me.currentTarget.style.backgroundColor="#B58530")},onMouseLeave:me=>{rt.state==="idle"&&(me.currentTarget.style.backgroundColor="#C69538")},children:"Re-analyze"})]})}),d("div",{className:"flex grow items-stretch justify-center gap-0 min-h-0",children:[P==="scenarios"&&d(we,{children:[q&&E?n(FS,{scenario:E,entitySha:(c==null?void 0:c.sha)||"",onApply:Pa,onSave:Ta,onEditMockData:Ma,onDelete:qt,isApplying:U,isSaving:z,saveMessage:re,showDeleteConfirm:fe,onShowDeleteConfirm:ce,isDeleting:be,deleteError:Ce}):n(IS,{scenarios:A,hiddenScenarios:_,analysis:h,selectedScenario:E,entitySha:(c==null?void 0:c.sha)||"",cacheBuster:In,activeTab:P,entityType:c==null?void 0:c.entityType,entity:c,queueState:k,processIsRunning:R,isEntityAnalyzing:T,areScenariosStale:D,viewMode:K,setViewMode:vr,isBreakdownView:i==="breakdown",onCreateScenario:xr}),Rn?d("div",{className:"flex flex-col flex-1 min-h-0",children:[d("div",{className:"bg-[#f5f5f5] border-b border-gray-200 px-4 py-2 flex items-center justify-between shrink-0",children:[n("span",{className:"text-xs font-semibold text-[#343434]",children:"Create New Scenario"}),n("button",{onClick:()=>Lt(!1),className:"px-3 py-1.5 bg-white text-[#343434] rounded text-[11px] font-medium font-mono border border-gray-300 cursor-pointer hover:bg-gray-50 transition-colors",children:"Close"})]}),n("div",{className:"flex-1 min-h-0",children:n(cn,{prompt:ja,height:"100%",hideHeader:!0})})]}):i==="breakdown"?n(RS,{analysis:h??null,entitySha:(c==null?void 0:c.sha)||"",onCreateScenario:xr}):q&&E?n(Sa,{scenarioId:E.id||E.name,scenarioName:E.name,iframeUrl:se,isStarting:he,isLoading:Te,showIframe:ge,iframeKey:ze,onIframeLoad:Ve,projectSlug:m,defaultWidth:1440,defaultHeight:900}):d("div",{className:"flex flex-col flex-1 min-h-0",children:[E&&d("div",{className:"bg-[#f5f5f5] border-b border-gray-200 px-4 py-2 flex items-center justify-between shrink-0",children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-xs font-semibold text-[#343434]",children:E.name}),d("span",{className:"text-xs text-[#9e9e9e] font-normal",children:[gr," × ",ct]})]}),d("div",{className:"flex items-center gap-2",children:[n(ke,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${E.id}/edit`,className:"px-3 py-1.5 bg-white text-[#343434] rounded text-[11px] font-medium font-mono border border-gray-300 cursor-pointer hover:bg-gray-50 transition-colors no-underline flex items-center",title:"Edit Scenario Data",children:"Edit Scenario"}),d("button",{className:"px-3 py-1.5 bg-[#022A35] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#011a21] transition-colors flex items-center gap-1.5",onClick:()=>{alert("Download functionality coming soon")},title:"Download",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:n("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"})}),"Download"]}),d(ke,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${E.id}/dev`,className:"px-3 py-1.5 bg-[#005c75] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#004a5e] transition-colors no-underline flex items-center gap-1.5",title:"Dev Mode - Live preview with data editor and code sync",children:[d("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[n("polyline",{points:"16 18 22 12 16 6"}),n("polyline",{points:"8 6 2 12 8 18"})]}),"Dev Mode"]}),d(ke,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${E.id}/fullscreen`,className:"px-3 py-1.5 bg-[#005c75] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#004a5e] transition-colors no-underline flex items-center gap-1.5",title:"Interactive Mode",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"currentColor",children:n("path",{d:"M8 5v14l11-7z"})}),"Interactive Mode"]})]})]}),n(ep,{selectedScenario:E,analysis:h,entity:c,viewMode:K,cacheBuster:In,hasScenarios:A.length>0,isAnalyzing:On,projectSlug:m,hasAnApiKey:C,processIsRunning:R,queueState:k})]})]}),P==="related"&&n(zS,{relatedEntities:f}),P==="data"&&n(WS,{entity:c,analysis:h,scenarios:A,onAnalyze:br}),P==="code"&&n(GS,{entity:c,entityCode:y}),P==="history"&&n(OS,{entity:c,history:S})]}),Dn&&m&&n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-1000 p-5",onClick:()=>vt(!1),children:d("div",{className:"bg-white rounded-xl max-w-[1200px] w-full max-h-[90vh] flex flex-col shadow-[0_20px_60px_rgba(0,0,0,0.3)]",onClick:me=>me.stopPropagation(),children:[d("div",{className:"px-6 py-6 border-b border-gray-200 flex justify-between items-center",children:[n("h2",{className:"m-0 text-xl font-semibold text-gray-900",children:"Analysis Logs"}),n("button",{className:"bg-transparent border-none text-[28px] text-gray-500 cursor-pointer p-0 w-8 h-8 flex items-center justify-center rounded transition-colors hover:bg-gray-100",onClick:()=>vt(!1),children:"×"})]}),n("div",{className:"flex-1 overflow-hidden",children:n(an,{projectSlug:m,onClose:()=>vt(!1)})})]})})]})})}),eC=Object.freeze(Object.defineProperty({__proto__:null,default:XS,loader:ZS,meta:qS,shouldRevalidate:QS},Symbol.toStringTag,{value:"Module"}));async function tC(e){const{entityShas:t,filePaths:r,context:s,scenarioCount:a,queue:o}=e;console.log(`[analyzeEntities] Starting analysis for ${t.length} entities`);try{console.log("[analyzeEntities] Initializing environment..."),await Je();const i=Se();if(!i)throw new Error("Project root not found");console.log(`[analyzeEntities] Project root: ${i}`);const l=ee.join(i,".codeyam","config.json"),c=JSON.parse(await Pe.readFile(l,"utf8")),{projectSlug:u,branchId:p}=c;if(!u||!p)throw new Error("Invalid project configuration - missing projectSlug or branchId");console.log(`[analyzeEntities] Project: ${u}, Branch: ${p}`);const h=Gr(u);try{await Pe.writeFile(h,"","utf8"),console.log("[analyzeEntities] Cleared log file")}catch{}const{project:m,branch:f}=await Re(u);console.log("[analyzeEntities] Loading entities to determine file paths and names...");const y=await Xe({shas:t});if(!y||y.length===0)throw new Error(`No entities found for SHAs: ${t.join(", ")}`);let g=r;if((!g||g.length===0)&&(g=[...new Set(y.map(v=>v.filePath).filter(v=>!!v))],console.log(`[analyzeEntities] Found ${g.length} unique files`)),!g||g.length===0)throw new Error("No file paths available for analysis");console.log(`[analyzeEntities] Creating fake commit for ${g.length} files...`);const x=await xg(m,f,g);console.log(`[analyzeEntities] Created commit ${x.sha.substring(0,8)}`),console.log("[analyzeEntities] Initializing progress tracking..."),await sn({commitSha:x.sha,runStatusUpdate:{queuedAt:new Date().toISOString(),entityCount:t.length,analysesCompleted:0,capturesCompleted:0,createdAt:new Date().toISOString()},updateCallback:v=>{if(!v)return;const S=v.currentRun;if(S&&S.id&&S.archivedAt)return;S&&(S.analysesCompleted&&S.analysesCompleted>0||S.capturesCompleted&&S.capturesCompleted>0)&&Tg(v)}}),console.log("[analyzeEntities] Enqueueing analysis job...");const{jobId:b}=o.enqueue({type:"analysis",commitSha:x.sha,projectSlug:u,filePaths:g,entityShas:t,entityNames:y.map(v=>v.name),...s?{context:s}:{},...a?{scenarioCount:a}:{}});return console.log(`[analyzeEntities] Job queued with ID: ${b} for ${t.length} entities`),{jobId:b}}catch(i){throw console.error("[analyzeEntities] Failed:",i),i}}async function nC({request:e,context:t}){if(e.method!=="POST")return ne({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Vt()),!r)return ne({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("entitySha"),o=s.get("entityShas"),i=s.get("filePath"),l=s.get("context"),c=s.get("scenarioCount");let u;if(o)u=o.split(",").filter(Boolean);else if(a)u=[a];else return ne({error:"Missing required field: entitySha or entityShas"},{status:400});if(u.length===0)return ne({error:"No entities to analyze"},{status:400});console.log(`[API] Starting analysis for ${u.length} entity(ies)`);const p=await Xe({shas:u}),m=[...new Set(p.map(y=>y.filePath).filter(y=>!!y))].length,{jobId:f}=await tC({entityShas:u,filePaths:i?[i]:void 0,context:l||void 0,scenarioCount:c?parseInt(c,10):void 0,queue:r});return console.log(`[API] Analysis queued with job ID: ${f}`),ne({success:!0,message:`Analysis queued for ${u.length} entity(ies)`,entityCount:u.length,fileCount:m,jobId:f})}catch(s){return console.error("[API] Error starting analysis:",s),ne({error:"Failed to start analysis",details:s.message},{status:500})}}const rC=Object.freeze(Object.defineProperty({__proto__:null,action:nC},Symbol.toStringTag,{value:"Module"}));function sC(e){switch(e){case"queued":return{text:"Queued",bgColor:"#cbf3fa",textColor:"#3098b4",icon:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#3098b4",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("polyline",{points:"12,6 12,12 16,14"})]})};case"analyzing":return{text:"Analyzing...",bgColor:"#ffdbf6",textColor:"#ff2ab5",icon:d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]})};case"up-to-date":return{text:"Up to date",bgColor:"#e8ffe6",textColor:"#00925d",icon:null};case"incomplete":return{text:"Incomplete",bgColor:"#fdf9c9",textColor:"#c69538",icon:null};case"out-of-date":return{text:"Out of date",bgColor:"#fdf9c9",textColor:"#c69538",icon:null};case"not-analyzed":return{text:"Not analyzed",bgColor:"#f9f9f9",textColor:"#646464",icon:null}}}function tp(e){if(!e)return"Never";const t=new Date(e),r=new Date;if(t.getDate()===r.getDate()&&t.getMonth()===r.getMonth()&&t.getFullYear()===r.getFullYear()){const a=t.getHours(),o=t.getMinutes(),i=a>=12?"pm":"am",l=a%12||12,c=o.toString().padStart(2,"0");return`Today, ${l}:${c} ${i}`}return t.toLocaleString("en-US",{month:"numeric",day:"numeric",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!0})}function Nt(e,t=[],r=!1){var p,h;if(t.some(m=>{var f,y;return!!((f=m.entityShas)!=null&&f.includes(e.sha)||(y=m.entities)!=null&&y.some(g=>g.sha===e.sha))}))return r?"analyzing":"queued";if(!e.analyses||e.analyses.length===0)return"not-analyzed";const a=e.analyses[0];if(!(((p=a.status)==null?void 0:p.scenarios)&&a.status.scenarios.length>0&&a.status.scenarios.some(m=>m.screenshotFinishedAt||m.finishedAt))||a.entitySha!==e.sha)return"not-analyzed";const i=a.createdAt?new Date(a.createdAt).getTime():0,l=(h=e.metadata)!=null&&h.editedAt?new Date(e.metadata.editedAt).getTime():0,c=a.scenarios||[],u=c.some(m=>{var f,y,g;return((y=(f=m.metadata)==null?void 0:f.screenshotPaths)==null?void 0:y[0])||((g=m.metadata)==null?void 0:g.executionResult)});return i>=l?c.length>0&&u?c.every(f=>{var y,g,x;return((g=(y=f.metadata)==null?void 0:y.screenshotPaths)==null?void 0:g[0])||((x=f.metadata)==null?void 0:x.executionResult)})?"up-to-date":"incomplete":c.length>0?"incomplete":"not-analyzed":"out-of-date"}const aC=()=>[{title:"Simulations - CodeYam"},{name:"description",content:"A visual gallery of your recently captured component screenshots"}];async function oC({request:e,context:t}){try{const r=t.analysisQueue,s=r?r.getState():{paused:!1,jobs:[]},a=await Mn();return ne({entities:a||[],queueState:s})}catch(r){return console.error("Failed to load simulations:",r),ne({entities:[],queueState:{paused:!1,jobs:[]},error:"Failed to load simulations"})}}const iC=et(function(){const t=ot(),r=t.entities,s=t.queueState;Rt({source:"simulations-page"});const[a,o]=j(""),[i,l]=j("visual"),c=le(()=>{const g=[];return r.forEach(x=>{var v;const b=(v=x.analyses)==null?void 0:v[0];if(b!=null&&b.scenarios){const S=b.scenarios.filter(w=>{var C;return!((C=w.metadata)!=null&&C.sameAsDefault)}).map(w=>{var $,I,R,P,F;const C=(I=($=w.metadata)==null?void 0:$.screenshotPaths)==null?void 0:I[0],k=(R=w.metadata)==null?void 0:R.noScreenshotSaved,N=C&&!k,A=(F=(P=b.status)==null?void 0:P.scenarios)==null?void 0:F.find(Y=>Y.name===w.name),_=A&&A.screenshotStartedAt&&!A.screenshotFinishedAt;let M;return N?M="completed":_?M="capturing":M="error",{scenarioName:w.name,scenarioDescription:w.description||"",screenshotPath:C||"",scenarioId:w.id,state:M}}).filter(w=>w.state==="completed"||w.state==="capturing");S.length>0&&g.push({entity:x,screenshots:S,createdAt:b.createdAt||""})}}),g.sort((x,b)=>new Date(b.createdAt).getTime()-new Date(x.createdAt).getTime()),g},[r]),u=le(()=>r.filter(g=>{var v,S;const x=(v=g.analyses)==null?void 0:v[0];return!((S=x==null?void 0:x.scenarios)==null?void 0:S.some(w=>{var C,k;return(k=(C=w.metadata)==null?void 0:C.screenshotPaths)==null?void 0:k[0]}))}),[r]),p=le(()=>c.filter(({entity:g})=>{const x=!a||g.name.toLowerCase().includes(a.toLowerCase()),b=i==="all"||g.entityType===i;return x&&b}),[c,a,i]),h=le(()=>u.filter(g=>{const x=!a||g.name.toLowerCase().includes(a.toLowerCase()),b=i==="all"||g.entityType===i;return x&&b}),[u,a,i]),m=ae(g=>{o(g.target.value)},[]),f=ae(g=>{l(g.target.value)},[]),y=c.length>0;return n("div",{className:"bg-[#F8F7F6] min-h-screen overflow-y-auto",children:d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Simulations"}),n("p",{className:"text-[15px] text-gray-500",children:"A visual gallery of your recently captured simulations."})]}),!y&&n("div",{className:"bg-[#D1F3F9] border border-[#A5E8F0] rounded-lg p-4 mb-6",children:d("p",{className:"text-sm text-gray-700 m-0",children:["This page will display a visual gallery of your recently captured component simulations."," ",n("strong",{children:"Start by analyzing your first component below."})]})}),d("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Filters"}),d("div",{className:"flex gap-3",children:[d("div",{className:"relative",children:[d("select",{className:"appearance-none bg-gray-50 border border-gray-200 rounded px-3 pr-8 text-[13px] h-[39px] cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",value:i,onChange:f,children:[n("option",{value:"all",children:"All Types"}),n("option",{value:"visual",children:"Visual"}),n("option",{value:"library",children:"Library"})]}),n(Ct,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"flex-1 relative",children:[n(Hr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",placeholder:"Search component",className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-3 text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors",value:a,onChange:m})]})]})]}),y&&p.length>0&&n("div",{className:"mb-2",children:d("div",{className:"flex items-center py-3",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:p.length})," ",p.length===1?"entity":"entities"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:p.reduce((g,{screenshots:x})=>g+x.length,0)})," ","scenarios"]})]})}),d("div",{className:"flex flex-col gap-3",children:[y&&(p.length===0?n("div",{className:"bg-white border border-gray-200 rounded-lg p-8 text-center text-gray-500",children:"No simulations match your filters."}):n(we,{children:p.map(({entity:g,screenshots:x})=>n(lC,{entity:g,screenshots:x,queueJobs:(s==null?void 0:s.jobs)||[]},g.sha))})),!y&&(h.length===0?n("div",{className:"bg-white border border-gray-200 rounded-b-lg p-8 text-center text-gray-500",children:"No components found matching your filters."}):h.map(g=>n(cC,{entity:g},g.sha)))]})]})})});function lC({entity:e,screenshots:t,queueJobs:r}){var f,y,g;const s=Ft(),a=Ge(),[o,i]=j(!1),l=t.length||(((g=(y=(f=e.analyses)==null?void 0:f[0])==null?void 0:y.scenarios)==null?void 0:g.length)??0),c=x=>{s(`/entity/${e.sha}/scenarios/${x}?from=simulations`)},u=()=>{i(!0),a.submit({entitySha:e.sha,filePath:e.filePath||""},{method:"post",action:"/api/analyze"})};te(()=>{a.state==="idle"&&o&&i(!1)},[a.state,o]);const p=Nt(e,r),h=sC(p),m=p==="out-of-date";return n("div",{className:"rounded-[8px]",style:{backgroundColor:"#ffffff",border:"1px solid #e1e1e1"},children:d("div",{className:"flex flex-col",children:[d("div",{className:"flex items-center px-[15px] py-[15px]",children:[n("div",{className:"flex-shrink-0",children:n(gt,{type:e.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col flex-shrink-0",style:{marginLeft:"15px",gap:"4px"},children:[d("div",{className:"flex items-center gap-[5px]",children:[d(ke,{to:`/entity/${e.sha}`,className:"hover:underline cursor-pointer",title:e.name,style:{fontSize:"14px",lineHeight:"18px",color:"#343434",fontWeight:500},children:[e.name," (",l,")"]}),n("div",{className:"flex items-center justify-center px-2 rounded",style:{height:"20px",backgroundColor:h.bgColor,color:h.textColor,fontSize:"12px",lineHeight:"16px",fontWeight:400},children:h.text})]}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#b0b0b0",fontWeight:400},className:"font-mono",title:e.filePath,children:e.filePath})]}),n("div",{className:"flex-1"}),d("div",{className:"flex-shrink-0 flex items-center gap-2",children:[m&&n(we,{children:o||a.state!=="idle"?d("div",{className:"px-2 py-1 bg-pink-100 rounded flex items-center gap-1.5",children:[n(Mt,{size:14,className:"animate-spin",style:{color:"#be185d"}}),n("span",{style:{color:"#be185d",fontSize:"10px",lineHeight:"20px",fontWeight:600},children:"Analyzing..."})]}):n("button",{onClick:u,className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#005c75",color:"#ffffff",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:x=>{x.currentTarget.style.backgroundColor="#004d5e"},onMouseLeave:x=>{x.currentTarget.style.backgroundColor="#005c75"},children:"Re-analyze"})}),n("button",{onClick:()=>void s(`/entity/${e.sha}/logs`),className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:x=>{x.currentTarget.style.backgroundColor="#d0dfe3"},onMouseLeave:x=>{x.currentTarget.style.backgroundColor="#e0e9ec"},children:"View Logs"})]})]}),n("div",{className:"border-t border-gray-200"}),n("div",{className:"flex gap-2.5 overflow-x-auto pb-3 px-[15px] pt-3",style:{paddingLeft:"47px"},children:t.length>0?t.map(x=>d("div",{className:"shrink-0 flex flex-col gap-2",children:[n("button",{onClick:()=>c(x.scenarioId||""),className:"block cursor-pointer bg-transparent border-none p-0",children:n("div",{className:"w-36 h-24 rounded-md border overflow-hidden flex items-center justify-center transition-all",style:{"--hover-border":"#005C75",backgroundColor:x.state==="capturing"?"#f9f9f9":"#f3f4f6",borderColor:x.state==="capturing"?"#efefef":"#d1d5db"},onMouseEnter:b=>{x.state==="completed"&&(b.currentTarget.style.borderColor="#005C75",b.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.15)")},onMouseLeave:b=>{b.currentTarget.style.borderColor=x.state==="capturing"?"#efefef":"#d1d5db",b.currentTarget.style.boxShadow="none"},children:x.state==="completed"?n(dt,{screenshotPath:x.screenshotPath,alt:x.scenarioName,className:"max-w-full max-h-full object-contain"}):x.state==="capturing"?n(Ii,{size:"medium"}):null})}),d("div",{className:"relative group",children:[n("div",{className:"text-left text-xs text-gray-600 cursor-default",style:{fontSize:"11px",lineHeight:"14px",maxWidth:"144px",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:x.scenarioName}),n("div",{className:"fixed hidden group-hover:block pointer-events-none",style:{zIndex:1e4,transform:"translateY(8px)"},children:d("div",{className:"bg-gray-100 text-gray-800 text-xs rounded-lg px-3 py-2 shadow-lg max-w-xs border border-gray-200",children:[x.scenarioName,x.scenarioDescription&&d(we,{children:[": ",x.scenarioDescription]}),n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-100 border-l border-t border-gray-200 transform rotate-45"})]})})]})]},x.scenarioId)):n("div",{className:"text-xs text-gray-400 py-4",children:"No screenshots available"})})]})})}function cC({entity:e}){const t=Ge(),[r,s]=j(!1),a=()=>{s(!0),t.submit({entitySha:e.sha,filePath:e.filePath||""},{method:"post",action:"/api/analyze"})};return te(()=>{t.state==="idle"&&r&&s(!1)},[t.state,r]),n("div",{className:"bg-white rounded hover:bg-gray-100 transition-colors cursor-pointer border-b border-[#e1e1e1]",onClick:a,children:d("div",{className:"px-5 py-4 flex items-center",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n(gt,{type:e.entityType}),d("div",{className:"min-w-0",children:[d("div",{className:"flex items-center gap-3 mb-0.5",children:[n(ke,{to:`/entity/${e.sha}`,className:"text-sm font-medium text-gray-900 no-underline",children:e.name}),n("span",{className:"text-[10px] font-semibold px-1 py-0.5 rounded",style:{color:e.entityType==="visual"?"#7c3aed":e.entityType==="library"?"#0DBFE9":e.entityType==="type"?"#dc2626":e.entityType==="data"?"#2563eb":e.entityType==="index"?"#ea580c":e.entityType==="functionCall"?"#7c3aed":e.entityType==="class"?"#059669":e.entityType==="method"?"#0891b2":"#6b7280",backgroundColor:e.entityType==="visual"?"#f3e8ff":e.entityType==="library"?"#cffafe":e.entityType==="type"?"#fee2e2":e.entityType==="data"?"#dbeafe":e.entityType==="index"?"#ffedd5":e.entityType==="functionCall"?"#f3e8ff":e.entityType==="class"?"#d1fae5":e.entityType==="method"?"#cffafe":"#f3f4f6"},children:e.entityType?e.entityType.toUpperCase():"UNKNOWN"})]}),n("div",{className:"text-xs text-gray-400 truncate",children:e.filePath})]})]}),n("div",{className:"w-32 flex justify-center",children:n("span",{className:"text-[10px] text-gray-500 bg-gray-100 px-2 py-1 rounded",children:"Not analyzed"})}),n("div",{className:"w-32 text-center text-[10px] text-gray-500",children:tp(e.createdAt||null)}),n("div",{className:"w-24 flex justify-end",children:r||t.state!=="idle"?d("div",{className:"px-2 py-1 bg-pink-100 rounded text-xs text-pink-700 font-semibold flex items-center gap-1.5",children:[n(Mt,{size:14,className:"animate-spin"}),"Analyzing..."]}):n("button",{onClick:a,className:"bg-[#e0e9ec] text-[#005c75] px-4 py-1.5 rounded text-xs font-medium hover:bg-[#d0dde1] transition-colors cursor-pointer",children:"Analyze"})})]})})}const dC=Object.freeze(Object.defineProperty({__proto__:null,default:iC,loader:oC,meta:aC},Symbol.toStringTag,{value:"Module"}));function uC({request:e,context:t}){const r=t.dbNotifier||ft;if(!r)return console.error("[SSE] ERROR: dbNotifier not found in context or global!"),new Response("Server configuration error",{status:500});r.start().catch(()=>{});const s=new ReadableStream({start(a){const o=new TextEncoder;a.enqueue(o.encode(`data: ${JSON.stringify({type:"connected"})}
|
|
532
|
-
|
|
533
|
-
`)),Math.random().toString(36).substring(7);let i=!1;const l=()=>{if(!i){i=!0,r.off("change",c),clearInterval(u);try{a.close()}catch{}}},c=p=>{try{a.enqueue(o.encode(`data: ${JSON.stringify({type:"db-change",changeType:p.type,timestamp:p.timestamp})}
|
|
534
|
-
|
|
535
|
-
`))}catch{l()}};r.on("change",c);const u=setInterval(()=>{try{a.enqueue(o.encode(`data: ${JSON.stringify({type:"keepalive"})}
|
|
536
|
-
|
|
537
|
-
`))}catch{l()}},3e4);e.signal.addEventListener("abort",l)}});return new Response(s,{headers:{"Content-Type":"text/event-stream","Cache-Control":"no-cache",Connection:"keep-alive"}})}const pC=Object.freeze(Object.defineProperty({__proto__:null,loader:uC},Symbol.toStringTag,{value:"Module"}));function hC(){return new Response(JSON.stringify({status:"ok",version:ri,message:"CodeYam Remix server is running"}),{status:200,headers:{"Content-Type":"application/json"}})}const mC=Object.freeze(Object.defineProperty({__proto__:null,loader:hC},Symbol.toStringTag,{value:"Module"}));function Ri(e){const t=/^---\n([\s\S]*?)\n---\n?([\s\S]*)$/,r=e.match(t);if(!r)return{frontmatter:{},body:e};const s=r[1],a=r[2],o={},i=s.match(/paths:\s*\n((?:\s+-\s+[^\n]+\n?)*)/),l=s.match(/paths:\s*\[([^\]]*)\]/);i&&i[1].trim()?o.paths=i[1].split(`
|
|
538
|
-
`).filter(u=>u.trim().startsWith("-")).map(u=>u.replace(/^\s*-\s*/,"").replace(/['"]/g,"").trim()).filter(Boolean):l&&(o.paths=l[1].split(",").map(u=>u.replace(/['"]/g,"").trim()).filter(Boolean));const c=s.match(/^category:\s*(.+)$/m);return c&&(o.category=c[1].replace(/['"]/g,"").trim()),{frontmatter:o,body:a}}async function Ea(e,t=""){const r=[];try{const s=await Pe.readdir(e,{withFileTypes:!0});for(const a of s){const o=t?`${t}/${a.name}`:a.name;if(a.isDirectory()){const i=await Ea(ee.join(e,a.name),o);r.push(...i)}else a.isFile()&&a.name.endsWith(".md")&&r.push(o)}}catch{}return r}async function Zr(e){const t=await Ea(e),r=[];for(const s of t){const a=ee.join(e,s);try{const o=await Pe.readFile(a,"utf-8"),{frontmatter:i,body:l}=Ri(o);r.push({filePath:s,absolutePath:a,frontmatter:i,body:l})}catch{}}return r}function np(e){const t=ee.posix.dirname(e.filePath);return!t||t==="."?null:`${t}/**`}function rp(e,t){if(t.frontmatter.paths&&t.frontmatter.paths.length>0)return t.frontmatter.paths.some(s=>wo(e,s,{matchBase:!0}));const r=np(t);return r?wo(e,r,{matchBase:!0}):!1}function fC(e,t){return(!e.frontmatter.paths||e.frontmatter.paths.length===0)&&!np(e)?[]:t.filter(r=>rp(r,e))}const gC=new Set(["node_modules",".git","dist",".codeyam",".claude","build","coverage"]);async function Oi(e){const t=[];async function r(s,a){try{const o=await je.readdir(s,{withFileTypes:!0});for(const i of o){const l=H.join(s,i.name),c=a?`${a}/${i.name}`:i.name;i.isDirectory()&&gC.has(i.name)||(i.isDirectory()?await r(l,c):i.isFile()&&t.push(c))}}catch{}}return await r(e,""),t}const yC="codeyam-rule-state.json",po=1;function sp(e){const t=e.replace(/^category:\s*.+$\n?/m,"");return lr.createHash("sha256").update(t).digest("hex")}function ap(e){return ee.join(e,".claude",yC)}async function op(e){const t=ap(e);try{const r=await Pe.readFile(t,"utf-8"),s=JSON.parse(r);return s.version!==po?(console.warn(`[ruleState] Unknown version ${s.version}, using empty state`),{version:po,rules:{}}):s}catch{return{version:po,rules:{}}}}async function ip(e,t){const r=ap(e),s=ee.dirname(r);await Pe.mkdir(s,{recursive:!0}),await Pe.writeFile(r,JSON.stringify(t,null,2)+`
|
|
539
|
-
`,"utf-8")}async function Li(e,t){const r=await op(e),s=new Set(t.map(a=>a.filePath));for(const a of Object.keys(r.rules))s.has(a)||delete r.rules[a];for(const a of t){const o=await Pe.readFile(a.absolutePath,"utf-8"),i=sp(o),l=r.rules[a.filePath];l?l.contentHash!==i&&(r.rules[a.filePath]={...l,contentHash:i,reviewed:!1}):r.rules[a.filePath]={contentHash:i,reviewed:!1}}return await ip(e,r),r}async function kc(e,t,r,s){const a=await op(e);if(r){const o=ee.join(e,".claude","rules"),i=ee.join(o,t),l=await Pe.readFile(i,"utf-8"),c=sp(l);a.rules[t]?(a.rules[t].reviewed=!0,a.rules[t].contentHash=c):a.rules[t]={contentHash:c,reviewed:!0}}else a.rules[t]&&(a.rules[t].reviewed=!1);await ip(e,a)}function zi(e,t){var r;return((r=e.rules[t])==null?void 0:r.reviewed)??!1}async function lp(e,t=""){const r=[],s=await Pe.readdir(e,{withFileTypes:!0});for(const a of s){const o=t?`${t}/${a.name}`:a.name;a.isDirectory()?r.push(...await lp(ee.join(e,a.name),o)):a.name.endsWith(".md")&&r.push(o)}return r}function Ks(e){if(!e||e==="(diff not available)")return!1;const t=e.split(`
|
|
540
|
-
`).filter(s=>!(!s.startsWith("+")&&!s.startsWith("-")||s.startsWith("+++")||s.startsWith("---"))).map(s=>s.substring(1).trim());if(t.length===0)return!1;const r=/^(category:\s*\w+)$/;return t.every(s=>r.test(s))}async function xC({request:e}){const t=Se();if(!t)return Response.json({error:"Project root not found"},{status:500});const r=new URL(e.url),s=r.searchParams.get("action"),a=ee.join(t,".claude","rules");if(s==="recent-changes")return vC(t,a);if(s==="reviewed-status")return NC(t,a);if(s==="audit")return SC(t,a);if(s==="source-files")return CC(t);if(s==="rule-coverage")return kC(t,a);if(s==="rule-diff"){const o=r.searchParams.get("filePath");return o?wC(t,o):Response.json({error:"Missing required parameter: filePath"},{status:400})}if(s==="rules-for-path"){const o=r.searchParams.get("path");return o?_C(a,o):Response.json({error:"Missing required parameter: path"},{status:400})}try{const o=await Ea(a),i=[];for(const p of o){const h=ee.join(a,p);try{const m=await Pe.readFile(h,"utf-8"),f=await Pe.stat(h),{frontmatter:y,body:g}=Ri(m);i.push({filePath:p,content:m,frontmatter:y,body:g,lastModified:f.mtime.toISOString()})}catch{}}i.sort((p,h)=>new Date(h.lastModified).getTime()-new Date(p.lastModified).getTime());let l=i.length>0;if(!l)try{await Pe.access(ee.join(t,".claude","codeyam-rule-state.json")),l=!0}catch{}const c=await Zr(a),u={};if(c.length>0){const p=await Li(t,c);for(const h of c)u[h.filePath]=zi(p,h.filePath)}return Response.json({memories:i,memoryInitialized:l,reviewedStatus:u})}catch(o){return console.error("[API] Error loading memories:",o),Response.json({error:"Failed to load memories",details:o instanceof Error?o.message:String(o),memoryInitialized:!1},{status:500})}}async function bC(e,t){const r=[];try{const s=t("git status --porcelain -- .claude/rules/ 2>/dev/null || true",{cwd:e,encoding:"utf-8"});for(const a of s.split(`
|
|
541
|
-
`).filter(Boolean)){const o=a.substring(0,2);let i=a.substring(3);if(i.includes(" -> ")&&(i=i.split(" -> ")[1]),!i.startsWith(".claude/rules/"))continue;const l=o[0],c=o[1];let u=[i];if(i.endsWith("/")&&l==="?"){const p=ee.join(e,i);try{u=(await lp(p)).map(m=>i+m)}catch{continue}}for(const p of u){if(p.endsWith("/"))continue;const h=p.replace(".claude/rules/","");let m="modified";l==="A"||l==="?"?m="added":l==="D"||c==="D"?m="deleted":(l==="M"||c==="M")&&(m="modified");let f="";try{if(m==="deleted")f=t(`git diff HEAD -- "${p}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});else if(m==="added"&&l==="?"){const y=`${e}/${p}`;try{const g=await Pe.readFile(y,"utf-8");f=`diff --git a/${p} b/${p}
|
|
542
|
-
new file mode 100644
|
|
543
|
-
--- /dev/null
|
|
544
|
-
+++ b/${p}
|
|
545
|
-
@@ -0,0 +1,${g.split(`
|
|
546
|
-
`).length} @@
|
|
547
|
-
${g.split(`
|
|
548
|
-
`).map(x=>"+"+x).join(`
|
|
549
|
-
`)}`}catch{f="(content not available)"}}else f=t(`git diff HEAD -- "${p}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});f.length>5e3&&(f=f.substring(0,5e3)+`
|
|
550
|
-
... (truncated)`)}catch{f="(diff not available)"}m==="modified"&&Ks(f)||r.push({filePath:h,changeType:m,diff:f})}}}catch{}return r}async function vC(e,t){try{const{execSync:r}=await import("child_process"),s=[],a=await Zr(t),o={};if(a.length>0){const p=await Li(e,a);for(const h of a)o[h.filePath]=zi(p,h.filePath)}const l=(await bC(e,r)).filter(p=>!o[p.filePath]);l.length>0&&s.push({commitHash:"uncommitted",date:new Date().toISOString(),message:"Uncommitted changes",files:l});const u=r('git log --format="%H|%aI|%s" --since="60 days ago" -- .claude/rules/ 2>/dev/null || true',{cwd:e,encoding:"utf-8",maxBuffer:10*1024*1024}).split(`
|
|
551
|
-
`).filter(Boolean).slice(0,20);for(const p of u){const[h,m,...f]=p.split("|"),y=f.join("|");if(!h||!m)continue;const g=r(`git diff-tree --no-commit-id --name-status -r ${h} -- .claude/rules/ 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}),x=[];for(const b of g.split(`
|
|
552
|
-
`).filter(Boolean)){const[v,S]=b.split(" ");if(!S||!S.startsWith(".claude/rules/"))continue;const w=S.replace(".claude/rules/","");let C="modified";if(v==="A"?C="added":v==="D"&&(C="deleted"),o[w])continue;let k="";try{k=r(`git show ${h} --format="" -- "${S}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024}),k.length>5e3&&(k=k.substring(0,5e3)+`
|
|
553
|
-
... (truncated)`)}catch{k="(diff not available)"}C==="modified"&&Ks(k)||x.push({filePath:w,changeType:C,diff:k})}x.length>0&&s.push({commitHash:h.substring(0,8),date:m,message:y,files:x})}return Response.json({changes:s,reviewedStatus:o})}catch(r){return console.error("[API] Error getting recent changes:",r),Response.json({changes:[],reviewedStatus:{}})}}async function wC(e,t){try{const{execSync:r}=await import("child_process"),s=`.claude/rules/${t}`,a=r(`git rev-list --count HEAD -- "${s}" 2>/dev/null || echo 0`,{cwd:e,encoding:"utf-8"}),o=parseInt(a.trim(),10)||0,i=r(`git diff HEAD -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});if(i.trim()){if(Ks(i))return Response.json({diff:null});const g=i.length>5e3?i.substring(0,5e3)+`
|
|
554
|
-
... (truncated)`:i;return Response.json({diff:{diff:g,commitMessage:"Uncommitted changes",date:new Date().toISOString(),isUncommitted:!0,commitCount:o}})}if(r(`git status --porcelain -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}).trim().startsWith("?")){const g=ee.join(e,s);try{const x=await Pe.readFile(g,"utf-8"),b=`diff --git a/${s} b/${s}
|
|
555
|
-
new file mode 100644
|
|
556
|
-
--- /dev/null
|
|
557
|
-
+++ b/${s}
|
|
558
|
-
@@ -0,0 +1,${x.split(`
|
|
559
|
-
`).length} @@
|
|
560
|
-
${x.split(`
|
|
561
|
-
`).map(v=>"+"+v).join(`
|
|
562
|
-
`)}`;return Response.json({diff:{diff:b.length>5e3?b.substring(0,5e3)+`
|
|
563
|
-
... (truncated)`:b,commitMessage:"New file (untracked)",date:new Date().toISOString(),isUncommitted:!0,commitCount:0}})}catch{}}const u=r(`git log -1 --format="%H|%aI|%s" -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}).trim();if(!u)return Response.json({diff:null});const[p,h,...m]=u.split("|"),f=m.join("|");if(!p||!h)return Response.json({diff:null});let y=r(`git show ${p} --format="" -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});return y.trim()?Ks(y)?Response.json({diff:null}):(y.length>5e3&&(y=y.substring(0,5e3)+`
|
|
564
|
-
... (truncated)`),Response.json({diff:{diff:y,commitMessage:f,date:h,isUncommitted:!1,commitCount:o}})):Response.json({diff:null})}catch(r){return console.error("[API] Error getting rule diff:",r),Response.json({diff:null})}}async function NC(e,t){try{const r=await Zr(t),s={};if(r.length>0){const a=await Li(e,r);for(const o of r)s[o.filePath]=zi(a,o.filePath)}return Response.json({reviewedStatus:s})}catch(r){return console.error("[API] Error getting reviewed status:",r),Response.json({reviewedStatus:{}})}}async function SC(e,t){try{const r=await Zr(t),s=await Oi(e),a=[];for(const o of s){const i=r.filter(l=>rp(o,l));if(i.length>0){const l=i.reduce((c,u)=>c+u.body.length,0);a.push({filePath:o,matchingRules:i.map(c=>({filePath:c.filePath,patterns:c.frontmatter.paths||[],bodyLength:c.body.length})),totalTextLength:l})}}return a.sort((o,i)=>i.totalTextLength-o.totalTextLength),Response.json({topPaths:a,totalFilesWithCoverage:a.length,allSourceFiles:s})}catch(r){return console.error("[API] Error getting audit data:",r),Response.json({error:"Failed to get audit data",details:r instanceof Error?r.message:String(r)},{status:500})}}async function CC(e){try{const t=await Oi(e);return Response.json({files:t})}catch(t){return console.error("[API] Error getting source files:",t),Response.json({error:"Failed to get source files",details:t instanceof Error?t.message:String(t)},{status:500})}}async function kC(e,t){try{const[r,s]=await Promise.all([Zr(t),Oi(e)]),a={};for(const o of r)a[o.filePath]=fC(o,s).length;return Response.json({coverage:a})}catch(r){return console.error("[API] Error getting rule coverage:",r),Response.json({error:"Failed to get rule coverage",details:r instanceof Error?r.message:String(r)},{status:500})}}async function _C(e,t){try{const r=await Ea(e),s=[];for(const o of r){const i=ee.join(e,o);try{const l=await Pe.readFile(i,"utf-8"),c=await Pe.stat(i),{frontmatter:u,body:p}=Ri(l);u.paths&&u.paths.some(h=>wo(t,h,{matchBase:!0}))&&s.push({filePath:o,content:l,frontmatter:u,body:p,lastModified:c.mtime.toISOString()})}catch{}}const a=s.reduce((o,i)=>o+i.body.length,0);return Response.json({rules:s,totalTextLength:a})}catch(r){return console.error("[API] Error getting rules for path:",r),Response.json({error:"Failed to get rules for path",details:r instanceof Error?r.message:String(r)},{status:500})}}async function EC({request:e}){const t=Se();if(!t)return Response.json({error:"Project root not found"},{status:500});const r=ee.join(t,".claude","rules");try{const s=await e.json(),{action:a,filePath:o,content:i,lastModified:l}=s;if(!o)return Response.json({error:"Missing required field: filePath"},{status:400});if(a==="mark-reviewed")return await kc(t,o,!0),console.log(`[API] Rule marked as reviewed: ${o}`),Response.json({success:!0,message:"Rule marked as reviewed",filePath:o});if(a==="mark-unreviewed")return await kc(t,o,!1),console.log(`[API] Rule marked as unreviewed: ${o}`),Response.json({success:!0,message:"Rule marked as unreviewed",filePath:o});const c=ee.normalize(o);if(c.includes("..")||ee.isAbsolute(c))return Response.json({error:"Invalid file path"},{status:400});const u=ee.join(r,c);switch(a){case"create":case"update":return i?(await Pe.mkdir(ee.dirname(u),{recursive:!0}),await Pe.writeFile(u,i,"utf-8"),console.log(`[API] Memory ${a}d: ${o}`),Response.json({success:!0,message:`Memory ${a}d successfully`,filePath:o})):Response.json({error:"Missing required field: content"},{status:400});case"delete":try{await Pe.unlink(u),console.log(`[API] Memory deleted: ${o}`);const p=ee.dirname(u);try{(await Pe.readdir(p)).length===0&&p!==r&&await Pe.rmdir(p)}catch{}return Response.json({success:!0,message:"Memory deleted successfully"})}catch(p){if(p.code==="ENOENT")return Response.json({error:"Memory not found"},{status:404});throw p}default:return Response.json({error:"Invalid action. Must be create, update, or delete"},{status:400})}}catch(s){return console.error("[API] Error managing memory:",s),Response.json({error:"Failed to manage memory",details:s instanceof Error?s.message:String(s)},{status:500})}}const AC=Object.freeze(Object.defineProperty({__proto__:null,action:EC,loader:xC},Symbol.toStringTag,{value:"Module"}));async function jC({request:e,context:t}){var o;let r=t.analysisQueue;if(r||(r=await Vt()),!r)return ne({error:"Queue not initialized"},{status:500});const s=new URL(e.url),a=s.searchParams.get("queryType");if(!a)return ne({error:"Missing queryType parameter for GET request"},{status:400});if(a==="job"){const i=s.searchParams.get("jobId");if(!i)return ne({error:"Missing jobId parameter for job query"},{status:400});const l=r.getState();if(((o=l.currentlyExecuting)==null?void 0:o.id)===i)return ne({jobId:i,status:"running",job:l.currentlyExecuting});const c=l.jobs.find(p=>p.id===i);if(c){const p=l.jobs.indexOf(c);return ne({jobId:i,status:"queued",position:p,job:c})}const u=r.getJobResult(i);return u?ne({jobId:i,status:u.status==="error"?"failed":"completed",error:u.error}):ne({jobId:i,status:"completed"})}if(a==="full"){const i=r.getState(),l=await Promise.all(i.jobs.map(async u=>{const p=[];if(u.entityShas&&u.entityShas.length>0){const h=u.entityShas.map(f=>jn(f)),m=await Promise.all(h);p.push(...m.filter(f=>f!==null))}return{id:u.id,type:u.type,commitSha:u.commitSha,projectSlug:u.projectSlug,queuedAt:u.queuedAt,entities:p,filePaths:u.filePaths}}));let c;if(i.currentlyExecuting){const u=i.currentlyExecuting,p=[];if(u.entityShas&&u.entityShas.length>0){const h=u.entityShas.map(f=>jn(f)),m=await Promise.all(h);p.push(...m.filter(f=>f!==null))}c={id:u.id,type:u.type,commitSha:u.commitSha,projectSlug:u.projectSlug,queuedAt:u.queuedAt,entities:p,filePaths:u.filePaths}}return ne({state:{...i,jobsWithEntities:l,currentlyExecutingWithEntities:c}})}return ne({error:"Unknown queryType"},{status:400})}async function PC({request:e,context:t}){console.log("[Queue API] Received request"),console.log("[Queue API] Context keys:",Object.keys(t||{})),console.log("[Queue API] analysisQueue exists:",!!(t!=null&&t.analysisQueue));let r=t.analysisQueue;if(r||(r=await Vt(),console.log("[Queue API] Using global queue")),!r)return console.error("[Queue API] ERROR: Queue not initialized in context"),ne({error:"Queue not initialized"},{status:500});const s=await e.json(),{action:a,...o}=s;if(console.log("[Queue API] Action:",a,"Params:",Object.keys(o)),a==="enqueue"){const{jobId:i,completion:l}=r.enqueue(o);return l.catch(c=>{console.error(`[Queue API] Job ${i} failed:`,c)}),ne({jobId:i,status:"queued"})}if(a==="resume")return r.resume(),ne({status:"resumed"});if(a==="pause")return r.pause(),ne({status:"paused"});if(a==="remove"){const{jobId:i}=o;return i?r.removeJob(i)?ne({status:"removed",jobId:i}):ne({error:"Job not found in queue"},{status:404}):ne({error:"Missing jobId parameter"},{status:400})}if(a==="clear"){const i=r.clearQueue();return ne({status:"cleared",count:i})}if(a==="reorder"){const{jobId:i,direction:l}=o;return!i||!l?ne({error:"Missing jobId or direction parameter"},{status:400}):l!=="up"&&l!=="down"?ne({error:'Invalid direction: must be "up" or "down"'},{status:400}):r.reorderJob(i,l)?ne({status:"reordered",jobId:i,direction:l}):ne({error:"Could not reorder job (not found or at boundary)"},{status:400})}return ne({error:"Unknown action"},{status:400})}const TC=Object.freeze(Object.defineProperty({__proto__:null,action:PC,loader:jC},Symbol.toStringTag,{value:"Module"})),MC=()=>[{title:"Empty State - CodeYam"},{name:"description",content:"Simulations empty state development view"}],$C=et(function(){return Ge(),n(Na,{children:d("div",{className:"h-screen bg-[#F8F7F6] flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-center h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0",children:[n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",className:"shrink-0",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),n("h1",{className:"text-lg font-semibold text-black m-0 leading-[26px] shrink-0",children:"Dashboard"}),n("span",{className:"text-xs text-[#626262] font-mono whitespace-nowrap overflow-hidden text-ellipsis min-w-0",children:"codeyam-cli/src/webserver/app/routes/_index.tsx"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[d("div",{className:"flex items-center gap-2 px-[15px] py-0 h-[26px] bg-[#efefef] border border-[#e1e1e1] rounded",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#626262]"}),n("span",{className:"text-xs font-semibold text-[#626262]",children:"Not analyzed"})]}),n("button",{className:"px-[15px] py-0 h-[26px] bg-[#005c75] text-white rounded text-xs font-semibold border-none cursor-pointer hover:bg-[#004a5e] transition-colors",children:"Analyze"})]}),d("div",{className:"flex items-center gap-1 text-[10px] text-[#626262] ml-auto",children:[n("span",{className:"leading-[22px]",children:"Next Entity"}),n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",className:"shrink-0",children:n("path",{d:"M4 8.5H13M13 8.5L8.5 4M13 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})]})}),n("div",{className:"bg-[#efefef] border-b border-[#efefef] shrink-0",children:d("div",{className:"flex items-center gap-3 h-11 px-[15px]",children:[d("div",{className:"px-4 flex items-center justify-center gap-3 shrink-0 text-sm rounded bg-[#343434] text-[#efefef] font-semibold h-8",children:["Scenarios",n("span",{className:"px-2 py-0.5 rounded-[9px] text-xs font-semibold bg-[#cbf3fa] text-[#005c75] min-w-[25px] text-center",children:"0"})]}),d("div",{className:"px-4 flex items-center justify-center gap-3 shrink-0 text-sm rounded-[9px] text-[#3e3e3e] font-normal",children:["Related Entities",n("span",{className:"px-2 py-0.5 rounded-[9px] text-xs font-semibold bg-[#e1e1e1] text-[#3e3e3e] min-w-[25px] text-center",children:"5"})]}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"Code"}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"Data Structure"}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"History"})]})}),d("div",{className:"flex flex-1 gap-0 min-h-0",children:[n("div",{className:"w-[165px] bg-[#e1e1e1] border-r border-[#c7c7c7] flex items-center justify-center shrink-0",children:n("span",{className:"text-xs font-medium text-[#8e8e8e] leading-5",children:"No Scenarios"})}),n(ep,{selectedScenario:null,analysis:void 0,entity:{sha:"mock-sha",name:"Dashboard",filePath:"codeyam-cli/src/webserver/app/routes/_index.tsx",entityType:"visual"},viewMode:"screenshot",cacheBuster:Date.now(),hasScenarios:!1,isAnalyzing:!1,projectSlug:null,hasAnApiKey:!0})]})]})})}),IC=Object.freeze(Object.defineProperty({__proto__:null,default:$C,meta:MC},Symbol.toStringTag,{value:"Module"})),FC=()=>[{title:"Settings - CodeYam"},{name:"description",content:"Configure project settings"}];async function DC({request:e}){var t,r;try{const s=await ia();if(!s)return ne({config:null,secrets:null,versionInfo:null,simulationsEnabled:!1,error:"Project configuration not found"});let a=!1;try{const c=await Ye();if(c){const{project:u}=await Re(c);a=((r=(t=u.metadata)==null?void 0:t.labs)==null?void 0:r.simulations)===!0}}catch{}const o=Se()||process.cwd(),i=await la(o),l=zd(s.projectSlug);return ne({config:s,secrets:{GROQ_API_KEY:i.GROQ_API_KEY||"",ANTHROPIC_API_KEY:i.ANTHROPIC_API_KEY||"",OPENAI_API_KEY:i.OPENAI_API_KEY||""},versionInfo:l,simulationsEnabled:a,error:null})}catch(s){return console.error("Failed to load config:",s),ne({config:null,secrets:null,versionInfo:null,simulationsEnabled:!1,error:"Failed to load configuration"})}}function RC(e){if(!e||!e.trim())return;const t=e.trim().split(/\s+/);if(t.length===0)return;const r=t[0],s=t.length>1?t.slice(1):void 0;return{command:r,args:s}}async function OC({request:e}){try{const t=await e.formData(),r=t.get("universalMocks"),s=t.get("startCommands"),a=t.get("groqApiKey"),o=t.get("anthropicApiKey"),i=t.get("openAiApiKey"),l=t.get("pathsToIgnore"),c=t.get("memorySettings");let u;if(r)try{u=JSON.parse(r)}catch{return ne({success:!1,error:"Invalid universalMocks JSON format",requiresRestart:!1},{status:400})}let p;if(s)try{p=JSON.parse(s)}catch{return ne({success:!1,error:"Invalid startCommands JSON format",requiresRestart:!1},{status:400})}let h;l&&(h=l.split(",").map(x=>x.trim()).map(x=>x.startsWith('"')&&x.endsWith('"')||x.startsWith("'")&&x.endsWith("'")?x.slice(1,-1):x).filter(x=>x.length>0));let m;if(c)try{m=JSON.parse(c)}catch{return ne({success:!1,error:"Invalid memorySettings JSON format",requiresRestart:!1},{status:400})}let f;if(p){const x=await ia();x!=null&&x.webapps&&(f=x.webapps.map((b,v)=>{if(p[v]!==void 0){const S=RC(p[v]);return{...b,startCommand:S}}return b}))}if(!await Md({universalMocks:u,pathsToIgnore:h,webapps:f,memory:m}))return ne({success:!1,error:"Failed to update configuration",requiresRestart:!1},{status:500});let g=!1;if(a!==void 0||o!==void 0||i!==void 0){const x=Se()||process.cwd(),b=await la(x);g=a!==void 0&&a!==(b.GROQ_API_KEY||"")||o!==void 0&&o!==(b.ANTHROPIC_API_KEY||"")||i!==void 0&&i!==(b.OPENAI_API_KEY||""),await Ng(x,{...b,GROQ_API_KEY:a||void 0,ANTHROPIC_API_KEY:o||void 0,OPENAI_API_KEY:i||void 0},!0)}return ne({success:!0,error:null,requiresRestart:g})}catch(t){return console.log("[Settings Action] Failed to save config:",t),ne({success:!1,error:"Failed to save configuration",requiresRestart:!1},{status:500})}}function _c(e){if(!e)return"";const t=[e.command];return e.args&&e.args.length>0&&t.push(...e.args),t.join(" ")}function Ec({mock:e,onSave:t,onCancel:r}){const[s,a]=j(e.entityName),[o,i]=j(e.filePath),[l,c]=j(e.content);return d("div",{className:"space-y-3",children:[d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Entity Name"}),n("input",{type:"text",value:s,onChange:p=>a(p.target.value),className:"w-full px-3 py-2 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., determineDatabaseType"})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"File Path"}),n("input",{type:"text",value:o,onChange:p=>i(p.target.value),className:"w-full px-3 py-2 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., packages/database/src/lib/kysely/db.ts"})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Content"}),n("textarea",{value:l,onChange:p=>c(p.target.value),rows:6,className:"w-full px-3 py-2 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., function determineDatabaseType() { return 'postgresql' }"})]}),d("div",{className:"flex gap-2 justify-end",children:[n("button",{type:"button",onClick:r,className:"px-4 py-2 bg-gray-200 text-gray-800 border-none rounded text-sm cursor-pointer hover:bg-gray-300",children:"Cancel"}),n("button",{type:"button",onClick:()=>{if(!s.trim()||!o.trim()||!l.trim()){alert("All fields are required");return}t({entityName:s,filePath:o,content:l})},className:"px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Save"})]})]})}function LC(e){try{return new Date(e).toLocaleDateString("en-US",{year:"numeric",month:"long",day:"numeric",hour:"numeric",minute:"2-digit"})}catch{return e}}const zC=et(function(){var Ce,Ae,_e,Q,xe;const{config:t,secrets:r,versionInfo:s,simulationsEnabled:a,error:o}=ot(),i=oh(),l=Ge(),c=Dt(),[u,p]=j(a?"project-metadata":"memory");Rt({source:"settings-page"});const[h,m]=j((t==null?void 0:t.universalMocks)||[]),[f,y]=j(((t==null?void 0:t.pathsToIgnore)||[]).join(", ")),[g,x]=j(((t==null?void 0:t.pathsToIgnore)||[]).join(", ")),[b,v]=j((r==null?void 0:r.GROQ_API_KEY)||""),[S,w]=j((r==null?void 0:r.ANTHROPIC_API_KEY)||""),[C,k]=j((r==null?void 0:r.OPENAI_API_KEY)||""),[N,A]=j(!1),[_,M]=j(!1),[$,I]=j(!1),[R,P]=j(!1),[F,Y]=j(!1),[J,O]=j(!1),[B,T]=j(null),[D,E]=j(!1),[W,K]=j({}),[Z,q]=j(((Ce=t==null?void 0:t.memory)==null?void 0:Ce.conversationReflection)??!0),[U,L]=j(((Ae=t==null?void 0:t.memory)==null?void 0:Ae.ruleMaintenance)??!0),[z,V]=j(((_e=t==null?void 0:t.memory)==null?void 0:_e.promptModel)??"haiku");te(()=>{var oe,se,he,Te;if(t){m(t.universalMocks||[]);const ge=(t.pathsToIgnore||[]).join(", ");y(ge),x(ge);const ze={};(oe=t.webapps)==null||oe.forEach((Ve,it)=>{Ve.startCommand&&(ze[it]=_c(Ve.startCommand))}),K(ze),q(((se=t.memory)==null?void 0:se.conversationReflection)??!0),L(((he=t.memory)==null?void 0:he.ruleMaintenance)??!0),V(((Te=t.memory)==null?void 0:Te.promptModel)??"haiku")}r&&(v(r.GROQ_API_KEY||""),w(r.ANTHROPIC_API_KEY||""),k(r.OPENAI_API_KEY||""))},[t,r]),te(()=>{if(i!=null&&i.success){P(!0);const oe=setTimeout(()=>P(!1),3e3);return()=>clearTimeout(oe)}},[i]),te(()=>{if(l.state==="idle"&&l.data&&!J){console.log("[Settings] Fetcher data:",l.data);const oe=l.data;if(oe.success){console.log("[Settings] Save successful, revalidating..."),P(!0),O(!0),(f!==g||oe.requiresRestart)&&Y(!0),c.revalidate();const se=setTimeout(()=>{P(!1),O(!1)},3e3);return()=>clearTimeout(se)}}},[l.state,l.data,J,c,f,g]);const re=oe=>{oe.preventDefault();const se=new FormData(oe.currentTarget);se.set("universalMocks",JSON.stringify(h)),se.set("startCommands",JSON.stringify(W)),se.set("memorySettings",JSON.stringify({conversationReflection:Z,ruleMaintenance:U,promptModel:z})),console.log("[Settings] Submitting form data:",{universalMocks:se.get("universalMocks"),startCommands:se.get("startCommands"),openAiApiKey:se.get("openAiApiKey")?"***":"(empty)"}),l.submit(se,{method:"post"})},ue=oe=>{m([...h,oe]),E(!1)},be=(oe,se)=>{const he=[...h];he[oe]=se,m(he),T(null)},ie=oe=>{m(h.filter((se,he)=>he!==oe))};if(o)return d("div",{className:"max-w-6xl mx-auto p-8 font-sans",children:[n("header",{className:"mb-6 pb-4 border-b border-gray-200",children:n("div",{className:"flex justify-between items-center",children:n("h1",{className:"text-4xl font-bold text-gray-900",children:"Settings"})})}),n("div",{className:"bg-red-50 border border-red-200 rounded-lg p-4",children:n("p",{className:"text-red-700",children:o})})]});const fe=[{id:"project-metadata",label:"Project Metadata"},{id:"ai-provider",label:"AI Provider Configuration"},{id:"commands",label:"Commands"},{id:"paths-to-ignore",label:"Paths To Ignore"},{id:"universal-mocks",label:"Universal Mocks"},{id:"memory",label:"Memory"},{id:"current-configuration",label:"Current Configuration"}],ce=a?fe:fe.filter(oe=>oe.id==="memory");return n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 pt-8 pb-12 font-sans",children:[d("div",{className:"mb-8 flex justify-between items-start",children:[d("div",{children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Settings"}),n("p",{className:"text-[15px] text-gray-500",children:"Project Configuration"})]}),n("button",{type:"submit",form:"settings-form",disabled:l.state==="submitting",className:"px-6 py-2 bg-[#005C75] text-white border-none rounded text-sm font-medium cursor-pointer disabled:cursor-not-allowed disabled:opacity-60 hover:bg-[#004a5d] whitespace-nowrap",children:l.state==="submitting"?"Saving...":"Save Settings"})]}),(R||F||(i==null?void 0:i.error)||l.data&&typeof l.data=="object"&&"error"in l.data)&&d("div",{className:"mb-4 space-y-3",children:[R&&n("div",{className:"text-emerald-600 text-sm font-medium bg-emerald-50 border border-emerald-200 rounded px-4 py-2",children:"Settings saved successfully!"}),F&&d("div",{className:"text-amber-700 text-sm font-medium bg-amber-50 border border-amber-200 rounded px-4 py-2",children:[n("div",{children:"Settings changed. Please restart CodeYam for changes to take effect:"}),d("div",{className:"flex items-center gap-2 mt-1",children:[n("code",{className:"bg-amber-100 px-2 py-1 rounded text-xs",children:"codeyam stop && codeyam"}),n(pt,{content:"codeyam stop && codeyam",className:"px-2 py-1 text-xs bg-amber-200 hover:bg-amber-300 text-amber-800 rounded border-none transition-colors"})]})]}),(i==null?void 0:i.error)&&n("div",{className:"text-red-600 text-sm font-medium bg-red-50 border border-red-200 rounded px-4 py-2",children:i.error}),(()=>{if(l.data&&typeof l.data=="object"&&"error"in l.data){const oe=l.data;return typeof oe.error=="string"?n("div",{className:"text-red-600 text-sm font-medium bg-red-50 border border-red-200 rounded px-4 py-2",children:oe.error}):null}return null})()]}),d("div",{className:"flex flex-col lg:flex-row gap-6 lg:gap-8 items-start",children:[n("nav",{className:"w-full lg:w-64 flex-shrink-0",children:n("ul",{className:"flex lg:flex-col overflow-x-auto gap-1",children:ce.map(oe=>n("li",{children:n("button",{type:"button",onClick:()=>p(oe.id),className:`w-full text-left px-3 lg:px-0 py-2.5 text-sm transition-colors cursor-pointer whitespace-nowrap ${u===oe.id?"text-[#005C75] font-medium":"text-gray-600 hover:text-gray-900"}`,children:oe.label})},oe.id))})}),n("div",{className:"flex-1 min-w-0 -mt-2",children:d("form",{id:"settings-form",onSubmit:re,className:"space-y-6",children:[u==="project-metadata"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Project Metadata"}),d("div",{className:"mb-6",children:[n("label",{className:"block mb-2 font-medium text-gray-700",children:"Web Applications"}),t!=null&&t.webapps&&t.webapps.length>0?n("div",{className:"space-y-3",children:t.webapps.map((oe,se)=>{var he;return n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Path:"})," ",n("span",{className:"text-gray-900",children:oe.path==="."?"Root":oe.path})]}),oe.appDirectory&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"App Directory:"})," ",n("span",{className:"text-gray-900",children:oe.appDirectory})]}),d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Framework:"})," ",n("span",{className:"text-gray-900",children:oe.framework})]}),oe.startCommand&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Start Command:"})," ",d("span",{className:"text-gray-900 font-mono text-xs",children:[oe.startCommand.command," ",(he=oe.startCommand.args)==null?void 0:he.join(" ")]})]})]})},se)})}):n("p",{className:"text-sm text-gray-600 italic",children:"No web applications configured"}),n("p",{className:"mt-2 text-sm text-gray-600",children:"Web applications are detected during initialization. To modify, edit `.codeyam/config.json` or re-run `codeyam init`."})]})]}),u==="ai-provider"&&d("div",{children:[n("h3",{className:"text-lg font-semibold text-gray-800 mb-4",children:"AI Provider API Keys"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure API keys for AI-powered analysis. Choose the provider that best fits your needs."}),d("div",{className:"space-y-6",children:[d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Groq"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Lightning-fast inference with industry-leading speed. Groq's LPU architecture delivers exceptional performance for real-time AI applications with competitive pricing."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$0.10/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 850 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Less reliable, but capable of producing reasonable results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"groqApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:N?"text":"password",id:"groqApiKey",name:"groqApiKey",value:b,onChange:oe=>v(oe.target.value),placeholder:"gsk_...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>A(!N),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:N?"Hide":"Show"})]})]})]}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Anthropic Claude"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Advanced reasoning and coding capabilities with superior context understanding. Claude excels at complex analysis tasks and provides highly accurate results with detailed explanations."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$3.00/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 120 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Consistent, high quality results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"anthropicApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:_?"text":"password",id:"anthropicApiKey",name:"anthropicApiKey",value:S,onChange:oe=>w(oe.target.value),placeholder:"sk-ant-...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>M(!_),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:_?"Hide":"Show"})]})]})]}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"OpenAI GPT"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Industry-standard AI with broad capabilities and extensive ecosystem. GPT models offer reliable performance across diverse tasks with good balance of speed and quality."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$2.50/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 150 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Consistent, high quality results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"openAiApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:$?"text":"password",id:"openAiApiKey",name:"openAiApiKey",value:C,onChange:oe=>k(oe.target.value),placeholder:"sk-...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>I(!$),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:$?"Hide":"Show"})]})]})]})]})]}),u==="commands"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Commands"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure start commands for your web applications"}),t!=null&&t.webapps&&t.webapps.length>0?n("div",{className:"space-y-4",children:t.webapps.map((oe,se)=>d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[d("div",{className:"mb-4",children:[n("div",{className:"text-base font-semibold text-gray-900 mb-1",children:oe.path==="."?"Root":oe.path}),n("div",{className:"text-sm text-gray-600",children:oe.framework})]}),d("div",{children:[n("label",{htmlFor:`startCommand-${se}`,className:"block text-sm font-medium text-gray-700 mb-2",children:"Start Command"}),n("input",{type:"text",id:`startCommand-${se}`,name:`startCommand-${se}`,value:W[se]||"",onChange:he=>K({...W,[se]:he.target.value}),placeholder:"e.g., pnpm dev --port $PORT",className:"w-full px-3 py-2 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("p",{className:"mt-2 text-xs text-gray-500",children:"Use $PORT as a placeholder for the dynamic port number"})]})]},se))}):n("p",{className:"text-sm text-gray-600 italic",children:"No web applications configured"})]}),u==="paths-to-ignore"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Paths To Ignore"}),n("input",{type:"text",id:"pathsToIgnore",name:"pathsToIgnore",value:f,onChange:oe=>y(oe.target.value),placeholder:"e.g., __tests__, \\.test\\.ts$, ^background (no quotes needed)",className:"w-full px-3 py-3 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-2 focus:ring-[#005C75]/10"}),d("p",{className:"mt-2 text-sm text-gray-600",children:["Comma-separated list of regex patterns for paths to ignore during file watching. Examples:"," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"__tests__"}),","," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"\\.test\\.tsx?$"}),","," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"^background"}),n("br",{}),n("span",{className:"text-xs text-gray-500 mt-1 inline-block",children:"Note: Files matching patterns in .gitignore are also automatically ignored"})]})]}),u==="universal-mocks"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Universal Mocks"}),n("p",{className:"mb-3 text-sm text-gray-600",children:"Mock functions that will be applied across all entity simulations"}),h.length===0?d("div",{className:"mb-4",children:[n("div",{className:"text-sm text-gray-500 mb-3",children:"No universal mocks configured"}),n("button",{type:"button",onClick:()=>E(!0),className:"px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Add Mock"})]}):n("div",{className:"space-y-3",children:h.map((oe,se)=>n("div",{className:"p-4 bg-gray-50 rounded border border-gray-200",children:B===se?n(Ec,{mock:oe,onSave:he=>be(se,he),onCancel:()=>T(null)}):n(we,{children:d("div",{className:"flex justify-between items-start mb-2",children:[d("div",{className:"flex-1",children:[n("div",{className:"font-medium text-gray-800 mb-1",children:oe.entityName}),n("div",{className:"text-sm text-gray-600 mb-2",children:oe.filePath}),n("pre",{className:"text-xs bg-white p-2 rounded border border-gray-200 overflow-x-auto",children:oe.content})]}),d("div",{className:"flex gap-2 ml-3",children:[n("button",{type:"button",onClick:()=>T(se),className:"px-3 py-1 bg-teal-600 text-white border-none rounded text-sm cursor-pointer hover:bg-teal-700",children:"Edit"}),n("button",{type:"button",onClick:()=>ie(se),className:"px-3 py-1 bg-red-600 text-white border-none rounded text-sm cursor-pointer hover:bg-red-700",children:"Delete"})]})]})})},se))}),h.length>0&&n("button",{type:"button",onClick:()=>E(!0),className:"mt-4 px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Add Mock"})]}),u==="memory"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Memory"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure how CodeYam reflects on conversations and maintains rules between sessions."}),d("div",{className:"space-y-6",children:[n("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex-1 mr-4",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Conversation Reflection"}),n("p",{className:"text-sm text-gray-600",children:"After each conversation, an agent reviews the session for architectural decisions, tribal knowledge, confusion, or corrections that future sessions would benefit from knowing. It creates or updates Claude Rules based on what it learns."})]}),n("button",{type:"button",role:"switch","aria-checked":Z,onClick:()=>q(!Z),className:`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${Z?"bg-[#005C75]":"bg-gray-200"}`,children:n("span",{className:`pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${Z?"translate-x-5":"translate-x-0"}`})})]})}),n("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex-1 mr-4",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Rule Maintenance"}),n("p",{className:"text-sm text-gray-600",children:"After each conversation, an agent checks if any existing Claude Rules have become stale based on recent code changes. It reviews the rule content against file diffs and updates rules that are out of date."})]}),n("button",{type:"button",role:"switch","aria-checked":U,onClick:()=>L(!U),className:`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${U?"bg-[#005C75]":"bg-gray-200"}`,children:n("span",{className:`pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${U?"translate-x-5":"translate-x-0"}`})})]})}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Memory Prompt Model"}),n("p",{className:"text-sm text-gray-600 mb-4",children:"Choose the Claude model used for conversation reflection and rule maintenance tasks."}),n("div",{className:"space-y-3",children:[{value:"haiku",label:"Haiku",badge:"Default, Recommended",description:"Fastest and cheapest. Good for routine reflection tasks."},{value:"sonnet",label:"Sonnet",badge:null,description:"Balanced speed and quality. Better at nuanced rule writing."},{value:"opus",label:"Opus",badge:null,description:"Highest quality. Best for complex architectural decisions. Costs significantly more."}].map(oe=>d("label",{className:`flex items-start gap-3 p-3 rounded-lg border cursor-pointer transition-colors ${z===oe.value?"border-[#005C75] bg-[#005C75]/5":"border-gray-200 hover:border-gray-300"}`,children:[n("input",{type:"radio",name:"promptModel",value:oe.value,checked:z===oe.value,onChange:()=>V(oe.value),className:"mt-1 accent-[#005C75]"}),d("div",{children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-sm font-medium text-gray-900",children:oe.label}),oe.badge&&n("span",{className:"px-2 py-0.5 bg-green-100 text-green-800 rounded text-xs",children:oe.badge})]}),n("p",{className:"text-sm text-gray-600 mt-0.5",children:oe.description})]})]},oe.value))})]})]})]}),u==="current-configuration"&&d("div",{className:"space-y-6",children:[t&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Current Configuration"}),n("div",{className:"p-4 bg-white border border-gray-200 rounded mb-6",children:d("div",{className:"space-y-2 text-sm",children:[t.projectSlug&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Project Slug:"})," ",n("span",{className:"text-gray-900",children:t.projectSlug})]}),t.packageManager&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Package Manager:"})," ",n("span",{className:"text-gray-900",children:t.packageManager})]})]})}),t.webapps&&t.webapps.length>0&&d("div",{children:[n("h3",{className:"text-base font-semibold text-gray-800 mb-3",children:"Web Applications"}),n("div",{className:"space-y-3",children:t.webapps.map((oe,se)=>n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Path:"})," ",n("span",{className:"text-gray-900",children:oe.path==="."?"Root":oe.path})]}),oe.appDirectory&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"App Directory:"})," ",n("span",{className:"text-gray-900",children:oe.appDirectory})]}),d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Framework:"})," ",n("span",{className:"text-gray-900",children:oe.framework})]}),oe.startCommand&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Start Command:"})," ",n("span",{className:"text-gray-900 font-mono text-xs",children:_c(oe.startCommand)})]})]})},se))})]})]}),s&&d("div",{className:"mt-6",children:[n("h3",{className:"text-base font-semibold text-gray-800 mb-3",children:"Version Information"}),n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[s.webserverVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Webserver:"})," ",n("span",{className:"text-gray-900 font-mono",children:s.webserverVersion.version||"unknown"})]}),s.templateVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Analyzer Template:"})," ",n("span",{className:"font-mono text-gray-900",children:s.templateVersion.version||((Q=s.templateVersion.gitCommit)==null?void 0:Q.slice(0,7))||"unknown"}),s.templateVersion.buildTimestamp&&d("span",{className:"text-gray-500 ml-2",children:["(built"," ",LC(s.templateVersion.buildTimestamp),")"]})]}),s.cachedAnalyzerVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Cached Analyzer:"})," ",n("span",{className:"font-mono text-gray-900",children:s.cachedAnalyzerVersion.version||((xe=s.cachedAnalyzerVersion.gitCommit)==null?void 0:xe.slice(0,7))||"unknown"}),s.isCacheStale?n("span",{className:"ml-2 px-2 py-0.5 bg-amber-100 text-amber-800 rounded text-xs",children:"Stale - will update on next analysis"}):n("span",{className:"ml-2 px-2 py-0.5 bg-green-100 text-green-800 rounded text-xs",children:"Up to date"})]}),!s.cachedAnalyzerVersion&&(t==null?void 0:t.projectSlug)&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Cached Analyzer:"})," ",n("span",{className:"text-gray-500 italic",children:"Not initialized - will be created on first analysis"})]})]})})]})]})]})})]}),D&&n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",children:d("div",{className:"bg-white rounded-lg max-w-2xl w-full p-6",children:[n("h2",{className:"text-2xl font-bold mb-4 text-gray-900",children:"Add Universal Mock"}),n(Ec,{mock:{entityName:"",filePath:"",content:""},onSave:ue,onCancel:()=>E(!1)})]})})]})})}),BC=Object.freeze(Object.defineProperty({__proto__:null,action:OC,default:zC,loader:DC,meta:FC},Symbol.toStringTag,{value:"Module"}));async function YC({params:e}){const t=e["*"];if(!t)return new Response("Static path is required",{status:400});const r=Se();if(!r)return new Response("Project root not found",{status:500});const a=ee.extname(t)!==""?t:`${t}.html`,o=ee.join(r,".codeyam","captures","static",a);try{await Pe.access(o);let i=await Pe.readFile(o);const l=ee.extname(o).toLowerCase();let c="application/octet-stream";if(l===".html"){c="text/html";let u=i.toString("utf-8");const p=u.match(/<script>(window\.__remixContext\s*=\s*\{[\s\S]*?\});?<\/script>/i);if(p)try{const m=p[1].match(/=\s*(\{[\s\S]*\})/);if(m){const f=JSON.parse(m[1]);f.isSpaMode=!0,f.future&&(f.future.v3_lazyRouteDiscovery=!1);const y=`<script>window.__remixContext = ${JSON.stringify(f)};<\/script>`;u=u.replace(p[0],y)}}catch(h){console.error("[Static] Failed to parse Remix context:",h)}i=Buffer.from(u,"utf-8")}else l===".js"||l===".mjs"?c="application/javascript":l===".css"?c="text/css":l===".json"?c="application/json":l===".png"?c="image/png":l===".jpg"||l===".jpeg"?c="image/jpeg":l===".svg"?c="image/svg+xml":l===".woff"?c="font/woff":l===".woff2"?c="font/woff2":l===".ttf"&&(c="font/ttf");return new Response(i,{status:200,headers:{"Content-Type":c,"Cache-Control":"public, max-age=3600","X-Frame-Options":"SAMEORIGIN"}})}catch{return new Response("Static file not found",{status:404})}}const UC=Object.freeze(Object.defineProperty({__proto__:null,loader:YC},Symbol.toStringTag,{value:"Module"}));function WC(e,t,r=10){var c;const s=new Map,a=u=>u.entityType==="visual"||u.entityType==="library";for(const u of e)a(u)&&s.set(u.sha,{entity:u,depth:0});const o=new Map;for(const u of t){const p=(c=u.metadata)==null?void 0:c.importedBy;if(p)for(const h of Object.keys(p))for(const m of Object.keys(p[h])){const{shas:f}=p[h][m];for(const y of f)o.has(u.sha)||o.set(u.sha,new Set),o.get(u.sha).add(y)}}const i=[],l=new Set;for(const u of e)i.push({sha:u.sha,depth:0}),l.add(u.sha);for(;i.length>0;){const{sha:u,depth:p}=i.shift();if(p>=r)continue;const h=o.get(u);if(h)for(const m of h){if(l.has(m))continue;l.add(m);const f=t.find(y=>y.sha===m);if(f){if(a(f)){const y=p+1,g=s.get(m);(!g||y<g.depth)&&s.set(m,{entity:f,depth:y})}i.push({sha:m,depth:p+1})}}}return Array.from(s.values()).sort((u,p)=>u.depth!==p.depth?u.depth-p.depth:u.entity.name.localeCompare(p.entity.name))}function Gs(e){const t=new Map;for(const s of e)t.has(s.name)||t.set(s.name,[]),t.get(s.name).push(s);const r=[];for(const s of t.values())if(s.length===1)r.push(s[0]);else{const a=s.sort((o,i)=>{var u,p;const l=((u=o.metadata)==null?void 0:u.editedAt)||o.createdAt||"";return(((p=i.metadata)==null?void 0:p.editedAt)||i.createdAt||"").localeCompare(l)});r.push(a[0])}return r}function cp(e,t){const r=new Map,s=new Set(e.map(a=>a.path));for(const a of e)a.status==="renamed"&&a.oldPath&&s.add(a.oldPath);for(const a of e){const o=t.filter(c=>c.filePath===a.path||a.status==="renamed"&&a.oldPath&&c.filePath===a.oldPath),i=o.filter(c=>{var u,p;return s.has(c.filePath)&&((u=c.metadata)==null?void 0:u.isUncommitted)&&!((p=c.metadata)!=null&&p.isSuperseded)}),l=Gs(i);r.set(a.path,{status:a,entities:o,editedEntities:l})}return r}function JC(e,t,r){const s=new Map;if(!r){for(const o of e)if(o.status==="deleted")s.set(o.path,{status:o,entities:[]});else{const i=t.filter(c=>c.filePath===o.path||o.status==="renamed"&&o.oldPath&&c.filePath===o.oldPath),l=Gs(i);s.set(o.path,{status:o,entities:l})}return s}const a=new Map;for(const o of r.fileComparisons){const i=new Set;for(const l of o.newEntities)i.add(l.name);for(const l of o.modifiedEntities)i.add(l.name);for(const l of o.deletedEntities)i.add(l.name);i.size>0&&a.set(o.filePath,i)}for(const o of e){const i=a.get(o.path);if(o.status==="deleted")s.set(o.path,{status:o,entities:[]});else{const l=i?t.filter(u=>(u.filePath===o.path||o.status==="renamed"&&o.oldPath&&u.filePath===o.oldPath)&&i.has(u.name)):[],c=Gs(l);s.set(o.path,{status:o,entities:c})}}return s}function HC(e,t){const r=new Map,s=dp(e,t);for(const a of s){const i=WC([a],t).filter(({depth:l})=>l>0);r.set(a.sha,i)}return r}function dp(e,t){const r=new Set(e.map(a=>a.path));for(const a of e)a.status==="renamed"&&a.oldPath&&r.add(a.oldPath);const s=t.filter(a=>{var o,i;return r.has(a.filePath)&&((o=a.metadata)==null?void 0:o.isUncommitted)&&!((i=a.metadata)!=null&&i.isSuperseded)});return Gs(s)}function VC({recentSimulations:e}){const t=le(()=>{const r=new Map;return e.forEach(s=>{const a=s.entitySha,o=r.get(a);o?o.push(s):r.set(a,[s])}),Array.from(r.entries()).map(([s,a])=>({entitySha:s,entityName:a[0].entityName,scenarios:a}))},[e]);return d("section",{className:"bg-white border border-gray-200 rounded-xl p-6",children:[n("div",{className:"flex justify-between items-start mb-5",children:d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Recent Simulations"}),n("p",{className:"text-sm text-gray-500 m-0",children:e.length>0?`Latest ${e.length} captured screenshot${e.length!==1?"s":""}`:"No simulations captured yet"})]})}),e.length>0?d(we,{children:[n("div",{className:"space-y-6 mb-5",children:t.map(r=>d("div",{children:[d("div",{className:"mb-3 flex items-center gap-2",children:[n("div",{className:"shrink-0 rounded-lg p-1.5 flex items-center justify-center bg-purple-100",children:n(Lr,{size:16,style:{color:"#8B5CF6"}})}),n(ke,{to:`/entity/${r.entitySha}`,className:"text-sm font-semibold text-gray-900 no-underline hover:text-gray-700 transition-colors",children:r.entityName})]}),n("div",{className:"grid grid-cols-4 gap-3",children:r.scenarios.map((s,a)=>n(ke,{to:s.scenarioId?`/entity/${s.entitySha}/scenarios/${s.scenarioId}`:`/entity/${s.entitySha}`,className:"aspect-4/3 border border-gray-200 rounded-lg overflow-hidden bg-gray-50 transition-all flex items-center justify-center hover:scale-105",onMouseEnter:o=>{o.currentTarget.style.borderColor="#005C75",o.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.2)"},onMouseLeave:o=>{o.currentTarget.style.borderColor="#E5E7EB",o.currentTarget.style.boxShadow="none"},title:s.scenarioName,children:n(dt,{screenshotPath:s.screenshotPath,alt:s.scenarioName,className:"max-w-full max-h-full object-contain object-center"})},s.scenarioId||`${s.entitySha}-${a}`))})]},r.entitySha))}),n(ke,{to:"/simulations",className:"block text-center p-3 rounded-lg no-underline font-semibold text-sm transition-all",style:{color:"#005C75",backgroundColor:"#F6F9FC"},onMouseEnter:r=>r.currentTarget.style.backgroundColor="#EEF4F8",onMouseLeave:r=>r.currentTarget.style.backgroundColor="#F6F9FC",children:"View All Recent Simulations →"})]}):d("div",{className:"py-12 px-6 text-center rounded-lg w-full flex flex-col items-center justify-center min-h-50 border border-dashed",style:{backgroundColor:"#F2F7F8",borderColor:"#BBCCD3"},children:[n("div",{className:"mb-4 rounded-full flex items-center justify-center",style:{width:"48px",height:"48px",backgroundColor:"#E5EFF1"},children:n(Lr,{size:24,style:{color:"#7A9BA5"},strokeWidth:1.5})}),n("p",{className:"text-sm font-medium m-0",style:{color:"#5A7380"},children:"No simulations captured yet."}),d("p",{className:"text-xs m-0 mt-2",style:{color:"#7A9BA5"},children:["Trigger an analysis from the"," ",n(ke,{to:"/git",className:"underline hover:no-underline",style:{color:"#7A9BA5"},children:"Git"})," ","or"," ",n(ke,{to:"/files",className:"underline hover:no-underline",style:{color:"#7A9BA5"},children:"Files"})," ","page."]})]})]})}const KC="/assets/codeyam-name-logo-CvKwUgHo.svg",GC=()=>[{title:"Dashboard - CodeYam"},{name:"description",content:"CodeYam project dashboard"}];async function qC({request:e,context:t}){var r,s,a,o,i;try{const l=await Ye();if(l){const{project:R}=await Re(l),P=((r=R.metadata)==null?void 0:r.editorMode)??!1;if(!(((a=(s=R.metadata)==null?void 0:s.labs)==null?void 0:a.simulations)??!1)||P)return ih("/memory")}const c=t.analysisQueue,u=c?c.getState():{paused:!1,jobs:[]},[p,h]=await Promise.all([Mn(),ur()]),m=mr(),f=p?cp(m,p):new Map,y=Array.from(f.entries()).sort((R,P)=>R[0].localeCompare(P[0])),g=(p==null?void 0:p.length)||0,x=(p==null?void 0:p.filter(R=>R.entityType==="visual").length)||0,b=(p==null?void 0:p.filter(R=>R.entityType==="library").length)||0,v=p?dp(m,p):[],S=v.length,w=(p==null?void 0:p.filter(R=>(R.analyses??[]).filter(P=>P.scenarios&&P.scenarios.length>0).length>0).length)||0,C=(p==null?void 0:p.reduce((R,P)=>{var Y,J,O;const F=((O=(J=(Y=P.analyses)==null?void 0:Y[0])==null?void 0:J.scenarios)==null?void 0:O.length)||0;return R+F},0))||0,k=(p==null?void 0:p.reduce((R,P)=>{var J,O;const Y=(((O=(J=P.analyses)==null?void 0:J[0])==null?void 0:O.scenarios)||[]).filter(B=>{var T,D;return(D=(T=B.metadata)==null?void 0:T.screenshotPaths)==null?void 0:D[0]}).length;return R+Y},0))||0,N=[];p==null||p.forEach(R=>{var F;const P=(F=R.analyses)==null?void 0:F[0];P!=null&&P.scenarios&&P.scenarios.filter(J=>{var O;return!((O=J.metadata)!=null&&O.sameAsDefault)}).forEach(J=>{var B,T;const O=(T=(B=J.metadata)==null?void 0:B.screenshotPaths)==null?void 0:T[0];O&&N.push({entitySha:R.sha,entityName:R.name,scenarioId:J.id,scenarioName:J.name,screenshotPath:O,createdAt:P.createdAt||""})})}),N.sort((R,P)=>new Date(P.createdAt).getTime()-new Date(R.createdAt).getTime());const A=N.slice(0,16),_=(p==null?void 0:p.filter(R=>R.entityType==="visual").filter(R=>{var Y,J;const P=(Y=R.analyses)==null?void 0:Y[0];return!((J=P==null?void 0:P.scenarios)==null?void 0:J.some(O=>{var B,T;return(T=(B=O.metadata)==null?void 0:B.screenshotPaths)==null?void 0:T[0]}))}).slice(0,8))||[],M=(o=h==null?void 0:h.metadata)==null?void 0:o.currentRun,$=((i=M==null?void 0:M.currentEntityShas)==null?void 0:i.length)||0,I=u.jobs.length||0;return ne({stats:{totalEntities:g,visualEntities:x,libraryEntities:b,uncommittedEntities:S,entitiesWithAnalyses:w,totalScenarios:C,capturedScreenshots:k,currentlyAnalyzing:$,filesOnQueue:I},uncommittedFiles:y,uncommittedEntitiesList:v,recentSimulations:A,visualEntitiesForSimulation:_,projectSlug:l,queueState:u,currentCommit:h})}catch(l){return console.error("Failed to load dashboard data:",l),ne({stats:{totalEntities:0,visualEntities:0,libraryEntities:0,uncommittedEntities:0,entitiesWithAnalyses:0,totalScenarios:0,capturedScreenshots:0,currentlyAnalyzing:0,filesOnQueue:0},uncommittedFiles:[],uncommittedEntitiesList:[],recentSimulations:[],visualEntitiesForSimulation:[],projectSlug:null,queueState:{paused:!1,jobs:[]},currentCommit:null,error:"Failed to load dashboard data"})}}const QC=et(function(){var B,T;const{stats:t,uncommittedFiles:r,uncommittedEntitiesList:s,recentSimulations:a,visualEntitiesForSimulation:o,projectSlug:i,queueState:l,currentCommit:c}=ot(),u=Ge(),p=Dt(),{showToast:h}=Qo();Rt({source:"dashboard"});const[m,f]=j(new Set),[y,g]=j(null),[x,b]=j(!1),[v,S]=j(!1),{lastLine:w,isCompleted:C}=Wt(i,!!y),{simulatingEntity:k,scenarios:N,scenarioStatuses:A,allScenariosCaptured:_}=le(()=>{var L,z;const D={simulatingEntity:null,scenarios:[],scenarioStatuses:[],allScenariosCaptured:!1};if(!y)return D;const E=o==null?void 0:o.find(V=>V.sha===y);if(!E)return D;const W=(L=E.analyses)==null?void 0:L[0],K=(W==null?void 0:W.scenarios)||[],Z=((z=W==null?void 0:W.status)==null?void 0:z.scenarios)||[],q=Z.filter(V=>V.screenshotFinishedAt).length,U=K.length>0&&q===K.length;return{simulatingEntity:E,scenarios:K,scenarioStatuses:Z,allScenariosCaptured:U}},[y,o]);te(()=>{(C||_)&&g(null)},[C,_]);const M=(B=c==null?void 0:c.metadata)==null?void 0:B.currentRun,$=new Set((M==null?void 0:M.currentEntityShas)||[]),I=new Set(l.jobs.flatMap(D=>D.entityShas||[])),R=new Set(((T=l.currentlyExecuting)==null?void 0:T.entityShas)||[]),P=s.filter(D=>D.entityType==="visual"||D.entityType==="library"),F=P.filter(D=>!$.has(D.sha)&&!I.has(D.sha)&&!R.has(D.sha)),Y=()=>{if(F.length===0){h("All entities are already queued or analyzing","info",3e3);return}const D=F.map(E=>E.sha);S(!0),h(`Starting analysis for ${F.length} entities...`,"info",3e3),u.submit({entityShas:D.join(",")},{method:"post",action:"/api/analyze"})};te(()=>{if(u.state==="idle"&&u.data){const D=u.data;D.success?(console.log("[Analyze All] Success:",D.message),h(`Analysis started for ${D.entityCount} entities in ${D.fileCount} files. Watch the logs for progress.`,"success",6e3),S(!1)):D.error&&(console.error("[Analyze All] Error:",D.error),h(`Error: ${D.error}`,"error",8e3),S(!1))}},[u.state,u.data,h]);const J=D=>{f(E=>{const W=new Set(E);return W.has(D)?W.delete(D):W.add(D),W})},O=[{label:"Total Entities",value:t.totalEntities,iconType:"folder",link:"/files",color:"#005C75",tooltip:"In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested."},{label:"Analyzed Entities",value:t.entitiesWithAnalyses,iconType:"check",link:"/simulations",color:"#10B981",tooltip:"Entities that have been analyzed by CodeYam and have generated scenarios."},{label:"Visual Components",value:t.visualEntities,iconType:"image",link:"/files?entityType=visual",color:"#8B5CF6",tooltip:"React components and visual elements that can be rendered and captured as screenshots."},{label:"Library Functions",value:t.libraryEntities,iconType:"code-xml",link:"/files?entityType=library",color:"#0DBFE9",tooltip:"Reusable functions and utilities that can be independently tested."}];return n("div",{className:"bg-cygray-10 min-h-screen",children:d("div",{className:"px-20 pt-8 pb-12",children:[d("header",{className:"mb-8 flex justify-between items-center",children:[d("div",{className:"flex items-center gap-4",children:[n("img",{src:KC,alt:"CodeYam",className:"h-3.5"}),n("span",{className:"text-gray-400 text-sm",children:"|"}),n("h1",{className:"text-sm font-mono font-normal text-gray-400 m-0",children:i?i.replace(/-/g," ").replace(/\b\w/g,D=>D.toUpperCase()):"Project"})]}),p.state==="loading"&&n("div",{className:"text-blue-600 text-sm font-medium animate-pulse",children:"🔄 Updating..."})]}),n("div",{className:"flex items-center justify-between gap-3",children:O.map((D,E)=>n(ke,{to:D.link,className:"flex-1 bg-white rounded-xl border border-gray-200 overflow-hidden flex transition-all hover:shadow-lg no-underline cursor-pointer",style:{borderLeft:`4px solid ${D.color}`},children:d("div",{className:"px-6 py-6 flex flex-col gap-3 flex-1",children:[d("div",{className:"flex md:justify-between md:items-start md:flex-row flex-col",children:[d("div",{className:"flex items-center gap-1.5 group relative",children:[n("span",{className:"text-xs text-gray-700 font-medium font-mono uppercase",children:D.label}),d("svg",{className:"w-3 h-3 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:[n("circle",{cx:"12",cy:"12",r:"10",strokeWidth:"2"}),n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M12 16v-4m0-4h.01"})]}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:[D.tooltip,n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("div",{className:"text-xs font-medium transition-colors flex items-center gap-1 sm:hidden md:flex",style:{color:D.color},children:"View All →"})]}),d("div",{className:"flex flex-col gap-2",children:[d("div",{className:"flex items-center gap-3",children:[d("div",{className:"rounded-lg p-2 leading-none shrink-0",style:{backgroundColor:`${D.color}15`},children:[D.iconType==="folder"&&n(Fh,{size:20,style:{color:D.color}}),D.iconType==="check"&&n(Bo,{size:20,style:{color:D.color}}),D.iconType==="image"&&n(Lr,{size:20,style:{color:D.color}}),D.iconType==="code-xml"&&n(Dh,{size:20,style:{color:D.color}})]}),n("div",{className:"text-3xl font-semibold font-mono text-gray-900 leading-none",children:D.value.toLocaleString("en-US")})]}),n("div",{className:"text-xs font-medium transition-colors flex items-center gap-1 md:hidden",style:{color:D.color},children:"View All →"})]})]})},E))}),d("div",{className:"mt-12 grid gap-8 items-start",style:{gridTemplateColumns:"repeat(auto-fit, minmax(500px, 1fr))"},children:[d("section",{id:"uncommitted",className:"bg-white border border-gray-200 rounded-xl p-6",children:[d("div",{className:"flex justify-between items-start mb-5",children:[d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Uncommitted Changes"}),n("p",{className:"text-sm text-gray-500 m-0",children:r.length>0?`${r.length} file${r.length!==1?"s":""} with ${s.length} uncommitted entit${s.length!==1?"ies":"y"}`:"No uncommitted changes detected"})]}),P.length>0&&n("button",{onClick:Y,disabled:u.state!=="idle"||v||F.length===0,className:"px-5 py-2.5 text-white border-none rounded-lg text-sm font-semibold cursor-pointer transition-all hover:-translate-y-px disabled:bg-gray-400 disabled:cursor-not-allowed disabled:translate-y-0",style:{backgroundColor:"#005C75"},onMouseEnter:D=>D.currentTarget.style.backgroundColor="#004560",onMouseLeave:D=>D.currentTarget.style.backgroundColor="#005C75",children:u.state!=="idle"||v?"Starting analysis...":F.length===0?"All Queued":"Analyze All"})]}),r.length>0?n("div",{className:"flex flex-col gap-3",children:r.map(([D,E])=>{const W=m.has(D),K=E.editedEntities||[];return d("div",{className:"bg-white border border-gray-200 border-l-4 rounded-lg overflow-hidden",style:{borderLeftColor:"#005C75"},children:[n("div",{className:"p-4 cursor-pointer select-none transition-colors hover:bg-gray-50",onClick:()=>J(D),role:"button",tabIndex:0,children:d("div",{className:"flex items-center gap-3",children:[n("span",{className:"text-gray-500 text-xs w-4 shrink-0",children:W?"▼":"▶"}),d("svg",{width:"16",height:"20",viewBox:"0 0 12 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"shrink-0",children:[d("g",{clipPath:"url(#clip0_784_10666)",children:[n("path",{d:"M0 2.55857C0 1.14551 1.14551 0 2.55857 0H8.73194L12 3.3616V13.4414C12 14.8545 10.8545 16 9.44143 16H2.55857C1.14551 16 0 14.8545 0 13.4414V2.55857Z",fill:"#DDDDFE"}),n("path",{d:"M8.72656 3.3307H11.9906L8.72656 0V3.3307Z",fill:"#306AFF"}),n("line",{x1:"1.8125",y1:"5.94825",x2:"10.0235",y2:"5.94825",stroke:"#306AFF",strokeWidth:"1.27929"}),n("line",{x1:"1.8125",y1:"8.82715",x2:"6.01207",y2:"8.82715",stroke:"#306AFF",strokeWidth:"1.27929"}),n("line",{x1:"1.8125",y1:"11.7061",x2:"10.0235",y2:"11.7061",stroke:"#306AFF",strokeWidth:"1.27929"})]}),n("defs",{children:n("clipPath",{id:"clip0_784_10666",children:n("rect",{width:"12",height:"16",fill:"white"})})})]}),d("div",{className:"flex-1 min-w-0",children:[n("span",{className:"font-normal text-gray-900 text-sm block truncate",children:D}),d("span",{className:"text-xs text-gray-500",children:[K.length," entit",K.length!==1?"ies":"y"]})]})]})}),W&&n("div",{className:"border-t border-gray-200 bg-gray-50 p-3 flex flex-col gap-2",children:K.length>0?K.map(Z=>{const q=$.has(Z.sha),U=I.has(Z.sha)||R.has(Z.sha);return d(ke,{to:`/entity/${Z.sha}`,className:"flex items-center gap-4 p-4 bg-white border border-gray-200 rounded-lg no-underline transition-all hover:shadow-md hover:-translate-y-0.5",style:{borderColor:"inherit"},onMouseEnter:L=>L.currentTarget.style.borderColor="#005C75",onMouseLeave:L=>L.currentTarget.style.borderColor="inherit",children:[d("div",{className:"shrink-0 rounded-lg p-1.5 flex items-center justify-center",style:{backgroundColor:Z.entityType==="visual"?"#8B5CF615":Z.entityType==="library"?"#6366F1":"#EC4899"},children:[Z.entityType==="visual"&&n(Lr,{size:16,style:{color:"#8B5CF6"}}),Z.entityType==="library"&&n(sd,{size:16,className:"text-white"}),Z.entityType==="other"&&n(Rh,{size:16,className:"text-white"})]}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-0.5",children:[n("div",{className:"font-semibold text-gray-900 text-sm",children:Z.name}),Z.entityType==="visual"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#8B5CF60D",color:"#8B5CF6"},children:"Visual"}),Z.entityType==="library"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#0DBFE90D",color:"#0DBFE9"},children:"Library"}),Z.entityType==="other"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#EC48990D",color:"#EC4899"},children:"Other"})]}),Z.description&&n("div",{className:"text-sm text-gray-500 mt-1 overflow-hidden text-ellipsis whitespace-nowrap",children:Z.description})]}),d("div",{className:"flex items-center gap-2 shrink-0",children:[q&&d("div",{className:"px-2 py-1 bg-pink-100 rounded text-xs text-pink-700 font-semibold flex items-center gap-1.5",children:[n(Mt,{size:14,className:"animate-spin"}),"Analyzing..."]}),!q&&U&&n("div",{className:"px-2 py-1 bg-purple-50 border border-purple-300 rounded text-xs text-purple-700 font-semibold",children:"⏳ Queued"}),!q&&!U&&n("button",{onClick:L=>{L.preventDefault(),L.stopPropagation(),h(`Starting analysis for ${Z.name}...`,"info",3e3),u.submit({entityShas:Z.sha},{method:"post",action:"/api/analyze"})},disabled:u.state!=="idle",className:"px-3 py-1.5 text-white border-none rounded text-xs font-medium cursor-pointer transition-all disabled:bg-gray-400 disabled:cursor-not-allowed",style:{backgroundColor:"#005C75"},onMouseEnter:L=>L.currentTarget.style.backgroundColor="#004560",onMouseLeave:L=>L.currentTarget.style.backgroundColor="#005C75",children:"Analyze"})]})]},Z.sha)}):n("div",{className:"text-sm text-gray-500 italic p-2",children:"No entity changes detected in this file"})})]},D)})}):d("div",{className:"py-12 px-6 text-center flex flex-col items-center rounded-lg min-h-50 justify-center border border-dashed",style:{backgroundColor:"#F2F7F8",borderColor:"#BBCCD3"},children:[n("div",{className:"mb-4 rounded-full flex items-center justify-center",style:{width:"48px",height:"48px",backgroundColor:"#E5EFF1"},children:d("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"#7A9BA5",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n("polyline",{points:"14 2 14 8 20 8"}),n("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),n("line",{x1:"9",y1:"15",x2:"15",y2:"15"})]})}),n("p",{className:"text-sm font-medium m-0",style:{color:"#5A7380"},children:"No Uncommitted Changes."})]})]}),!y&&n(VC,{recentSimulations:a}),y&&d("section",{className:"bg-white border border-gray-200 rounded-xl p-6",children:[n("div",{className:"flex justify-between items-start mb-5",children:d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Recent Simulations"}),n("p",{className:"text-sm text-gray-500 m-0",children:a.length>0?`Latest ${a.length} captured screenshot${a.length!==1?"s":""}`:"No simulations captured yet"})]})}),y&&d("div",{className:"p-0 bg-white rounded-lg flex flex-col gap-0",children:[k&&n("div",{className:"p-4 rounded-t-lg",style:{backgroundColor:"#F0F5F8",borderBottom:"2px solid #005C75"},children:d("div",{className:"flex items-center gap-3",children:[n("span",{className:"text-[32px] leading-none",children:n(gt,{type:"visual"})}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"text-base font-bold mb-1",style:{color:"#005C75"},children:["Generating Simulations for ",k.name]}),n("div",{className:"text-[13px] text-gray-500 font-mono overflow-hidden text-ellipsis whitespace-nowrap",children:k.filePath})]})]})}),_?d("div",{className:"flex items-center gap-2 text-sm text-emerald-600 font-medium p-4 bg-emerald-50",children:[n("span",{className:"text-lg",children:"✅"}),d("span",{children:["Complete (",N.length," scenario",N.length!==1?"s":"",")"]})]}):w?d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(Mt,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap font-mono text-xs",title:w,children:w}),i&&n("button",{onClick:()=>b(!0),className:"px-2 py-1.5 bg-gray-500 text-white border-none rounded-md text-[13px] font-medium cursor-pointer transition-all whitespace-nowrap self-start hover:bg-gray-600 hover:-translate-y-px",title:"View analysis logs",children:"📋 Logs"})]}):u.state!=="idle"?d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(Mt,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap",children:"Initializing analysis..."})]}):d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(Mt,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap",children:"Starting analysis..."})]}),N.length>0&&n("div",{className:"flex gap-2 flex-wrap p-4 bg-white border-t border-gray-200",children:N.slice(0,8).map((D,E)=>{var z,V,re;const W=(z=k==null?void 0:k.analyses)==null?void 0:z[0],K=_a(D,W==null?void 0:W.status,void 0,y||void 0,void 0),Z=(re=(V=D.metadata)==null?void 0:V.screenshotPaths)==null?void 0:re[0],q=K.isCaptured,U=K.status==="capturing"||K.status==="starting",L=K.hasError;return q?n(ke,{to:`/entity/${y}`,className:"w-20 h-15 border-2 border-gray-200 rounded overflow-hidden bg-gray-50 cursor-pointer transition-all flex items-center justify-center no-underline hover:border-blue-600 hover:scale-105 hover:shadow-md",children:n(dt,{screenshotPath:Z,alt:D.name,title:D.name,className:"max-w-full max-h-full object-contain object-center"})},E):L?n("div",{className:"w-20 h-15 border-2 border-solid border-red-300 rounded bg-red-50 flex flex-col items-center justify-center text-lg",title:K.errorMessage||"Capture error",children:n("span",{className:"text-red-500",children:"⚠️"})},E):n("div",{className:"w-20 h-15 border-2 border-dashed border-gray-300 rounded bg-gray-50 flex items-center justify-center text-2xl",title:`${U?"Capturing":"Pending"} ${D.name}...`,children:n("span",{className:U?"animate-pulse":"text-gray-400",children:U?"⋯":"⏹️"})},E)})})]})]})]}),x&&i&&n(an,{projectSlug:i,onClose:()=>b(!1)})]})})}),ZC=Object.freeze(Object.defineProperty({__proto__:null,default:QC,loader:qC,meta:GC},Symbol.toStringTag,{value:"Module"}));function up({content:e,className:t}){const r=e.trim().replace(/^#+ .+$/m,"").trim();return n(hm,{remarkPlugins:[mm],components:{h1:({children:s})=>n("h1",{className:"text-lg font-bold text-gray-900 mb-3 mt-6 first:mt-0 pb-1 border-b border-gray-200",children:s}),h2:({children:s})=>n("h2",{className:"text-base font-semibold text-gray-900 mb-2 mt-5 first:mt-0",children:s}),h3:({children:s})=>n("h3",{className:"text-sm font-semibold text-gray-800 mb-2 mt-4 first:mt-0",children:s}),p:({children:s})=>n("p",{className:"text-sm text-gray-700 mb-3 leading-relaxed",children:s}),ul:({children:s})=>n("ul",{className:"list-disc ml-5 text-sm text-gray-700 mb-3 space-y-1.5",children:s}),ol:({children:s})=>n("ol",{className:"list-decimal ml-5 text-sm text-gray-700 mb-3 space-y-1.5",children:s}),li:({children:s})=>n("li",{className:"leading-relaxed",children:s}),code:({children:s,className:a})=>(a==null?void 0:a.includes("language-"))?n("pre",{className:"bg-gray-100 rounded p-3 text-xs font-mono overflow-x-auto mb-3",children:n("code",{children:s})}):n("code",{className:"bg-gray-100 px-1.5 py-0.5 rounded text-xs font-mono text-gray-800",children:s}),pre:({children:s})=>n(we,{children:s}),strong:({children:s})=>n("strong",{className:"font-semibold text-gray-900",children:s}),blockquote:({children:s})=>n("blockquote",{className:"border-l-4 border-gray-300 pl-4 italic text-gray-600 mb-3",children:s}),table:({children:s})=>n("div",{className:"overflow-x-auto mb-3",children:n("table",{className:"min-w-full text-sm border-collapse border border-gray-200",children:s})}),thead:({children:s})=>n("thead",{className:"bg-gray-50",children:s}),th:({children:s})=>n("th",{className:"border border-gray-200 px-3 py-2 text-left font-semibold text-gray-900",children:s}),td:({children:s})=>n("td",{className:"border border-gray-200 px-3 py-2 text-gray-700",children:s}),a:({children:s,href:a})=>n("a",{href:a,className:"text-[#005C75] hover:underline",target:"_blank",rel:"noopener noreferrer",children:s})},children:r})}function pp(e){const t={name:"root",path:"",memories:[],children:new Map};for(const r of e){const s=r.filePath.split("/");s.pop();let a=t,o="";for(const i of s)o=o?`${o}/${i}`:i,a.children.has(i)||a.children.set(i,{name:i,path:o,memories:[],children:new Map}),a=a.children.get(i);s.length===0?t.memories.push(r):a.memories.push(r)}return t}function hp(e){let t=e.memories.length;for(const r of e.children.values())t+=hp(r);return t}function Aa(e,t){var s;const r=e.match(/^#+ (.+)$/m);return r?r[1]:((s=t.split("/").pop())==null?void 0:s.replace(".md",""))||t}function Or(e){return Math.round(e/3.5)}function tr(e){const t=new Date(e),r=new Date;if(t.toDateString()===r.toDateString()){const c=r.getTime()-t.getTime(),u=Math.floor(c/(1e3*60)),p=Math.floor(c/(1e3*60*60));return u<3?"Just now":u<60?`${u}min ago`:p===1?"1h ago":`${p}h ago`}const a=t.toLocaleDateString("en-US",{month:"short"}),o=t.getDate(),i=t.getFullYear(),l=r.getFullYear();return i===l?`${a} ${o}`:`${a} ${o}, ${i}`}function XC({rule:e,onEdit:t,onDelete:r,onView:s,isReviewed:a,onToggleReviewed:o,changeType:i,isUncommitted:l,changeDate:c,diff:u,isFadingOut:p,showLeftBorder:h}){const[m,f]=j(!1),[y,g]=j(!1),x=le(()=>Aa(e.body,e.filePath),[e.body,e.filePath]),b=Or(e.body.length),v=m?"#3e3e3e":l?"#d97706":"#c7c7c7",S=`rounded-lg border overflow-hidden transition-all ease-in-out ${l?"bg-amber-50 border-amber-300":"bg-white border-gray-200"}`,w={...p&&{opacity:0,maxHeight:0,paddingTop:0,paddingBottom:0,marginBottom:0,borderWidth:0,transitionDuration:"600ms"}};return d("div",{className:S,style:w,children:[n("div",{className:`p-4 cursor-pointer ${l?"hover:bg-amber-100":"hover:bg-gray-50"}`,onClick:()=>s?s(e):f(!m),children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex items-center gap-3",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:m?"rotate(90deg)":"none",transition:"transform 0.2s"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:v})})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:l?"#78350f":"#000"},children:x}),i&&n("span",{className:`px-2 py-0.5 rounded uppercase font-medium tracking-wider ${i==="deleted"?"bg-red-100 text-red-700":""}`,style:{fontSize:"10px",...i==="added"&&{backgroundColor:"#CBF3FA",color:"#005C75"},...i==="modified"&&{backgroundColor:"#FFE8C1",color:"#C67E06"}},children:i}),l&&n("span",{className:"px-2 py-0.5 bg-amber-200 text-amber-800 rounded font-medium uppercase tracking-wider",style:{fontSize:"10px"},children:"Uncommitted"}),d("span",{className:"text-xs text-gray-400",children:["~",b.toLocaleString()," tokens"]})]}),n("div",{className:"flex items-center gap-2 text-xs text-gray-500 flex-wrap",children:e.frontmatter.paths&&e.frontmatter.paths.length>0&&d(we,{children:[e.frontmatter.paths.slice(0,2).map((C,k)=>n("span",{className:"px-2 py-0.5 bg-gray-100 text-gray-500 rounded font-mono",children:C},k)),e.frontmatter.paths.length>2&&d("span",{className:"text-gray-400 whitespace-nowrap",children:["+",e.frontmatter.paths.length-2," more"]})]})})]})]}),d("div",{className:"flex items-center gap-3 flex-shrink-0",children:[c&&n("span",{className:"text-xs text-gray-400",children:tr(c)}),o&&n("button",{onClick:C=>{C.stopPropagation(),o(e.filePath,e.lastModified,a??!1)},className:`w-5 h-5 rounded-full border-2 flex items-center justify-center cursor-pointer transition-colors ${a?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,title:a?"Mark as unreviewed":"Mark as reviewed",children:a&&n("svg",{width:"10",height:"8",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})]})]})}),m&&d("div",{className:`border-t ${l?"border-amber-200":"border-gray-100"}`,children:[d("div",{className:`px-4 py-3 flex items-center justify-between ${l?"bg-amber-50":"bg-white"}`,children:[n("div",{className:"flex items-center gap-2",children:i==="modified"&&u&&d("button",{onClick:C=>{C.stopPropagation(),g(!y)},className:`flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer ${y?l?"bg-amber-200 text-amber-900":"bg-gray-200 text-gray-900":l?"text-amber-700 hover:text-amber-900 hover:bg-amber-100":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"}`,children:[n(Os,{className:"w-3 h-3"}),y?"Hide Diff":"Show Diff"]})}),i!=="deleted"&&d("div",{className:"flex items-center gap-2",children:[d("button",{onClick:C=>{C.stopPropagation(),t(e)},className:`flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer ${l?"text-amber-700 hover:text-amber-900 hover:bg-amber-100":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"}`,children:[n(Oh,{className:"w-3 h-3"}),"Edit"]}),d("button",{onClick:C=>{C.stopPropagation(),r(e)},className:"flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer text-red-600 hover:text-red-800 hover:bg-red-100",children:[n(Lh,{className:"w-3 h-3"}),"Delete"]})]})]}),y&&u&&n("pre",{className:"mx-4 mb-4 p-4 text-xs font-mono overflow-x-auto bg-gray-900 text-gray-100 max-h-64 overflow-y-auto rounded-md",children:u.split(`
|
|
565
|
-
`).map((C,k)=>{let N="";return C.startsWith("+")&&!C.startsWith("+++")?N="text-green-400":C.startsWith("-")&&!C.startsWith("---")?N="text-red-400":C.startsWith("@@")&&(N="text-cyan-400"),n("div",{className:N,children:C},k)})}),d("div",{className:"mx-4 mb-3",children:[n("div",{className:"text-xs text-gray-500 mb-1.5 font-medium",children:"Edit with Claude:"}),d("div",{className:"flex items-center gap-2",children:[d("span",{className:"px-2 py-1 bg-gray-100 text-gray-600 rounded font-mono text-xs",children:["Claude, can you help me edit this rule: `",e.filePath,"`"]}),n(pt,{content:`Claude, can you help me edit this rule: \`${e.filePath}\``,icon:!0,iconSize:14,className:"p-1 text-gray-400 hover:text-gray-600 rounded transition-colors"})]})]}),e.frontmatter.paths&&e.frontmatter.paths.length>0&&d("div",{className:"mx-4 mb-3",children:[n("div",{className:"text-xs text-gray-500 mb-1.5 font-medium",children:"Applies to paths:"}),n("div",{className:"flex flex-wrap gap-1.5",children:e.frontmatter.paths.map((C,k)=>n("span",{className:"px-2 py-0.5 bg-gray-100 text-gray-600 rounded font-mono text-xs",children:C},k))})]}),!y&&n("div",{className:"mx-4 mb-4 p-4 rounded border max-h-[500px] overflow-auto bg-white border-gray-200",children:n(up,{content:e.body})})]})]})}function e2(){return new Date().toISOString().split(".")[0]+"",`---
|
|
566
|
-
paths:
|
|
567
|
-
- '**/*.ts'
|
|
568
|
-
---
|
|
569
|
-
|
|
570
|
-
## Title
|
|
571
|
-
|
|
572
|
-
Description here.
|
|
573
|
-
`}function t2({rule:e,onSave:t,onCancel:r}){const[s,a]=j(e?`.claude/rules/${e.filePath}`:""),[o,i]=j((e==null?void 0:e.content)||e2()),[l,c]=j(!!e),[u,p]=j(!1),h=!e;return d("div",{className:"p-6",children:[d("div",{className:"flex items-center justify-between mb-4",children:[n("h3",{className:"text-lg font-semibold",style:{fontFamily:"Sora"},children:e?"Edit Rule":"Create New Rule"}),n("button",{onClick:r,className:"text-gray-400 hover:text-gray-600 cursor-pointer",children:n(ir,{className:"w-5 h-5"})})]}),h&&d("div",{className:"mb-6",children:[n("div",{className:"bg-[#f0f9ff] border border-[#bae6fd] rounded-lg p-4 mb-4",children:d("div",{className:"flex items-start gap-3",children:[n(Os,{className:"w-5 h-5 text-[#0284c7] mt-0.5 flex-shrink-0"}),d("div",{children:[n("h4",{className:"font-medium text-[#0c4a6e] mb-1",children:"Recommended: Use Claude Code"}),n("p",{className:"text-sm text-[#0369a1] mb-2",children:"Run this command in Claude Code to create a properly formatted rule with the right file location and paths:"}),d("div",{className:"relative",children:[n("code",{className:"block bg-white px-3 py-2 pr-9 rounded border border-[#bae6fd] font-mono text-sm text-[#0c4a6e]",children:"/codeyam-new-rule"}),n("button",{onClick:()=>{navigator.clipboard.writeText("/codeyam-new-rule"),p(!0),setTimeout(()=>p(!1),2e3)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-[#0284c7] hover:text-[#0c4a6e] cursor-pointer transition-colors",title:"Copy command",children:u?n(_t,{className:"w-4 h-4 text-green-500"}):n($t,{className:"w-4 h-4"})})]})]})]})}),d("button",{onClick:()=>c(!l),className:"flex items-center gap-2 text-sm text-gray-600 hover:text-gray-900 cursor-pointer",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:l?"rotate(90deg)":"none",transition:"transform 0.2s"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:l?"#3e3e3e":"#c7c7c7"})})}),"Or create manually"]})]}),(l||!h)&&d("div",{className:"space-y-4",children:[d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"File Path (relative to .claude/rules/)"}),d("div",{className:"relative",children:[n("input",{type:"text",value:s,onChange:m=>a(m.target.value),placeholder:"e.g., src/webserver/architecture.md",className:"w-full px-3 py-2 pr-10 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent font-mono text-sm",disabled:!!e}),n("button",{onClick:()=>{navigator.clipboard.writeText(s)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-gray-400 hover:text-gray-600 cursor-pointer",title:"Copy path",children:n($t,{className:"w-4 h-4"})})]})]}),e&&d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Ask Claude for help editing:"}),d("div",{className:"relative",children:[n("input",{type:"text",value:`Claude, can you help me edit the rule: \`${s}\``,readOnly:!0,className:"w-full px-3 py-2 pr-10 border border-gray-300 rounded-md bg-gray-50 font-mono text-sm text-gray-600"}),n("button",{onClick:()=>{navigator.clipboard.writeText(`Claude, can you help me edit the rule: \`${s}\``)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-gray-400 hover:text-gray-600 cursor-pointer",title:"Copy prompt",children:n($t,{className:"w-4 h-4"})})]})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Content"}),n("textarea",{value:o,onChange:m=>i(m.target.value),rows:20,className:"w-full px-3 py-2 border border-gray-700 rounded-md focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent font-mono text-sm bg-gray-900 text-gray-100 [&::-webkit-scrollbar]:w-2 [&::-webkit-scrollbar-track]:bg-gray-800 [&::-webkit-scrollbar-thumb]:bg-gray-600 [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:hover:bg-gray-500 [&::-webkit-resizer]:bg-gray-700"})]}),d("div",{className:"flex justify-end gap-2",children:[n("button",{onClick:r,className:"px-4 py-2 text-[#001f3f] hover:text-[#001530] rounded-md cursor-pointer font-mono uppercase text-xs font-semibold",children:"Cancel"}),n("button",{onClick:()=>t(s.replace(/^\.claude\/rules\//,""),o),disabled:!s.trim()||!o.trim(),className:"px-4 py-2 bg-[#005C75] text-white rounded-md hover:bg-[#004a5e] disabled:opacity-50 disabled:cursor-not-allowed cursor-pointer font-mono uppercase text-xs font-semibold",children:"Save"})]})]})]})}function n2({memories:e,selectedPath:t,onSelectPath:r,expandedFolders:s,onToggleFolder:a}){const o=le(()=>pp(e),[e]),i=(u,p,h)=>{if(u.target.closest(".chevron-toggle")){h&&a(p||"root");return}const f=p||null;r(t===f?null:f),h&&!s.has(p||"root")&&a(p||"root")},l=u=>{r(t===u?null:u)},c=(u,p=0)=>{const h=s.has(u.path||"root"),m=hp(u),f=u.children.size>0,y=u.name==="root"?"(root)":u.name,g=u.memories.length>0||f,x=u.path||"",b=t===x||t===null&&x==="";return d("div",{children:[d("div",{className:`flex items-center gap-2 py-2.5 cursor-pointer rounded px-2 relative ${b?"bg-[#E0E9EC]":"hover:bg-gray-100"}`,style:{paddingLeft:`${p*12+8}px`},onClick:v=>i(v,u.path,g),children:[g&&n("span",{className:"chevron-toggle p-0.5 -m-0.5 hover:bg-gray-200 rounded",onClick:v=>{v.stopPropagation(),a(u.path||"root")},children:n(dn,{className:`w-3 h-3 text-gray-500 transition-transform ${h?"rotate-90":""}`})}),!g&&n("div",{className:"w-3"}),n(od,{className:"w-3.5 h-3.5 text-[#005C75]"}),n("span",{className:`text-xs font-mono font-semibold ${b?"text-[#005C75]":""}`,style:{color:"#005C75"},children:y}),d("span",{className:"text-xs ml-auto",style:{color:"#005C75"},children:[m," rules"]})]}),h&&d("div",{className:"relative",children:[(u.memories.length>0||f)&&n("div",{className:"absolute top-0 bottom-0 w-px bg-gray-300",style:{left:`${p*12+8+6}px`}}),u.memories.length>0&&n("div",{style:{paddingLeft:`${(p+1)*12+8}px`},children:u.memories.map(v=>{var w;const S=t===v.filePath;return n("div",{className:`flex items-center gap-2 py-1 px-2 text-sm rounded cursor-pointer relative ${S?"bg-[#E0E9EC] text-[#005C75]":"text-gray-600 hover:bg-gray-50"}`,onClick:()=>l(v.filePath),children:n("span",{className:"text-xs",children:(w=v.filePath.split("/").pop())==null?void 0:w.replace(".md","")})},v.filePath)})}),f&&n("div",{children:Array.from(u.children.values()).sort((v,S)=>v.name.localeCompare(S.name)).map(v=>c(v,p+1))})]})]},u.path||"root")};return n("div",{className:"bg-white rounded-lg border border-gray-200 p-4 mb-8",children:c(o)})}function r2({memories:e,onEdit:t,onDelete:r,expandedFolders:s,onToggleFolder:a,reviewedStatus:o,onMarkReviewed:i,onMarkUnreviewed:l,onViewRule:c}){const[u,p]=j({});te(()=>{p({})},[o]);const h=le(()=>({...o,...u}),[o,u]),m=le(()=>pp(e),[e]),f=(g,x,b)=>{p(v=>({...v,[g]:!b})),b?l(g):i(g,x)},y=(g,x=0)=>{const b=s.has(g.path||"root"),v=g.children.size>0,S=g.name==="root"?"root":g.name,w=g.memories.length>0||v;return d("div",{children:[d("div",{className:"flex items-center gap-2 py-2 cursor-pointer hover:bg-gray-50 rounded px-2 mb-2",style:{backgroundColor:"rgba(224, 233, 236, 0.5)"},onClick:()=>w&&a(g.path||"root"),children:[w&&n(dn,{className:`w-4 h-4 text-gray-500 transition-transform ${b?"rotate-90":""}`}),!w&&n("div",{className:"w-4"}),n(od,{className:"w-4 h-4 text-[#005C75]"}),n("span",{className:"text-sm font-mono font-semibold",style:{color:"#001f3f"},children:S})]}),b&&d("div",{className:"ml-10 space-y-4 relative",children:[(g.memories.length>0||v)&&n("div",{className:"absolute top-0 bottom-0 w-px bg-gray-300",style:{left:"-24px"}}),g.memories.length>0&&n("div",{className:"space-y-2",children:g.memories.map(C=>n(XC,{rule:C,onEdit:t,onDelete:r,onView:c,isReviewed:h[C.filePath]??!1,onToggleReviewed:f},C.filePath))}),v&&n("div",{className:"space-y-4",children:Array.from(g.children.values()).sort((C,k)=>C.name.localeCompare(k.name)).map(C=>y(C,x+1))})]})]},g.path||"root")};return n("div",{children:y(m)})}function s2({memories:e,reviewedStatus:t,onViewRule:r,refreshKey:s}){const[a,o]=j("unreviewed"),[i,l]=j("by-date"),[c,u]=j(null),[p,h]=j(!0),[m,f]=j(new Map),y=ye(t),g=ye([]);te(()=>()=>{g.current.forEach(clearTimeout)},[]),te(()=>{(async()=>{h(!0);try{const k=await(await fetch("/api/memory?action=rule-coverage")).json();u(k.coverage??null)}catch{u(null)}finally{h(!1)}})()},[s]),te(()=>{const w=y.current,C=[];for(const[k,N]of Object.entries(t))N&&!w[k]&&C.push(k);y.current=t,C.length!==0&&(f(k=>{const N=new Map(k);return C.forEach(A=>N.set(A,"approved")),N}),g.current.push(setTimeout(()=>{f(k=>{const N=new Map(k);return C.forEach(A=>N.set(A,"fading")),N})},1500)),g.current.push(setTimeout(()=>{f(k=>{const N=new Map(k);return C.forEach(A=>N.delete(A)),N})},2500)))},[t]);const x=le(()=>{const w=[...e];return i==="by-impact"&&c!==null?w.sort((C,k)=>{const N=c[C.filePath]??0,A=c[k.filePath]??0;return A!==N?A-N:new Date(k.lastModified).getTime()-new Date(C.lastModified).getTime()}):w.sort((C,k)=>new Date(k.lastModified).getTime()-new Date(C.lastModified).getTime()),w},[e,i,c]),b=le(()=>x.filter(w=>!t[w.filePath]).length,[x,t]),v=le(()=>a==="unreviewed"?x.filter(w=>!t[w.filePath]||m.has(w.filePath)):x,[x,a,t,m]),S=!p&&c!==null;return d("div",{className:"bg-white rounded-lg border border-gray-200 overflow-hidden flex flex-col",children:[d("div",{className:"flex items-center gap-4 border-b border-[#e1e1e1] px-5",children:[n("button",{className:"py-3 border-b-2 border-[#232323] text-[#232323] bg-transparent cursor-pointer",children:n("span",{className:"text-[14px] leading-6",style:{fontFamily:"Sora",fontWeight:600},children:"Recently Changed Rules"})}),n("div",{className:"flex-1"}),d("button",{onClick:()=>o("unreviewed"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="unreviewed"?"#005C75":"#d1d5db"}}),d("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="unreviewed"?600:400,color:a==="unreviewed"?"#005C75":"#626262"},children:["Unreviewed Rules (",b,")"]})]}),d("button",{onClick:()=>o("all"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="all"?"#005C75":"#d1d5db"}}),d("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="all"?600:400,color:a==="all"?"#005C75":"#626262"},children:["All (",x.length,")"]})]})]}),d("div",{className:"grid grid-cols-[1fr_90px_80px_100px] px-5 py-2 border-b border-gray-100",children:[n("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium",children:"Rule"}),d("button",{onClick:()=>S&&l("by-impact"),className:`text-[11px] uppercase tracking-wider font-medium text-center flex items-center justify-center gap-0.5 whitespace-nowrap bg-transparent border-none p-0 ${S?"cursor-pointer hover:text-gray-600":"cursor-default"} ${i==="by-impact"?"text-[#005C75]":"text-gray-400"}`,children:["Src Files",i==="by-impact"&&n(Ct,{className:"w-3 h-3"})]}),d("button",{onClick:()=>l("by-date"),className:`text-[11px] uppercase tracking-wider font-medium text-center flex items-center justify-center gap-0.5 whitespace-nowrap bg-transparent border-none cursor-pointer p-0 hover:text-gray-600 ${i==="by-date"?"text-[#005C75]":"text-gray-400"}`,children:["Changed At",i==="by-date"&&n(Ct,{className:"w-3 h-3"})]}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium text-center flex items-center justify-center gap-1 whitespace-nowrap",children:["✓ Reviewed",d("span",{className:"relative group",children:[n(xo,{className:"w-3 h-3 text-gray-300 cursor-help"}),n("span",{className:"absolute top-full right-0 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-52 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Showing which rules have been reviewed and approved. Click a rule to view it and approve it"})]})]})]}),n("div",{className:"flex-1 overflow-y-auto max-h-[400px]",children:v.map(w=>{const C=t[w.filePath]??!1,k=m.get(w.filePath),N=Aa(w.body,w.filePath),A=(c==null?void 0:c[w.filePath])??0;return n("div",{className:`border-b border-gray-50 transition-all ${k==="fading"?"duration-1000":"duration-300"}`,style:{opacity:k==="fading"?0:1},children:d("div",{className:`grid grid-cols-[1fr_90px_80px_100px] px-5 py-2.5 items-center cursor-pointer transition-colors duration-300 ${k==="approved"?"bg-[#f0fdf4]":"hover:bg-gray-50"}`,onClick:()=>r(w),children:[n("div",{className:"flex items-center gap-2 min-w-0",children:n("span",{className:"text-sm text-gray-900 truncate",children:N})}),n("span",{className:"text-xs text-center",children:p?n("span",{className:"inline-block w-6 h-3 bg-gray-100 rounded animate-pulse"}):c!==null?n("span",{className:A>0?"text-gray-700 font-medium":"text-gray-300",children:A}):n("span",{className:"text-gray-300",children:"—"})}),n("span",{className:"text-xs text-gray-500 text-center",children:tr(w.lastModified)}),n("div",{className:"flex justify-center",children:n("div",{className:`w-5 h-5 rounded-full border-2 flex items-center justify-center transition-colors duration-300 ${C?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,children:C&&n("svg",{width:"10",height:"8",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})})]})},w.filePath)})}),v.length===0&&a==="unreviewed"&&n("div",{className:"px-5 py-8 text-center text-sm text-gray-500",children:"All rules have been reviewed"})]})}function a2(e,t){const r=t.map(s=>`- \`${s}\``).join(`
|
|
574
|
-
`);return`Please audit the following Claude Rules that apply to the file \`${e}\`:
|
|
575
|
-
|
|
576
|
-
${r}
|
|
577
|
-
|
|
578
|
-
Please review these rules in conjunction with one another as they all apply to this file.
|
|
579
|
-
|
|
580
|
-
Review each rule with the other rules in mind:
|
|
581
|
-
- Necessary: Is this rule really necessary to avoid confusion in future work sessions?
|
|
582
|
-
- Efficiency: Are the rules concise and well-structured?
|
|
583
|
-
- Effectiveness: Does the rules provide clear, actionable guidance?
|
|
584
|
-
- Context window impact: Can the rules be shortened without losing important information?
|
|
585
|
-
- Overlap: Is there any redundant information across the rules that can be consolidated?
|
|
586
|
-
- Duplication: Are there any rules that are nearly identical that can be merged or removed?
|
|
587
|
-
|
|
588
|
-
Remember that documenting past confusion isn't helpul unless that confusion will likely happen again.
|
|
589
|
-
|
|
590
|
-
Note: Each rule may apply to multiple files, not just the file listed above. Consider this when suggesting changes — modifications should not negatively impact the rule's usefulness for other files it covers.`}function o2({filePath:e,rulePaths:t,onClose:r}){const[s,a]=j(!1),o=a2(e,t);return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:r,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative",onClick:l=>l.stopPropagation(),children:[n("button",{onClick:r,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(ir,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-1",children:"Audit Rules For File"}),n("p",{className:"font-mono text-sm text-gray-500 mb-4 truncate",title:e,children:e}),n("p",{className:"text-gray-600 text-sm mb-4",children:"Claude can audit these rules to try and make them as efficient and effective as possible, reducing the impact on the context window."}),n("textarea",{readOnly:!0,value:o,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-4",children:n("button",{onClick:()=>{navigator.clipboard.writeText(o),a(!0),setTimeout(()=>a(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:s?d(we,{children:[n(_t,{className:"w-4 h-4"}),"Copied!"]}):d(we,{children:[n($t,{className:"w-4 h-4"}),"Copy Prompt"]})})})]})})}function i2({refreshKey:e,reviewedStatus:t,memories:r,onViewRule:s}){const[a,o]=j("unreviewed"),[i,l]=j(null),[c,u]=j(""),[p,h]=j(0),[m,f]=j(!1),[y,g]=j(null),[x,b]=j(null),v=ye(null),S=ye(null),[w,C]=j({topPaths:[],totalFilesWithCoverage:0,allSourceFiles:[]}),[k,N]=j(!0);te(()=>{(async()=>{N(!0);try{const J=await(await fetch("/api/memory?action=audit")).json();C({topPaths:J.topPaths||[],totalFilesWithCoverage:J.totalFilesWithCoverage||0,allSourceFiles:J.allSourceFiles||[]})}catch(Y){console.error("Failed to load audit data:",Y)}finally{N(!1)}})()},[e]);const A=le(()=>a==="all"?w.topPaths:w.topPaths.filter(F=>F.matchingRules.some(Y=>!t[Y.filePath])),[w.topPaths,a,t]);le(()=>w.topPaths.filter(F=>F.matchingRules.some(Y=>!t[Y.filePath])).length,[w.topPaths,t]);const _=F=>F.split("/").pop()||F,M=le(()=>{const F=new Map;for(const Y of w.topPaths)F.set(Y.filePath,Y);return F},[w.topPaths]),$=le(()=>{if(!c.trim())return[];const F=c.toLowerCase(),Y=[],J=[];for(const O of w.allSourceFiles){const B=O.toLowerCase();if(!B.includes(F))continue;const T=M.get(O)||{filePath:O,matchingRules:[],totalTextLength:0};B.startsWith(F)?Y.push(T):J.push(T)}return Y.sort((O,B)=>O.filePath.localeCompare(B.filePath)),J.sort((O,B)=>O.filePath.localeCompare(B.filePath)),[...Y,...J].slice(0,8)},[c,w.allSourceFiles,M]),I=ae(F=>{var Y;g(F),l(F.filePath),u(F.filePath),f(!1),(Y=v.current)==null||Y.blur()},[]),R=ae(()=>{var F;u(""),g(null),l(null),(F=v.current)==null||F.focus()},[]),P=ae(F=>{var Y;!m||$.length===0||(F.key==="ArrowDown"?(F.preventDefault(),h(J=>Math.min(J+1,$.length-1))):F.key==="ArrowUp"?(F.preventDefault(),h(J=>Math.max(J-1,0))):F.key==="Enter"?(F.preventDefault(),I($[p])):F.key==="Escape"&&(f(!1),(Y=v.current)==null||Y.blur()))},[m,$,p,I]);return te(()=>{h(0)},[$]),d("div",{className:"bg-white rounded-lg border border-gray-200 flex flex-col",children:[d("div",{className:"flex items-center gap-4 border-b border-[#e1e1e1] px-5",children:[n("button",{className:"py-3 border-b-2 border-[#232323] text-[#232323] bg-transparent cursor-pointer",children:n("span",{className:"text-[14px] leading-6",style:{fontFamily:"Sora",fontWeight:600},children:"Rule Audit"})}),d("div",{className:"relative flex-1 max-w-[300px]",children:[n(Hr,{className:"absolute left-2.5 top-1/2 -translate-y-1/2 w-3.5 h-3.5 text-gray-400"}),n("input",{ref:v,type:"text",value:c,onChange:F=>{u(F.target.value),f(!0)},onFocus:()=>{c.trim()&&f(!0)},onBlur:()=>{setTimeout(()=>f(!1),200)},onKeyDown:P,placeholder:"Search files...",className:`w-full pl-8 ${c?"pr-7":"pr-3"} py-1 text-xs border border-gray-200 rounded-md focus:outline-none focus:ring-1 focus:ring-[#005C75] focus:border-[#005C75] bg-gray-50`}),c&&n("button",{type:"button",onMouseDown:F=>{F.preventDefault(),R()},className:"absolute right-2 top-1/2 -translate-y-1/2 w-4 h-4 flex items-center justify-center text-gray-400 hover:text-gray-600 cursor-pointer",children:n("svg",{viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"2",className:"w-3 h-3",children:n("path",{d:"M1 1l12 12M13 1L1 13"})})}),m&&$.length>0&&n("div",{ref:S,className:"absolute left-0 top-full mt-0.5 bg-white border border-gray-200 rounded-md shadow-lg z-10 max-h-75 overflow-y-auto min-w-75 max-w-120",children:$.map((F,Y)=>d("div",{onMouseDown:J=>{J.preventDefault(),I(F)},onMouseEnter:()=>h(Y),className:`flex items-center gap-2 px-3 py-2 cursor-pointer text-sm ${Y===p?"bg-[#f0f9ff]":"hover:bg-gray-50"}`,children:[n(Ls,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-gray-700 truncate",title:F.filePath,children:(()=>{const J=F.filePath.toLowerCase().indexOf(c.toLowerCase());if(J===-1)return F.filePath;const O=F.filePath.slice(0,J),B=F.filePath.slice(J,J+c.length),T=F.filePath.slice(J+c.length);return d(we,{children:[O,n("span",{className:"font-semibold text-[#005C75]",children:B}),T]})})()}),d("span",{className:"text-xs text-gray-400 ml-auto flex-shrink-0",children:[F.matchingRules.length," rule",F.matchingRules.length!==1?"s":""]})]},F.filePath))})]}),n("div",{className:"flex-1"}),d("button",{onClick:()=>o("unreviewed"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="unreviewed"?"#005C75":"#d1d5db"}}),n("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="unreviewed"?600:400,color:a==="unreviewed"?"#005C75":"#626262"},children:"Unreviewed Rules"})]}),d("button",{onClick:()=>o("all"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="all"?"#005C75":"#d1d5db"}}),n("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="all"?600:400,color:a==="all"?"#005C75":"#626262"},children:"All"})]})]}),d("div",{className:"grid grid-cols-[1fr_140px_150px] px-5 py-2 border-b border-gray-100",children:[n("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium",children:"Source file"}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium flex items-center justify-center gap-1 whitespace-nowrap",children:["Unreviewed Rules",d("span",{className:"relative group",children:[n(xo,{className:"w-3 h-3 text-gray-300 flex-shrink-0 cursor-help"}),n("span",{className:"absolute top-full left-1/2 -translate-x-1/2 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-48 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Number of rules not yet reviewed for this file / Total number of rules that apply to this file"})]})]}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium flex items-center justify-center gap-1 whitespace-nowrap",children:["Unreviewed Tokens",d("span",{className:"relative group",children:[n(xo,{className:"w-3 h-3 text-gray-300 flex-shrink-0 cursor-help"}),n("span",{className:"absolute top-full right-0 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-52 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Estimated tokens from unreviewed rules / Total number of tokens from all rules that apply to this file"})]})]})]}),k&&n("div",{className:"px-5 py-6",children:d("div",{className:"animate-pulse space-y-3",children:[n("div",{className:"h-4 bg-gray-200 rounded w-3/4"}),n("div",{className:"h-3 bg-gray-100 rounded w-1/2"}),n("div",{className:"h-4 bg-gray-200 rounded w-2/3 mt-4"})]})}),!k&&(A.length>0||y)&&n("div",{className:"max-h-[400px] overflow-y-auto",children:(y?[y,...A.filter(Y=>Y.filePath!==y.filePath)].slice(0,8):A.slice(0,8)).map((F,Y)=>{const J=F.matchingRules.length,O=F.matchingRules.filter(K=>!t[K.filePath]),B=O.length,T=O.reduce((K,Z)=>K+Z.bodyLength,0),D=B>0,E=i===F.filePath,W=(y==null?void 0:y.filePath)===F.filePath;return d("div",{children:[d("div",{onClick:()=>l(E?null:F.filePath),className:`grid grid-cols-[1fr_140px_150px] px-5 py-2.5 items-center border-b border-gray-50 cursor-pointer ${W?"bg-[#f0f9ff] hover:bg-[#e0f2fe]":"hover:bg-gray-50"}`,children:[d("div",{className:"flex items-center gap-2 min-w-0",children:[E?n(Ct,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}):n(dn,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n(Ls,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm text-gray-900 truncate",title:F.filePath,children:W?F.filePath:_(F.filePath)})]}),d("span",{className:"text-sm text-center",children:[n("span",{className:D?"font-semibold text-[#1A5276]":"text-gray-400",children:B}),n("span",{className:"text-gray-300",children:" / "}),n("span",{className:"text-gray-500",children:J})]}),d("span",{className:"text-sm text-center",children:[n("span",{className:D?"font-semibold text-[#1A5276]":"text-gray-400",children:Or(T).toLocaleString()}),n("span",{className:"text-gray-300",children:" / "}),n("span",{className:"text-gray-500",children:Or(F.totalTextLength).toLocaleString()})]})]}),E&&d("div",{className:"bg-gray-50 border-b border-gray-100",children:[F.matchingRules.map(K=>{const Z=r.find(U=>U.filePath===K.filePath),q=t[K.filePath]??!1;return d("div",{onClick:U=>{U.stopPropagation(),Z&&s(Z)},className:"flex items-center gap-2 px-5 pl-12 py-2 hover:bg-gray-100 cursor-pointer",children:[n(Rs,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm text-gray-700 truncate flex-1",children:Z?Aa(Z.body,Z.filePath):K.filePath}),d("span",{className:"text-xs text-gray-400 flex-shrink-0",children:[Or(K.bodyLength).toLocaleString()," ","tokens"]}),n("div",{className:`w-4 h-4 rounded-full border-2 flex items-center justify-center flex-shrink-0 ${q?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,children:q&&n("svg",{width:"8",height:"6",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})]},K.filePath)}),d("div",{className:"flex items-center justify-center gap-3 px-5 py-2 border-t border-gray-200",children:[n("span",{className:"text-xs text-gray-400",children:"Have Claude audit these rules"}),n("button",{onClick:K=>{K.stopPropagation(),b({filePath:F.filePath,rulePaths:F.matchingRules.map(Z=>Z.filePath)})},className:"px-3 py-1 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer",children:"Prompt"})]})]})]},F.filePath)})}),!k&&A.length===0&&n("div",{className:"px-5 py-8 text-center text-sm text-gray-500",children:a==="unreviewed"?"No files have unreviewed rules":"No files have rule coverage yet"}),x&&n(o2,{filePath:x.filePath,rulePaths:x.rulePaths,onClose:()=>b(null)})]})}function l2({rule:e,changeInfo:t,isReviewed:r,onApprove:s,onEdit:a,onDelete:o,onClose:i}){const l=Aa(e.body,e.filePath),c=Or(e.body.length),u=e.frontmatter.category,p=`.claude/rules/${e.filePath}`,[h,m]=j(null),f=(t==null?void 0:t.changeType)==="added"||h!=null&&h.commitCount!=null&&h.commitCount<=1&&!(h.commitCount===1&&h.isUncommitted);return te(()=>{m(null),fetch(`/api/memory?action=rule-diff&filePath=${encodeURIComponent(e.filePath)}`).then(y=>y.json()).then(y=>{y.diff&&m(y.diff)}).catch(()=>{})},[e.filePath]),te(()=>{const y=g=>{g.key==="Escape"&&i()};return document.addEventListener("keydown",y),()=>document.removeEventListener("keydown",y)},[i]),n("div",{className:"fixed inset-0 flex items-center justify-center z-[9999] p-4",style:{backgroundColor:"rgba(0, 0, 0, 0.8)"},onClick:i,children:d("div",{className:"rounded-lg shadow-xl max-w-4xl w-full max-h-[90vh] overflow-auto",style:{backgroundColor:"#F8F7F6"},onClick:y=>y.stopPropagation(),children:[n("div",{className:"px-6 pt-5 pb-4",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"min-w-0 flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1.5 flex-wrap",children:[n("h2",{className:"text-[16px] font-bold text-gray-900",children:l}),t&&d(we,{children:[n("span",{className:"text-xs text-gray-400 flex-shrink-0",children:tr(t.date)}),n("span",{className:`flex-shrink-0 text-[11px] uppercase font-semibold tracking-wider ${t.changeType==="added"?"text-green-600":t.changeType==="modified"?"text-orange-600":"text-red-600"}`,children:t.changeType})]})]}),u&&d("div",{className:"flex items-center gap-2 mb-1.5",children:[n("span",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:"TYPE:"}),n("span",{className:"px-2 py-0.5 rounded text-[10px] uppercase font-semibold tracking-wider bg-[#E0F2F1] text-[#00796B]",children:u})]}),d("div",{className:"flex items-center gap-1.5 mb-1.5",children:[n("span",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:"FILE:"}),n("code",{className:"text-[11px] text-gray-600 font-mono",children:p}),n(pt,{content:p,icon:!0,iconSize:12,className:"p-0.5 rounded text-gray-400 hover:text-gray-600 transition-colors",ariaLabel:"Copy file path"})]}),d("div",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:["TOKENS: ~",c.toLocaleString()]})]}),d("div",{className:"flex items-center gap-2 flex-shrink-0 ml-4",children:[d("button",{onClick:s,className:`flex items-center gap-1.5 px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer transition-colors ${r?"bg-green-600 text-white":"border border-green-600 text-green-700 hover:bg-green-50"}`,children:[n(_t,{className:"w-3.5 h-3.5"}),r?"Approved":"Approve"]}),n("button",{onClick:a,className:"px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer border border-gray-300 text-gray-600 hover:bg-gray-50 transition-colors",children:"Edit"}),n("button",{onClick:o,className:"px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer border border-red-300 text-red-600 hover:bg-red-50 transition-colors",children:"Delete"}),n("button",{onClick:i,className:"p-1.5 rounded text-gray-400 hover:text-gray-600 hover:bg-gray-200 cursor-pointer transition-colors ml-1",children:n(ir,{className:"w-5 h-5"})})]})]})}),e.frontmatter.paths&&e.frontmatter.paths.length>0&&d("div",{className:"px-6 pb-4",children:[n("div",{className:"text-[13px] text-gray-700 font-semibold mb-2",children:"Applies to paths:"}),n("div",{className:"bg-white rounded-lg p-4 space-y-2.5",style:{border:"1px solid #E6E6E6"},children:e.frontmatter.paths.map((y,g)=>{const x=y.split("/"),b=x.pop()||y,v=x.length>0?x.join("/")+"/":"";return d("div",{className:"flex items-center gap-2 text-[13px] font-mono",children:[n(Ls,{className:"w-4 h-4 text-[#005C75] flex-shrink-0"}),d("span",{children:[v&&n("span",{className:"text-gray-500",children:v}),n("span",{className:"font-bold text-gray-900",children:b})]})]},g)})})]}),f?n("div",{className:"px-6 pb-4",children:d("div",{className:"text-[13px] text-gray-500",children:["Created"," ",t!=null&&t.date?tr(t.date):h!=null&&h.date?tr(h.date):"recently"]})}):h&&n("div",{className:"px-6 pb-4",children:d("details",{children:[d("summary",{className:"text-[13px] text-gray-700 font-semibold cursor-pointer",children:["Recent change: ",h.commitMessage," —"," ",tr(h.date)]}),n("pre",{className:"mt-2 p-4 text-xs font-mono overflow-x-auto bg-gray-900 text-gray-100 max-h-64 overflow-y-auto rounded-md",children:h.diff.split(`
|
|
591
|
-
`).map((y,g)=>{let x="";return y.startsWith("+")&&!y.startsWith("+++")?x="text-green-400":y.startsWith("-")&&!y.startsWith("---")?x="text-red-400":y.startsWith("@@")&&(x="text-cyan-400"),n("div",{className:x,children:y},g)})})]})}),d("div",{className:"px-6 pb-6",children:[n("div",{className:"text-[13px] text-gray-700 font-semibold mb-2",children:"Rule Text:"}),n("div",{className:"bg-white rounded-lg p-6",style:{border:"1px solid #E6E6E6"},children:n(up,{content:e.body})})]})]})})}function c2(){return d("svg",{width:"24",height:"24",viewBox:"0 0 27 27",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n("rect",{x:"12",y:"24",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"3",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"6",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"18",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(90 3 12)",fill:"#232323"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(90 27 12)",fill:"#232323"}),n("rect",{x:"18",y:"24",width:"3",height:"3",transform:"rotate(90 18 24)",fill:"#232323"}),n("rect",{x:"18",width:"3",height:"3",transform:"rotate(90 18 0)",fill:"#232323"}),n("rect",{x:"3",y:"18",width:"3",height:"3",transform:"rotate(-180 3 18)",fill:"#232323"}),n("rect",{x:"27",y:"18",width:"3",height:"3",transform:"rotate(-180 27 18)",fill:"#232323"}),n("rect",{x:"21",y:"24",width:"3",height:"3",transform:"rotate(90 21 24)",fill:"#232323"}),n("rect",{x:"3",y:"21",width:"3",height:"3",transform:"rotate(-180 3 21)",fill:"#232323"}),n("rect",{x:"27",y:"21",width:"3",height:"3",transform:"rotate(-180 27 21)",fill:"#232323"}),n("rect",{x:"6",y:"24",width:"3",height:"3",transform:"rotate(90 6 24)",fill:"#232323"}),n("rect",{x:"6",width:"3",height:"3",transform:"rotate(90 6 0)",fill:"#232323"}),n("rect",{x:"3",y:"6",width:"3",height:"3",transform:"rotate(-180 3 6)",fill:"#232323"}),n("rect",{x:"21",y:"6",width:"3",height:"3",transform:"rotate(-180 21 6)",fill:"#232323"}),n("rect",{x:"24",y:"24",width:"3",height:"3",transform:"rotate(90 24 24)",fill:"#232323"}),n("rect",{x:"3",y:"24",width:"3",height:"3",transform:"rotate(-180 3 24)",fill:"#232323"}),n("rect",{x:"27",y:"24",width:"3",height:"3",transform:"rotate(-180 27 24)",fill:"#232323"}),n("rect",{x:"9",y:"24",width:"3",height:"3",transform:"rotate(90 9 24)",fill:"#232323"}),n("rect",{x:"9",width:"3",height:"3",transform:"rotate(90 9 0)",fill:"#232323"}),n("rect",{x:"9",y:"3",width:"3",height:"3",transform:"rotate(90 9 3)",fill:"#232323"}),n("rect",{x:"9",y:"6",width:"3",height:"3",transform:"rotate(90 9 6)",fill:"#232323"}),n("rect",{x:"9",y:"18",width:"3",height:"3",transform:"rotate(90 9 18)",fill:"#232323"}),n("rect",{x:"3",y:"9",width:"3",height:"3",transform:"rotate(-180 3 9)",fill:"#232323"}),n("rect",{x:"24",y:"9",width:"3",height:"3",transform:"rotate(-180 24 9)",fill:"#232323"}),n("rect",{x:"12",y:"24",width:"3",height:"3",transform:"rotate(90 12 24)",fill:"#232323"}),n("rect",{x:"12",width:"3",height:"3",transform:"rotate(90 12 0)",fill:"#232323"}),n("rect",{x:"12",y:"6",width:"3",height:"3",transform:"rotate(90 12 6)",fill:"#232323"}),n("rect",{x:"12",y:"18",width:"3",height:"3",transform:"rotate(90 12 18)",fill:"#232323"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(-180 3 12)",fill:"#232323"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(-180 27 12)",fill:"#232323"})]})}function d2(){return d("svg",{width:"20",height:"20",viewBox:"0 0 27 27",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n("rect",{x:"12",y:"24",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"3",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"6",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"18",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(90 3 12)",fill:"#005C75"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(90 27 12)",fill:"#005C75"}),n("rect",{x:"18",y:"24",width:"3",height:"3",transform:"rotate(90 18 24)",fill:"#005C75"}),n("rect",{x:"18",width:"3",height:"3",transform:"rotate(90 18 0)",fill:"#005C75"}),n("rect",{x:"3",y:"18",width:"3",height:"3",transform:"rotate(-180 3 18)",fill:"#005C75"}),n("rect",{x:"27",y:"18",width:"3",height:"3",transform:"rotate(-180 27 18)",fill:"#005C75"}),n("rect",{x:"21",y:"24",width:"3",height:"3",transform:"rotate(90 21 24)",fill:"#005C75"}),n("rect",{x:"3",y:"21",width:"3",height:"3",transform:"rotate(-180 3 21)",fill:"#005C75"}),n("rect",{x:"27",y:"21",width:"3",height:"3",transform:"rotate(-180 27 21)",fill:"#005C75"}),n("rect",{x:"6",y:"24",width:"3",height:"3",transform:"rotate(90 6 24)",fill:"#005C75"}),n("rect",{x:"6",width:"3",height:"3",transform:"rotate(90 6 0)",fill:"#005C75"}),n("rect",{x:"3",y:"6",width:"3",height:"3",transform:"rotate(-180 3 6)",fill:"#005C75"}),n("rect",{x:"21",y:"6",width:"3",height:"3",transform:"rotate(-180 21 6)",fill:"#005C75"}),n("rect",{x:"24",y:"24",width:"3",height:"3",transform:"rotate(90 24 24)",fill:"#005C75"}),n("rect",{x:"3",y:"24",width:"3",height:"3",transform:"rotate(-180 3 24)",fill:"#005C75"}),n("rect",{x:"27",y:"24",width:"3",height:"3",transform:"rotate(-180 27 24)",fill:"#005C75"}),n("rect",{x:"9",y:"24",width:"3",height:"3",transform:"rotate(90 9 24)",fill:"#005C75"}),n("rect",{x:"9",width:"3",height:"3",transform:"rotate(90 9 0)",fill:"#005C75"}),n("rect",{x:"9",y:"3",width:"3",height:"3",transform:"rotate(90 9 3)",fill:"#005C75"}),n("rect",{x:"9",y:"6",width:"3",height:"3",transform:"rotate(90 9 6)",fill:"#005C75"}),n("rect",{x:"9",y:"18",width:"3",height:"3",transform:"rotate(90 9 18)",fill:"#005C75"}),n("rect",{x:"3",y:"9",width:"3",height:"3",transform:"rotate(-180 3 9)",fill:"#005C75"}),n("rect",{x:"24",y:"9",width:"3",height:"3",transform:"rotate(-180 24 9)",fill:"#005C75"}),n("rect",{x:"12",y:"24",width:"3",height:"3",transform:"rotate(90 12 24)",fill:"#005C75"}),n("rect",{x:"12",width:"3",height:"3",transform:"rotate(90 12 0)",fill:"#005C75"}),n("rect",{x:"12",y:"6",width:"3",height:"3",transform:"rotate(90 12 6)",fill:"#005C75"}),n("rect",{x:"12",y:"18",width:"3",height:"3",transform:"rotate(90 12 18)",fill:"#005C75"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(-180 3 12)",fill:"#005C75"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(-180 27 12)",fill:"#005C75"})]})}function u2(){return n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 py-8 lg:py-12 font-sans max-w-3xl mx-auto",children:[d("div",{className:"text-center mb-10",children:[n("h1",{className:"text-[22px] font-semibold mb-4",style:{fontFamily:"Sora",color:"#232323"},children:"Get Started with CodeYam Memory"}),n("p",{className:"text-[15px] text-gray-500 leading-relaxed max-w-2xl mx-auto",children:"CodeYam Memory generates path-scoped Claude Rules that load automatically when Claude works on matching files. These rules capture any confusion, architectural decisions, and tribal knowledge from your as you work with Claude, ensuring sessions become more efficient and aligned with your codebase over time."})]}),d("div",{className:"rounded-lg p-8 mb-6",style:{backgroundColor:"#EDF8FA",border:"1px solid #C8E6EC"},children:[n("h2",{className:"text-[18px] font-semibold mb-6",style:{fontFamily:"Sora",color:"#232323"},children:"Setup Steps"}),d("ol",{className:"space-y-5",children:[d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"1"}),n("p",{className:"text-[14px] font-medium text-gray-900 pt-0.5",children:"Open Claude Code in your project terminal"})]}),d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"2"}),d("div",{children:[d("div",{className:"flex items-center gap-2 pt-0.5",children:[n("span",{className:"text-[14px] font-medium text-gray-900",children:"Run"}),n(Ac,{value:"/codeyam-memory"}),n("span",{className:"text-[14px] font-medium text-gray-900",children:"in the Claude Code session"})]}),n("p",{className:"text-[13px] text-gray-600 mt-1",children:"This kicks off analysis of your git history to find confusion patterns."})]})]}),d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"3"}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900 pt-0.5",children:"Return to this dashboard page to review the new rules"}),n("p",{className:"text-[13px] text-gray-600 mt-1",children:"You can review, edit, and approve the rules Claude creates."})]})]})]})]}),d("div",{className:"rounded-lg p-8 mb-6",style:{backgroundColor:"#EDF8FA",border:"1px solid #C8E6EC"},children:[n("h2",{className:"text-[18px] font-semibold mb-6",style:{fontFamily:"Sora",color:"#232323"},children:"What Gets Created"}),d("div",{className:"relative",children:[n("div",{className:"absolute left-[15px] top-8 bottom-4",style:{borderLeft:"2px dotted #B0BEC5"}}),d("div",{className:"space-y-6",children:[d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[d("p",{className:"text-[14px] font-medium text-gray-900",children:[n("code",{className:"bg-gray-200/60 px-1.5 py-0.5 rounded text-[13px]",children:".claude/rules/*.md"}),n("span",{className:"text-gray-400 mx-1.5",children:"—"}),"path-scoped guidance files"]}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"Markdown files with frontmatter specifying which file paths they apply to."})]})]}),d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900",children:"Rules load automatically when Claude works on matching files"}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"No manual steps needed — Claude picks up relevant rules based on the files it touches."})]})]}),d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900",children:"Pre-commit hook to keep rules fresh and capture new patterns"}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"A git hook runs automatically to update rules when related code changes and looks for any new patterns of confusion in work sessions."})]})]})]})]})]}),d("div",{className:"rounded-lg px-8 py-5 flex items-center justify-center gap-3",style:{backgroundColor:"#1A2332"},children:[n("span",{className:"text-white text-[15px] font-medium",children:"Run"}),n(Ac,{value:"/codeyam-memory"}),n("span",{className:"text-white text-[15px] font-medium",children:"in Claude Code to get started"})]})]})})}function Ac({value:e}){const[t,r]=j(!1);return d("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"inline-flex items-center gap-1.5 px-2.5 py-1 rounded text-[13px] font-mono cursor-pointer border-0",style:{backgroundColor:"#2C3E50",color:"#E0E0E0"},title:"Copy to clipboard",children:[e,t?n(_t,{className:"w-3.5 h-3.5 text-green-400"}):d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"text-gray-400",children:[n("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]})]})}function ks({label:e,count:t,icon:r,bgColor:s,iconBgColor:a,textColor:o}){return n("div",{className:"rounded-lg p-4",style:{backgroundColor:s,border:"1px solid #EFEFEF"},children:d("div",{className:"flex items-start gap-3",children:[n("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0",style:{backgroundColor:a},children:r}),d("div",{className:"flex-1",children:[n("div",{className:"text-[32px] font-semibold leading-none mb-1",style:{color:o},children:t}),n("div",{className:"text-[11px] uppercase tracking-wider font-medium",style:{color:o},children:e})]})]})})}function p2({searchFilter:e,onSearchChange:t,onCreateNew:r,onLearnMore:s,reviewCounts:a}){return d("div",{className:"mb-8",children:[d("div",{className:"flex flex-wrap items-center justify-between gap-4 mb-6",children:[d("div",{children:[d("div",{className:"flex items-center gap-3 mb-2",children:[n(c2,{}),n("h1",{className:"text-[24px] font-semibold mb-0",style:{fontFamily:"Sora",color:"#232323"},children:"Memory"})]}),d("p",{className:"text-[15px] text-gray-500",children:["Rules help Claude understand your codebase patterns and conventions."," ",n("button",{onClick:s,className:"text-[#005C75] underline cursor-pointer",children:"Learn more about rules."})]})]}),d("div",{className:"flex items-center gap-3",children:[d("div",{className:"relative",children:[n(Hr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",value:e,onChange:o=>t(o.target.value),placeholder:"Search rules...",className:"w-64 pl-10 pr-4 py-2 border border-gray-200 rounded-md bg-white focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent text-sm"})]}),d("button",{onClick:r,className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:[n(Yo,{className:"w-4 h-4"}),"New Rule"]})]})]}),d("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:[n(ks,{label:"Total Rules",count:a.total,icon:n(d2,{}),bgColor:"#EDF1F3",iconBgColor:"#E0E9EC",textColor:"#005C75"}),n(ks,{label:"Unreviewed",count:a.unreviewed,icon:n(zh,{className:"w-5 h-5 text-[#1A5276]"}),bgColor:"#E9F0FB",iconBgColor:"#DBE9FF",textColor:"#1A5276"}),n(ks,{label:"Reviewed",count:a.reviewed,icon:n(_t,{className:"w-5 h-5 text-[#1B7A4A]"}),bgColor:"#EAFBEF",iconBgColor:"#D4EDDB",textColor:"#1B7A4A"}),n(ks,{label:"Stale",count:a.stale,icon:n(ad,{className:"w-5 h-5 text-[#5B21B6]"}),bgColor:"#EDE9FB",iconBgColor:"#DDD6FE",textColor:"#5B21B6"})]})]})}function h2({onClose:e,onCreateNew:t}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative",onClick:r=>r.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(ir,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-4",children:"What are Claude Rules?"}),n("h3",{className:"mb-4 font-semibold",children:"And how does CodeYam Memory work with Claude Rules?"}),d("div",{className:"text-gray-600 text-[15px] space-y-3 mb-6",children:[d("p",{children:["Claude Rules are a component of"," ",n("a",{href:"https://code.claude.com/docs/en/memory#modular-rules-with-claude%2Frules%2F",target:"_blank",rel:"noopener noreferrer",className:"text-blue-600 underline",children:"Memory Management in Claude Code"}),'. The text of each rule is passed into the context window when working on the specific files described in the "paths" frontmatter field of the rule.']}),n("p",{children:"This allows you to provide context that is surgically specific to certain files in your codebase. They are a powerful tool but are harder to write and maintain than CLAUDE.md files."}),n("p",{children:"CodeYam Memory helps write and maintain Claude Rules. Hooks ensure that rules are reviewed and added during Claude Code working sessions. The CodeYam CLI Dashboard provides a page dedicated to Memory where you can view, edit, create, delete, and review Claude Rules."})]}),n("div",{className:"flex justify-center",children:d("button",{onClick:t,className:"flex items-center gap-2 px-5 py-2.5 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:[n(Yo,{className:"w-4 h-4"}),"New Rule"]})})]})})}function m2({rule:e,onConfirm:t,onCancel:r}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",children:d("div",{className:"bg-white rounded-lg p-6 max-w-md w-full mx-4",children:[n("h3",{className:"text-lg font-semibold mb-2",children:"Delete Memory?"}),d("p",{className:"text-gray-600 mb-4",children:["Are you sure you want to delete"," ",n("span",{className:"font-mono text-sm",children:e.filePath}),"? This cannot be undone."]}),d("div",{className:"flex justify-end gap-2",children:[n("button",{onClick:r,className:"px-4 py-2 text-gray-600 hover:bg-gray-100 rounded-md cursor-pointer",children:"Cancel"}),n("button",{onClick:()=>t(e),className:"px-4 py-2 bg-red-600 text-white rounded-md hover:bg-red-700 cursor-pointer",children:"Delete"})]})]})})}const jc="Can you help me perform an interactive rules audit? Please look at all of the rules in `.claude/rules`. Are they organized properly? Ideally they should be in a folder that is the best representation of the files they impact (e.g. if the rule impacts `folder1/folder2/file1` and `folder1/folder2/folder3/file2` then the rule should be in `.claude/rules/folder1/folder2`). Do they make sense? Are they oriented toward avoiding future confusion (vs documenting bug fixes or temporary workarounds, etc)? Please literally read each one to ensure you understand what it is saying and learn something useful from it. Are they concise and efficient in their communication? We want to be respectful of the context window so any information in a rule that does not make sense, is not particularly helpful, or is repetitive should be removed. All other information should be presented as directly as possible. Bullets and tables can help with this as opposed to paragraphs. Take into consideration how rules interact as any one file may have multiple rules applied to it. Please look at the impacted files as well to ensure that it is an appropriate rule for them and to ensure the rule is not just repeating information that can be ascertained from the code. We don't want Claude to have to read a large number of files (or a single very large file) to figure out how everything works, so architectural guidance can be quite valuable, but information that is specific to one file and can be ascertained by the code and comments in that file is unnecessary. Too often rules reflect past confusion that has been resolved and is unlikely to happen again. Content and rules like this should be removed. If you have any questions please ask!",Pc="Can you mark all of these rules as reviewed in `.claude/codeyam-rule-state.json`?";function Tc({text:e}){const[t,r]=j(!1);return n("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:t?d(we,{children:[n(_t,{className:"w-4 h-4"}),"Copied!"]}):d(we,{children:[n($t,{className:"w-4 h-4"}),"Copy Prompt"]})})}function f2({onClose:e}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative max-h-[90vh] overflow-y-auto",onClick:t=>t.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(ir,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-2",children:"Audit All Rules"}),n("p",{className:"text-gray-600 text-sm mb-4",children:"Claude can review all rules to look for information that is inconsistent, inappropriate, duplicative, inefficient, etc."}),n("textarea",{readOnly:!0,value:jc,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(Tc,{text:jc})}),d("div",{className:"border-t border-gray-200 mt-6 pt-5",children:[n("p",{className:"text-gray-500 text-sm mb-3",children:"If you would like to avoid reviewing all of the changes Claude makes you can ask Claude to mark all rules as reviewed."}),n("textarea",{readOnly:!0,value:Pc,className:"w-full h-16 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(Tc,{text:Pc})})]})]})})}function g2(){const[e,t]=j(!1);return d(we,{children:[d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit All Rules"}),n("p",{className:"text-sm text-gray-500",children:"Ask Claude to review, audit, and improve all rules."}),n("button",{onClick:()=>t(!0),className:"px-4 py-2 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer flex-shrink-0",children:"Get Prompt"})]}),e&&n(f2,{onClose:()=>t(!1)})]})}function y2(e){return`Can you help me review my unreviewed rules? The following rules in \`.claude/rules\` have not been reviewed yet:
|
|
592
|
-
|
|
593
|
-
${e.map(r=>`- \`.claude/rules/${r}\``).join(`
|
|
594
|
-
`)}
|
|
595
|
-
|
|
596
|
-
Are they organized properly? Ideally they should be in a folder that is the best representation of the files they impact (e.g. if the rule impacts \`folder1/folder2/file1\` and \`folder1/folder2/folder3/file2\` then the rule should be in \`.claude/rules/folder1/folder2\`). Do they make sense? Are they oriented toward avoiding future confusion (vs documenting bug fixes or temporary workarounds, etc)? Please literally read each one to ensure you understand what it is saying and learn something useful from it. Are they concise and efficient in their communication? We want to be respectful of the context window so any information in a rule that does not make sense, is not particularly helpful, or is repetitive should be removed. All other information should be presented as directly as possible. Bullets and tables can help with this as opposed to paragraphs. Take into consideration how rules interact as any one file may have multiple rules applied to it. Please look at the impacted files as well to ensure that it is an appropriate rule for them and to ensure the rule is not just repeating information that can be ascertained from the code. We don't want Claude to have to read a large number of files (or a single very large file) to figure out how everything works, so architectural guidance can be quite valuable, but information that is specific to one file and can be ascertained by the code and comments in that file is unnecessary. Too often rules reflect past confusion that has been resolved and is unlikely to happen again. Content and rules like this should be removed. If you have any questions please ask!`}const Mc="Can you mark all of these rules as reviewed in `.claude/codeyam-rule-state.json`?";function $c({text:e}){const[t,r]=j(!1);return n("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:t?d(we,{children:[n(_t,{className:"w-4 h-4"}),"Copied!"]}):d(we,{children:[n($t,{className:"w-4 h-4"}),"Copy Prompt"]})})}function x2({onClose:e,unreviewedRulePaths:t}){const r=y2(t);return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative max-h-[90vh] overflow-y-auto",onClick:s=>s.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(ir,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-2",children:"Audit Unreviewed Rules"}),d("p",{className:"text-gray-600 text-sm mb-4",children:["Claude will review only the ",t.length," unreviewed"," ",t.length===1?"rule":"rules"," for quality, relevance, and organization."]}),n("textarea",{readOnly:!0,value:r,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n($c,{text:r})}),d("div",{className:"border-t border-gray-200 mt-6 pt-5",children:[n("p",{className:"text-gray-500 text-sm mb-3",children:"If you would like to avoid reviewing all of the changes Claude makes you can ask Claude to mark all rules as reviewed."}),n("textarea",{readOnly:!0,value:Mc,className:"w-full h-16 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n($c,{text:Mc})})]})]})})}function b2({unreviewedRulePaths:e}){const[t,r]=j(!1);return e.length===0?d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3 opacity-50",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit Unreviewed Rules"}),n("p",{className:"text-sm text-gray-500",children:"All rules have been reviewed."})]}):d(we,{children:[d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit Unreviewed Rules"}),d("p",{className:"text-sm text-gray-500",children:["Ask Claude to review the ",e.length," unreviewed"," ",e.length===1?"rule":"rules","."]}),n("button",{onClick:()=>r(!0),className:"px-4 py-2 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer flex-shrink-0",children:"Get Prompt"})]}),t&&n(x2,{onClose:()=>r(!1),unreviewedRulePaths:e})]})}const v2=()=>[{title:"Memory - CodeYam"},{name:"description",content:"Manage Claude Memory documentation"}];async function w2({request:e}){try{const r=await(await fetch(new URL("/api/memory",e.url).toString())).json();return r.error?ne({memories:[],reviewedStatus:{},memoryInitialized:r.memoryInitialized??!1,error:r.error}):r.memoryInitialized??!1?ne({memories:r.memories||[],reviewedStatus:r.reviewedStatus||{},memoryInitialized:!0,error:null}):ne({memories:[],reviewedStatus:{},memoryInitialized:!1,error:null})}catch(t){return console.error("Failed to load memories:",t),ne({memories:[],reviewedStatus:{},memoryInitialized:!1,error:"Failed to load memories"})}}const N2=et(function(){const{memories:t,reviewedStatus:r,memoryInitialized:s,error:a}=ot(),o=Ge(),i=Dt(),[l,c]=j(""),[u,p]=j(null),[h,m]=j(new Set(["root"])),[f,y]=j(null),[g,x]=j(!1),[b,v]=j(null),[S,w]=j(0),[C,k]=j(!1),[N,A]=j(null),[_,M]=j(null),[$,I]=j({}),R=U=>{m(L=>{const z=new Set(L);return z.has(U)?z.delete(U):z.add(U),z})};Rt({source:"memory-page"});const P=le(()=>({...r,...$}),[r,$]),F=ye(o.state);te(()=>{const U=F.current==="loading"||F.current==="submitting",L=o.state==="idle";U&&L&&o.data&&(i.revalidate(),y(null),x(!1),w(z=>z+1)),F.current=o.state},[o.state,o.data,i]),te(()=>{I(U=>{const L={};for(const[z,V]of Object.entries(U))r[z]!==V&&(L[z]=V);return Object.keys(L).length===Object.keys(U).length?U:L})},[r]);const Y=(U,L)=>{I(z=>({...z,[U]:!0})),o.submit({action:"mark-reviewed",filePath:U,lastModified:L},{method:"POST",action:"/api/memory",encType:"application/json"})},J=U=>{I(L=>({...L,[U]:!1})),o.submit({action:"mark-unreviewed",filePath:U},{method:"POST",action:"/api/memory",encType:"application/json"})},O=(U,L)=>{A(U),M(L??null)},B=le(()=>{let U=t;if(l.trim()){const L=l.toLowerCase();U=U.filter(z=>{var re;return(((re=z.filePath.split("/").pop())==null?void 0:re.replace(".md",""))||"").toLowerCase().includes(L)||z.body.toLowerCase().includes(L)})}return U},[t,l]),T=le(()=>u?B.some(L=>L.filePath===u)?B.filter(L=>L.filePath===u):B.filter(L=>L.filePath.startsWith(u+"/")||L.filePath===u):B,[B,u]),D=(U,L)=>{const z=f?"update":"create";o.submit({action:z,filePath:U,content:L},{method:"POST",action:"/api/memory",encType:"application/json"})},E=U=>{o.submit({action:"delete",filePath:U.filePath},{method:"POST",action:"/api/memory",encType:"application/json"}),v(null)},W=le(()=>{const U=t.filter(L=>P[L.filePath]).length;return{total:t.length,reviewed:U,unreviewed:t.length-U,stale:0}},[t,P]),K=le(()=>{const U=new Set(["root"]);for(const L of B){const z=L.filePath.split("/");z.pop();let V="";for(const re of z)V=V?`${V}/${re}`:re,U.add(V)}return U},[B]),Z=K.size===h.size&&[...K].every(U=>h.has(U)),q=()=>{m(Z?new Set(["root"]):new Set(K))};return a?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:a})]})}):s?n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 py-8 lg:py-12 font-sans",children:[n(p2,{searchFilter:l,onSearchChange:c,onCreateNew:()=>x(!0),onLearnMore:()=>k(!0),reviewCounts:W}),(g||f)&&n("div",{className:"fixed inset-0 flex items-center justify-center z-[9999] p-4",style:{backgroundColor:"rgba(0, 0, 0, 0.8)"},onClick:()=>{x(!1),y(null)},children:n("div",{className:"bg-white rounded-lg shadow-xl max-w-4xl w-full max-h-[90vh] overflow-auto",onClick:U=>U.stopPropagation(),children:n(t2,{rule:f,onSave:D,onCancel:()=>{x(!1),y(null)}})})}),d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-6 lg:gap-8 mb-8",children:[n(s2,{memories:B,reviewedStatus:P,onViewRule:O,refreshKey:S}),n(i2,{onEditRule:y,onDeleteRule:v,refreshKey:S,reviewedStatus:P,onMarkReviewed:Y,onMarkUnreviewed:J,memories:t,onViewRule:O})]}),d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-6 lg:gap-8 mb-8",children:[n(b2,{unreviewedRulePaths:t.filter(U=>!P[U.filePath]).map(U=>U.filePath)}),n(g2,{})]}),d("div",{className:"flex items-center justify-between mb-4",children:[n("h2",{className:"text-xl leading-6 text-[#232323]",style:{fontFamily:"Sora",fontWeight:600},children:"All Rules"}),n("div",{className:"flex items-center gap-4",children:K.size>1&&n("button",{onClick:q,className:"text-xs text-[#005C75] hover:underline cursor-pointer font-mono uppercase font-semibold",children:Z?"Collapse All":"Expand All"})})]}),d("div",{className:"flex gap-6",children:[n("div",{className:"hidden lg:block w-80 flex-shrink-0",children:n(n2,{memories:B,selectedPath:u,onSelectPath:p,expandedFolders:h,onToggleFolder:R})}),n("div",{className:"flex-1 min-w-0",children:t.length===0?d("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:[n(Bh,{className:"w-12 h-12 text-gray-300 mx-auto mb-4"}),n("h3",{className:"text-lg font-medium text-gray-900 mb-2",children:"No Rules Yet"}),d("p",{className:"text-gray-500 mb-4",children:["Run"," ",n("code",{className:"bg-gray-100 px-2 py-1 rounded",children:"/codeyam-memory"})," ","to generate initial memories for your codebase."]}),d("button",{onClick:()=>x(!0),className:"inline-flex items-center gap-2 px-4 py-2 bg-[#005C75] text-white rounded-md hover:bg-[#004a5e] cursor-pointer",children:[n(Yo,{className:"w-4 h-4"}),"Create Your First Memory"]})]}):d("div",{children:[u&&d("div",{className:"flex items-center gap-2 text-sm text-gray-600 mb-4",children:["Showing rules in"," ",n("span",{className:"font-mono bg-gray-100 px-1.5 py-0.5 rounded",children:u||"(root)"}),n("button",{onClick:()=>p(null),className:"text-[#005C75] hover:underline cursor-pointer",children:"Clear filter"})]}),n(r2,{memories:T,onEdit:y,onDelete:v,expandedFolders:h,onToggleFolder:R,reviewedStatus:P,onMarkReviewed:Y,onMarkUnreviewed:J,onViewRule:O})]})})]}),n("div",{className:"mt-8 mb-8",children:n(ke,{to:"/agent-transcripts",className:"block bg-white border border-gray-200 rounded-lg p-5 hover:border-[#005C75] hover:shadow-sm transition-all group",children:d("div",{className:"flex items-center gap-3",children:[n("div",{className:"w-10 h-10 rounded-lg bg-[#EDF1F3] flex items-center justify-center",children:d("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"none",stroke:"#005C75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("polyline",{points:"4 17 10 11 4 5"}),n("line",{x1:"12",y1:"19",x2:"20",y2:"19"})]})}),d("div",{children:[n("h3",{className:"text-sm font-semibold text-[#232323] group-hover:text-[#005C75]",style:{fontFamily:"Sora"},children:"Agent Transcripts"}),n("p",{className:"text-xs text-gray-500",children:"View background agent transcripts and tool call history"})]})]})})}),N&&!f&&(()=>{const U=t.find(L=>L.filePath===N.filePath)??N;return n(l2,{rule:U,changeInfo:_??void 0,isReviewed:P[U.filePath]??!1,onApprove:()=>{P[U.filePath]??!1?J(U.filePath):Y(U.filePath,U.lastModified),A(null)},onEdit:()=>{y(U)},onDelete:()=>{v(U),A(null)},onClose:()=>A(null)})})(),C&&n(h2,{onClose:()=>k(!1),onCreateNew:()=>{k(!1),x(!0)}}),b&&n(m2,{rule:b,onConfirm:E,onCancel:()=>v(null)})]})}):n(u2,{})}),S2=Object.freeze(Object.defineProperty({__proto__:null,default:N2,loader:w2,meta:v2},Symbol.toStringTag,{value:"Module"}));function ho(e){return`${e.filePath||""}::${e.name}`}function mp(e,t){const r=Ge(),{showToast:s}=Qo(),[a,o]=j(new Map);te(()=>{if(r.state==="idle"&&r.data){const m=r.data;m!=null&&m.error&&s(`Error: ${m.error}`,"error",6e3)}},[r.state,r.data,s]),te(()=>{var f;if(a.size===0)return;const m=new Set;(f=t==null?void 0:t.jobs)==null||f.forEach(y=>{var g;(g=y.entityShas)==null||g.forEach(x=>{a.forEach((b,v)=>{b===x&&m.add(v)})})}),e==null||e.forEach(y=>{a.forEach((g,x)=>{g===y&&m.add(x)})}),m.size>0&&o(y=>{const g=new Map(y);return m.forEach(x=>g.delete(x)),g})},[t,e,a]);const i=ae(m=>{console.log("Generate analysis clicked for entity:",m.sha,m.name);const f=ho(m);o(g=>new Map(g).set(f,m.sha));const y=new FormData;y.append("entitySha",m.sha),y.append("filePath",m.filePath||""),r.submit(y,{method:"post",action:"/api/analyze"})},[r]),l=ae(m=>{const f=m.filter(x=>x.entityType==="visual"||x.entityType==="library");console.log("Generate analysis for all entities:",f.length),o(x=>{const b=new Map(x);return f.forEach(v=>b.set(ho(v),v.sha)),b});const y=f.map(x=>x.sha).join(","),g=new FormData;g.append("entityShas",y),r.submit(g,{method:"post",action:"/api/analyze"})},[r]),c=ae(m=>(e==null?void 0:e.includes(m))??!1,[e]),u=ae(m=>{const f=ho(m);return a.has(f)},[a]),p=ae(m=>{var f;return((f=t==null?void 0:t.jobs)==null?void 0:f.some(y=>{var g;return(g=y.entityShas)==null?void 0:g.includes(m)}))??!1},[t]),h=le(()=>Array.from(a.keys()),[a]);return{isAnalyzing:r.state!=="idle",handleGenerateSimulation:i,handleGenerateAllSimulations:l,isEntityBeingAnalyzed:c,isEntityPending:u,isEntityInQueue:p,pendingEntityKeys:h}}function Bi({showActions:e=!1,sortOrder:t="desc",onSortChange:r,onAnalyzeAll:s,analyzeAllDisabled:a=!1,analyzeAllText:o="Analyze All"}){return n("div",{className:"bg-[#efefef] rounded-lg mb-2 text-[11px] font-normal leading-[16px] text-[#3e3e3e] uppercase",children:d("div",{className:"flex justify-between items-center px-3 py-2",children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4"}),n("span",{children:"FILE"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"100px"},children:n("span",{children:"STATE"})}),n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"70px"},children:n("span",{children:"SIMULATIONS"})}),d("div",{className:"flex gap-4 items-center",children:[n("span",{className:"text-center",style:{width:"70px"},children:"ENTITIES"}),d("div",{className:"flex items-center justify-center gap-1 cursor-pointer hover:text-[#232323] transition-colors",style:{width:"116px"},onClick:r,role:"button",tabIndex:0,onKeyDown:i=>{(i.key==="Enter"||i.key===" ")&&(i.preventDefault(),r==null||r())},children:[n("span",{children:"MODIFIED"}),n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{transform:t==="asc"?"rotate(180deg)":"rotate(0deg)",transition:"transform 0.2s ease"},children:n("path",{d:"M3 5L6 8L9 5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),e&&n("div",{className:"text-center",style:{width:"127px"},children:s&&n("button",{onClick:s,disabled:a,className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors cursor-pointer disabled:bg-gray-400 disabled:cursor-not-allowed whitespace-nowrap px-3 py-1.5 normal-case",title:a?o:"Analyze all entities",children:o})})]})]})]})})}function C2({status:e,variant:t="compact"}){const r={modified:{label:"M",bgColor:"bg-[#f59e0c]"},added:{label:"A",bgColor:"bg-emerald-500"},deleted:{label:"D",bgColor:"bg-red-500",showWarning:!0},renamed:{label:"R",bgColor:"bg-indigo-500"},untracked:{label:"U",bgColor:"bg-purple-500"}},s={modified:{label:"MODIFIED",textColor:"#BB6BD9"},added:{label:"ADDED",textColor:"#F2994A"},deleted:{label:"DELETED",textColor:"#EF4444"},renamed:{label:"RENAMED",textColor:"#3B82F6"},untracked:{label:"UNTRACKED",textColor:"#6B7280"}};if(t==="full"){const o=s[e]||{label:"UNKNOWN",textColor:"#6B7280"};return n("div",{className:"bg-[#f9f9f9] inline-flex items-center justify-center px-[5px] py-0 rounded",style:{height:"22px"},children:n("span",{className:"text-[10px] font-['IBM_Plex_Sans'] font-medium leading-[22px]",style:{color:o.textColor},children:o.label})})}const a=r[e]||{label:"?",bgColor:"bg-gray-500"};return d("div",{className:"inline-flex items-center gap-1",children:[n("span",{className:`inline-flex items-center justify-center w-5 h-5 text-[11px] font-bold text-white rounded ${a.bgColor}`,title:e,children:a.label}),a.showWarning&&n("span",{className:"inline-flex items-center justify-center w-3 h-3 text-[10px] text-amber-600",title:"Warning: File will be deleted",children:"⚠"})]})}function Yi({filePath:e,isExpanded:t,onToggle:r,fileStatus:s,simulationPreviews:a,entityCount:o,state:i,lastModified:l,actionButton:c,uncommittedCount:u,children:p,isNotAnalyzable:h=!1,isUncommitted:m=!1}){return d("div",{className:"bg-white overflow-hidden",style:t?{border:"1px solid #e1e1e1",borderLeft:"4px solid #005C75",borderRadius:"8px"}:{borderBottom:"1px solid #e1e1e1"},children:[d("div",{className:`flex justify-between items-center p-3 cursor-pointer select-none transition-colors ${h?"opacity-50":"hover:bg-gray-200"}`,style:{outlineColor:"#005C75"},onClick:r,role:"button",tabIndex:0,onKeyDown:f=>{(f.key==="Enter"||f.key===" ")&&(f.preventDefault(),r())},children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:t?"rotate(90deg)":"none"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:t?"#3e3e3e":"#c7c7c7"})})}),n("img",{src:"/icons/file-icon.svg",alt:"file",className:"w-4 h-5 shrink-0"}),n(md,{filePath:e}),s&&n(C2,{status:typeof s=="string"?s:s.status,variant:"full"}),m&&i==="out-of-date"&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fdf9c9",color:"#c69538",height:"22px"},children:"Out of date"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"100px"},children:(m||i==="out-of-date")&&d("div",{className:"flex gap-1.5 items-center",children:[m&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fff3cd",color:"#856404",height:"22px"},children:"Uncommitted"}),i==="out-of-date"&&!m&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fdf9c9",color:"#c69538",height:"22px"},children:"Out of date"})]})}),n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"70px"},children:a}),d("div",{className:"flex gap-4 items-center",children:[n("div",{className:"flex items-center justify-center",style:{width:"70px"},children:n("div",{className:"bg-[#f9f9f9] flex items-center justify-center px-2 rounded whitespace-nowrap",style:{height:"26px"},children:d("span",{className:"text-[13px] text-[#3e3e3e]",children:[o," ",o===1?"entity":"entities"]})})}),n("div",{className:"text-[12px] text-gray-600 text-center",style:{width:"116px"},children:tp(l)}),n("div",{style:{width:"127px"},className:"flex justify-center",children:c})]})]})]}),t&&p&&n("div",{className:"bg-gray-50 py-2 rounded-bl-[4px] rounded-br-[4px] flex flex-col gap-1",children:p})]})}function Ui({entities:e,maxPreviews:t=3}){var s,a,o,i,l;const r=[];for(const c of e){if(r.length>=t)break;const u=((a=(s=c.analyses)==null?void 0:s[0])==null?void 0:a.scenarios)||[];if(c.entityType==="library"){const p=u.find(h=>{var m,f;return((m=h.metadata)==null?void 0:m.executionResult)||((f=h.metadata)==null?void 0:f.error)});p&&r.push({type:"library",scenario:p,entitySha:c.sha})}else if(c.entityType==="visual"){const p=u.find(h=>{var m,f;return(f=(m=h.metadata)==null?void 0:m.screenshotPaths)==null?void 0:f[0]});if(p){const h=(i=(o=p.metadata)==null?void 0:o.screenshotPaths)==null?void 0:i[0],m=!!((l=p.metadata)!=null&&l.error);h&&r.push({type:"screenshot",screenshot:h,hasError:m,scenario:p,entitySha:c.sha})}}}return r.length===0?n("span",{className:"text-gray-400 font-light text-[14px]",children:"—"}):n(we,{children:r.map((c,u)=>{if(c.type==="screenshot"&&c.screenshot){const p=c.hasError?"border-red-400":"border-gray-200";return d(ke,{to:c.scenario?`/entity/${c.entitySha}/scenarios/${c.scenario.id}`:`/entity/${c.entitySha}`,className:`relative w-[50px] h-[38px] border ${p} rounded overflow-hidden bg-gray-50 shrink-0 flex items-center justify-center cursor-pointer transition-all hover:scale-105 hover:shadow-md`,onClick:h=>h.stopPropagation(),children:[n(dt,{screenshotPath:c.screenshot,alt:`Preview ${u+1}`,className:"max-w-full max-h-full object-contain object-center"}),c.hasError&&n("div",{className:"absolute top-0 right-0 w-4 h-4 bg-red-500 text-white flex items-center justify-center text-[10px] rounded-bl",title:"Error during capture",children:n(Ds,{size:12,color:"white"})})]},`screenshot-${u}`)}return c.type==="library"&&c.scenario&&c.entitySha?n(Xu,{scenario:c.scenario,entitySha:c.entitySha,size:"small",showBorder:!0},`library-${u}`):null})})}function Wi({entity:e,isActivelyAnalyzing:t,isQueued:r,onGenerateSimulation:s}){var p,h;const a=t||r?[{entityShas:[e.sha]}]:[],o=Nt(e,a,t),i=e.entityType==="visual"||e.entityType==="library",l=i&&(o==="not-analyzed"||o==="out-of-date")&&!t&&!r,u=(((h=(p=e.analyses)==null?void 0:p[0])==null?void 0:h.scenarios)||[]).filter(m=>{var f,y;return(y=(f=m.metadata)==null?void 0:f.screenshotPaths)==null?void 0:y[0]});return d("div",{className:"bg-white rounded-lg",children:[d(ke,{to:`/entity/${e.sha}`,className:"flex items-center justify-between p-3 transition-colors hover:bg-gray-100 cursor-pointer",children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4 shrink-0"}),e.entityType==="type"?n("div",{className:"bg-[#ffe1e1] inline-flex items-center justify-center px-[4px] rounded-[4px]",style:{height:"18px",width:"18px"},children:n("div",{className:"w-[10px] h-[10px] flex items-center justify-center",children:n(gt,{type:"type"})})}):n(gt,{type:e.entityType||"other"}),n("span",{className:`font-['IBM_Plex_Sans'] text-[14px] leading-[18px] text-black ${i?"font-medium":"font-normal"}`,children:e.name}),n($i,{type:e.entityType||"other"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{style:{width:"160px"}}),d("div",{className:"flex gap-4 items-center",children:[n("div",{style:{width:"70px"}}),n("div",{style:{width:"116px"}}),n("div",{style:{width:"127px"},className:"flex justify-center items-center",children:i?o==="queued"?d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#cbf3fa",color:"#3098b4",height:"26px"},children:[d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#3098b4",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("polyline",{points:"12,6 12,12 16,14"})]}),"Queued"]}):o==="analyzing"?d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):o==="up-to-date"?n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):o==="out-of-date"?n("button",{onClick:m=>{m.preventDefault(),m.stopPropagation(),s(e)},className:"bg-[#e0e9ec] text-[#005c75] rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#d0dfe5] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):l&&n("button",{onClick:m=>{m.preventDefault(),m.stopPropagation(),s(e)},className:"bg-[#e0e9ec] text-[#005c75] rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#d0dfe5] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:"Analyze"}):n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"})})]})]})]}),u.length>0&&n("div",{className:"px-3 pb-3 pt-0 flex items-center gap-2 pl-[52px]",children:u.map((m,f)=>{var g,x;const y=(x=(g=m.metadata)==null?void 0:g.screenshotPaths)==null?void 0:x[0];return y?n(ke,{to:`/entity/${e.sha}?scenario=${m.id}`,className:"relative w-[120px] h-[90px] border border-gray-200 rounded overflow-hidden bg-gray-50 shrink-0 flex items-center justify-center hover:border-gray-400 transition-colors",onClick:b=>b.stopPropagation(),children:n(dt,{screenshotPath:y,alt:m.name,className:"max-w-full max-h-full object-contain object-center"})},m.id):null})})]})}function k2({entities:e,page:t,itemsPerPage:r=50,currentRun:s,filter:a,entityType:o,queueState:i,isEntityPending:l,pendingEntityKeys:c,onGenerateSimulation:u,onGenerateAllSimulations:p,totalFilesCount:h,totalEntitiesCount:m,uncommittedFilesCount:f,showOnlyUncommitted:y,onToggleUncommitted:g}){const[x,b]=or(),[v,S]=j(new Set),[w,C]=j(""),[k,N]=j(!1),[A,_]=j("all"),[M,$]=j("desc"),I=o||"all",R=le(()=>{let E=e;return I!=="all"&&(E=E.filter(W=>W.entityType===I)),a==="analyzed"&&(E=E.filter(W=>W.analyses&&W.analyses.length>0)),E},[e,I,a]),P=le(()=>{const E=new Map,W=new Map,K=new Map;R.forEach(L=>{var re,ue;const z=`${L.filePath}::${L.name}`,V=W.get(z);if(!V)W.set(z,L),K.set(z,[]);else{const be=((re=V.metadata)==null?void 0:re.editedAt)||V.createdAt||"",ie=((ue=L.metadata)==null?void 0:ue.editedAt)||L.createdAt||"";let fe=!1;if(ie>be)fe=!0;else if(ie===be){const ce=V.createdAt||"";fe=(L.createdAt||"")>ce}fe?(K.get(z).push(V),W.set(z,L)):K.get(z).push(L)}}),W.forEach((L,z)=>{var re;if(!(L.analyses&&L.analyses.length>0)&&((re=L.metadata)!=null&&re.previousVersionWithAnalyses)){const be=(K.get(z)||[]).find(ie=>{var fe;return ie.sha===((fe=L.metadata)==null?void 0:fe.previousVersionWithAnalyses)});be&&be.analyses&&be.analyses.length>0&&(L.analyses=be.analyses)}}),Array.from(W.values()).sort((L,z)=>{var ue,be,ie,fe;const V=!((ue=L.metadata)!=null&&ue.notExported)&&!((be=L.metadata)!=null&&be.namedExport),re=!((ie=z.metadata)!=null&&ie.notExported)&&!((fe=z.metadata)!=null&&fe.namedExport);return V&&!re?-1:!V&&re?1:0}).forEach(L=>{var be,ie,fe,ce,Ce;const z=L.filePath??"No File Path";E.has(z)||E.set(z,{filePath:z,entities:[],totalCount:0,uncommittedCount:0,lastUpdated:null,previewScreenshots:[],previewScreenshotErrors:[],previewLibraryScenarios:[],state:"up-to-date",simulationCount:0});const V=E.get(z);V.entities.push(L),V.totalCount++,(be=L.metadata)!=null&&be.isUncommitted&&V.uncommittedCount++;const re=((ce=(fe=(ie=L.analyses)==null?void 0:ie[0])==null?void 0:fe.scenarios)==null?void 0:ce.length)||0;V.simulationCount+=re;const ue=((Ce=L.metadata)==null?void 0:Ce.editedAt)||L.updatedAt;ue&&(!V.lastUpdated||new Date(ue)>new Date(V.lastUpdated))&&(V.lastUpdated=ue)});const Z=(i==null?void 0:i.jobs)||[],q=L=>{const z=`${L.filePath||""}::${L.name}`;return(c==null?void 0:c.includes(z))||!1};E.forEach(L=>{const z=L.entities.map(V=>q(V)?"queued":Nt(V,Z));z.includes("analyzing")||z.includes("queued")?L.state="analyzing":z.includes("incomplete")?L.state="incomplete":z.includes("out-of-date")?L.state="out-of-date":z.includes("not-analyzed")?L.state="not-analyzed":L.state="up-to-date"}),E.forEach(L=>{var z,V,re,ue,be;for(const ie of L.entities){if(L.previewScreenshots.length+L.previewLibraryScenarios.length>=3)break;const ce=((V=(z=ie.analyses)==null?void 0:z[0])==null?void 0:V.scenarios)||[];if(ie.entityType==="library"){const Ce=ce.find(Ae=>{var _e,Q;return((_e=Ae.metadata)==null?void 0:_e.executionResult)||((Q=Ae.metadata)==null?void 0:Q.error)});Ce&&L.previewLibraryScenarios.push({scenario:Ce,entitySha:ie.sha})}else{const Ce=ce.find(Ae=>{var _e,Q;return(Q=(_e=Ae.metadata)==null?void 0:_e.screenshotPaths)==null?void 0:Q[0]});if(Ce){const Ae=(ue=(re=Ce.metadata)==null?void 0:re.screenshotPaths)==null?void 0:ue[0],_e=!!((be=Ce.metadata)!=null&&be.error);Ae&&!L.previewScreenshots.includes(Ae)&&(L.previewScreenshots.push(Ae),L.previewScreenshotErrors.push(_e))}}}});const U=Array.from(E.values());return U.sort((L,z)=>{if(a==="analyzed"){const ue=Math.max(...L.entities.filter(ie=>{var fe,ce;return(ce=(fe=ie.analyses)==null?void 0:fe[0])==null?void 0:ce.createdAt}).map(ie=>new Date(ie.analyses[0].createdAt).getTime()),0),be=Math.max(...z.entities.filter(ie=>{var fe,ce;return(ce=(fe=ie.analyses)==null?void 0:fe[0])==null?void 0:ce.createdAt}).map(ie=>new Date(ie.analyses[0].createdAt).getTime()),0);return M==="desc"?be-ue:ue-be}if(L.uncommittedCount>0&&z.uncommittedCount===0)return-1;if(L.uncommittedCount===0&&z.uncommittedCount>0)return 1;const V=L.lastUpdated?new Date(L.lastUpdated).getTime():0,re=z.lastUpdated?new Date(z.lastUpdated).getTime():0;return M==="desc"?re-V:V-re}),U},[R,a,M,i,c]),F=le(()=>{let E=P;if(A!=="all"&&(E=E.filter(W=>W.state===A)),w.trim()){const W=w.toLowerCase();E=E.filter(K=>K.filePath.toLowerCase().includes(W))}return E},[P,w,A]),Y=(t-1)*r,J=Y+r,O=F.slice(Y,J),B=Math.ceil(F.length/r),T=E=>{S(W=>{const K=new Set(W);return K.has(E)?K.delete(E):K.add(E),K})},D=()=>{$(E=>E==="desc"?"asc":"desc")};return d("div",{children:[d("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Filters"}),d("div",{className:"flex gap-3",children:[d("div",{className:"relative w-[130px]",children:[d("select",{value:I,onChange:E=>{const W=E.target.value,K=new URLSearchParams(x);W==="all"?K.delete("entityType"):K.set("entityType",W),K.set("page","1"),b(K)},className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:[n("option",{value:"all",children:"All Types"}),n("option",{value:"visual",children:"Visual"}),n("option",{value:"library",children:"Library"})]}),n(Ct,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"relative w-[130px]",children:[d("select",{value:A,onChange:E=>_(E.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:[n("option",{value:"all",children:"All States"}),n("option",{value:"analyzing",children:"Analyzing..."}),n("option",{value:"up-to-date",children:"Up to date"}),n("option",{value:"incomplete",children:"Incomplete"}),n("option",{value:"out-of-date",children:"Out of date"}),n("option",{value:"not-analyzed",children:"Not analyzed"})]}),n(Ct,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"flex-1 relative",children:[n(Hr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",placeholder:"Search component",value:w,onChange:E=>C(E.target.value),className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-[10px] text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors"})]})]})]}),h!==void 0&&m!==void 0&&f!==void 0&&n("div",{className:"mb-3",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:F.length})," ",F.length===1?"file":"files"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:F.reduce((E,W)=>E+W.totalCount,0)})," ",F.reduce((E,W)=>E+W.totalCount,0)===1?"entity":"entities"]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),y?d("button",{onClick:g,className:"flex items-center gap-2 text-[#005c75] underline hover:text-[#004a5e] transition-colors ml-2 font-mono uppercase cursor-pointer",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[F.filter(E=>E.uncommittedCount>0).length," ","uncommitted"," ",F.filter(E=>E.uncommittedCount>0).length===1?"file":"files",n("svg",{className:"w-3.5 h-3.5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M6 18L18 6M6 6l12 12"})})]}):d("button",{onClick:g,className:"text-[#005c75] underline hover:text-[#004a5e] transition-colors ml-2 font-mono uppercase",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[f," uncommitted"," ",f===1?"file":"files"]})]}),O.length>0&&d("div",{className:"flex gap-6",children:[d("button",{onClick:()=>{S(new Set(O.map(E=>E.filePath))),N(!0)},className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(id,{className:"w-3.5 h-3.5"}),"Expand All"]}),d("button",{onClick:()=>{S(new Set),N(!1)},className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(ld,{className:"w-3.5 h-3.5"}),"Collapse All"]})]})]})}),n(Bi,{showActions:!0,sortOrder:M,onSortChange:D}),n("div",{className:"flex flex-col gap-[3px]",children:O.map(E=>{const W=v.has(E.filePath),Z=E.entities.filter(z=>(z.entityType==="visual"||z.entityType==="library")&&(Nt(z,(i==null?void 0:i.jobs)||[])==="not-analyzed"||Nt(z,(i==null?void 0:i.jobs)||[])==="out-of-date"||Nt(z,(i==null?void 0:i.jobs)||[])==="incomplete")).length>0,q=z=>{var V;return((V=s==null?void 0:s.currentEntityShas)==null?void 0:V.includes(z))||!1},U=z=>{var V;return l!=null&&l(z)?!0:((V=i==null?void 0:i.jobs)==null?void 0:V.some(re=>{var ue;return(ue=re.entityShas)==null?void 0:ue.includes(z.sha)}))||!1},L=z=>{u==null||u(z)};return n(Yi,{filePath:E.filePath,isExpanded:W,onToggle:()=>T(E.filePath),simulationPreviews:n(Ui,{entities:E.entities,maxPreviews:1}),entityCount:E.totalCount,state:E.state,lastModified:E.lastUpdated,uncommittedCount:E.uncommittedCount,isUncommitted:E.uncommittedCount>0,actionButton:Z?n("button",{onClick:z=>{z.stopPropagation();const V=E.entities.filter(re=>(re.entityType==="visual"||re.entityType==="library")&&(Nt(re,(i==null?void 0:i.jobs)||[])==="not-analyzed"||Nt(re,(i==null?void 0:i.jobs)||[])==="out-of-date"||Nt(re,(i==null?void 0:i.jobs)||[])==="incomplete"));p==null||p(V)},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:E.state==="out-of-date"?"Re-analyze":"Analyze"}):void 0,children:E.entities.sort((z,V)=>{var fe,ce,Ce,Ae;const re=!((fe=z.metadata)!=null&&fe.notExported)&&!((ce=z.metadata)!=null&&ce.namedExport),ue=!((Ce=V.metadata)!=null&&Ce.notExported)&&!((Ae=V.metadata)!=null&&Ae.namedExport);if(re&&!ue)return-1;if(!re&&ue)return 1;const be=z.entityType==="visual"||z.entityType==="library",ie=V.entityType==="visual"||V.entityType==="library";return be&&!ie?-1:!be&&ie?1:z.name.localeCompare(V.name)}).map(z=>n(Wi,{entity:z,isActivelyAnalyzing:q(z.sha),isQueued:U(z),onGenerateSimulation:L},z.sha))},E.filePath)})}),B>1&&d("div",{className:"flex justify-center items-center gap-4 mt-6 p-4",children:[t>1&&n("a",{href:`?${new URLSearchParams({...Object.fromEntries(x),page:String(t-1)}).toString()}`,className:"no-underline font-medium hover:underline",style:{color:"#005C75"},children:"← Previous"}),d("span",{children:["Page ",t," of ",B]}),t<B&&n("a",{href:`?${new URLSearchParams({...Object.fromEntries(x),page:String(t+1)}).toString()}`,className:"no-underline font-medium hover:underline",style:{color:"#005C75"},children:"Next →"})]})]})}const _2=()=>[{title:"Files & Entities - CodeYam"},{name:"description",content:"Browse your codebase files and entities"}];async function E2({request:e,context:t}){try{const r=new URL(e.url),s=parseInt(r.searchParams.get("page")||"1"),a=r.searchParams.get("filter")||null,o=r.searchParams.get("entityType"),i=t.analysisQueue,l=i?i.getState():{paused:!1,jobs:[]},[c,u]=await Promise.all([Mn(),ur()]);return ne({entities:c,currentCommit:u,page:s,filter:a,entityType:o,queueState:l})}catch(r){return console.error("Failed to load entities:",r),ne({entities:[],currentCommit:null,page:1,filter:null,entityType:null,queueState:{paused:!1,jobs:[]},error:"Failed to load entities"})}}const A2=et(function(){var w,C,k;const{entities:t,currentCommit:r,page:s,filter:a,entityType:o,queueState:i,error:l}=ot();Dt();const[c,u]=or(),[p,h]=j(!1);Rt({source:"files-page"});const{handleGenerateSimulation:m,handleGenerateAllSimulations:f,isEntityPending:y,pendingEntityKeys:g}=mp((C=(w=r==null?void 0:r.metadata)==null?void 0:w.currentRun)==null?void 0:C.currentEntityShas,i),x=t||[],b=le(()=>{const N=new Set([]);for(const A of x)N.add(A.filePath??"No File Path");return Array.from(N)},[x]),v=le(()=>{let N=x;return p&&(N=N.filter(A=>{var _;return(_=A.metadata)==null?void 0:_.isUncommitted})),N.sort((A,_)=>{var M,$,I,R,P,F;return(M=A.metadata)!=null&&M.isUncommitted&&!(($=_.metadata)!=null&&$.isUncommitted)?-1:!((I=A.metadata)!=null&&I.isUncommitted)&&((R=_.metadata)!=null&&R.isUncommitted)?1:new Date(((P=_.metadata)==null?void 0:P.editedAt)||0).getTime()-new Date(((F=A.metadata)==null?void 0:F.editedAt)||0).getTime()})},[x,p]),S=le(()=>{var A;const N=new Set([]);for(const _ of x)(A=_.metadata)!=null&&A.isUncommitted&&N.add(_.filePath??"No File Path");return Array.from(N)},[x]);return l?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:l})]})}):x.length===0?n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Files & Entities"}),n("p",{className:"text-[15px] text-gray-500",children:"This is a list of all the files in your app."})]}),n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:d("div",{className:"max-w-md mx-auto",children:[n("h2",{className:"text-xl font-semibold text-gray-900 mb-3",children:"No entities found"}),d("p",{className:"text-[15px] text-gray-600 mb-6",children:["Your project hasn't been analyzed yet. Run"," ",n("code",{className:"px-2 py-1 bg-gray-100 rounded text-sm font-mono",children:"codeyam analyze"})," ","to extract entities from your codebase."]}),n("p",{className:"text-sm text-gray-500",children:"Entities include React components, functions, and other analyzable code elements."})]})})]})}):n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Files & Entities"}),n("p",{className:"text-[15px] text-gray-500",children:"This is a list of all the files in your app."})]}),n(k2,{entities:v,page:s,itemsPerPage:50,currentRun:(k=r==null?void 0:r.metadata)==null?void 0:k.currentRun,filter:a,entityType:o,queueState:i,isEntityPending:y,pendingEntityKeys:g,onGenerateSimulation:m,onGenerateAllSimulations:f,totalFilesCount:b.length,totalEntitiesCount:x.length,uncommittedFilesCount:S.length,showOnlyUncommitted:p,onToggleUncommitted:()=>h(!p)})]})})}),j2=Object.freeze(Object.defineProperty({__proto__:null,default:A2,loader:E2,meta:_2},Symbol.toStringTag,{value:"Module"})),P2=()=>[{title:"Labs - CodeYam"},{name:"description",content:"Experimental features"}];async function T2({request:e}){var t;try{const r=await Ye();if(!r)return ne({labs:null,projectSlug:null,defaultEmail:"",detectedTechStack:"",unlockCode:null,error:"Project not found"});const{project:s}=await Re(r),a=Se()||process.cwd(),o=Ju(a)||"";let i="";try{const c=await ia();if(c!=null&&c.webapps&&Array.isArray(c.webapps)){const u=c.webapps.map(p=>p.framework).filter(Boolean);u.length>0&&(i=u.join(", "))}}catch{}const l=Zu(r);return ne({labs:((t=s.metadata)==null?void 0:t.labs)??null,projectSlug:r,defaultEmail:o,detectedTechStack:i,unlockCode:l,error:null})}catch(r){return console.error("Failed to load labs config:",r),ne({labs:null,projectSlug:null,defaultEmail:"",detectedTechStack:"",unlockCode:null,error:"Failed to load labs configuration"})}}async function M2({request:e}){try{const t=await e.formData(),r=t.get("feature"),s=t.get("enabled")==="true";if(!r)return ne({success:!1,error:"Missing feature name"},{status:400});const a=await Ye();return a?(r==="clearAccess"?await rr({projectSlug:a,metadataUpdate:{labs:{accessGranted:!1,simulations:!1}}}):await rr({projectSlug:a,metadataUpdate:{labs:{[r]:s}}}),ne({success:!0,error:null})):ne({success:!1,error:"Project not found"},{status:404})}catch(t){return console.error("Failed to update labs config:",t),ne({success:!1,error:"Failed to save labs configuration"},{status:500})}}const $2=[{id:"simulations",name:"Simulations",description:"Enable entity analysis, visual simulations, git impact analysis, file browsing, and activity monitoring. When disabled, only Memory, Labs, and Settings are accessible.",defaultEnabled:!0},{id:"enhancedClaudeTesting",name:"Enhanced Claude Testing",description:"Automatically generated mock data that covers the scenarios you actually care about: empty states, error states, auth flows, broken images, missing permissions.",defaultEnabled:!0},{id:"gitIntegration",name:"Git Integration Showing Impacted Files",description:"Lorem Ipsum Automatically generated mock data that covers the scenarios you actually care about: empty states, error states, auth flows, broken images, missing permissions.",defaultEnabled:!1}],Ic="https://docs.google.com/forms/d/e/1FAIpQLSfopqQOQsjY9S4Ns0l3xDLzGl7iYNpKa2Wn2Xzmtxj8CR1sMA/viewform",I2=[{title:"CodeYam Simulations",status:"apply for early access",desc:"CodeYam Simulations are the core of the CodeYam development experience. They leverage static code analysis and AI to generate robust data scenarios that are used to hydrate code. This creates a whole new dimension to the software development experience"},{title:"The Full CodeYam Experience",status:"more to come",desc:"CodeYam is completely rethinking the software development experience in the AI era. Focused on navigating the challenges of iteration speed, complexity, and communication, CodeYam will provide a powerful software development experience."}];function F2({onClose:e}){const t=ye(null),r=ye(0);return te(()=>{const s=t.current;if(!s)return;const a=100,o=2e3,i=500;let l=null,c=!1;const u=()=>{r.current=Date.now(),!l&&!c&&(l=setInterval(()=>{const p=Date.now()-r.current,h=s.scrollTop>a,m=p>o;h&&m&&(s.scrollTo({top:0,behavior:"smooth"}),c=!0,l&&(clearInterval(l),l=null))},i))};return s.addEventListener("scroll",u,{passive:!0}),()=>{s.removeEventListener("scroll",u),l&&clearInterval(l)}},[]),d("div",{className:"fixed inset-0 z-50 flex items-center justify-center",onClick:s=>{s.target===s.currentTarget&&e()},children:[n("div",{className:"absolute inset-0 bg-black/50"}),d("div",{className:"relative bg-white rounded-xl max-w-3xl w-full mx-4 max-h-[90vh] overflow-hidden",children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 text-2xl leading-none cursor-pointer bg-transparent border-none z-10",children:"×"}),d("div",{ref:t,className:"overflow-y-auto max-h-[90vh] p-4 md:p-6",children:[d("div",{className:"mb-4",children:[n("h3",{className:"font-serif italic text-2xl text-primary-200 mb-2",children:"Request Early Access"}),n("p",{className:"text-sm text-gray-500",children:"Complete the form below to join the waitlist for CodeYam Labs."})]}),n("div",{className:"bg-white rounded-lg overflow-hidden",children:n("iframe",{src:`${Ic}?embedded=true`,width:"100%",height:"1400",style:{border:0,minHeight:"1400px"},title:"Labs Waitlist Form",loading:"eager",children:n("div",{className:"flex items-center justify-center p-8 text-gray-600",children:d("div",{className:"text-center",children:[n("div",{className:"mb-4",children:"Loading form..."}),d("div",{className:"text-sm",children:["If this takes too long,"," ",n("a",{href:Ic,target:"_blank",rel:"noopener noreferrer",className:"text-blue-600 hover:text-blue-800 underline",children:"open the form directly"})]})]})})})})]})]})]})}function D2({onClose:e,unlockCodeInput:t,setUnlockCodeInput:r,unlockFetcher:s}){var i,l;const a=(i=s.data)==null?void 0:i.error,o=(l=s.data)==null?void 0:l.success;return d("div",{className:"fixed inset-0 z-50 flex items-center justify-center",onClick:c=>{c.target===c.currentTarget&&e()},children:[n("div",{className:"absolute inset-0 bg-black/50"}),d("div",{className:"relative bg-white rounded-xl p-8 max-w-md w-full mx-4",children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 text-2xl leading-none cursor-pointer bg-transparent border-none",children:"×"}),n("h3",{className:"font-serif italic text-2xl text-primary-200 mb-2",children:"Have an unlock code?"}),n("p",{className:"text-sm text-cygray-50 mb-6",children:"If you've received an unlock code, paste it below to enable Simulations immediately."}),d(s.Form,{method:"post",action:"/api/labs-unlock",className:"space-y-4",children:[n("input",{type:"text",name:"unlockCode",value:t,onChange:c=>r(c.target.value),placeholder:"CY-...",className:"w-full px-4 py-2.5 border border-gray-300 rounded-lg text-sm font-mono focus:outline-none focus:ring-2 focus:ring-primary-100 focus:border-transparent"}),n("button",{type:"submit",disabled:!t.trim()||s.state==="submitting",className:"w-full py-3 text-white border-none rounded-lg text-sm font-mono font-semibold uppercase tracking-wider cursor-pointer transition-all bg-primary-200 hover:bg-primary-100 disabled:bg-gray-400 disabled:cursor-not-allowed",children:s.state==="submitting"?"Validating...":"Unlock"}),a&&n("p",{className:"text-red-600 text-sm mt-2",children:a}),o&&n("p",{className:"text-emerald-600 text-sm mt-2",children:"Simulations enabled! Refresh the page to see all tabs."})]})]})]})}const R2=et(function(){const{labs:t,unlockCode:r,error:s}=ot(),a=Ge(),o=Ge(),i=Ge(),[l,c]=j(""),[u,p]=j(!1),[h,m]=j(!1);Rt({source:"labs-page"});const f=(t==null?void 0:t.accessGranted)===!0||(t==null?void 0:t.simulations)===!0;return s?n("div",{className:"bg-cygray-10 min-h-screen",children:d("div",{className:"px-20 pt-8 pb-12 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Labs"}),n("div",{className:"bg-red-50 border border-red-200 rounded-lg p-4 mt-4",children:n("p",{className:"text-red-700",children:s})})]})}):f?d("div",{className:"bg-cygray-10 min-h-screen font-sans flex flex-col",children:[n("div",{className:"px-6 sm:px-12 pt-8 pb-4",children:n("h1",{className:"font-mono text-lg font-semibold tracking-widest text-cyblack-100 m-0",children:"LABS"})}),d("div",{className:"px-6 sm:px-12 pt-8 pb-10",children:[n("h2",{className:"font-serif italic text-[32px] sm:text-[48px] text-primary-100 mb-3 font-normal leading-tight",children:"Congrats!"}),n("p",{className:"font-serif text-[18px] sm:text-[24px] text-cyblack-100 font-normal leading-snug max-w-2xl",children:"You were granted early access to software simulation and other experimental features."})]}),n("div",{className:"px-6 sm:px-12 space-y-6 flex-1",children:$2.map(y=>{var b;const g=(t==null?void 0:t[y.id])??y.defaultEnabled,x=o.state==="submitting"&&((b=o.formData)==null?void 0:b.get("feature"))===y.id;return n("div",{className:"border border-cygray-30 rounded-xl p-5 sm:p-8 bg-white",children:d("div",{className:"flex items-center justify-between gap-4",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-3 mb-3",children:[n("h3",{className:"text-lg font-semibold text-cyblack-100 m-0",children:y.name}),n("span",{className:`inline-flex items-center px-2.5 py-0.5 rounded text-[10px] font-bold uppercase tracking-wider ${g?"bg-primary-100/15 text-primary-100":"bg-cygray-20 text-cygray-50"}`,children:g?"Enabled":"Disabled"})]}),n("p",{className:"text-sm text-cygray-50 leading-relaxed m-0",children:y.description})]}),d(o.Form,{method:"post",children:[n("input",{type:"hidden",name:"feature",value:y.id}),n("input",{type:"hidden",name:"enabled",value:String(!g)}),n("button",{type:"submit",disabled:x,className:`relative inline-flex h-8 w-14 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none disabled:opacity-60 disabled:cursor-not-allowed ${g?"bg-primary-100":"bg-gray-300"}`,children:n("span",{className:`pointer-events-none inline-block h-7 w-7 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${g?"translate-x-6":"translate-x-0"}`})})]})]})},y.id)})}),r&&n("div",{className:"px-6 sm:px-12 pt-12",children:d("div",{className:"border border-cygray-30 rounded-xl p-5 sm:p-8 bg-white",children:[n("h3",{className:"text-base font-semibold text-cyblack-100 mb-1",children:"Unlock Code"}),n("p",{className:"text-sm text-cygray-50 mb-3",children:"This code was used to enable Labs access. Clear it to revoke access and return to the landing page."}),d("div",{className:"flex flex-col sm:flex-row sm:items-center gap-3",children:[n("code",{className:"sm:flex-1 px-4 py-2.5 bg-cygray-10 border border-cygray-30 rounded-lg text-sm font-mono text-cyblack-100 overflow-x-auto",children:r}),d(i.Form,{method:"post",children:[n("input",{type:"hidden",name:"feature",value:"clearAccess"}),n("input",{type:"hidden",name:"enabled",value:"false"}),n("button",{type:"submit",disabled:i.state==="submitting",className:"px-4 py-2.5 bg-red-50 border border-red-200 rounded-lg text-sm font-medium text-red-700 cursor-pointer transition-colors hover:bg-red-100 disabled:opacity-60 disabled:cursor-not-allowed",children:i.state==="submitting"?"Clearing...":"Clear"})]})]})]})})]}):d("div",{className:"bg-cygray-10 min-h-screen font-sans",children:[u&&n(F2,{onClose:()=>p(!1)}),h&&n(D2,{onClose:()=>m(!1),unlockCodeInput:l,setUnlockCodeInput:c,unlockFetcher:a}),d("div",{className:"flex flex-wrap justify-between items-center gap-3 px-6 sm:px-12 pt-8 pb-4",children:[n("h1",{className:"font-mono text-lg font-semibold tracking-widest text-cyblack-100 m-0",children:"LABS"}),d("div",{className:"flex flex-wrap items-center gap-3",children:[n("button",{onClick:()=>m(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-4 sm:px-5 py-2.5 rounded border border-cygray-30 bg-transparent text-cygray-50 cursor-pointer transition-colors hover:border-cyblack-100 hover:text-cyblack-100",children:"Have a Code?"}),n("button",{onClick:()=>p(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-4 sm:px-5 py-2.5 rounded border border-cyblack-100 bg-transparent text-cyblack-100 cursor-pointer transition-colors hover:bg-cyblack-100 hover:text-white",children:"Apply for Early Access"})]})]}),d("div",{className:"px-6 sm:px-12 pt-12 pb-8",children:[n("h2",{className:"font-serif text-[24px] sm:text-[32px] leading-snug text-cyblack-100 max-w-xl mb-4 font-normal",children:"Powerful tools for the AI coding era."}),d("p",{className:"text-base sm:text-lg text-cygray-50 leading-relaxed max-w-xl mb-8",children:["We're opening early access to"," ",n("strong",{className:"text-cyblack-100",children:"experimental features"})," to a small group of developers and teams."]}),n("button",{onClick:()=>p(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-6 py-3 rounded bg-primary-200 text-white border-none cursor-pointer transition-colors hover:bg-primary-100",children:"Apply for Early Access"})]}),n("div",{className:"px-6 sm:px-12 py-8",children:n("hr",{className:"border-t border-cygray-30 m-0"})}),d("div",{className:"px-6 sm:px-12 pt-8 pb-4",children:[n("h3",{className:"font-serif text-[22px] sm:text-[28px] text-cyblack-100 mb-10 font-normal text-center",children:"In The Works"}),n("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-5 max-w-4xl mx-auto",children:I2.map(y=>d("div",{className:"border border-cygray-30 bg-white p-5 sm:p-8 rounded-lg",children:[d("h4",{className:"text-base font-semibold text-cyblack-100 mb-1",children:[y.title," ",d("span",{className:"font-normal text-primary-100 font-serif italic",children:["(",y.status,")"]})]}),n("p",{className:"text-sm text-cygray-50 leading-relaxed mt-3 mb-0",children:y.desc})]},y.title))})]}),n("div",{className:"px-6 sm:px-12 py-16",children:d("div",{className:"rounded-lg p-6 sm:p-12 bg-primary-200",children:[n("h3",{className:"font-serif text-[20px] sm:text-[24px] text-white mb-4 font-semibold",children:"Request Early Access"}),n("p",{className:"text-sm text-white/80 leading-relaxed max-w-lg mb-10 font-mono",children:"We're onboarding a limited number of developers and teams. Tell us about how you build and we'll let you know when you can try simulations and other Labs features."}),n("button",{onClick:()=>p(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-6 py-3 rounded border border-white bg-white text-cyblack-100 cursor-pointer transition-colors hover:bg-white/90 mb-4",children:"Apply for Early Access"}),n("p",{className:"text-xs text-white/60 m-0",children:"Takes about 2 minutes. Your answers help us determine eligibility and prioritize access."})]})})]})}),O2=Object.freeze(Object.defineProperty({__proto__:null,action:M2,default:R2,loader:T2,meta:P2},Symbol.toStringTag,{value:"Module"}));function L2(e,t,r){const[s,a]=j(()=>new Set),[o,i]=j(()=>new Set),l=ye([]),c=ye([]);return te(()=>{(t.length!==l.current.length||t.some((g,x)=>g!==l.current[x]))&&(l.current=t,a(g=>{const x=new Set;return t.forEach(b=>{g.has(b)&&x.add(b)}),x}))},[t]),te(()=>{(r.length!==c.current.length||r.some((g,x)=>g!==c.current[x]))&&(c.current=r,i(g=>{const x=new Set;return r.forEach(b=>{g.has(b)&&x.add(b)}),x}))},[r]),{expandedUncommitted:s,expandedBranch:o,setExpandedUncommitted:a,setExpandedBranch:i,toggleFile:(y,g,x)=>{x(b=>{const v=new Set(b);return v.has(y)?v.delete(y):v.add(y),v})},expandAllUncommitted:()=>{a(new Set(t))},collapseAllUncommitted:()=>{a(new Set)},expandAllBranch:()=>{i(new Set(r))},collapseAllBranch:()=>{i(new Set)}}}function z2(e,t,r){const[s,a]=j(null),[o,i]=j(null),l=Ge();te(()=>{var h,m;((h=l.data)==null?void 0:h.oldContent)!==void 0&&((m=l.data)==null?void 0:m.newContent)!==void 0&&i({oldContent:l.data.oldContent,newContent:l.data.newContent,fileName:l.data.fileName})},[l.data]);const c=h=>{a({type:"file",path:h}),i(null);const m=new FormData;m.append("actionType","getDiff"),m.append("filePath",h),m.append("diffType","branch"),m.append("baseBranch",e),m.append("currentBranch",t||""),l.submit(m,{method:"post"})},u=(h,m)=>{a({type:"entity",path:h,entitySha:m}),i(null);const f=new FormData;f.append("actionType","getDiff"),f.append("filePath",h),f.append("diffType","branch"),f.append("baseBranch",e),f.append("currentBranch",t||""),f.append("entitySha",m),l.submit(f,{method:"post"})},p=()=>{a(null),i(null)};return{diffView:s,diffContent:o,isLoading:l.state==="loading"||l.state==="submitting",handleShowFileDiff:c,handleShowEntityDiff:u,handleCloseDiff:p}}function B2({diffView:e,diffContent:t,isLoading:r,entities:s,onClose:a}){var u;const[o,i]=j(!1),[l,c]=j(!1);return te(()=>{c(!0)},[]),n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-8 z-50",children:d("div",{className:"bg-white rounded-xl shadow-2xl max-w-6xl w-full max-h-[90vh] flex flex-col",children:[d("div",{className:"p-6 border-b border-[#e1e1e1] flex items-center justify-between",children:[d("div",{children:[n("h2",{className:"font-['IBM_Plex_Sans'] text-2xl font-semibold text-[#232323]",children:e.type==="file"?"File Diff":"Entity Diff"}),n("p",{className:"font-['IBM_Plex_Mono'] text-sm text-[#8e8e8e] mt-1",children:e.path}),e.type==="entity"&&e.entitySha&&d("p",{className:"font-['IBM_Plex_Mono'] text-sm text-[#8e8e8e]",children:["Entity:"," ",((u=s.find(p=>p.sha===e.entitySha))==null?void 0:u.name)||e.entitySha]})]}),d("div",{className:"flex items-center gap-3",children:[n("button",{onClick:()=>i(!o),className:"px-3 py-1.5 bg-[#efefef] text-[#3e3e3e] rounded-lg font-['IBM_Plex_Sans'] text-sm font-semibold hover:bg-[#e1e1e1] transition-colors cursor-pointer",title:o?"Show changes only":"Show full file",children:o?"Show Changes Only":"Show Full File"}),n("button",{onClick:a,className:"text-[#8e8e8e] hover:text-[#626262] transition-colors cursor-pointer",children:n("svg",{className:"w-6 h-6",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]})]}),n("div",{className:"flex-1 overflow-auto",children:r?n("div",{className:"p-6 text-center",children:n("div",{className:"text-[#8e8e8e]",children:"Loading diff..."})}):t?n("div",{className:"diff-viewer-wrapper",children:l&&n(fm,{oldValue:t.oldContent,newValue:t.newContent,splitView:!0,useDarkTheme:!1,showDiffOnly:!o,extraLinesSurroundingDiff:4,styles:{variables:{light:{diffViewerBackground:"#fff",diffViewerColor:"#212529",addedBackground:"#e6ffed",addedColor:"#24292e",removedBackground:"#ffeef0",removedColor:"#24292e",wordAddedBackground:"#acf2bd",wordRemovedBackground:"#fdb8c0",addedGutterBackground:"#cdffd8",removedGutterBackground:"#ffdce0",gutterBackground:"#f6f8fa",gutterBackgroundDark:"#f3f4f6",highlightBackground:"#fffbdd",highlightGutterBackground:"#fff5b1"}},contentText:{fontSize:"12px",lineHeight:"1.5"},line:{padding:"2px 10px",fontSize:"12px","&:hover":{background:"#f8f9fa"}},splitView:{display:"flex",width:"100%"},diffContainer:{width:"50%",overflowX:"auto"}}})}):n("div",{className:"p-6 text-center",children:n("div",{className:"text-[#8e8e8e]",children:"No diff available"})})}),n("div",{className:"p-6 border-t border-[#e1e1e1] flex justify-end gap-3",children:n("button",{onClick:a,className:"px-4 py-2 bg-[#efefef] text-[#3e3e3e] rounded-lg font-['IBM_Plex_Sans'] font-semibold hover:bg-[#e1e1e1] transition-colors cursor-pointer",children:"Close"})})]})})}function Y2({files:e,currentBranch:t,defaultBranch:r,baseBranch:s,allBranches:a,expandedFiles:o,isEntityBeingAnalyzed:i,isEntityQueued:l,sortOrder:c,onToggleFile:u,onBranchChange:p,onGenerateSimulation:h,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:y,analyzeAllText:g}){const x=e.flatMap(([S,{entities:w}])=>{const C=w.filter(k=>i(k.sha)||l(k)).map(k=>k.sha);return C.length>0?[{entityShas:C}]:[]}),b=S=>{const w=S.map(C=>Nt(C,x));return w.includes("analyzing")||w.includes("queued")?"analyzing":w.includes("out-of-date")?"out-of-date":w.includes("not-analyzed")?"not-analyzed":"up-to-date"},v=le(()=>[...e].sort((S,w)=>{const C=S[1].entities.reduce((_,M)=>{var I;const $=((I=M.metadata)==null?void 0:I.editedAt)||M.updatedAt;return $?_?new Date($)>new Date(_)?$:_:$:_},null),k=w[1].entities.reduce((_,M)=>{var I;const $=((I=M.metadata)==null?void 0:I.editedAt)||M.updatedAt;return $?_?new Date($)>new Date(_)?$:_:$:_},null);if(!C&&!k)return 0;if(!C)return 1;if(!k)return-1;const N=new Date(C).getTime(),A=new Date(k).getTime();return c==="desc"?A-N:N-A}),[e,c]);return n("div",{children:e.length>0?d("div",{children:[n(Bi,{showActions:!0,sortOrder:c,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:y,analyzeAllText:g}),n("div",{className:"flex flex-col gap-[3px]",children:v.map(([S,{status:w,entities:C,isUncommitted:k}])=>{const N=o.has(S),A=b(C),_=C.reduce((R,P)=>{var Y;const F=((Y=P.metadata)==null?void 0:Y.editedAt)||P.updatedAt;return F?R?new Date(F)>new Date(R)?F:R:F:R},null),$=C.filter(R=>R.entityType==="visual"||R.entityType==="library").length===0;let I;return $?I=n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"}):A==="analyzing"?I=d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):A==="up-to-date"?I=n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):A==="out-of-date"?I=n("button",{onClick:R=>{R.stopPropagation(),C.filter(P=>(P.entityType==="visual"||P.entityType==="library")&&!i(P.sha)&&!l(P)).forEach(P=>h(P))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):A==="not-analyzed"&&(I=n("button",{onClick:R=>{R.stopPropagation(),C.filter(P=>(P.entityType==="visual"||P.entityType==="library")&&!i(P.sha)&&!l(P)).forEach(P=>h(P))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Analyze File"})),n(Yi,{filePath:S,isExpanded:N,onToggle:()=>u(S),fileStatus:w,isUncommitted:k,simulationPreviews:n(Ui,{entities:C,maxPreviews:1}),entityCount:C.length,state:A,lastModified:_,isNotAnalyzable:$,actionButton:I,children:C.sort((R,P)=>{const F=R.entityType==="visual"||R.entityType==="library",Y=P.entityType==="visual"||P.entityType==="library";return F&&!Y?-1:!F&&Y?1:0}).map(R=>n(Wi,{entity:R,isActivelyAnalyzing:i(R.sha),isQueued:l(R),onGenerateSimulation:h},R.sha))},S)})})]}):d("div",{className:"bg-[#efefef] rounded-[10px] flex flex-col items-center justify-center text-center",style:{height:"190px"},children:[n("p",{className:"font-['IBM_Plex_Sans'] font-medium text-[16px] text-[#3e3e3e] leading-[24px] mb-2",children:"No Changes"}),n("p",{className:"font-['IBM_Plex_Sans'] font-normal text-[14px] text-[#3e3e3e] leading-[18px]",children:"No files have been modified in this branch."})]})})}function U2({files:e,entityImpactMap:t,expandedFiles:r,isEntityBeingAnalyzed:s,isEntityQueued:a,projectSlug:o,baseBranch:i,currentBranch:l,sortOrder:c,onToggleFile:u,onShowFileDiff:p,onGenerateSimulation:h,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:y,analyzeAllText:g}){const x=le(()=>{const S=[];return e.forEach(([w,{editedEntities:C}])=>{const k=C.filter(N=>s(N.sha)||a(N)).map(N=>N.sha);k.length>0&&S.push({entityShas:k})}),S},[e,s,a]),b=le(()=>{const S=new Map;return e.forEach(([w,{editedEntities:C}])=>{const k=C.map(M=>Nt(M,x));let N;k.includes("analyzing")||k.includes("queued")?N="analyzing":k.includes("out-of-date")?N="out-of-date":k.includes("not-analyzed")?N="not-analyzed":N="up-to-date";const A=C.reduce((M,$)=>{var R;const I=((R=$.metadata)==null?void 0:R.editedAt)||$.updatedAt;return I&&(!M||new Date(I)>new Date(M))?I:M},null),_=C.filter(M=>M.entityType==="visual"||M.entityType==="library").length;S.set(w,{state:N,lastModified:A,analyzableCount:_})}),S},[e,x]),v=le(()=>[...e].sort((S,w)=>{const C=b.get(S[0]),k=b.get(w[0]),N=C==null?void 0:C.lastModified,A=k==null?void 0:k.lastModified;if(!N&&!A)return 0;if(!N)return 1;if(!A)return-1;const _=new Date(N).getTime(),M=new Date(A).getTime();return c==="desc"?M-_:_-M}),[e,b,c]);return e.length===0?d("div",{className:"bg-[#efefef] rounded-[10px] flex flex-col items-center justify-center text-center",style:{height:"190px"},children:[n("p",{className:"font-['IBM_Plex_Sans'] font-medium text-[16px] text-[#3e3e3e] leading-[24px] mb-2",children:"No Uncommitted Changes"}),n("p",{className:"font-['IBM_Plex_Sans'] font-normal text-[14px] text-[#3e3e3e] leading-[18px]",children:"If you edit a file in your project, it will show up here."})]}):d("div",{children:[n(Bi,{showActions:!0,sortOrder:c,onSortChange:m,onAnalyzeAll:f,analyzeAllDisabled:y,analyzeAllText:g}),n("div",{className:"flex flex-col gap-[3px]",children:v.map(([S,{status:w,editedEntities:C}])=>{const k=r.has(S),N=b.get(S),{state:A,lastModified:_,analyzableCount:M}=N,$=M===0;let I;return $?I=n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"}):A==="analyzing"?I=d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):A==="up-to-date"?I=n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):A==="out-of-date"?I=n("button",{onClick:R=>{R.stopPropagation(),C.filter(P=>(P.entityType==="visual"||P.entityType==="library")&&!s(P.sha)&&!a(P)).forEach(P=>h(P))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):A==="not-analyzed"&&(I=n("button",{onClick:R=>{R.stopPropagation(),C.filter(P=>(P.entityType==="visual"||P.entityType==="library")&&!s(P.sha)&&!a(P)).forEach(P=>h(P))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Analyze File"})),n(Yi,{filePath:S,isExpanded:k,onToggle:()=>u(S),fileStatus:w,simulationPreviews:n(Ui,{entities:C,maxPreviews:1}),entityCount:C.length,state:A,lastModified:_,isNotAnalyzable:$,isUncommitted:!0,actionButton:I,children:C.sort((R,P)=>{const F=R.entityType==="visual"||R.entityType==="library",Y=P.entityType==="visual"||P.entityType==="library";return F&&!Y?-1:!F&&Y?1:0}).map(R=>n(Wi,{entity:R,isActivelyAnalyzing:s(R.sha),isQueued:a(R),onGenerateSimulation:h},R.sha))},S)})})]})}function W2({activeTab:e,onTabChange:t,uncommittedCount:r,branchCount:s}){return n("div",{className:"border-b border-gray-200",children:d("nav",{className:"flex gap-8 items-center",children:[d("button",{onClick:()=>t("branch"),className:`relative pb-3 px-2 text-sm font-medium transition-colors cursor-pointer ${e==="branch"?"text-primary-100":"text-gray-500 hover:text-gray-700"}`,children:[d("span",{className:"flex items-center gap-2",children:["Branch Changes",s>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${e==="branch"?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:s})]}),e==="branch"&&n("span",{className:"absolute -bottom-px left-0 right-0 h-0.5 bg-primary-100"})]}),d("button",{onClick:()=>t("uncommitted"),className:`relative pb-3 px-2 text-sm font-medium transition-colors cursor-pointer ${e==="uncommitted"?"text-primary-100":"text-gray-500 hover:text-gray-700"}`,children:[d("span",{className:"flex items-center gap-2",children:["Uncommitted Changes",r>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${e==="uncommitted"?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:r})]}),e==="uncommitted"&&n("span",{className:"absolute -bottom-px left-0 right-0 h-0.5 bg-primary-100"})]})]})})}const J2=()=>[{title:"Git - CodeYam"},{name:"description",content:"Git status and impact analysis"}];async function H2({request:e}){const t=await e.formData();if(t.get("actionType")==="getDiff"){const s=t.get("filePath"),a=t.get("diffType"),o=t.get("baseBranch"),i=t.get("currentBranch"),l=t.get("entitySha");let c;return a==="branch"?c=Ps(s,o,i):c=zx(s),ne({...c,entitySha:l})}return ne({error:"Unknown action"},{status:400})}async function V2({request:e,context:t}){try{const r=new URL(e.url),s=r.searchParams.get("compare"),a=r.searchParams.get("viewBranch"),o=t.analysisQueue,i=o?o.getState():{paused:!1,jobs:[]},[l,c,u]=await Promise.all([Mn(),ur(),Ye()]),p=mr(),h=Dx(),m=Rx(),f=Ox(),y=a||h,g=s||m;let x=[];return y&&y!==g&&(x=Nu(g,y)),ne({entities:l||[],gitStatus:p,currentBranch:y,actualCurrentBranch:h,defaultBranch:m,allBranches:f,baseBranch:g,branchDiff:x,currentCommit:c,projectSlug:u,queueState:i})}catch(r){return console.error("Failed to load git data:",r),ne({entities:[],gitStatus:[],currentBranch:null,actualCurrentBranch:null,defaultBranch:"main",allBranches:[],baseBranch:"main",branchDiff:[],currentCommit:null,projectSlug:null,queueState:{paused:!1,jobs:[]},error:"Failed to load git data"})}}const K2=et(function(){var he,Te;const{entities:t,gitStatus:r,currentBranch:s,actualCurrentBranch:a,defaultBranch:o,allBranches:i,baseBranch:l,branchDiff:c,currentCommit:u,projectSlug:p,queueState:h}=ot();Rt({source:"git-page"});const[m,f]=or(),[y,g]=j(null),[x,b]=j("desc"),[v,S]=j("branch"),w=m.get("expanded")==="true",C=()=>{b(ge=>ge==="desc"?"asc":"desc")},k=Ge(),N=k.data;te(()=>{s&&l&&s!==l&&k.state==="idle"&&!N&&k.load(`/api/branch-entity-diff?base=${encodeURIComponent(l)}&compare=${encodeURIComponent(s)}`)},[s,l,k,N]);const A=le(()=>{const ge=cp(r,t);return Array.from(ge.entries()).sort((ze,Ve)=>ze[0].localeCompare(Ve[0]))},[r,t]),_=le(()=>{const ge=JC(c,t,N);return Array.from(ge.entries()).sort((ze,Ve)=>ze[0].localeCompare(Ve[0]))},[c,t,N]),M=le(()=>HC(r,t),[r,t]),$=le(()=>v==="uncommitted"?A:_,[v,A,_]),I=le(()=>$.map(([ge])=>ge),[$]),{expandedUncommitted:R,setExpandedUncommitted:P,toggleFile:F,expandAllUncommitted:Y,collapseAllUncommitted:J}=L2(w,I,[]),{diffView:O,diffContent:B,isLoading:T,handleShowFileDiff:D,handleCloseDiff:E}=z2(l,s),W=(he=u==null?void 0:u.metadata)==null?void 0:he.currentRun,K=new Set((W==null?void 0:W.currentEntityShas)||[]),Z=new Set(h.jobs.flatMap(ge=>ge.entityShas||[])),q=new Set(((Te=h.currentlyExecuting)==null?void 0:Te.entityShas)||[]),{isAnalyzing:U,handleGenerateSimulation:L,handleGenerateAllSimulations:z,isEntityBeingAnalyzed:V,isEntityPending:re}=mp(W==null?void 0:W.currentEntityShas,h),ue=ge=>re(ge)||Z.has(ge.sha)||q.has(ge.sha),be=ge=>{ge===(a||s)?m.delete("viewBranch"):m.set("viewBranch",ge),f(m)},ie=ge=>{ge===o?m.delete("compare"):m.set("compare",ge),f(m)},fe=()=>{const ze=$.flatMap(([Ve,it])=>it.editedEntities||it.entities||[]).filter(Ve=>!K.has(Ve.sha)&&!Z.has(Ve.sha)&&!q.has(Ve.sha)&&!re(Ve));z(ze)},ce=A.length,Ce=_.length,Ae=$.flatMap(([ge,ze])=>ze.editedEntities||ze.entities||[]),_e=Ae.filter(ge=>ge.entityType==="visual"||ge.entityType==="library"),Q=_e.length>0&&_e.every(ge=>K.has(ge.sha)),xe=_e.length>0&&!Q&&_e.every(ge=>Z.has(ge.sha)||q.has(ge.sha)),oe=U||Q||xe,se=Q?"Analyzing...":xe?"Queued...":U?"Analyzing...":"Analyze All";return n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Git Changes"}),d("p",{className:"text-[15px] text-gray-500",children:["This is a list of all the files that are affected by your local changes. ",n("strong",{children:"Analyze a file to get simulations."})]})]}),n("div",{className:"mb-6",children:n(W2,{activeTab:v,onTabChange:S,uncommittedCount:ce,branchCount:Ce})}),s&&v==="branch"&&n("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:s===o?d("div",{className:"text-gray-700",children:["You are currently on the primary branch,"," ",n("span",{className:"text-cyblack-75",children:o}),"."]}):d("div",{className:"flex gap-6 items-center",children:[d("div",{className:"shrink-0",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Changes in Branch:"}),i.length>0?d("div",{className:"relative w-50",children:[n("select",{value:s,onChange:ge=>be(ge.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-2.5 pr-6 text-[13px] h-9.75 w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:i.map(ge=>n("option",{value:ge,children:ge},ge))}),n("svg",{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}):n("span",{className:"text-gray-900 font-medium text-[12px]",children:s})]}),d("div",{className:"flex-shrink-0",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Compared To:"}),d("div",{className:"relative w-[200px]",children:[n("select",{value:l,onChange:ge=>ie(ge.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:i.filter(ge=>ge!==s).map(ge=>n("option",{value:ge,children:ge},ge))}),n("svg",{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]})]}),n("div",{className:"flex-1 mt-6",children:d("div",{className:"relative flex items-center",children:[n("svg",{className:"absolute left-3 w-4 h-4 text-gray-400 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"})}),n("input",{type:"text",placeholder:"Search component",className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-[10px] text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors"})]})})]})}),n("div",{className:"mb-3",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:$.length})," ","modified ",$.length===1?"file":"files"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:Ae.length})," ",Ae.length===1?"entity":"entities"]})]}),$.length>0&&d("div",{className:"flex gap-6",children:[d("button",{onClick:Y,className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(id,{className:"w-3.5 h-3.5"}),"Expand All"]}),d("button",{onClick:J,className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(ld,{className:"w-3.5 h-3.5"}),"Collapse All"]})]})]})}),d("div",{className:"overflow-hidden",children:[v==="branch"&&s&&n(Y2,{files:_,currentBranch:s,defaultBranch:o,baseBranch:l,allBranches:i,expandedFiles:R,isEntityBeingAnalyzed:V,isEntityQueued:ue,sortOrder:x,onToggleFile:ge=>F(ge,R,P),onBranchChange:ie,onGenerateSimulation:L,onSortChange:C,onAnalyzeAll:fe,analyzeAllDisabled:oe,analyzeAllText:se}),v==="uncommitted"&&n(U2,{files:A,entityImpactMap:M,expandedFiles:R,isEntityBeingAnalyzed:V,isEntityQueued:ue,projectSlug:p,baseBranch:l,currentBranch:s,sortOrder:x,onToggleFile:ge=>F(ge,R,P),onShowFileDiff:D,onGenerateSimulation:L,onSortChange:C,onAnalyzeAll:fe,analyzeAllDisabled:oe,analyzeAllText:se})]}),O&&n(B2,{diffView:O,diffContent:B,isLoading:T,entities:t,onClose:E}),y&&p&&n(an,{projectSlug:p,onClose:()=>g(null)})]})})}),G2=Object.freeze(Object.defineProperty({__proto__:null,action:H2,default:K2,loader:V2,meta:J2},Symbol.toStringTag,{value:"Module"}));function Is(e){const t=e.name.toLowerCase();if(e.name==="Desktop"||e.name==="Full HD"||e.name==="HD")return"desktop";if(e.name==="Laptop"||e.name==="Small Laptop")return"laptop";if(e.name==="Tablet")return"tablet";if(e.name==="Mobile"||t.includes("iphone")||t.includes("pixel")||t.includes("galaxy")||t.includes("phone"))return"mobile";if(t.includes("ipad")||t.includes("tablet"))return"tablet";if(t.includes("laptop"))return"laptop";if(t.includes("desktop"))return"desktop";const r=e.height>e.width;return r&&e.width>=700?"tablet":r?"mobile":e.width>1200?"desktop":"laptop"}const q2=[{name:"Desktop",width:1440,height:900},{name:"Laptop",width:1024,height:768},{name:"Tablet",width:768,height:1024},{name:"Mobile",width:375,height:667}],Q2=[{name:"iPhone 16",width:393,height:852},{name:"iPhone 16 Pro Max",width:430,height:932},{name:"iPhone SE",width:375,height:667},{name:"Pixel 8",width:412,height:915},{name:"iPad mini",width:744,height:1133}],fp=[{category:"Desktop",presets:[{name:"Full HD",width:1920,height:1080},{name:"Desktop",width:1440,height:900},{name:"HD",width:1280,height:720}]},{category:"Laptop",presets:[{name:"Laptop",width:1366,height:768},{name:"Small Laptop",width:1024,height:768}]},{category:"Tablet",presets:[{name:'iPad Pro 12.9"',width:1024,height:1366},{name:"iPad Air",width:820,height:1180},{name:"Tablet",width:768,height:1024},{name:"iPad mini",width:744,height:1133}]},{category:"Mobile",presets:[{name:"iPhone 16 Pro Max",width:430,height:932},{name:"iPhone 16",width:393,height:852},{name:"iPhone 14",width:390,height:844},{name:"Mobile",width:375,height:667},{name:"Pixel 8",width:412,height:915},{name:"Galaxy S",width:360,height:800}]}];function gp(e,t){if(e&&Object.keys(e).length>0&&Object.values(e).some(l=>"default"in l))return Object.entries(e).map(([l,c])=>({name:l,width:c.width,height:c.height}));const r=(t==null?void 0:t.includes("mobile-app"))??!1,s=r?Q2:q2,a=s.map(l=>{const c=e==null?void 0:e[l.name];return c?{...l,width:c.width,height:c.height}:l});if(!e||r)return a;const o=new Set(s.map(l=>l.name)),i=Object.entries(e).filter(([l])=>!o.has(l)).map(([l,c])=>({name:l,width:c.width,height:c.height}));return[...a,...i]}const _s={width:24,height:76};function Z2({width:e,height:t,enabled:r=!0,children:s}){if(!r)return n(we,{children:s});const a=12,o=48,i=28,l=e+a*2,c=t+o+i;return d("div",{style:{width:`${l}px`,height:`${c}px`,background:"#1a1a1a",borderRadius:"44px",padding:`${o}px ${a}px ${i}px`,position:"relative",boxShadow:"0 0 0 1px rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.4)"},children:[n("div",{style:{position:"absolute",top:"14px",left:"50%",transform:"translateX(-50%)",width:"100px",height:"24px",background:"#000",borderRadius:"12px"}}),n("div",{style:{width:`${e}px`,height:`${t}px`,borderRadius:"6px",overflow:"hidden",position:"relative"},children:s}),n("div",{style:{position:"absolute",bottom:"10px",left:"50%",transform:"translateX(-50%)",width:"120px",height:"4px",background:"rgba(255,255,255,0.25)",borderRadius:"2px"}})]})}function X2({featureName:e,editorStep:t,editorStepLabel:r,onContinue:s,onStartFresh:a}){const o=ae(i=>{i.key==="Enter"&&(i.preventDefault(),s())},[s]);return te(()=>(window.addEventListener("keydown",o),()=>window.removeEventListener("keydown",o)),[o]),n("div",{className:"flex items-center justify-center h-full bg-[#1e1e1e] text-[#d4d4d4]",children:d("div",{className:"max-w-md w-full mx-4 p-6 bg-[#252526] border border-[#3d3d3d] rounded-lg",children:[n("h2",{className:"text-lg font-semibold mb-3 text-white",children:"Resume Previous Session?"}),n("p",{className:"text-sm text-[#999] mb-4",children:"An editor session is still in progress:"}),d("div",{className:"bg-[#1e1e1e] rounded p-3 mb-5 text-sm",children:[e&&d("div",{className:"mb-1",children:[n("span",{className:"text-[#999]",children:"Feature:"})," ",n("span",{className:"text-white",children:e})]}),t!=null&&r&&d("div",{children:[n("span",{className:"text-[#999]",children:"Step:"})," ",d("span",{className:"text-white",children:[t," (",r,")"]})]})]}),n("button",{onClick:s,className:"w-full px-4 py-2 text-sm rounded transition-colors cursor-pointer bg-[#005c75] text-white font-medium hover:bg-[#004d63] ring-2 ring-white/50",children:"Continue Session"}),a&&n("button",{onClick:a,className:"w-full mt-2 px-4 py-2 text-sm rounded transition-colors cursor-pointer bg-transparent text-[#999] hover:text-white hover:bg-[#3d3d3d] border border-[#3d3d3d]",children:"Start Fresh"})]})})}function e5({onStartNextFeature:e,onContinueInSession:t}){const r=ae(s=>{s.key==="Enter"&&(s.preventDefault(),e())},[e]);return te(()=>(window.addEventListener("keydown",r),()=>window.removeEventListener("keydown",r)),[r]),n("div",{className:"absolute inset-0 flex items-center justify-center bg-[#1e1e1e]/90 z-10",children:d("div",{className:"max-w-md w-full mx-4 p-6 bg-[#252526] border border-[#3d3d3d] rounded-lg",children:[n("h2",{className:"text-lg font-semibold mb-3 text-white",children:"Feature Complete!"}),n("p",{className:"text-sm text-[#999] mb-5",children:"Your feature has been pushed. What would you like to do next?"}),n("button",{onClick:e,className:"w-full px-4 py-2 text-sm rounded transition-colors cursor-pointer bg-[#005c75] text-white font-medium hover:bg-[#004d63] ring-2 ring-white/50",children:"Start Next Feature"}),n("button",{onClick:t,className:"w-full mt-2 px-4 py-2 text-sm rounded transition-colors cursor-pointer bg-transparent text-[#999] hover:text-white hover:bg-[#3d3d3d] border border-[#3d3d3d]",children:"Continue in Current Session"}),n("p",{className:"text-xs text-[#666] mt-3 text-center",children:"Press Enter to start a new feature with a fresh context"})]})})}const t5={1:"Plan",2:"Prepare",3:"Prototype",4:"Verify Prototype",5:"Confirm",6:"Deconstruct",7:"Extract",8:"Glossary",9:"Analyze",10:"App Scenarios",11:"User Scenarios",12:"Verify",13:"Journal",14:"Review",15:"Present",16:"Commit",17:"Finalize",18:"Push"},n5={1:"Plan the feature and confirm the approach with the user before writing any code.",2:"Prepare the project environment and dependencies for prototyping.",3:"Build a working prototype quickly to validate the concept.",4:"Verify the prototype works correctly and fix any issues.",5:"Confirm the prototype looks right and get user approval to proceed.",6:"Read the code and plan all component and function extractions.",7:"Extract components and functions via TDD — components first, then functions.",8:"Record all extracted functions and components in the glossary.",9:"Analyze imports and verify all components are captured correctly.",10:"Create app-level scenarios that show full pages with realistic data.",11:"Create user-persona scenarios that exercise the app from different perspectives.",12:"Review all screenshots and check for visual errors or regressions.",13:"Create or update the journal entry documenting what was built.",14:"Final review of screenshots, audit for completeness.",15:"Present a summary of all work to the user for approval.",16:"Commit all changes to git.",17:"Update the journal with final details and amend the commit.",18:"Push the branch to the remote repository."},r5={1:"Survey",2:"App Scenarios",3:"Component Scenarios",4:"Preview",5:"Discuss",6:"Decompose",7:"Extract",8:"Recapture",9:"Journal",10:"Present"},s5={1:"Survey the existing codebase to understand pages, components, and dependencies.",2:"Create app-level scenarios showing full pages with realistic data.",3:"Create component-level scenarios for isolated component previews.",4:"Preview all captured scenarios and verify they look correct.",5:"Discuss the migration plan and prioritize which pages to decompose.",6:"Plan the decomposition of pages into clean, reusable components.",7:"Extract components and functions with tests via TDD.",8:"Recapture scenarios after extraction to verify nothing broke.",9:"Document the migration progress in a journal entry.",10:"Present the migration results for review and approval."},a5=18,o5=10;function i5({projectTitle:e,featureName:t,editorStep:r,editorStepLabel:s,migrationMode:a}){const[o,i]=j(!1),[l,c]=j(null),u=ye(null);te(()=>{if(!o)return;const b=v=>{u.current&&!u.current.contains(v.target)&&i(!1)};return document.addEventListener("mousedown",b),()=>document.removeEventListener("mousedown",b)},[o]);const p=t&&r!=null,h=a==="active",m=h?r5:t5,f=h?s5:n5,y=h?o5:a5,g=p?s||m[r]||"?":null;return d("div",{className:"h-8 shrink-0 flex items-center justify-between px-3 bg-[#2a2a2a] border-b border-[#333] text-xs select-none",children:[d("div",{className:"flex items-center gap-1.5 min-w-0",children:[n("span",{className:"text-[#888] truncate",children:e||"New Project"}),n("span",{className:"text-[#555]",children:">"}),n("span",{className:"text-[#ccc] font-medium truncate",children:t||"New Working Session"})]}),p&&d("div",{className:"relative",ref:u,children:[d("button",{onClick:()=>i(b=>!b),className:"flex items-center gap-1.5 text-[#ccc] hover:text-white transition-colors cursor-pointer",children:[n("span",{className:"text-[#555]",children:"::"}),d("span",{children:["Step ",r,d("span",{className:"text-[#888]",children:[" / ",y]}),":"," ",g]}),n("svg",{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",className:`transition-transform ${o?"rotate-180":""}`,children:n("path",{d:"M2 4l3 3 3-3"})})]}),o&&n("div",{className:"absolute right-0 top-full mt-1 w-48 bg-[#2d2d2d] border border-[#444] rounded-lg shadow-lg z-30 py-1",children:Array.from({length:y},(b,v)=>v+1).map(b=>{const v=b===r,S=b<r,w=l===b,C=f[b];return d("div",{onClick:()=>c(w?null:b),className:"cursor-pointer",children:[d("div",{className:`w-full px-3 py-1 flex items-center gap-2 text-left transition-colors hover:bg-[#383838] ${v?"text-cygreen font-medium":S?"text-[#ccc]":"text-[#999]"}`,children:[d("span",{className:"w-5 text-right tabular-nums shrink-0",children:[b,"."]}),n("span",{className:"flex-1",children:m[b]||`Step ${b}`}),C&&n("svg",{width:"8",height:"8",viewBox:"0 0 10 10",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",className:`shrink-0 opacity-40 transition-transform ${w?"rotate-180":""}`,children:n("path",{d:"M2 4l3 3 3-3"})})]}),w&&C&&n("div",{className:"px-3 pb-1.5 pl-10",children:n("p",{className:"text-[10px] text-[#888] m-0 leading-relaxed",children:C})})]},b)})})]})]})}function Ji(e,t){const[r,s]=j(t??null),[a,o]=j(!1),[i,l]=j((t==null?void 0:t.stale)??!1),c=ae(()=>{e&&(o(!0),fetch(`/api/editor-test-results?testFile=${encodeURIComponent(e)}`).then(u=>u.json()).then(u=>{s(u),l(!1),o(!1)}).catch(()=>{s({testFilePath:e,status:"error",testCases:[],errorMessage:"Failed to fetch test results"}),l(!1),o(!1)}))},[e]);return{results:r,isRunning:a,runTests:c,stale:i}}function ar({scenarioId:e,screenshotPath:t,updatedAt:r,alt:s,className:a="",imgClassName:o=""}){const[i,l]=j(!1),u=`/api/editor-scenario-image/${t?t.replace(/^screenshots\//,""):`${e}.png`}${r?`?v=${encodeURIComponent(r)}`:""}`;return te(()=>{l(!1)},[e,t]),i?n("div",{className:`flex items-center justify-center ${a}`,children:n("span",{className:"text-[8px] text-gray-500",children:"No img"})}):n("div",{className:a,children:n("img",{src:u,alt:s,className:o,loading:"lazy",onError:()=>l(!0)})})}function on(e){return e.flatMap(t=>{const r=t.screenshotPaths;return r&&Object.keys(r).length>1?Object.entries(r).map(([s,a])=>({scenario:t,dimensionLabel:s,screenshotPath:a,key:`${t.id}--${s}`})):[{scenario:t,dimensionLabel:null,screenshotPath:t.screenshotPath,key:t.id}]})}function Pr({scenarioId:e,screenshotPath:t,updatedAt:r,hasScreenshot:s,imgSrc:a,name:o,dimensionLabel:i,isActive:l,onSelect:c}){const u=e&&s,p=!e&&a;return d("button",{onClick:c,className:"flex flex-col items-center gap-1 cursor-pointer group w-full",title:i?`${o} (${i})`:o,children:[d("div",{className:`w-full aspect-[16/10] rounded overflow-hidden border-2 transition-all bg-[#1a1a1a] relative ${l?"border-[#D7FF63]/40 ring-1 ring-[#D7FF63]/20":"border-transparent hover:border-[#4d4d4d]"}`,children:[u?n(ar,{scenarioId:e,screenshotPath:t,updatedAt:r,alt:i?`${o} (${i})`:o,className:"w-full h-full",imgClassName:"w-full h-full object-contain"}):p?n("img",{src:a,alt:o,className:"w-full h-full object-contain",loading:"lazy"}):n("div",{className:"w-full h-full bg-[#1a1a1a] flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"No img"})}),i&&n("span",{className:"absolute bottom-1 right-1 text-[8px] font-medium bg-black/60 text-white px-1 py-0.5 rounded",children:i})]}),n("span",{className:`text-[10px] leading-tight text-center truncate w-full ${l?"text-white":"text-gray-500 group-hover:text-gray-300"}`,children:i?`${o} (${i})`:o})]})}function mo({testFile:e,entityName:t,cachedResult:r}){const{results:s,isRunning:a,runTests:o,stale:i}=Ji(e,r);if(a&&!s)return d("div",{className:"px-2 pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),n("span",{className:"text-[10px] text-gray-400",children:"Running tests..."})]});if(!s)return null;if(s.status==="error")return n("div",{className:"px-2 pt-1",children:n("span",{className:"text-[10px] text-red-400",children:s.errorMessage})});const l=t?s.testCases.filter(p=>p.fullName.startsWith(t)):s.testCases,c=l.length>0?l:s.testCases;if(c.length===0)return null;const u=t?`${t} > `:"";return d("div",{className:"px-2 pt-1 space-y-0.5",children:[c.map(p=>{var m;const h=u&&p.fullName.startsWith(u)?p.fullName.slice(u.length):p.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[p.status==="passed"?n("span",{className:"text-green-400 text-[10px]",children:"✓"}):p.status==="failed"?n("span",{className:"text-red-400 text-[10px]",children:"✗"}):n("span",{className:"text-gray-500 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${p.status==="passed"?"text-green-400":p.status==="failed"?"text-red-400":"text-gray-500"}`,children:h})]}),p.status==="failed"&&((m=p.failureMessages)==null?void 0:m.map((f,y)=>n("div",{className:"pl-4 text-[9px] text-red-300/70 truncate max-w-full",title:f,children:f.split(`
|
|
597
|
-
`)[0]},y)))]},p.fullName)}),d("div",{className:"flex items-center gap-2 mt-1",children:[n("button",{onClick:o,disabled:a,className:"text-[10px] text-[#00a0c4] hover:text-[#00c4ee] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:a?"Running...":i?"Re-run (stale)":"Re-run"}),i&&!a&&n("span",{className:"w-1.5 h-1.5 rounded-full bg-amber-400 shrink-0",title:"Source or test file changed since last run"})]})]})}function Tr({filePath:e}){return e?d("div",{className:"flex items-center gap-1 px-2 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-500 hover:text-gray-300 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(pt,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-500 hover:text-gray-300 transition-colors"})]}):null}function l5({scenarios:e,projectRoot:t,activeScenarioId:r,onScenarioSelect:s,zoomComponent:a,focusedEntity:o,onZoomChange:i,analyzedEntities:l=[],glossaryFunctions:c=[],cachedTestResults:u={},activeAnalyzedScenarioId:p,onAnalyzedScenarioSelect:h,entityImports:m,pageFilePaths:f={},onSwitchToBuild:y,entityShaMap:g,structureTab:x="application",onStructureTabChange:b}){const[v,S]=j(""),[w,C]=j(x),k=b?x:w,N=b||C,{pageGroups:A,componentGroups:_}=le(()=>{var D;const O=new Map,B=new Map;for(const E of e)if(E.componentName){const W=B.get(E.componentName)||[];W.push(E),B.set(E.componentName,W)}else if(ma(E.url)){const W=(D=E.url)==null?void 0:D.match(/[?&]c=([^&]+)/),K=W?decodeURIComponent(W[1]):"Isolated",Z=B.get(K)||[];Z.push(E),B.set(K,Z)}else{const W=E.pageFilePath?Ot(Et(E.pageFilePath)):yt(E.url),K=O.get(W)||[];K.push(E),O.set(W,K)}const T=new Map([...B.entries()].sort(([E],[W])=>E.localeCompare(W)));return{pageGroups:O,componentGroups:T}},[e]),M=le(()=>{const O=new Set((l||[]).filter(T=>T.entityType==="visual").map(T=>T.name)),B=new Map;for(const[T,D]of _)O.has(T)||B.set(T,D);return B},[_,l]),{visualEntities:$,libraryEntities:I}=le(()=>{const O=l.filter(T=>T.entityType==="visual").sort((T,D)=>T.name.localeCompare(D.name)),B=l.filter(T=>T.entityType==="library"||T.entityType==="functionCall").sort((T,D)=>T.name.localeCompare(D.name));return{visualEntities:O,libraryEntities:B}},[l]),R=le(()=>{const O=new Set(I.map(B=>B.name));return c.filter(B=>!O.has(B.name)).sort((B,T)=>B.name.localeCompare(T.name))},[c,I]),P=l.some(O=>O.isAnalyzing),F=ye(null),Y=ye(0),J=ae(()=>{F.current&&(Y.current=F.current.scrollTop)},[]);if(te(()=>{F.current&&Y.current>0&&(F.current.scrollTop=Y.current)}),e.length===0&&l.length===0&&R.length===0)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"text-center text-gray-500 px-8",children:[n("p",{className:"text-sm font-medium mb-2",children:"No scenarios yet"}),n("p",{className:"text-xs",children:"Scenarios will appear here as Claude creates them alongside your code. Each scenario represents a different state of your app's data."})]})});if(a&&o){const O=o.name,B=o.filePath,T=o.sha,D=e.filter(q=>q.componentName===O||q.componentPath===B||!q.componentName&&(q.pageFilePath===B||T&&q.entitySha===T)),E=new Set((m==null?void 0:m[O])||[]),W=E.size>0,K=W?$.filter(q=>E.has(q.name)):[],Z=W?I.filter(q=>E.has(q.name)):[];return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-1",children:[d("button",{onClick:()=>i(void 0),className:"w-full flex items-center gap-2 px-3 py-1.5 text-xs text-gray-400 hover:text-white transition-colors cursor-pointer",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M7.5 9L4.5 6L7.5 3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),"All scenarios"]}),n("div",{className:"px-3 py-1.5",children:n("span",{className:"text-xs font-semibold text-white uppercase tracking-wider",children:o.displayName})}),n("div",{className:"flex flex-wrap gap-2 px-2",children:D.length===0?n("div",{className:"px-3 py-2 text-xs text-gray-500",children:"No scenarios for this component"}):on(D).map(({scenario:q,dimensionLabel:U,screenshotPath:L,key:z})=>n(Pr,{scenarioId:q.id,screenshotPath:L,updatedAt:q.updatedAt,hasScreenshot:!!L,name:q.name,dimensionLabel:U,isActive:q.id===r,onSelect:()=>s(q,U??void 0)},z))}),K.length>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),K.map(q=>d("div",{className:"mt-2",children:[n("div",{className:"flex items-center gap-2 px-2 py-1",children:n("button",{onClick:()=>i(q.name),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:q.name})}),n(Tr,{filePath:q.filePath,projectRoot:t}),(q.scenarios.length>0||q.pendingScenarios.length>0)&&n("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:q.scenarios.map(U=>n(Pr,{imgSrc:U.screenshotPath?`/api/screenshot/${U.screenshotPath}`:null,name:U.name,isActive:U.id===p,onSelect:()=>h==null?void 0:h({analysisId:q.analysisId,scenarioId:U.id,scenarioName:U.name,entitySha:q.sha,entityName:q.name})},U.id))})]},q.sha))]}),Z.length>0&&d("div",{className:"pt-2 mt-1",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),Z.map(q=>d("div",{className:"mt-2",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-[11px] font-medium text-gray-300",children:q.name})}),n(Tr,{filePath:q.filePath,projectRoot:t}),q.testFile&&n(mo,{testFile:q.testFile,entityName:q.name,cachedResult:u[q.testFile]})]},q.sha))]})]})})}return n("div",{ref:F,onScroll:J,className:"flex-1 overflow-auto font-['IBM_Plex_Sans']",children:d("div",{className:"p-4 space-y-4",children:[d("div",{className:"flex items-center gap-3 font-['IBM_Plex_Mono']",children:[n("button",{onClick:()=>N("application"),className:`text-xs font-bold uppercase tracking-wider shrink-0 bg-transparent border-none cursor-pointer p-0 transition-colors ${k==="application"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:"Application"}),n("button",{onClick:()=>N("components"),className:`text-xs font-bold uppercase tracking-wider shrink-0 bg-transparent border-none cursor-pointer p-0 transition-colors ${k==="components"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:"Components"}),n("div",{className:"flex-1"}),d("div",{className:"relative",style:{width:170},children:[d("svg",{className:"absolute left-3 top-1/2 -translate-y-1/2 text-gray-500",width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"11",cy:"11",r:"8"}),n("path",{d:"M21 21l-4.35-4.35"})]}),n("input",{type:"text",placeholder:"SEARCH...",value:v,onChange:O=>S(O.target.value),className:"w-full pl-9 pr-3 py-2 text-xs bg-[#2a2a2a] border border-[#3d3d3d] rounded-md text-gray-300 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors tracking-wider"})]}),y&&d("button",{onClick:y,className:"flex items-center gap-1.5 px-4 py-2 text-xs font-semibold text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer shrink-0 uppercase tracking-wider",children:[n("span",{children:"+"})," New Feature"]})]}),n("div",{className:"border-b border-[#2d2d2d]"}),k==="application"&&A.size>0&&n("div",{children:[...A.entries()].sort(([O],[B])=>O==="Home"?-1:B==="Home"?1:O.localeCompare(B)).filter(([O])=>v.trim()?O.toLowerCase().includes(v.trim().toLowerCase()):!0).map(([O,B])=>{const T=B.some(D=>D.id===r&&!p);return d("div",{className:"mt-3",children:[d("div",{className:"flex items-center gap-1.5 py-1",children:[d("button",{onClick:()=>i(O,g==null?void 0:g.get(O)),className:`flex items-center gap-1.5 text-sm font-normal cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0 ${T?"text-[#D7FF63]":"text-gray-300"}`,children:[O,d("span",{className:`text-xs ${T?"text-[#D7FF63]/60":"text-gray-500"}`,children:["(",B.length,")"]}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:T?"text-[#D7FF63]/60":"text-gray-500",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),T&&d("div",{className:"flex items-center gap-1 ml-auto",children:[n("button",{onClick:()=>i(O,g==null?void 0:g.get(O)),className:"p-1.5 rounded-md bg-[#3d3d3d] hover:bg-[#4d4d4d] text-gray-300 hover:text-white transition-colors cursor-pointer border-none",title:"Edit scenarios",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),n("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})}),y&&n("button",{onClick:y,className:"p-1.5 rounded-md bg-[#3d3d3d] hover:bg-[#4d4d4d] text-gray-300 hover:text-white transition-colors cursor-pointer border-none",title:"Add scenario",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),n("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]})})]})]}),n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:on(B).map(({scenario:D,dimensionLabel:E,screenshotPath:W,key:K})=>n(Pr,{scenarioId:D.id,screenshotPath:W,updatedAt:D.updatedAt,hasScreenshot:!!W,name:D.name,dimensionLabel:E,isActive:D.id===r&&!p,onSelect:()=>s(D,E??void 0)},K))})]},O)})}),k==="components"&&M.size>0&&n("div",{children:[...M.entries()].filter(([O])=>v.trim()?O.toLowerCase().includes(v.trim().toLowerCase()):!0).map(([O,B])=>{const T=B.some(D=>D.id===r&&!p);return d("div",{className:"mt-3",children:[d("div",{className:"flex items-center gap-1.5 py-1",children:[d("button",{onClick:()=>i(O,g==null?void 0:g.get(O)),className:`flex items-center gap-1.5 text-sm font-normal cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0 ${T?"text-[#D7FF63]":"text-gray-300"}`,children:[O,d("span",{className:`text-xs ${T?"text-[#D7FF63]/60":"text-gray-500"}`,children:["(",B.length,")"]}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:T?"text-[#D7FF63]/60":"text-gray-500",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),T&&d("div",{className:"flex items-center gap-1 ml-auto",children:[n("button",{onClick:()=>i(O,g==null?void 0:g.get(O)),className:"p-1.5 rounded-md bg-[#3d3d3d] hover:bg-[#4d4d4d] text-gray-300 hover:text-white transition-colors cursor-pointer border-none",title:"Edit scenarios",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),n("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})}),y&&n("button",{onClick:y,className:"p-1.5 rounded-md bg-[#3d3d3d] hover:bg-[#4d4d4d] text-gray-300 hover:text-white transition-colors cursor-pointer border-none",title:"Add scenario",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),n("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]})})]})]}),n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:on(B).map(({scenario:D,dimensionLabel:E,screenshotPath:W,key:K})=>n(Pr,{scenarioId:D.id,screenshotPath:W,updatedAt:D.updatedAt,hasScreenshot:!!W,name:D.name,dimensionLabel:E,isActive:D.id===r&&!p,onSelect:()=>s(D,E??void 0)},K))})]},O)})}),$.length>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[d("div",{className:"px-2 py-1",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),P&&e.length===0&&l.every(O=>O.scenarioCount===0)&&n("span",{className:"ml-2 text-[10px] text-gray-500",children:"— Entities are being analyzed..."})]}),$.map(O=>d("div",{className:"mt-2",children:[d("div",{className:"flex items-center gap-2 px-2 py-1",children:[n("button",{onClick:()=>i(O.name),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:O.name}),O.isAnalyzing&&O.scenarioCount===0&&d("span",{className:"flex items-center gap-1.5 text-[10px] text-gray-400",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),"Analyzing..."]})]}),n(Tr,{filePath:O.filePath,projectRoot:t}),(O.scenarios.length>0||O.pendingScenarios.length>0)&&d("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:[O.scenarios.map(B=>n(Pr,{imgSrc:B.screenshotPath?`/api/screenshot/${B.screenshotPath}`:null,name:B.name,isActive:B.id===p,onSelect:()=>h==null?void 0:h({analysisId:O.analysisId,scenarioId:B.id,scenarioName:B.name,entitySha:O.sha,entityName:O.name})},B.id)),O.pendingScenarios.map(B=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:B,children:B},B))]})]},O.sha))]}),(I.length>0||R.length>0)&&d("div",{className:`pt-2 mt-1 ${$.length>0?"":"border-t border-[#3d3d3d]"}`,children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),I.map(O=>d("div",{className:"mt-2",children:[d("div",{className:"px-2 py-1",children:[n("span",{className:"text-[11px] font-medium text-gray-300",children:O.name}),O.isAnalyzing&&O.scenarioCount===0&&d("span",{className:"ml-2 inline-flex items-center gap-1.5 text-[10px] text-gray-400",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),"Analyzing..."]})]}),n(Tr,{filePath:O.filePath,projectRoot:t}),O.testFile?n(mo,{testFile:O.testFile,entityName:O.name,cachedResult:u[O.testFile]}):n("div",{className:"px-2 pt-1",children:n("span",{className:"text-[10px] text-gray-500",children:"No test file"})})]},O.sha)),R.map(O=>d("div",{className:"mt-2",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-[11px] font-medium text-gray-300",children:O.name})}),n(Tr,{filePath:O.filePath,projectRoot:t}),n(mo,{testFile:O.testFile,entityName:O.name,cachedResult:u[O.testFile]})]},O.name))]})]})})}function yp(e){const t={};for(const[r,s]of Object.entries(e))if(typeof s=="string")try{const a=JSON.parse(s);Array.isArray(a)?t[r]=a:typeof a=="object"&&a!==null&&(t[r]=[a])}catch{}else Array.isArray(s)&&(t[r]=s);return t}function xp(e,t){return e.length===0||t.length===0?!1:e.filter(s=>t.includes(s)).length>=Math.min(e.length,t.length)*.5}function c5(e,t){const{_metadata:r,...s}=t,a=s.localStorage&&typeof s.localStorage=="object"&&!Array.isArray(s.localStorage)?yp(s.localStorage):{},o={};if(s.seed&&typeof s.seed=="object"&&!Array.isArray(s.seed))for(const[h,m]of Object.entries(s.seed))Array.isArray(m)&&(o[h]=m);const i={},l=[],c=new Set,u=new Set,p=new Set;for(const h of e){const m=h.fields.filter(b=>!b.isRelation),f=m.map(b=>b.name),y=h.name.charAt(0).toLowerCase()+h.name.slice(1);let g=null,x=[];for(const b of[h.name,y,`${y}s`])if(b in s&&Array.isArray(s[b])){g=b,x=s[b],u.add(b);break}if(!g){for(const b of[h.name,y,`${y}s`])if(b in o){g=b,x=o[b],p.add(b),b in a&&c.add(b);break}}if(!g){for(const b of[h.name,y,`${y}s`])if(b in a){g=y,x=a[b],c.add(b);break}}if(!g){for(const[b,v]of Object.entries(a))if(!c.has(b)&&v.length>0&&xp(f,Object.keys(v[0]))){g=y,x=v,c.add(b);break}}g||(g=y),i[g]=x,l.push({label:h.name,dataKey:g,schemaFields:m.map(b=>({name:b.name,type:b.type,isId:b.isId}))})}for(const[h,m]of Object.entries(s))h==="_metadata"||h==="localStorage"||h==="seed"||h==="type"||u.has(h)||Array.isArray(m)&&(i[h]=m,l.push({label:h,dataKey:h}));for(const[h,m]of Object.entries(o))p.has(h)||(i[h]=m,l.push({label:h,dataKey:h}));for(const[h,m]of Object.entries(a))c.has(h)||(i[h]=m,l.push({label:h,dataKey:h}));return{data:i,tabs:l}}function d5(e){return e==null?"null":typeof e=="number"?Number.isInteger(e)?"int4":"float":typeof e=="boolean"?"bool":typeof e=="object"?Array.isArray(e)?"array":"json":"text"}function u5(e,t){return e.length>0?Object.keys(e[0]):t?t.map(r=>r.name):[]}function p5(e,t,r){const s=new Map((r||[]).map(o=>[o.name,o.type])),a={};for(const o of e)a[o]=s.get(o)||(t.length>0?d5(t[0][o]):"text");return a}function h5(e,t){var r;return((r=t==null?void 0:t.find(s=>s.isId))==null?void 0:r.name)||e.find(s=>s==="id")||null}function m5(e,t){const{_metadata:r,...s}=t,a=s.localStorage&&typeof s.localStorage=="object"&&!Array.isArray(s.localStorage)?yp(s.localStorage):{},o={};if(s.seed&&typeof s.seed=="object"&&!Array.isArray(s.seed))for(const[h,m]of Object.entries(s.seed))Array.isArray(m)&&(o[h]=m);const i={},l=[],c=new Set,u=new Set,p=new Set;for(const h of e){const m=h.name.charAt(0).toLowerCase()+h.name.slice(1),f=h.fields.map(x=>x.name);let y=null,g=[];for(const x of[h.name,m,`${m}s`])if(x in s&&Array.isArray(s[x])){y=x,g=s[x],u.add(x);break}if(!y){for(const x of[h.name,m,`${m}s`])if(x in o){y=x,g=o[x],p.add(x),x in a&&c.add(x);break}}if(!y){for(const x of[h.name,m,`${m}s`])if(x in a){y=m,g=a[x],c.add(x);break}}if(!y){for(const[x,b]of Object.entries(a))if(!c.has(x)&&b.length>0&&xp(f,Object.keys(b[0]))){y=m,g=b,c.add(x);break}}y||(y=m),i[y]=g,l.push({label:h.name,dataKey:y,category:h.category,description:h.description,schemaFields:h.fields.map(x=>({name:x.name,type:x.type,isId:x.isId??!1}))})}for(const[h,m]of Object.entries(s))h==="_metadata"||h==="localStorage"||h==="seed"||h==="type"||u.has(h)||Array.isArray(m)&&(i[h]=m,l.push({label:h,dataKey:h}));for(const[h,m]of Object.entries(o))p.has(h)||(i[h]=m,l.push({label:h,dataKey:h}));for(const[h,m]of Object.entries(a))c.has(h)||(i[h]=m,l.push({label:h,dataKey:h}));return{data:i,tabs:l}}function Hi(e){var a,o;const t=new Map,r=new Map;for(const i of e)if(i.componentName){const l=r.get(i.componentName)||[];l.push(i),r.set(i.componentName,l)}else if(ma(i.url)){const l=(a=i.url)==null?void 0:a.match(/[?&]c=([^&]+)/),c=l?decodeURIComponent(l[1]):"Isolated",u=r.get(c)||[];u.push(i),r.set(c,u)}else{const l=i.displayName||((o=i.pageFilePath)!=null&&o.startsWith("app/")?Ot(Et(i.pageFilePath)):yt(i.url)),c=t.get(l)||[];c.push(i),t.set(l,c)}const s=new Map([...r.entries()].sort(([i],[l])=>i.localeCompare(l)));return{pageGroups:t,componentGroups:s}}function bp(e,t){var s,a;const r=new Map;for(const[o,i]of e){const l=(s=i.find(c=>c.entitySha))==null?void 0:s.entitySha;l&&r.set(o,l)}for(const[o,i]of t){const l=(a=i.find(c=>c.entitySha))==null?void 0:a.entitySha;l&&r.set(o,l)}return r}function f5(e){const t=new Set;for(const[r,s]of Object.entries(e)){t.add(r);for(const a of s)t.add(a)}return t}function g5(e,t,r,s){if(t.has(e))return!0;const a=r.find(o=>o.sha===e);return a?s.has(a.name):!1}function y5(e,t,r,s){const a=[];for(const[o,i]of e){const l=r.get(o);l?s(l)||a.push({name:o,scenarios:i,reason:"incomplete"}):a.push({name:o,scenarios:i,reason:"missing"})}for(const[o,i]of t){const l=r.get(o);l?s(l)||a.push({name:o,scenarios:i,reason:"incomplete"}):a.push({name:o,scenarios:i,reason:"missing"})}return a}function Fc(e,t,r){if(!e)return null;const s=t.find(a=>a.sha===e);return s?{sha:e,name:s.name,filePath:s.filePath,entityType:s.entityType,displayName:s.name}:null}const Dc=120;function vp({text:e,theme:t}){const[r,s]=j(!1),a=e.length>Dc,o=a&&!r?e.slice(0,Dc)+"…":e,i=t==="light";return d("div",{className:`px-4 py-2 ${i?"border-b border-gray-200 bg-gray-50":"border-b border-[#3d3d3d] bg-[#252525]"}`,children:[n("span",{className:"text-[9px] font-semibold uppercase tracking-wider text-gray-500",children:"User Prompt"}),d("p",{className:`text-[11px] mt-0.5 mb-0 leading-relaxed ${i?"text-gray-600":"text-gray-400"}`,children:[o,a&&n("button",{onClick:()=>s(!r),className:`ml-1 text-[11px] font-medium bg-transparent border-none p-0 cursor-pointer ${i?"text-blue-500 hover:text-blue-700":"text-[#00a0c4] hover:text-[#00c0e8]"}`,children:r?"Show less":"Read more…"})]})]})}const Rc={new:0,edited:1,impacted:2};function Oc({status:e,onClick:t}){const r={new:{label:"New",bg:"bg-green-100",text:"text-green-700",border:"border-green-200"},edited:{label:"Edited",bg:"bg-blue-100",text:"text-blue-700",border:"border-blue-200"},impacted:{label:"Impacted",bg:"bg-amber-100",text:"text-amber-700",border:"border-amber-200"}}[e.status],s=t&&(e.status==="edited"||e.status==="impacted");return n("button",{onClick:s?t:void 0,className:`${r.bg} ${r.text} ${r.border} border text-[9px] font-bold px-1.5 py-0.5 rounded-full uppercase tracking-wider shrink-0 ${s?"cursor-pointer hover:opacity-80 transition-opacity":"cursor-default"}`,children:r.label})}function Lc({filePath:e}){const[t,r]=j(null),[s,a]=j(!0),[o,i]=j(null);return te(()=>{import("react-diff-viewer-continued").then(l=>{i(()=>l.default)})},[]),te(()=>{a(!0),fetch(`/api/editor-file-diff?path=${encodeURIComponent(e)}`).then(l=>l.json()).then(l=>{r({oldContent:l.oldContent,newContent:l.newContent})}).catch(()=>{r(null)}).finally(()=>a(!1))},[e]),s?n("div",{className:"p-2 text-[10px] text-gray-400",children:"Loading diff..."}):!t||!o?n("div",{className:"p-2 text-[10px] text-gray-400",children:"Could not load diff"}):n("div",{className:"mt-2 border border-gray-200 rounded-lg overflow-hidden max-h-[300px] overflow-auto text-xs",children:n(o,{oldValue:t.oldContent,newValue:t.newContent,splitView:!1,useDarkTheme:!1,showDiffOnly:!0,styles:{contentText:{fontSize:"11px",lineHeight:"1.4"},line:{padding:"1px 8px",fontSize:"11px"}}})})}function zc({impactedBy:e,changedEntities:t}){return n("div",{className:"mt-2 bg-amber-50 border border-amber-200 rounded-lg p-2.5",children:e&&e.length>0?d(we,{children:[n("span",{className:"text-[10px] font-semibold text-amber-700 uppercase tracking-wider",children:"Re-captured because these dependencies changed"}),n("ul",{className:"mt-1.5 space-y-1",children:e.map(r=>d("li",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold px-1 py-0 rounded-full uppercase tracking-wider border ${r.changeType==="new"?"bg-green-100 text-green-700 border-green-200":"bg-blue-100 text-blue-700 border-blue-200"}`,children:r.changeType==="new"?"New":"Edited"}),n("span",{className:"text-[11px] font-medium text-amber-800",children:r.name}),n("span",{className:"text-[9px] text-amber-500 truncate",children:r.filePath})]},r.filePath))})]}):t&&t.length>0?d(we,{children:[n("span",{className:"text-[10px] font-semibold text-amber-700 uppercase tracking-wider",children:"Unchanged — these entities were modified in this session"}),n("ul",{className:"mt-1.5 space-y-1",children:t.map(r=>d("li",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold px-1 py-0 rounded-full uppercase tracking-wider border ${r.status==="new"?"bg-green-100 text-green-700 border-green-200":"bg-blue-100 text-blue-700 border-blue-200"}`,children:r.status==="new"?"New":"Edited"}),n("span",{className:"text-[11px] font-medium text-amber-800",children:r.name})]},r.name))})]}):n("span",{className:"text-[10px] text-amber-600",children:"This component was re-captured because a dependency changed"})})}function Bc({scenarioId:e,screenshotPath:t,name:r,dimensionLabel:s,isActive:a,onSelect:o,updatedAt:i}){const l=ye(null);return te(()=>{a&&l.current&&l.current.scrollIntoView({block:"nearest",behavior:"smooth"})},[a]),d("button",{ref:l,onClick:o,className:"flex flex-col items-center gap-1.5 cursor-pointer group",title:s?`${r} (${s})`:r,children:[d("div",{className:`w-32 h-32 rounded-lg overflow-hidden border-2 transition-all relative ${a?"border-[#0ea5e9] ring-2 ring-[#0ea5e9]/40 shadow-lg shadow-[#0ea5e9]/20":"border-gray-200 hover:border-gray-400 shadow-sm"}`,children:[n(ar,{scenarioId:e,screenshotPath:t,updatedAt:i,alt:s?`${r} (${s})`:r,className:"w-full h-full bg-white",imgClassName:"w-full h-full object-contain bg-white"}),s&&n("span",{className:"absolute bottom-1 right-1 text-[9px] font-medium bg-black/60 text-white px-1.5 py-0.5 rounded",children:s})]}),n("span",{className:`text-[11px] leading-tight text-center truncate w-32 font-medium ${a?"text-gray-900":"text-gray-600 group-hover:text-gray-900"}`,children:s?`${r} (${s})`:r})]})}function x5({filePath:e}){return e?d("div",{className:"flex items-center gap-1 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-400 hover:text-gray-600 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(pt,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-400 hover:text-gray-600 transition-colors"})]}):null}function Oo({testFile:e,entityName:t,cachedResult:r}){const{results:s,isRunning:a,runTests:o,stale:i}=Ji(e,r);if(a&&!s)return d("div",{className:"pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#0ea5e9] animate-pulse"}),n("span",{className:"text-[10px] text-gray-400",children:"Running tests..."})]});if(!s)return null;if(s.status==="error")return n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-red-500",children:s.errorMessage})});const l=t?s.testCases.filter(p=>p.fullName.startsWith(t)):s.testCases,c=l.length>0?l:s.testCases;if(c.length===0)return null;const u=t?`${t} > `:"";return d("div",{className:"pt-1 space-y-0.5",children:[c.map(p=>{var m;const h=u&&p.fullName.startsWith(u)?p.fullName.slice(u.length):p.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[p.status==="passed"?n("span",{className:"text-green-600 text-[10px]",children:"✓"}):p.status==="failed"?n("span",{className:"text-red-500 text-[10px]",children:"✗"}):n("span",{className:"text-gray-400 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${p.status==="passed"?"text-green-600":p.status==="failed"?"text-red-500":"text-gray-400"}`,children:h})]}),p.status==="failed"&&((m=p.failureMessages)==null?void 0:m.map((f,y)=>n("div",{className:"pl-4 text-[9px] text-red-400 truncate max-w-full",title:f,children:f.split(`
|
|
598
|
-
`)[0]},y)))]},p.fullName)}),d("div",{className:"flex items-center gap-2 mt-1",children:[n("button",{onClick:o,disabled:a,className:"text-[10px] text-[#0ea5e9] hover:text-[#38bdf8] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:a?"Running...":i?"Re-run (stale)":"Re-run"}),i&&!a&&n("span",{className:"w-1.5 h-1.5 rounded-full bg-amber-400 shrink-0",title:"Source or test file changed since last run"})]})]})}function Yc(e){const t=e.indexOf(" - ");return t!==-1?e.slice(t+3):e}function Uc(e,t){return!t||Object.keys(t).length===0?e:[...e].sort(([r],[s])=>{var l,c;const a=((l=t[r])==null?void 0:l.status)||"impacted",o=((c=t[s])==null?void 0:c.status)||"impacted",i=(Rc[a]??2)-(Rc[o]??2);return i!==0?i:r.localeCompare(s)})}function b5({scenarios:e,allScenarios:t=[],glossaryFunctions:r=[],cachedTestResults:s={},projectRoot:a,activeScenarioId:o,onScenarioSelect:i,onClose:l,entityChangeStatus:c={},modifiedFiles:u=[],featureName:p,userPrompt:h}){const m=le(()=>{if(t.length===0||Object.keys(c).length===0)return e;const M=new Set(e.map(I=>I.id)),$=t.filter(I=>{var P,F;if(M.has(I.id))return!1;const R=I.componentName||I.displayName||((P=I.pageFilePath)!=null&&P.startsWith("app/")?Ot(Et(I.pageFilePath)):yt(I.url));return((F=c[R])==null?void 0:F.status)==="impacted"});return $.length===0?e:[...e,...$]},[e,t,c]),f=le(()=>Object.entries(c).filter(([,M])=>M.status==="new"||M.status==="edited").map(([M,$])=>({name:M,status:$.status})),[c]),[y,g]=j(null),x=ae(M=>{g($=>$===M?null:M)},[]),{pageGroups:b,componentGroups:v}=le(()=>Hi(m),[m]),S=le(()=>Uc([...b.entries()],c),[b,c]),w=le(()=>Uc([...v.entries()],c),[v,c]),C=S,k=w,N=le(()=>V0(r,c),[r,c]),A=le(()=>{const M=[];for(const[,$]of C)M.push(...$);for(const[,$]of k)M.push(...$);return M},[C,k]),_=ye(!1);return te(()=>{_.current||A.length!==0&&(_.current=!0,console.log("[ResultsPanel] Auto-selecting first scenario: %s",A[0].name),i(A[0]))},[A,i]),te(()=>{if(A.length===0)return;const M=$=>{if($.key!=="ArrowLeft"&&$.key!=="ArrowRight")return;const I=$.target,R=I==null?void 0:I.tagName;if(R==="INPUT"||R==="SELECT"||R==="TEXTAREA"&&!I.classList.contains("xterm-helper-textarea"))return;$.preventDefault();const P=A.findIndex(Y=>Y.id===o);let F;$.key==="ArrowLeft"?F=P<=0?A.length-1:P-1:F=P>=A.length-1?0:P+1,i(A[F])};return document.addEventListener("keydown",M),()=>document.removeEventListener("keydown",M)},[A,o,i]),m.length===0&&r.length===0?d("div",{className:"h-full bg-white flex items-center justify-center relative",children:[n("button",{onClick:l,className:"absolute top-2 right-3 text-gray-400 hover:text-gray-700 text-lg leading-none cursor-pointer bg-transparent border-none",title:"Close results",children:"×"}),n("span",{className:"text-sm text-gray-400",children:"No scenarios registered yet"})]}):d("div",{className:"h-full bg-white flex flex-col overflow-hidden",children:[d("div",{className:"flex items-center justify-between px-4 py-2.5 border-b border-gray-200 shrink-0",children:[d("div",{className:"min-w-0",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Working Session Results"}),p&&n("div",{className:"text-[11px] text-gray-400 truncate",title:p,children:p})]}),n("button",{onClick:l,className:"text-gray-400 hover:text-gray-700 text-lg leading-none cursor-pointer bg-transparent border-none shrink-0",title:"Close results",children:"×"})]}),h&&n(vp,{text:h,theme:"light"}),n("div",{className:"flex-1 overflow-auto p-4",children:d("div",{className:"space-y-5",children:[C.length>0&&d("div",{children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Application"})}),n("div",{className:"space-y-3 pl-1",children:C.map(([M,$])=>{var F;const I=c[M],R=y===M,P=(F=$[0])==null?void 0:F.componentPath;return d("div",{children:[d("div",{className:"mb-1.5 flex items-center gap-2",children:[n("span",{className:"text-[11px] font-medium text-gray-600",children:M}),I&&n(Oc,{status:I,onClick:()=>x(M)})]}),R&&(I==null?void 0:I.status)==="edited"&&P&&n(Lc,{filePath:P}),R&&(I==null?void 0:I.status)==="impacted"&&n(zc,{impactedBy:I.impactedBy,changedEntities:f}),n("div",{className:"flex flex-wrap gap-3",children:on($).map(({scenario:Y,dimensionLabel:J,screenshotPath:O,key:B})=>n(Bc,{scenarioId:Y.id,screenshotPath:O,name:Yc(Y.name),dimensionLabel:J,isActive:Y.id===o,onSelect:()=>i(Y,J??void 0),updatedAt:Y.updatedAt},B))})]},M)})})]}),k.length>0&&d("div",{className:C.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),n("div",{className:"space-y-3 pl-1",children:k.map(([M,$])=>{var F;const I=c[M],R=y===M,P=(F=$[0])==null?void 0:F.componentPath;return d("div",{children:[d("div",{className:"mb-1.5 flex items-center gap-2",children:[n("span",{className:"text-[11px] font-medium text-gray-600",children:M}),I&&n(Oc,{status:I,onClick:()=>x(M)})]}),R&&(I==null?void 0:I.status)==="edited"&&P&&n(Lc,{filePath:P}),R&&(I==null?void 0:I.status)==="impacted"&&n(zc,{impactedBy:I.impactedBy,changedEntities:f}),n("div",{className:"flex flex-wrap gap-3",children:on($).map(({scenario:Y,dimensionLabel:J,screenshotPath:O,key:B})=>n(Bc,{scenarioId:Y.id,screenshotPath:O,name:Yc(Y.name),dimensionLabel:J,isActive:Y.id===o,onSelect:()=>i(Y,J??void 0),updatedAt:Y.updatedAt},B))})]},M)})})]}),N.length>0&&d("div",{className:C.length>0||k.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),n("div",{className:"space-y-2 pl-1",children:N.map(M=>d("div",{children:[n("div",{className:"flex items-center gap-2",children:n("span",{className:"text-[11px] font-medium text-gray-700",children:M.name})}),n(x5,{filePath:M.filePath,projectRoot:a}),M.testFile?n(Oo,{testFile:M.testFile,entityName:M.name,cachedResult:s[M.testFile]}):n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-gray-400",children:"No test file"})})]},M.name))})]}),u.length>0&&d("div",{className:C.length>0||k.length>0||N.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:d("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:["Modified Files (",u.length,")"]})}),n("div",{className:"space-y-0.5 pl-1 max-h-[200px] overflow-auto",children:u.map(M=>d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold uppercase w-[14px] text-center ${M.status==="added"||M.status==="untracked"?"text-green-600":M.status==="modified"?"text-blue-600":M.status==="renamed"?"text-purple-600":"text-gray-400"}`,children:M.status==="added"||M.status==="untracked"?"A":M.status==="modified"?"M":M.status==="renamed"?"R":"?"}),n("span",{className:"text-[10px] text-gray-500 truncate font-mono",children:M.path})]},M.path))})]})]})})]})}function Wc(e,t,r,s){var c;const a=s.length>0?s.map(u=>`- "${u.name}" (ID: ${u.id})${u.url?` — URL: ${u.url}`:""}`).join(`
|
|
599
|
-
`):"(no scenarios yet)",o=t.endsWith("/page.tsx")||t.endsWith("/page.js"),i=((c=s.find(u=>u.url))==null?void 0:c.url)||"/",l=[`You are helping edit scenarios for the "${e}" entity in a CodeYam project.`,"","## Entity",`- **Name:** ${e}`,`- **File:** ${t}`,`- **Type:** ${o?"Page (application scenario with seed data)":"Component (component scenario with mock props)"}`,"","## Existing Scenarios",a,""];return o?l.push("## How Seed Data Works","","Application scenarios use `seed` data to populate the database before the page is captured.","The seed is a JSON object where each key is a Prisma model name in camelCase singular (matching the Prisma client accessor name) and the value is an array of records.","","### Seed Key Naming Convention","The key must be the camelCase singular form of the Prisma model name:",'- `model User` → key `"user"`','- `model BlogPost` → key `"blogPost"`','- `model Feedback` → key `"feedback"`',"",'**WARNING:** Do NOT use plural forms like "users", "blogPosts", or "feedbacks" — the seed adapter will silently fail to match them.',"","To understand the data models, read the Prisma schema at `prisma/schema.prisma`.","To see examples of existing seed data, look at `.codeyam/editor-scenarios/*.seed.json` files.","",`Also read the source file at \`${t}\` to understand what data the page queries and renders.`,"","## Registering a Scenario","","For small seed data, pass it inline:","```",`codeyam editor register '{"name":"Scenario Name","type":"application","url":"${i}","dimensions":["Laptop"],"seed":{"user":[...],"feedback":[...]}}'`,"```","","For large seed data, write it to a temp file and use @file syntax:","```","# Write JSON to a temp file","cat > .codeyam/tmp/scenario.json << 'SCENARIO_EOF'",`{"name":"Scenario Name","type":"application","url":"${i}","dimensions":["Laptop"],"seed":{"user":[...],"feedback":[...]}}`,"SCENARIO_EOF","codeyam editor register @.codeyam/tmp/scenario.json","```"):l.push("## Registering a Scenario","",`Read the source file at \`${t}\` to understand what props the component expects.`,"","```",`codeyam editor register '{"name":"Scenario Name","type":"component","componentName":"${e}","componentPath":"${t}","dimensions":["Laptop"],"mockData":{"propName":"value"}}'`,"```"),l.push("","## Deleting a Scenario","","To delete a scenario, use its ID from the list above:","```","codeyam editor delete <scenarioId>","```","","## Validating Seed Data","","Before registering, you can validate seed data structure and check that keys match Prisma models:","```",`codeyam editor validate-seed '{"user":[...]}'`,"```"),l.push("","## Recapturing Scenarios After Code Changes","",`If the user asks you to modify the code for this ${o?"page":"component"} (CSS, layout, logic, etc.), you MUST re-register all existing scenarios after the code change so their screenshots are updated.`,"","Re-registering a scenario with the same name overwrites it and captures a fresh screenshot.","","To recapture, re-register each existing scenario using `codeyam editor register` with its current configuration. You can read the scenario JSON files in `.codeyam/editor-scenarios/` to get the exact registration data for each scenario."),l.push("","## Important","- DO NOT take any action until the user tells you what they want","- Start by briefly listing the existing scenarios",'- Then ask: "Would you like to modify an existing scenario or add a new one?"',"- Wait for the user's answer before proceeding",'- Keep scenario names descriptive: "Empty State", "With Comments", "Admin View", etc.',`- Each scenario should capture a distinct, meaningful state of the ${o?"page":"component"}`),l.join(`
|
|
600
|
-
`)}function wp(e,t){var a;const r=t.some(o=>!o.componentName),s=t.map(o=>`'${o.id}'`).join(", ");if(r){const o=((a=t.find(l=>l.url))==null?void 0:a.url)||null,i=t.map(l=>`.codeyam/editor-scenarios/${l.id}.json`).join(", ");return[`### Page: "${e}" (${t.length} scenario(s))`,...o?["",`Scenario URL: \`${o}\``]:[],"",...o?["Step A: Find the source file that renders this page. In Next.js App Router, URLs map to page.tsx files:"," - `/` → `app/page.tsx`"," - `/about` → `app/about/page.tsx`"," - `/c/my-slug` → `app/c/[slug]/page.tsx` (dynamic segment)","",`Based on the URL \`${o}\`, find the corresponding page.tsx file. Confirm it exists with \`cat <filepath> | head -5\`.`]:["Step A: Find the source file that renders this page by running:",' find src app -name "App.tsx" -o -name "App.jsx" -o -name "page.tsx" -o -name "page.jsx" -o -name "index.tsx" 2>/dev/null',"","Pick the file that is the main app entry point or the page component for this route. Confirm it exists with `cat <filepath> | head -5`."],"","Step B: Set page_file_path on all scenarios for this page (replace PAGE_FILE_PATH with the path from Step A):",` sqlite3 .codeyam/db.sqlite3 "UPDATE editor_scenarios SET page_file_path = 'PAGE_FILE_PATH' WHERE id IN (${s});"`,"","Step C: Get the entity SHA (after running analyze-imports in the shared step above):",` sqlite3 .codeyam/db.sqlite3 "SELECT sha FROM entities WHERE file_path = 'PAGE_FILE_PATH' ORDER BY created_at DESC LIMIT 1;"`,"","If no rows appear, the path was wrong — go back to Step A.","","Step D: Set entity_sha and display_name on all scenarios (replace ENTITY_SHA with the SHA from Step C):",` sqlite3 .codeyam/db.sqlite3 "UPDATE editor_scenarios SET entity_sha = 'ENTITY_SHA', display_name = '${e}' WHERE id IN (${s});"`,"","Step E: Add pageFilePath to the scenario JSON files so this fix persists across clones.",`For each file (${i}), read it and add \`"pageFilePath": "PAGE_FILE_PATH"\` to the \`_metadata\` object (after the \`"type"\` field). Then commit the updated JSON files.`].join(`
|
|
601
|
-
`)}else return[`### Component: "${e}" (${t.length} scenario(s))`,"","Step A: Get the entity SHA (after running analyze-imports in the shared step above):",` sqlite3 .codeyam/db.sqlite3 "SELECT sha FROM entities WHERE name = '${e}' ORDER BY created_at DESC LIMIT 1;"`,"","If no rows appear, check that .codeyam/glossary.json contains an entry for this component.","","Step B: Set entity_sha and display_name on all scenarios (replace ENTITY_SHA with the SHA from Step A):",` sqlite3 .codeyam/db.sqlite3 "UPDATE editor_scenarios SET entity_sha = 'ENTITY_SHA', display_name = '${e}' WHERE id IN (${s});"`].join(`
|
|
602
|
-
`)}function Fs({scenarioId:e,screenshotPath:t,updatedAt:r,hasScreenshot:s,imgSrc:a,name:o,dimensionLabel:i,isActive:l,onSelect:c}){const u=e&&s,p=!e&&a;return d("button",{onClick:c,className:"flex flex-col items-center gap-1 cursor-pointer group w-full",title:i?`${o} (${i})`:o,children:[d("div",{className:`w-full aspect-[16/10] rounded overflow-hidden border-2 transition-all bg-[#1a1a1a] relative ${l?"border-[#D7FF63]/40 ring-1 ring-[#D7FF63]/20":"border-transparent hover:border-[#4d4d4d]"}`,children:[u?n(ar,{scenarioId:e,screenshotPath:t,updatedAt:r,alt:i?`${o} (${i})`:o,className:"w-full h-full",imgClassName:"w-full h-full object-contain"}):p?n("img",{src:a,alt:o,className:"w-full h-full object-contain",loading:"lazy"}):n("div",{className:"w-full h-full bg-[#1a1a1a] flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"No img"})}),i&&n("span",{className:"absolute bottom-1 right-1 text-[8px] font-medium bg-black/60 text-white px-1 py-0.5 rounded",children:i})]}),n("span",{className:`text-[10px] leading-tight text-center truncate w-full ${l?"text-white":"text-gray-500 group-hover:text-gray-300"}`,children:i?`${o} (${i})`:o})]})}function Es({filePath:e}){return e?d("div",{className:"flex items-center gap-1.5 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1.5 text-gray-500 hover:text-gray-300 transition-colors min-w-0",children:[n("span",{className:"text-sm truncate font-['IBM_Plex_Mono']",children:e}),n("svg",{className:"shrink-0",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(pt,{content:e,icon:!0,iconSize:12,className:"shrink-0 text-gray-500 hover:text-gray-300 transition-colors"})]}):null}function Np({name:e,scenarios:t,reason:r="missing"}){var o,i;const s=((o=t[0])==null?void 0:o.componentPath)||((i=t[0])==null?void 0:i.pageFilePath)||null,a=r==="incomplete"?[`The "${e}" entity exists but has not been fully analyzed — its components and functions cannot be displayed.`,"","Follow these steps:","",`Step 1: Check if "${e}" is in the glossary:`,` cat .codeyam/glossary.json | grep "${e}"`,"","If not found, add an entry to .codeyam/glossary.json:",` { "name": "${e}", "filePath": "${s||"FILL_IN_PATH"}", "description": "...", "returnType": "JSX.Element" }`,"","Step 2: Run: codeyam editor analyze-imports","","Step 3: Reload the editor page and verify components/functions appear."].join(`
|
|
603
|
-
`):[`The "${e}" ${t.some(l=>!l.componentName)?"page":"component"} is missing entity data in the CodeYam database. Its scenarios are hidden until this is fixed.`,"","IMPORTANT: Do NOT re-register scenarios — that would overwrite their screenshots. Instead, update the database and scenario JSON files directly.","","Follow these steps EXACTLY:","","Step 1: Run: codeyam editor analyze-imports","","Step 2: Fix this entity:","",wp(e,t),"","Step 3: Reload the editor page in the browser and verify the scenarios appear."].join(`
|
|
604
|
-
`);return n(pt,{content:a,label:"Copy Fix Prompt",copiedLabel:"Copied!",className:"text-[10px] text-[#E0D400] hover:text-[#E0D400]/80 bg-transparent border border-[#E0D400]/30 rounded px-2 py-0.5 cursor-pointer transition-colors ml-2"})}function v5({brokenEntities:e}){const[t,r]=j(!1),s=ae(c=>{navigator.clipboard.writeText(c).then(()=>{r(!0),setTimeout(()=>r(!1),2e3)})},[]);if(e.length===0)return null;const a=e.reduce((c,u)=>c+u.scenarios.length,0),o=e.filter(c=>c.reason==="incomplete"),i=e.filter(c=>c.reason==="missing"),l=[`${e.length} entities are missing data in the CodeYam database. ${a} total scenario(s) are hidden until this is fixed.`,"","IMPORTANT: Do NOT re-register scenarios — that would overwrite their screenshots. Instead, update the database and scenario JSON files directly.","","Follow these steps EXACTLY:","",...o.length>0?["## Step 1: Add missing entries to the glossary","","Read `.codeyam/glossary.json` and check if these entities have entries. For each one that is missing, add an entry:","",...o.map(c=>{var p,h;const u=((p=c.scenarios[0])==null?void 0:p.componentPath)||((h=c.scenarios[0])==null?void 0:h.pageFilePath)||"FILL_IN_PATH";return`- "${c.name}" (filePath: "${u}")`}),"",'Each glossary entry needs: name, filePath, description, returnType (use "JSX.Element" for components/pages).',""]:["## Step 1: No glossary changes needed",""],"## Step 2: Run import analysis"," codeyam editor analyze-imports","",...i.length>0?["## Step 3: Fix missing entity associations","",...i.map(c=>wp(c.name,c.scenarios)),""]:[],`## Step ${i.length>0?"4":"3"}: Reload the editor page in the browser and verify all scenarios appear. Then commit the updated scenario JSON files so the fix persists across clones.`].join(`
|
|
605
|
-
`);return n("div",{className:"p-4 rounded-lg border border-[#E0D400]/40 bg-[#E0D400]/8",children:d("div",{className:"flex items-center gap-3",children:[d("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"none",stroke:"#E0D400",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",className:"shrink-0",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})]}),d("p",{className:"flex-1 min-w-0 text-sm text-[#E0D400]/90 m-0 leading-snug font-['IBM_Plex_Sans']",children:[e.length," ",e.length===1?"entity is":"entities are"," missing data, resulting in ",a," hidden scenario",a!==1?"s":"","."," ",n("button",{type:"button",className:"font-bold underline bg-transparent border-none text-[#E0D400] cursor-pointer p-0 text-sm inline hover:text-[#E0D400]/70 transition-colors",onClick:()=>s(l),children:t?d("span",{className:"inline-flex items-center gap-1",children:["Copied",n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeLinejoin:"round",className:"inline",children:n("polyline",{points:"20 6 9 17 4 12"})})]}):"Copy this prompt"})," ","into Claude to fix them all at once."]}),n(pt,{content:l,label:d("span",{className:"flex items-center gap-2",children:["COPY PROMPT",d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]})]}),copiedLabel:d("span",{className:"flex items-center gap-2",children:[n("span",{className:"invisible",children:"COPY PROMPT"}),n("span",{className:"absolute inset-0 flex items-center justify-center",children:"COPIED!"}),n("span",{className:"invisible",children:n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",children:n("rect",{x:"9",y:"9",width:"13",height:"13"})})})]}),className:"relative text-xs font-semibold text-[#1e1e1e] bg-[#E0D400] hover:bg-[#E0D400]/80 border-none rounded px-4 py-2 cursor-pointer transition-colors shrink-0 tracking-wide font-['IBM_Plex_Mono']"})]})})}function Sp({focusedEntity:e,breadcrumbItems:t,onZoomChange:r,projectRoot:s,scenarios:a,analyzedEntities:o,activeScenarioId:i,onScenarioSelect:l,onAnalyzedScenarioSelect:c,onSwitchToBuild:u,entityImports:p,glossaryFunctions:h,cachedTestResults:m={},glossaryEntries:f,entityShaMap:y,componentGroups:g,visualEntities:x,isEntityComplete:b,onReseedPreview:v}){var _e;const S=e.filePath,w=e.name,[C,k]=j("scenarios"),[N,A]=j(null),[_,M]=j(""),[$,I]=j(!1),[R,P]=j(null),[F,Y]=j(!1),[J,O]=j(!1),[B,T]=j(null);te(()=>{k("scenarios"),A(null),Y(!1),O(!1),T(null)},[e.sha]);const D=le(()=>{const Q=new Map;for(const xe of h)Q.set(xe.name,xe);return Q},[h]),E=o.some(Q=>Q.sha===e.sha||Q.filePath===S),W=!!((_e=p==null?void 0:p[w])!=null&&_e.length),K=ae(async Q=>{if(!(!_.trim()||$)){I(!0);try{(await fetch("/api/editor-rename-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:Q,name:_.trim()})})).ok&&A(null)}catch{}finally{I(!1)}}},[_,$]),Z=ae(async Q=>{if(confirm(`Delete scenario "${Q.name}"?`)){P(Q.id);try{const xe=Q.screenshotPaths?Object.values(Q.screenshotPaths):Q.screenshotPath?[Q.screenshotPath]:[];await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:Q.id,screenshotPaths:xe})})}catch{}finally{P(null)}}},[]);if(!E&&!W){const Q=a.filter(oe=>oe.entitySha===e.sha),xe=[`The "${e.displayName}" entity (${S}) exists in the database but has not been fully analyzed. Its components and functions cannot be shown until it has import metadata.`,"","Follow these steps:","",`Step 1: Add "${w}" to the glossary if it's not already there:`,` Check: cat .codeyam/glossary.json | grep "${w}"`,"",` If not found, add an entry with name "${w}" and filePath "${S}" to .codeyam/glossary.json`,"","Step 2: Run import analysis:"," codeyam editor analyze-imports","","Step 3: Reload the editor page and verify components/functions appear."].join(`
|
|
606
|
-
`);return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-4 space-y-3",children:[d("div",{className:"flex items-center gap-2",children:[n("button",{onClick:()=>{if(t.length>1){const oe=t[t.length-2];r(oe.componentName,oe.entitySha)}else r()},className:"text-gray-400 hover:text-white transition-colors cursor-pointer bg-transparent border-none p-0 shrink-0 text-lg",title:"Go back",children:"←"}),n("h2",{className:"text-lg font-medium text-white m-0 font-['IBM_Plex_Sans']",children:e.displayName})]}),S&&n(Es,{filePath:S,projectRoot:s}),d("div",{className:"py-2",children:[n("p",{className:"text-[11px] text-amber-400/80 m-0 leading-relaxed",children:"This entity has not been fully analyzed. Its components and functions cannot be displayed. Please copy and paste this prompt into Claude to fix the data."}),n("div",{className:"mt-2",children:n(pt,{content:xe,label:"Copy Fix Prompt",copiedLabel:"Copied!",className:"text-[10px] text-amber-400 hover:text-amber-300 bg-transparent border border-amber-400/30 rounded px-2 py-1 cursor-pointer transition-colors"})})]}),Q.length>0&&n("div",{className:"grid grid-cols-3 gap-2",children:on(Q).map(({scenario:oe,dimensionLabel:se,screenshotPath:he,key:Te})=>n(Fs,{scenarioId:oe.id,screenshotPath:he,updatedAt:oe.updatedAt,hasScreenshot:!!he,name:oe.name,dimensionLabel:se,isActive:oe.id===i,onSelect:()=>l(oe,se??void 0)},Te))})]})})}const q=e.sha,U=a.filter(Q=>!Q.componentName&&(Q.pageFilePath===S||q&&Q.entitySha===q)),L=a.filter(Q=>Q.componentName===w||Q.componentPath===S),z=x.find(Q=>Q.filePath===S||Q.name===w),V=D.get(w)||h.find(Q=>Q.filePath===S),re=[...U,...L],ue=le(()=>{const Q=[];if(Q.push(`# Create a New Scenario for "${e.displayName}"`),Q.push(""),Q.push(`**Entity**: ${e.displayName}`),Q.push(`**Type**: ${e.entityType}`),Q.push(`**File**: ${S}`),Q.push(""),re.length>0){Q.push("## Existing Scenarios");for(const xe of re)Q.push(`- **${xe.name}**${xe.url?` — URL: ${xe.url}`:""}`);Q.push("")}return Q.push("## Your Task"),Q.push("Ask the user what scenario they would like to create. Offer two options:"),Q.push("1. **Describe a scenario** — the user tells you what they want and you create it"),Q.push("2. **Analyze gaps** — you review the existing scenarios and source code to suggest scenarios that would improve coverage"),Q.push(""),Q.push("Once you know what scenario to create, use the `codeyam editor register` CLI command to register it. Write the scenario JSON to `.codeyam/tmp/scenario.json` first, then run `codeyam editor register @.codeyam/tmp/scenario.json`."),Q.join(`
|
|
607
|
-
`)},[e.displayName,e.entityType,S,re]),be=new Set((p==null?void 0:p[w])||[]),ie=W?[...g.entries()].filter(([Q])=>be.has(Q)):[],fe=W?x.filter(Q=>be.has(Q.name)&&!ie.some(([xe])=>xe===Q.name)):[],ce=W?f.filter(Q=>be.has(Q.name)&&Q.returnType!=="JSX.Element"&&Q.returnType!=="React.ReactNode").map(Q=>({name:Q.name,filePath:Q.filePath,description:Q.description||"",testFile:Q.testFile,feature:Q.feature})):[],Ce=ie.length>0||fe.length>0,Ae=ce.length>0;return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-5",children:[d("div",{className:"mb-5",children:[d("div",{className:"flex items-center gap-2.5",children:[n("button",{onClick:()=>{if(t.length>1){const Q=t[t.length-2];r(Q.componentName,Q.entitySha)}else r()},className:"text-gray-400 hover:text-white transition-colors cursor-pointer bg-transparent border-none p-0 shrink-0 text-xl",title:"Go back",children:"←"}),n("h2",{className:"text-xl font-medium text-white m-0 font-['IBM_Plex_Sans']",children:e.displayName})]}),e.filePath&&n("div",{className:"mt-1.5 ml-7",children:n(Es,{filePath:e.filePath,projectRoot:s})})]}),n("div",{className:"-mx-5 px-5 border-t border-b border-[#3d3d3d] flex items-center gap-6",children:[["scenarios","Scenarios"],["components","Components"],["functions","Functions"],["data-structure","Data Structure"]].map(([Q,xe])=>n("button",{onClick:()=>k(Q),className:`text-xs font-normal uppercase tracking-wider transition-colors bg-transparent border-none cursor-pointer px-0 font-['IBM_Plex_Mono'] border-b-2 leading-none ${C===Q?"text-[#D7FF63] border-b-[#D7FF63]":"text-gray-500 hover:text-gray-300 border-b-transparent"}`,style:{marginBottom:-1,paddingTop:16,paddingBottom:14},children:xe},Q))}),C==="scenarios"&&d("div",{className:"space-y-3 mt-5",children:[re.map(Q=>{const xe=Q.id===i,oe=N===Q.id;return d("div",{children:[d("div",{onClick:()=>{oe||l(Q)},className:`flex items-center gap-4 p-3 rounded-lg cursor-pointer transition-colors ${xe?"bg-[#1a2e1a] border border-[#D7FF63]/40":"bg-[#252525] hover:bg-[#2a2a2a] border border-transparent"}`,style:{opacity:R===Q.id?.4:1},children:[Q.screenshotPaths&&Object.keys(Q.screenshotPaths).length>1?n("div",{className:"flex gap-2 shrink-0",children:Object.entries(Q.screenshotPaths).map(([se,he])=>d("div",{className:"relative",children:[n(ar,{scenarioId:Q.id,screenshotPath:he,updatedAt:Q.updatedAt,alt:se,className:"rounded w-[120px] h-[75px] overflow-hidden border border-[#3d3d3d]",imgClassName:"w-full h-full object-cover"}),n("span",{className:"absolute bottom-1 right-1 text-[8px] font-medium bg-black/60 text-white px-1 py-0.5 rounded",children:se})]},se))}):Q.screenshotPath?n(ar,{scenarioId:Q.id,screenshotPath:Q.screenshotPath,updatedAt:Q.updatedAt,alt:"",className:"rounded w-[160px] h-[100px] shrink-0 overflow-hidden border border-[#3d3d3d]",imgClassName:"w-full h-full object-cover"}):n("div",{className:"rounded bg-[#1a1a1a] w-[160px] h-[100px] shrink-0 flex items-center justify-center border border-[#3d3d3d]",children:n("span",{className:"text-[10px] text-gray-600",children:"No image"})}),n("div",{className:"flex-1 min-w-0",children:oe?d("form",{className:"flex items-center gap-1.5",onSubmit:se=>{se.preventDefault(),K(Q.id)},onClick:se=>se.stopPropagation(),children:[n("input",{type:"text",value:_,onChange:se=>M(se.target.value),className:"flex-1 px-2 py-1 text-xs bg-[#1e1e1e] text-white border border-[#3d3d3d] rounded outline-none focus:border-[#005c75] min-w-0",autoFocus:!0,disabled:$}),n("button",{type:"submit",disabled:$||!_.trim(),className:"px-2 py-1 text-[10px] bg-[#005c75] text-white rounded hover:bg-[#004d63] disabled:opacity-40 cursor-pointer border-none",children:$?"...":"Save"}),n("button",{type:"button",onClick:()=>A(null),className:"px-2 py-1 text-[10px] text-gray-400 hover:text-white cursor-pointer bg-transparent border-none",children:"Cancel"})]}):d(we,{children:[n("span",{className:"text-xs text-gray-300 truncate block",children:Q.name}),xe&&d("div",{className:"flex items-center gap-3 mt-1.5",children:[n("button",{onClick:se=>{se.stopPropagation(),T(B===Q.id?null:Q.id)},className:"text-[10px] text-[#D7FF63] hover:text-[#D7FF63]/70 cursor-pointer bg-transparent border-none p-0",children:"View Data"}),n("button",{onClick:se=>{se.stopPropagation(),O(!1),Y(!0)},className:"text-[10px] text-gray-400 hover:text-white cursor-pointer bg-transparent border-none p-0",children:"Edit with Claude"}),n("button",{onClick:se=>{se.stopPropagation(),A(Q.id),M(Q.name)},className:"text-[10px] text-gray-400 hover:text-white cursor-pointer bg-transparent border-none p-0",children:"Rename"}),n("button",{onClick:se=>{se.stopPropagation(),Z(Q)},disabled:R===Q.id,className:"text-[10px] text-red-400/60 hover:text-red-400 cursor-pointer bg-transparent border-none p-0",children:"Delete"})]})]})})]}),B===Q.id&&n(w5,{scenarioId:Q.id,onClose:()=>T(null),editPrompt:Wc(e.displayName,e.filePath,e.entityType,re),onReseedPreview:v})]},Q.id)}),z&&(z.scenarios.length>0||z.pendingScenarios.length>0)&&d("div",{className:"space-y-1 mt-2",children:[z.scenarios.map(Q=>d("div",{onClick:()=>c({analysisId:z.analysisId,scenarioId:Q.id,scenarioName:Q.name,entitySha:z.sha,entityName:z.name}),className:"flex items-center gap-3 p-2 rounded cursor-pointer transition-colors hover:bg-[#252525] border border-transparent",children:[Q.screenshotPath?n("img",{src:`/api/screenshot/${Q.screenshotPath}`,alt:Q.name,className:"rounded w-[48px] h-[48px] shrink-0 object-cover",loading:"lazy"}):n("div",{className:"rounded bg-[#1a1a1a] w-[48px] h-[48px] shrink-0 flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"No img"})}),n("span",{className:"text-xs text-gray-300 truncate",children:Q.name})]},Q.id)),z.pendingScenarios.map(Q=>d("div",{className:"flex items-center gap-3 p-2",children:[n("div",{className:"rounded bg-[#1a1a1a] w-[48px] h-[48px] shrink-0 flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"..."})}),n("span",{className:"text-xs text-gray-500 truncate",children:Q})]},Q))]}),re.length===0&&!z&&!V&&n("div",{className:"text-xs text-gray-500 py-2",children:"No scenarios for this entity"}),d("button",{onClick:()=>{Y(!1),O(!0)},className:"flex items-center gap-2.5 mt-4 text-xs text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none cursor-pointer p-0 font-normal uppercase tracking-wider font-['IBM_Plex_Mono'] transition-colors",children:[d("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),n("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),"Create New Scenario"]}),J&&n("div",{className:"mt-2 border border-[#3d3d3d] rounded-lg overflow-hidden",children:n(cn,{prompt:ue,height:500,onClose:()=>O(!1)})}),F&&re.length>0&&n("div",{className:"mt-2 border border-[#3d3d3d] rounded-lg overflow-hidden",children:n(cn,{prompt:Wc(e.displayName,e.filePath,e.entityType,re),height:500,onClose:()=>Y(!1)})})]}),C==="components"&&n("div",{className:"space-y-3",children:Ce?d(we,{children:[ie.map(([Q,xe])=>n("div",{children:y.has(Q)?d(we,{children:[n("div",{className:"py-1",children:n("button",{onClick:()=>r(Q,y.get(Q)),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:Q})}),xe.length>0&&n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:on(xe).map(({scenario:oe,dimensionLabel:se,screenshotPath:he,key:Te})=>n(Fs,{scenarioId:oe.id,screenshotPath:he,updatedAt:oe.updatedAt,hasScreenshot:!!he,name:oe.name,dimensionLabel:se,isActive:oe.id===i,onSelect:()=>l(oe,se??void 0)},Te))})]}):d("div",{className:"py-2",children:[n("span",{className:"text-[11px] font-medium text-gray-500",children:Q}),n("p",{className:"text-[10px] text-amber-400/80 m-0 mt-1.5 leading-relaxed",children:"There is data missing that is required to show the scenarios for this component. Please copy and paste this prompt into Claude to ask Claude to fix the data."}),n("div",{className:"mt-1.5",children:n(Np,{name:Q,scenarios:xe})})]})},Q)),fe.map(Q=>d("div",{children:[n("div",{className:"py-1",children:n("button",{onClick:()=>r(Q.name,Q.sha),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:Q.name})}),(Q.scenarios.length>0||Q.pendingScenarios.length>0)&&d("div",{className:"grid grid-cols-3 gap-2 pt-1",children:[Q.scenarios.map(xe=>n(Fs,{imgSrc:xe.screenshotPath?`/api/screenshot/${xe.screenshotPath}`:null,name:xe.name,isActive:!1,onSelect:()=>c({analysisId:Q.analysisId,scenarioId:xe.id,scenarioName:xe.name,entitySha:Q.sha,entityName:Q.name})},xe.id)),Q.pendingScenarios.map(xe=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:xe,children:xe},xe))]})]},Q.sha))]}):n("div",{className:"text-xs text-gray-500 py-2",children:"No component dependencies"})}),C==="functions"&&d("div",{className:"space-y-3",children:[V&&V.testFile&&d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] text-gray-500",children:"Tests:"}),n(Es,{filePath:V.testFile,projectRoot:s})]}),n(Oo,{testFile:V.testFile,entityName:w,cachedResult:m[V.testFile]})]}),Ae?n("div",{children:ce.map(Q=>d("div",{className:"mt-2",children:[n("div",{className:"py-1",children:n("button",{onClick:()=>r(Q.name,y.get(Q.name)),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:Q.name})}),n(Es,{filePath:Q.filePath,projectRoot:s}),Q.testFile&&d("div",{className:"mt-0.5",children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[9px] text-gray-600",children:"test:"}),n("span",{className:"text-[9px] text-gray-500 truncate",children:Q.testFile})]}),n(Oo,{testFile:Q.testFile,entityName:Q.name,cachedResult:m[Q.testFile]})]})]},Q.name))}):V!=null&&V.testFile?null:n("div",{className:"text-xs text-gray-500 py-2",children:"No function dependencies"})]}),C==="data-structure"&&n(N5,{})]})})}function w5({scenarioId:e,onClose:t,editPrompt:r,onReseedPreview:s}){const[a,o]=j(null),[i,l]=j([]),[c,u]=j(!0),[p,h]=j(null),[m,f]=j(null),[y,g]=j(!1),[x,b]=j(null),[v,S]=j(""),[w,C]=j(""),[k,N]=j(0),[A,_]=j(!1),[M,$]=j(!1),I=ye(null);if(te(()=>{u(!0),h(null),Promise.all([fetch("/api/editor-schema").then(T=>T.json()).catch(()=>({models:[]})),fetch(`/api/editor-scenario-data?scenarioId=${e}`).then(T=>T.json())]).then(([T,D])=>{const E=T.source==="explicit"?m5(T.dataStructures||[],D):c5(T.models||[],D);o(E.data),l(E.tabs),E.tabs.length>0&&!m&&f(E.tabs[0].dataKey)}).catch(()=>h("Failed to load scenario data")).finally(()=>u(!1))},[e,k]),c)return n("div",{className:"mt-1 mb-1 border border-[#3d3d3d] rounded-lg p-4 text-xs text-gray-400",children:"Loading mock data..."});if(p||!a)return n("div",{className:"mt-1 mb-1 border border-[#3d3d3d] rounded-lg p-4 text-xs text-red-400",children:p||"No data available"});if(i.length===0)return d("div",{className:"mt-1 mb-1 border border-[#3d3d3d] rounded-lg p-4 text-xs text-gray-500",children:["No mock data found for this scenario.",n("button",{onClick:t,className:"ml-2 text-gray-400 hover:text-white bg-transparent border-none cursor-pointer text-[10px]",children:"Dismiss"})]});const R=i.find(T=>T.dataKey===m)||i[0],P=m?a[m]||[]:[],F=u5(P,R.schemaFields),Y=p5(F,P,R.schemaFields),J=h5(F,R.schemaFields);return d("div",{className:"mt-1 mb-1 border border-[#3d3d3d] rounded-lg overflow-hidden",children:[d("div",{className:"flex items-center gap-1.5 px-2 py-1.5 bg-[#252525] border-b border-[#3d3d3d] flex-wrap",children:[i.map(T=>{const D=m===T.dataKey,E=T.category==="datastore"?D?"text-[#D7FF63] bg-[#D7FF63]/15 border-[#D7FF63]/40":"text-[#D7FF63]/60 bg-transparent border-transparent hover:text-[#D7FF63]/80":T.category==="mock-api"?D?"text-blue-400 bg-blue-400/15 border-blue-400/40":"text-blue-400/60 bg-transparent border-transparent hover:text-blue-400/80":D?"text-white bg-[#3d3d3d] border-[#4d4d4d]":"text-gray-500 bg-transparent border-transparent hover:text-gray-300";return n("button",{onClick:()=>f(T.dataKey),className:`px-2.5 py-0.5 text-[10px] font-semibold uppercase tracking-wider rounded cursor-pointer border transition-colors ${E}`,children:T.label},T.dataKey)}),n("div",{className:"flex-1"}),n("button",{onClick:t,className:"w-5 h-5 flex items-center justify-center text-gray-500 hover:text-white bg-[#3d3d3d] hover:bg-[#4d4d4d] rounded-full border-none cursor-pointer text-xs transition-colors",title:"Close",children:"×"})]}),(R.description||R.category)&&d("div",{className:"flex items-center gap-2 px-3 py-1.5 bg-[#1e1e1e] border-b border-[#2d2d2d]",children:[R.category&&n("span",{className:`text-[9px] rounded px-1.5 py-0 border ${R.category==="datastore"?"text-[#D7FF63]/80 bg-[#D7FF63]/10 border-[#D7FF63]/30":R.category==="mock-api"?"text-blue-400/80 bg-blue-400/10 border-blue-400/30":"text-gray-400 bg-gray-700/30 border-gray-600/30"}`,children:R.category==="mock-api"?"API Mock":R.category}),R.description&&n("span",{className:"text-[10px] text-gray-500",children:R.description})]}),F.length===0?n("div",{className:"px-3 py-4 text-[10px] text-gray-500 text-center",children:"No columns defined for this table"}):n("div",{className:"overflow-x-auto max-h-[300px] overflow-y-auto",children:d("table",{className:"w-full text-[10px] border-collapse table-fixed",children:[n("thead",{children:d("tr",{className:"bg-[#1e1e1e] sticky top-0 z-10",children:[n("th",{className:"text-right text-gray-600 font-normal px-2 py-1.5 border-b border-[#3d3d3d] w-8",children:"#"}),F.map(T=>d("th",{className:"text-left px-2 py-1.5 border-b border-[#3d3d3d] whitespace-nowrap overflow-hidden",children:[T===J&&n("span",{className:"inline-block text-[8px] font-bold text-white bg-[#D7FF63] rounded px-1 py-0 mr-1.5 align-middle",children:"PK"}),n("span",{className:"text-gray-300 font-medium",children:T}),n("span",{className:"text-gray-600 font-normal ml-1",children:Y[T]})]},T))]})}),n("tbody",{children:P.map((T,D)=>d("tr",{className:"border-b border-[#2d2d2d] hover:bg-[#252525] group/row",children:[n("td",{className:"text-right text-gray-600 px-2 py-1.5 w-8 select-none",children:D+1}),F.map(E=>d("td",{className:`px-2 py-1.5 overflow-hidden relative group/cell ${E===J?"text-[#D7FF63] font-medium":"text-gray-300"}`,title:String(T[E]??""),children:[n("span",{className:"truncate block whitespace-nowrap",children:T[E]===null?n("span",{className:"text-gray-600 italic",children:"null"}):typeof T[E]=="object"?n("span",{className:"text-gray-500",children:JSON.stringify(T[E])}):typeof T[E]=="number"?n("span",{className:"text-amber-400",children:String(T[E])}):String(T[E])}),n("button",{onClick:W=>{W.stopPropagation(),b({row:D,col:E});const K=T[E]===null?"":typeof T[E]=="object"?JSON.stringify(T[E]):String(T[E]);S(K),C(K)},className:"absolute right-1 top-1/2 -translate-y-1/2 opacity-0 group-hover/cell:opacity-100 text-gray-500 hover:text-white bg-[#252525] border border-[#4d4d4d] rounded cursor-pointer p-0.5 transition-opacity",title:"Edit",children:d("svg",{width:"9",height:"9",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),n("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})})]},E))]},D))})]})}),x&&d("div",{className:"border-t border-[#3d3d3d] bg-[#1e1e1e] px-3 py-2",children:[n("div",{className:"flex items-center gap-2 mb-1.5",children:d("span",{className:"text-[10px] text-gray-400",children:["Editing"," ",n("strong",{className:"text-gray-200",children:x.col})," in row ",x.row+1]})}),n("textarea",{value:v,onChange:T=>{const D=T.target.value;S(D),I.current&&clearTimeout(I.current),I.current=setTimeout(()=>{B(R.dataKey,x.row,x.col,D)},600)},className:"w-full px-2 py-1.5 text-[11px] bg-[#252525] text-white border border-[#4d4d4d] rounded outline-none focus:border-[#D7FF63]/50 resize-y min-h-[60px] max-h-[200px] font-mono",autoFocus:!0,rows:v.length>100?4:2,onKeyDown:T=>{T.key==="Escape"&&O(),T.key==="Enter"&&(T.metaKey||T.ctrlKey)&&(I.current&&clearTimeout(I.current),B(R.dataKey,x.row,x.col,v),b(null))}}),d("div",{className:"flex items-center gap-2 mt-1.5",children:[n("button",{onClick:()=>{I.current&&clearTimeout(I.current),B(R.dataKey,x.row,x.col,v),b(null)},className:"px-3 py-1 text-[10px] font-medium text-[#1e1e1e] bg-[#D7FF63] rounded cursor-pointer border-none hover:bg-[#D7FF63]/80 transition-colors",children:"Save"}),n("button",{onClick:()=>O(),className:"px-3 py-1 text-[10px] text-gray-400 hover:text-white bg-transparent border-none cursor-pointer",children:"Cancel"}),d("span",{className:"text-[9px] text-gray-600 ml-auto",children:["⌘","+Enter to save, Esc to cancel"]})]})]}),A&&!x&&d("div",{className:"border-t border-[#3d3d3d] bg-amber-500/5 px-3 py-2 flex items-center gap-2",children:[n("span",{className:"text-[10px] text-amber-400/80",children:"Data modified — recapture to update the screenshot"}),n("div",{className:"flex-1"}),n("button",{onClick:()=>{$(!0),Promise.resolve().then(()=>(s&&s(),new Promise(T=>setTimeout(T,2e3)))).then(()=>fetch("/api/editor-capture-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:e})})).then(()=>_(!1)).catch(()=>{}).finally(()=>$(!1))},disabled:M,className:"px-3 py-1 text-[10px] font-medium text-white bg-amber-600 rounded cursor-pointer border-none hover:bg-amber-500 disabled:opacity-50 transition-colors",children:M?"Recapturing...":"Recapture Screenshot"})]}),r&&d("div",{className:"border-t border-[#3d3d3d]",children:[n("div",{className:"flex justify-center py-2",children:n("button",{onClick:()=>g(!y),className:"px-3 py-1 text-[10px] font-medium text-[#D7FF63] border border-[#D7FF63]/40 rounded cursor-pointer transition-colors hover:bg-[#D7FF63]/10 bg-transparent",children:y?"Hide Claude":"Edit with Claude"})}),y&&n("div",{className:"border-t border-[#3d3d3d]",children:n(cn,{prompt:r,height:400,onClose:()=>{g(!1),N(T=>T+1)}})})]})]});function O(){if(I.current&&clearTimeout(I.current),!!x){if(v!==w){if(a&&m){const T=a[m];if(T&&T[x.row]){let D=w;w===""?D="":w==="null"?D=null:w==="true"?D=!0:w==="false"?D=!1:isNaN(Number(w))||(D=Number(w));const E=[...T];E[x.row]={...E[x.row],[x.col]:D},o({...a,[m]:E})}}fetch("/api/editor-save-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:e,table:R.dataKey,rowIndex:x.row,column:x.col,value:w})}).then(()=>{s&&s()}).catch(()=>{})}b(null),_(!1)}}async function B(T,D,E,W){if(a&&m){const K=a[m];if(K&&K[D]){let Z=W;W==="null"?Z=null:W==="true"?Z=!0:W==="false"?Z=!1:W!==""&&!isNaN(Number(W))&&(Z=Number(W));const q=[...K];q[D]={...q[D],[E]:Z},o({...a,[m]:q})}}_(!0);try{await fetch("/api/editor-save-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:e,table:T,rowIndex:D,column:E,value:W})}),s&&s()}catch{}}}function N5(){const[e,t]=j([]),[r,s]=j([]),[a,o]=j(!0),[i,l]=j(null),[c,u]=j(!1),[p,h]=j(null);if(te(()=>{fetch("/api/editor-schema").then(g=>g.json()).then(g=>{var x,b;h(g.source||null),g.source==="explicit"?(s(g.dataStructures||[]),((x=g.dataStructures)==null?void 0:x.length)>0&&l(g.dataStructures[0].name)):(t(g.models||[]),((b=g.models)==null?void 0:b.length)>0&&l(g.models[0].name))}).catch(()=>{}).finally(()=>o(!1))},[]),a)return n("div",{className:"text-xs text-gray-400 py-4",children:"Loading schema..."});if(!(p==="explicit"?r.length>0:e.length>0))return n("div",{className:"text-xs text-gray-500 py-4",children:"No data structure found. Use the chat below to have Claude analyze your codebase and generate one."});const f=p==="explicit"?k5(r):C5(e,p);return p==="explicit"?d("div",{className:"space-y-2",children:[r.map(g=>{const x=i===g.name,b=g.category==="datastore"?"text-[#D7FF63]/80 bg-[#D7FF63]/10 border border-[#D7FF63]/30":g.category==="mock-api"?"text-blue-400/80 bg-blue-400/10 border border-blue-400/30":"text-gray-400 bg-gray-700/30 border border-gray-600/30";return d("div",{className:"border border-[#3d3d3d] rounded-lg overflow-hidden",children:[d("button",{onClick:()=>l(x?null:g.name),className:"w-full flex items-center gap-2 px-3 py-2 bg-[#252525] text-left cursor-pointer border-none transition-colors hover:bg-[#2a2a2a]",children:[n("svg",{className:`text-gray-500 transition-transform shrink-0 ${x?"rotate-90":""}`,width:"8",height:"8",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M9 18l6-6-6-6"})}),n("span",{className:"text-xs font-semibold text-gray-200",children:g.name}),g.order===1&&n("span",{className:"text-[9px] text-amber-400/70",children:"Primary"}),n("span",{className:`text-[9px] rounded px-1.5 py-0 ${b}`,children:g.category==="mock-api"?"API Mock":g.category}),d("span",{className:"text-[10px] text-gray-500",children:[g.fields.length," fields"]})]}),x&&d("div",{className:"border-t border-[#3d3d3d]",children:[g.description&&n("div",{className:"px-3 py-1.5 text-[10px] text-gray-400 border-b border-[#2d2d2d]",children:g.description}),n("table",{className:"w-full text-[10px]",children:n("tbody",{children:g.fields.map(v=>d("tr",{className:"border-b border-[#2d2d2d] last:border-b-0",children:[d("td",{className:"px-3 py-1.5 text-gray-300 font-medium w-1/3",children:[v.isId&&n("span",{className:"text-amber-400 mr-1",title:"Primary key",children:"•"}),v.name]}),n("td",{className:"px-3 py-1.5 text-gray-500",children:v.type}),n("td",{className:"px-3 py-1.5 text-gray-600 w-16 text-right",children:v.required===!1?"optional":""})]},v.name))})})]})]},g.name)}),n("div",{className:"flex justify-center pt-2",children:n("button",{onClick:()=>u(!c),className:"px-4 py-1.5 text-[11px] font-medium text-[#D7FF63] border border-[#D7FF63]/40 rounded-lg cursor-pointer transition-colors hover:bg-[#D7FF63]/10 bg-transparent",children:c?"Hide Chat":"Chat with Claude about the Data Structure"})}),c&&n("div",{className:"border border-[#3d3d3d] rounded-lg overflow-hidden",children:n(cn,{prompt:f,height:500,onClose:()=>u(!1)})})]}):d("div",{className:"space-y-2",children:[n(S5,{prompt:`Analyze this codebase and generate a .codeyam/data-structure.json file that describes the app's data structures.
|
|
608
|
-
|
|
609
|
-
The file should be a JSON array where each entry has:
|
|
610
|
-
- "name": display name for the data structure
|
|
611
|
-
- "description": what this data represents and how it's used
|
|
612
|
-
- "category": either "datastore" (persisted data like DB tables, localStorage) or "mock-api" (mocked external API responses)
|
|
613
|
-
- "order": integer for display order (1 = primary/most important)
|
|
614
|
-
- "fields": array of { "name", "type", "isId" (boolean), "required" (boolean) }
|
|
615
|
-
|
|
616
|
-
Look at:
|
|
617
|
-
- Database schemas (prisma/schema.prisma, SQLite, etc.)
|
|
618
|
-
- TypeScript interfaces/types used for stored data
|
|
619
|
-
- localStorage usage patterns
|
|
620
|
-
- API response types that need mocking
|
|
621
|
-
- Do NOT include types that are only used as component props
|
|
622
|
-
|
|
623
|
-
Write the file to .codeyam/data-structure.json.`}),e.map(g=>{const x=i===g.name,b=g.fields.filter(S=>S.isRelation),v=g.fields.filter(S=>!S.isRelation);return d("div",{className:"border border-[#3d3d3d] rounded-lg overflow-hidden",children:[d("button",{onClick:()=>l(x?null:g.name),className:"w-full flex items-center gap-2 px-3 py-2 bg-[#252525] text-left cursor-pointer border-none transition-colors hover:bg-[#2a2a2a]",children:[n("svg",{className:`text-gray-500 transition-transform ${x?"rotate-90":""}`,width:"8",height:"8",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M9 18l6-6-6-6"})}),n("span",{className:"text-xs font-semibold text-gray-200",children:g.name}),d("span",{className:"text-[10px] text-gray-500",children:[v.length," fields"]}),b.length>0&&d("span",{className:"text-[10px] text-[#D7FF63]/70",children:[b.length," relation",b.length>1?"s":""]})]}),x&&n("div",{className:"border-t border-[#3d3d3d]",children:n("table",{className:"w-full text-[10px]",children:d("tbody",{children:[v.map(S=>d("tr",{className:"border-b border-[#2d2d2d] last:border-b-0",children:[d("td",{className:"px-3 py-1.5 text-gray-300 font-medium w-1/3",children:[S.isId&&n("span",{className:"text-amber-400 mr-1",title:"Primary key",children:"•"}),S.name]}),d("td",{className:"px-3 py-1.5 text-gray-500",children:[S.type,S.isOptional&&"?",S.isList&&"[]"]})]},S.name)),b.length>0&&n("tr",{children:d("td",{colSpan:2,className:"px-3 py-1.5 border-t border-[#3d3d3d]",children:[n("span",{className:"text-[9px] text-gray-500 uppercase tracking-wider",children:"Relations"}),n("div",{className:"mt-1 flex flex-wrap gap-1.5",children:b.map(S=>n("button",{onClick:()=>l(S.relatedModel??null),className:"text-[10px] text-[#D7FF63] hover:text-[#D7FF63]/80 bg-[#D7FF63]/10 border border-[#D7FF63]/30 rounded px-1.5 py-0.5 cursor-pointer transition-colors",children:S.isList?`${S.relatedModel}[]`:S.relatedModel},S.name))})]})})]})})})]},g.name)}),n("div",{className:"flex justify-center pt-2",children:n("button",{onClick:()=>u(!c),className:"px-4 py-1.5 text-[11px] font-medium text-[#D7FF63] border border-[#D7FF63]/40 rounded-lg cursor-pointer transition-colors hover:bg-[#D7FF63]/10 bg-transparent",children:c?"Hide Chat":"Chat with Claude about the Data Structure"})}),c&&n("div",{className:"border border-[#3d3d3d] rounded-lg overflow-hidden",children:n(cn,{prompt:f,height:500,onClose:()=>u(!1)})})]})}function S5({prompt:e}){const[t,r]=j(!1),[s,a]=j(()=>typeof window>"u"?!1:localStorage.getItem("codeyam-ds-migration-dismissed")==="1");return s?null:d("div",{className:"relative border border-amber-500/30 bg-amber-500/5 rounded-lg p-3 pr-8",children:[n("button",{onClick:()=>{a(!0),localStorage.setItem("codeyam-ds-migration-dismissed","1")},className:"absolute top-2 right-2 text-gray-500 hover:text-white bg-transparent border-none cursor-pointer p-0.5",title:"Dismiss",children:n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",children:n("path",{d:"M2 2l8 8M10 2l-8 8"})})}),n("p",{className:"text-[11px] text-amber-400/90 m-0 font-['IBM_Plex_Sans'] leading-relaxed",children:"This data structure was auto-detected. For better results, ask Claude to generate an explicit data structure config."}),n("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"mt-2 px-3 py-1 text-[10px] font-medium text-amber-400 border border-amber-500/40 rounded cursor-pointer transition-colors hover:bg-amber-500/10 bg-transparent",children:t?"Copied!":"Copy prompt for Claude"})]})}function C5(e,t){const r=e.map(a=>{const o=a.fields.map(i=>{let l=` ${i.name}: ${i.type}`;return i.isList&&(l+="[]"),i.isOptional&&(l+=" (optional)"),i.isId&&(l+=" [PK]"),i.isRelation&&(l+=` → ${i.relatedModel}`),l}).join(`
|
|
624
|
-
`);return`${a.name}:
|
|
625
|
-
${o}`}).join(`
|
|
626
|
-
|
|
627
|
-
`);return`You are helping the user understand and modify the data structure of their application.
|
|
628
|
-
|
|
629
|
-
${t==="prisma"?"The data structure is defined in `prisma/schema.prisma`.":t==="typescript"?"The data structure is defined via TypeScript interfaces in the `src/` directory.":"The data structure was inferred from the project."}
|
|
630
|
-
|
|
631
|
-
Here is the current data structure:
|
|
632
|
-
|
|
633
|
-
${r}
|
|
634
|
-
|
|
635
|
-
Wait for the user to tell you what they want to do. They might want to:
|
|
636
|
-
- Add new models/tables
|
|
637
|
-
- Add or modify fields on existing models
|
|
638
|
-
- Understand relationships between models
|
|
639
|
-
- Get advice on data modeling
|
|
640
|
-
- Generate or modify seed data for scenarios
|
|
641
|
-
|
|
642
|
-
When making changes:
|
|
643
|
-
${t==="prisma"?"- Edit `prisma/schema.prisma` directly":"- Edit the TypeScript interface files in `src/`"}
|
|
644
|
-
- After schema changes, update any affected scenario seed data
|
|
645
|
-
- Explain the impact of changes on existing data
|
|
646
|
-
|
|
647
|
-
Do NOT start making changes until the user tells you what they want.`}function k5(e){return`You are helping the user understand and modify the data structure of their application.
|
|
648
|
-
|
|
649
|
-
The data structure is explicitly defined in \`.codeyam/data-structure.json\`.
|
|
650
|
-
|
|
651
|
-
Here is the current data structure:
|
|
652
|
-
|
|
653
|
-
${e.map(r=>{const s=r.category==="datastore"?"[datastore]":r.category==="mock-api"?"[mock-api]":`[${r.category}]`,a=r.fields.map(i=>{let l=` ${i.name}: ${i.type}`;return i.isId&&(l+=" [PK]"),i.required===!1&&(l+=" (optional)"),l}).join(`
|
|
654
|
-
`),o=r.description?` ${r.description}`:"";return`${r.name} ${s}${o?`
|
|
655
|
-
${o}`:""}
|
|
656
|
-
${a}`}).join(`
|
|
657
|
-
|
|
658
|
-
`)}
|
|
659
|
-
|
|
660
|
-
Each data structure has:
|
|
661
|
-
- **name**: display name
|
|
662
|
-
- **description**: what this data represents
|
|
663
|
-
- **category**: "datastore" (persisted data) or "mock-api" (mocked external API)
|
|
664
|
-
- **order**: display order (1 = primary)
|
|
665
|
-
- **fields**: array of { name, type, isId, required }
|
|
666
|
-
|
|
667
|
-
Wait for the user to tell you what they want to do. They might want to:
|
|
668
|
-
- Add new data structures (tables, API mocks)
|
|
669
|
-
- Add or modify fields
|
|
670
|
-
- Change categories or descriptions
|
|
671
|
-
- Understand how data flows through the app
|
|
672
|
-
|
|
673
|
-
When making changes:
|
|
674
|
-
- Edit \`.codeyam/data-structure.json\` directly
|
|
675
|
-
- Keep the file as a JSON array sorted by order
|
|
676
|
-
- Update descriptions to reflect changes
|
|
677
|
-
- After data structure changes, update affected scenario seed data
|
|
678
|
-
|
|
679
|
-
Do NOT start making changes until the user tells you what they want.`}function Jc({status:e}){const t={new:{label:"New",bg:"bg-green-900/40",text:"text-green-400",border:"border-green-700/50"},edited:{label:"Edited",bg:"bg-blue-900/40",text:"text-blue-400",border:"border-blue-700/50"},impacted:{label:"Impacted",bg:"bg-amber-900/40",text:"text-amber-400",border:"border-amber-700/50"}}[e.status];return n("span",{className:`${t.bg} ${t.text} ${t.border} border text-[8px] font-bold px-1 py-0 rounded-full uppercase tracking-wider`,children:t.label})}function _5({testFile:e,entityName:t,cachedResult:r}){const{results:s,isRunning:a,runTests:o,stale:i}=Ji(e,r);if(a&&!s)return d("div",{className:"pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#00a0c4] animate-pulse"}),n("span",{className:"text-[10px] text-gray-500",children:"Running tests..."})]});if(!s)return null;if(s.status==="error")return n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-red-400",children:s.errorMessage})});const l=t?s.testCases.filter(p=>p.fullName.startsWith(t)):s.testCases,c=l.length>0?l:s.testCases;if(c.length===0)return null;const u=t?`${t} > `:"";return d("div",{className:"pt-1 space-y-0.5",children:[c.map(p=>{var m;const h=u&&p.fullName.startsWith(u)?p.fullName.slice(u.length):p.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[p.status==="passed"?n("span",{className:"text-green-400 text-[10px]",children:"✓"}):p.status==="failed"?n("span",{className:"text-red-400 text-[10px]",children:"✗"}):n("span",{className:"text-gray-500 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${p.status==="passed"?"text-green-400":p.status==="failed"?"text-red-400":"text-gray-500"}`,children:h})]}),p.status==="failed"&&((m=p.failureMessages)==null?void 0:m.map((f,y)=>n("div",{className:"pl-4 text-[9px] text-red-400/70 truncate max-w-full",title:f,children:f.split(`
|
|
680
|
-
`)[0]},y)))]},p.fullName)}),d("div",{className:"flex items-center gap-2 mt-1",children:[n("button",{onClick:o,disabled:a,className:"text-[10px] text-[#00a0c4] hover:text-[#38bdf8] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:a?"Running...":i?"Re-run (stale)":"Re-run"}),i&&!a&&n("span",{className:"w-1.5 h-1.5 rounded-full bg-amber-400 shrink-0",title:"Source or test file changed since last run"})]})]})}const E5={added:"text-green-400",untracked:"text-green-400",modified:"text-blue-400",renamed:"text-purple-400"};function A5({files:e}){return d("div",{className:"border-t border-[#3d3d3d] pt-2 mt-1",children:[d("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:["Modified Files (",e.length,")"]}),n("div",{className:"mt-1 space-y-0.5 max-h-[150px] overflow-auto",children:e.map(t=>d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold uppercase w-[14px] text-center ${E5[t.status]||"text-gray-500"}`,children:t.status==="added"||t.status==="untracked"?"A":t.status==="modified"?"M":t.status==="renamed"?"R":"?"}),n("span",{className:"text-[10px] text-gray-400 truncate font-mono",children:t.path})]},t.path))})]})}const j5={feature:{label:"Feature",color:"bg-[#005c75]"},fix:{label:"Fix",color:"bg-amber-700"},refactor:{label:"Refactor",color:"bg-purple-700"},scaffold:{label:"Scaffold",color:"bg-green-700"},data:{label:"Data",color:"bg-blue-700"},milestone:{label:"Milestone",color:"bg-yellow-600"}};function P5(e){try{return new Date(e).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"})}catch{return""}}function T5(e){try{return new Date(e+"T00:00:00").toLocaleDateString([],{weekday:"long",month:"long",day:"numeric"})}catch{return e}}const M5=[{value:"1d",label:"1 Day"},{value:"3d",label:"3 Days"},{value:"7d",label:"1 Week"},{value:"30d",label:"1 Month"}];function $5({entries:e,onScreenshotClick:t}){const[r,s]=j(!1),[a,o]=j("7d"),i=le(()=>zv(e,a),[e,a]);return d("div",{className:"bg-[#2d2d2d] rounded-lg overflow-hidden",children:[d("button",{onClick:()=>s(!r),className:"w-full flex items-center justify-between px-3 py-2.5 cursor-pointer bg-transparent border-none text-left hover:bg-[#333] transition-colors",children:[n("span",{className:"text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Timeframe Summary"}),n("span",{className:`text-gray-500 text-[10px] transition-transform ${r?"rotate-180":""}`,children:"▼"})]}),r&&d("div",{className:"px-3 pb-3 space-y-3 border-t border-[#3d3d3d]",children:[n("div",{className:"flex gap-1 pt-2.5",children:M5.map(l=>n("button",{onClick:()=>o(l.value),className:`px-2.5 py-1 text-[10px] font-medium rounded transition-colors cursor-pointer border ${a===l.value?"bg-[#005c75] text-white border-[#005c75]":"bg-transparent text-gray-400 border-[#4d4d4d] hover:text-white hover:border-[#005c75]"}`,children:l.label},l.value))}),d("div",{className:"flex items-center gap-3 text-[11px] text-gray-400",children:[d("span",{children:[n("span",{className:"text-white font-medium",children:i.commitCount})," ",i.commitCount===1?"commit":"commits"]}),n("span",{className:"text-[#3d3d3d]",children:"|"}),d("span",{children:[n("span",{className:"text-white font-medium",children:i.totalScenarios})," ",i.totalScenarios===1?"scenario changed":"scenarios changed"]}),n("span",{className:"text-[#3d3d3d]",children:"|"}),d("span",{children:[n("span",{className:"text-white font-medium",children:i.entryCount})," ",i.entryCount===1?"entry":"entries"]})]}),i.totalScenarios===0?n("p",{className:"text-[11px] text-gray-500 italic m-0",children:"No scenario changes in this period."}):d("div",{className:"space-y-3",children:[i.appScenarios.length>0&&d("div",{className:"space-y-2",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),i.appScenarios.map(l=>n(Hc,{scenario:l,onScreenshotClick:t},l.name))]}),i.componentGroups.size>0&&d("div",{className:"space-y-2",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),[...i.componentGroups.entries()].sort(([l],[c])=>l.localeCompare(c)).map(([l,c])=>d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:l}),c.map(u=>n(Hc,{scenario:u,onScreenshotClick:t},u.name))]},l))]})]})]})]})}function Hc({scenario:e,onScreenshotClick:t}){const r=e.name.indexOf(" - "),s=r!==-1?e.name.slice(r+3):e.name;return d("div",{className:"pl-2",children:[n("span",{className:"text-[10px] text-gray-500 block mb-1",children:s}),n("div",{className:"flex items-center gap-1 overflow-x-auto",children:e.screenshots.map((a,o)=>d("div",{className:"flex items-center shrink-0",children:[o>0&&n("span",{className:"text-[8px] text-gray-600 mx-0.5",children:"→"}),n("button",{type:"button",className:"w-16 h-16 rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] shrink-0 flex items-center justify-center cursor-pointer transition-colors",title:`${e.name} (${new Date(a.time).toLocaleDateString()})`,onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${a.path.replace("screenshots/","")}`,commitSha:null,commitMessage:null,scenarioName:e.name}),children:n("img",{src:`/api/editor-journal-image/${a.path.replace("screenshots/","")}`,alt:e.name,className:"max-w-full max-h-full object-contain",loading:"lazy"})})]},a.path))})]})}function I5({isActive:e,onScreenshotClick:t,glossaryFunctions:r=[],cachedTestResults:s={}}){const[a,o]=j([]),[i,l]=j(!0),[c,u]=j(new Set),p=ae(f=>{u(y=>{const g=new Set(y);return g.has(f)?g.delete(f):g.add(f),g})},[]),h=ae(async()=>{try{const f=await fetch("/api/editor-journal");if(f.ok){const y=await f.json();o(y.entries||[])}}catch{}finally{l(!1)}},[]);if(te(()=>{h()},[h]),te(()=>{e&&h()},[e,h]),te(()=>{if(!e)return;const f=setInterval(()=>void h(),5e3);return()=>clearInterval(f)},[e,h]),i)return n("div",{className:"flex-1 flex items-center justify-center",children:n("span",{className:"text-gray-500 text-sm",children:"Loading journal..."})});if(a.length===0)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"text-center text-gray-500 px-8",children:[n("p",{className:"text-sm font-medium mb-2",children:"No journal entries yet"}),n("p",{className:"text-xs",children:"Journal entries will appear as you build. Claude records features, screenshots, and commits as the project evolves."})]})});const m=Bv(a);return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-4",children:[n($5,{entries:a,onScreenshotClick:t}),[...m.entries()].map(([f,y])=>d("div",{children:[n("div",{className:"px-3 py-1.5 sticky top-0 bg-[#1e1e1e] z-10",children:n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:T5(f)})}),n("div",{className:"space-y-2",children:y.map((g,x)=>{const b=j5[g.type]||{label:g.type,color:"bg-gray-600"},v=`${g.time}-${x}`,S=c.has(v);return d("div",{className:"bg-[#2d2d2d] rounded-lg overflow-hidden",children:[d("div",{className:`p-3 space-y-2 ${S?"":"max-h-[300px] overflow-y-auto"}`,children:[n("div",{className:"flex items-start gap-2 cursor-pointer",onClick:()=>p(v),children:d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-sm font-medium text-white truncate",children:g.title}),n("span",{className:`${b.color} text-white text-[9px] font-bold px-1.5 py-0.5 rounded uppercase tracking-wider shrink-0`,children:b.label})]}),n("span",{className:"text-[10px] text-gray-500",children:P5(g.time)}),g.featureName&&n("span",{className:"text-[10px] text-gray-500 italic truncate",title:g.featureName,children:g.featureName})]})}),g.userPrompt&&n(vp,{text:g.userPrompt,theme:"dark"}),n("p",{className:"text-xs text-gray-400 leading-relaxed",children:g.description}),g.screenshot&&n("button",{type:"button",className:"rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] flex items-center justify-center p-1 cursor-pointer transition-colors w-full",onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${g.screenshot.replace("screenshots/","")}`,commitSha:g.commitSha,commitMessage:g.commitMessage,scenarioName:g.title}),children:n("img",{src:`/api/editor-journal-image/${g.screenshot.replace("screenshots/","")}`,alt:g.title,className:"max-w-full max-h-full object-contain",loading:"lazy"})}),g.scenarioScreenshots&&g.scenarioScreenshots.length>0&&(()=>{const w=Yv(g.scenarioScreenshots),C=g.entityChangeStatus,k=w.filter(([$])=>$==="App").flatMap(([,$])=>$),N=w.filter(([$])=>$!=="App"),A=new Map;for(const $ of k){const I=$,R=I.pageFilePath?Ot(Et(I.pageFilePath)):yt(I.url??null),P=A.get(R)||[];P.push($),A.set(R,P)}const _=[...A.entries()],M=$=>n("button",{type:"button",className:"w-[4.5rem] h-[4.5rem] rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] shrink-0 flex items-center justify-center cursor-pointer transition-colors",onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${$.path.replace("screenshots/","")}`,commitSha:g.commitSha,commitMessage:g.commitMessage,scenarioName:$.name}),children:n("img",{src:`/api/editor-journal-image/${$.path.replace("screenshots/","")}`,alt:$.name,title:$.name,className:"max-w-full max-h-full object-contain",loading:"lazy"})},$.path);return d("div",{className:"space-y-2",children:[_.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),_.map(([$,I])=>d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:$}),(C==null?void 0:C[$])&&n(Jc,{status:C[$]})]}),n("div",{className:"flex flex-wrap gap-1 mt-0.5",children:I.map(M)})]},$))]}),N.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),N.map(([$,I])=>d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:$}),(C==null?void 0:C[$])&&n(Jc,{status:C[$]})]}),n("div",{className:"flex flex-wrap gap-1 mt-0.5",children:I.map(M)})]},$))]})]})})(),r.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"}),n("div",{className:"space-y-2",children:r.map(w=>d("div",{children:[n("span",{className:"text-[11px] font-medium text-gray-200",children:w.name}),n("span",{className:"text-[9px] text-gray-500 truncate block",children:w.filePath}),w.testFile?n(_5,{testFile:w.testFile,entityName:w.name,cachedResult:s[w.testFile]}):n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-gray-500",children:"No test file"})})]},w.name))})]}),g.commitSha&&d("div",{className:"flex items-center gap-1.5 text-[10px]",children:[n("span",{className:"font-mono text-[#00a0c4] bg-[#00a0c4]/10 px-1.5 py-0.5 rounded",children:g.commitSha.slice(0,7)}),n("span",{className:"text-gray-500 truncate",children:g.commitMessage})]}),S&&g.modifiedFiles&&g.modifiedFiles.length>0&&n(A5,{files:g.modifiedFiles})]}),d("button",{onClick:()=>p(v),className:"w-full py-1.5 text-[10px] text-gray-500 hover:text-gray-300 border-t border-[#3d3d3d] transition-colors cursor-pointer",children:["——— ",S?"Collapse":"Expand"," ———"]})]},v)})})]},f))]})})}const F5=()=>n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#D7FF63",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M20 6L9 17l-5-5"})});function fo({title:e,completedCount:t,totalCount:r,subtitle:s,onClick:a,secondaryAction:o,previewTasks:i}){const l=r>0&&t>=r;return d("button",{type:"button",onClick:a,className:"bg-[#2a2a2a] border border-[#3d3d3d] rounded-lg p-3 flex flex-col gap-1.5 cursor-pointer hover:border-[#555] transition-colors text-left",children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-sm font-medium text-white",children:e}),l?n(F5,{}):r>0?d("span",{className:"text-xs text-gray-500",children:["(",t,"/",r,")"]}):null]}),s&&n("p",{className:"text-xs text-gray-400 m-0 leading-snug",children:s}),i&&i.length>0&&n("div",{className:"flex flex-col gap-1 mt-0.5",children:i.map(c=>d("div",{className:"flex items-center gap-1.5",children:[c.completed?n("svg",{width:"10",height:"10",viewBox:"0 0 24 24",fill:"none",stroke:"#D7FF63",strokeWidth:"3",strokeLinecap:"round",strokeLinejoin:"round",className:"shrink-0",children:n("path",{d:"M20 6L9 17l-5-5"})}):n("span",{className:"w-2.5 h-2.5 rounded-sm border border-[#555] shrink-0"}),n("span",{className:`text-[11px] truncate ${c.completed?"text-gray-500 line-through":"text-gray-400"}`,children:c.label})]},c.label))}),o&&n("span",{role:"link",onClick:c=>{c.stopPropagation(),o.onClick()},className:"text-xs text-[#D7FF63]/70 hover:text-[#D7FF63] text-left truncate mt-0.5",children:o.label})]})}function D5({onNavigateToRoadmap:e,onSwitchToBuild:t}){const[r,s]=j(null),a=ae(()=>{fetch("/api/editor-roadmap").then(m=>m.json()).then(m=>s(m)).catch(()=>{})},[]);if(te(()=>{a()},[a]),!r)return null;const o=r.plan.filter(m=>m.completed).length,i=r.plan.length,l=r.deploy.filter(m=>m.completed).length,c=r.deploy.length,u=r.buildSessionCount===1?"1 working session":`${r.buildSessionCount} working sessions`,p=r.featureName&&r.editorStepLabel?`${r.featureName} — ${r.editorStepLabel}`:r.featureName?r.featureName:null,h=m=>{const f=[...m].reverse().find(g=>g.completed),y=m.filter(g=>!g.completed);if(f){const g=[{label:f.label,completed:!0}];return y.length>0&&g.push({label:y[0].label,completed:!1}),g}return y.slice(0,2).map(g=>({label:g.label,completed:!1}))};return d("div",{children:[n("span",{className:"text-xs font-bold text-gray-400 uppercase tracking-wider font-['IBM_Plex_Mono']",children:"Roadmap"}),d("div",{className:"grid grid-cols-3 gap-3 mt-2",children:[n(fo,{title:"Plan",completedCount:o,totalCount:i,onClick:e,previewTasks:h(r.plan)}),n(fo,{title:"Build",completedCount:r.buildSessionCount,totalCount:0,subtitle:u,onClick:e,secondaryAction:p?{label:p,onClick:t}:void 0}),n(fo,{title:"Deploy",completedCount:l,totalCount:c,onClick:e,previewTasks:h(r.deploy)})]})]})}function Lo(e){return{name:R5(e),description:O5(e),colors:L5(e),fonts:z5(e),typographyScale:B5(e),radiusTokens:Y5(e)}}function R5(e){const t=e.match(/^# (.+)$/m);return t?t[1].trim():"Design System"}function O5(e){const t=e.match(/^> (.+)$/m);return t?t[1].trim():""}function L5(e){const t=[],r=Vi(e,"Colors");if(!r)return t;const s=J5(r);for(const{heading:a,content:o}of s){const i=Cp(o);for(const l of i){const c=/--([a-zA-Z0-9_-]+):\s*([^;]+);(?:\s*\/\*\s*(.+?)\s*\*\/)?/g;let u;for(;(u=c.exec(l))!==null;){const p=u[2].trim();H5(p)&&t.push({name:u[1],value:p,group:a,...u[3]?{comment:u[3]}:{}})}}}return t}function z5(e){const t=e.match(/\*\*Font stack:\*\*\s*`([^`]+)`(?:\s*\([^)]*\))?(?:,\s*`([^`]+)`)?/);if(!t)return[];const r=[];if(t[1]){const a=go(t[1]);a&&r.push(a)}if(t[2]){const a=go(t[2]);a&&!r.includes(a)&&r.push(a)}const s=e.match(/\*\*Font stack:\*\*\s*`[^`]+`[^`]*`[^`]+`[^`]*`([^`]+)`/);if(s){const a=go(s[1]);a&&!r.includes(a)&&r.push(a)}return r}function go(e){return e.split(",")[0].trim().replace(/'/g,"")||null}function B5(e){const t=[],r=Vi(e,"Typography");if(!r)return t;const s=r.split(`
|
|
681
|
-
`).filter(a=>a.startsWith("|"));if(s.length<3)return t;for(let a=2;a<s.length;a++){const o=s[a].split("|").map(i=>i.trim()).filter(Boolean);o.length>=3&&t.push({style:o[0],size:o[1],weight:o[2],notes:o.slice(3).join(" | ")})}return t}function Y5(e){const t=[],r=Vi(e,"Spacing");if(!r)return t;const s=Cp(r);for(const a of s){const o=/--radius-([a-zA-Z0-9_-]+):\s*([^;]+);(?:\s*\/\*\s*(.+?)\s*\*\/)?/g;let i;for(;(i=o.exec(a))!==null;)t.push({name:`radius-${i[1]}`,value:i[2].trim(),...i[3]?{comment:i[3]}:{}})}return t}function U5(e,t,r){const s=t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),a=new RegExp(`(--${s}:\\s*)([^;]+)(;.*)`,"g");return e.replace(a,`$1${r}$3`)}function W5(e,t){return e.replace(/(\*\*Font stack:\*\*\s*`)([^`]+)(`)/,`$1${t}$3`)}function Vi(e,t){const s=new RegExp(`^## .*${t}.*$`,"im").exec(e);if(!s)return null;const a=s.index+s[0].length,o=e.indexOf(`
|
|
682
|
-
## `,a);return o===-1?e.slice(a):e.slice(a,o)}function J5(e){const t=[],r=e.split(/^### /m);for(let s=0;s<r.length;s++){if(s===0){const o=r[s].trim();o&&t.push({heading:"General",content:o});continue}const a=r[s].indexOf(`
|
|
683
|
-
`);a===-1?t.push({heading:r[s].trim(),content:""}):t.push({heading:r[s].slice(0,a).trim(),content:r[s].slice(a+1)})}return t}function Cp(e){const t=[],r=/```css\n([\s\S]*?)```/g;let s;for(;(s=r.exec(e))!==null;)t.push(s[1]);return t}function H5(e){return!!(e.startsWith("#")||e.startsWith("rgb")||e.startsWith("hsl")||e.startsWith("var(--"))}const Vc=[{key:"languages",label:"Languages"},{key:"frameworks",label:"Frameworks"},{key:"databases",label:"Databases"},{key:"services",label:"External Services"},{key:"libraries",label:"Key Libraries"},{key:"infrastructure",label:"Infrastructure"}];function Kc({todo:e,onToggle:t,onRemove:r}){return d("div",{className:"flex items-center gap-2.5 py-1.5 group",children:[n("button",{type:"button",onClick:t,className:`w-4 h-4 rounded border flex items-center justify-center shrink-0 cursor-pointer transition-colors ${e.completed?"bg-[#D7FF63] border-[#D7FF63]":"bg-transparent border-[#555] hover:border-[#888]"}`,children:e.completed&&n("svg",{width:"10",height:"10",viewBox:"0 0 24 24",fill:"none",stroke:"#1e1e1e",strokeWidth:"3",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M20 6L9 17l-5-5"})})}),d("span",{className:`text-sm flex-1 ${e.completed?"text-gray-500 line-through":"text-gray-300"}`,children:[e.label,e.autoDetect&&!e.userCreated&&n("span",{className:"text-[10px] text-gray-600 ml-1.5",children:"(auto)"})]}),e.userCreated&&r&&n("button",{type:"button",onClick:r,className:"opacity-0 group-hover:opacity-100 text-gray-600 hover:text-red-400 bg-transparent border-none cursor-pointer p-0 transition-opacity",title:"Remove",children:n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",children:n("path",{d:"M2 2l8 8M10 2l-8 8"})})})]})}function Gc({onAdd:e}){const[t,r]=j(""),s=()=>{const a=t.trim();a&&(e(a),r(""))};return d("div",{className:"flex items-center gap-2 mt-2",children:[n("input",{type:"text",value:t,onChange:a=>r(a.target.value),onKeyDown:a=>a.key==="Enter"&&s(),placeholder:"Add a task...",className:"flex-1 px-3 py-1.5 text-xs bg-[#2a2a2a] border border-[#3d3d3d] rounded-md text-gray-300 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"}),n("button",{type:"button",onClick:s,className:"px-3 py-1.5 text-xs text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer font-medium",children:"Add"})]})}function qc({title:e,completedCount:t,totalCount:r}){const s=r>0&&t>=r;return d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-sm font-medium text-white m-0",children:e}),s?n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#D7FF63",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M20 6L9 17l-5-5"})}):r>0?d("span",{className:"text-xs text-gray-500",children:[t,"/",r]}):null]})}const V5={feature:"bg-[#005c75]",fix:"bg-amber-700",refactor:"bg-purple-700",scaffold:"bg-green-700",data:"bg-blue-700",milestone:"bg-yellow-600"};function K5(e){try{return new Date(e).toLocaleDateString([],{month:"short",day:"numeric"})}catch{return""}}function G5({designSystem:e,onEdit:t}){const r=e.colors.filter(s=>s.value.startsWith("#")).slice(0,10);return d("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:[n("div",{className:"text-xs font-medium text-gray-200 mb-2",children:e.name}),r.length>0&&n("div",{className:"flex gap-1.5 mb-2 flex-wrap",children:r.map(s=>n("div",{className:"w-5 h-5 rounded border border-[#444]",style:{backgroundColor:s.value},title:`--${s.name}: ${s.value}`},`${s.group}-${s.name}`))}),e.fonts.length>0&&d("div",{className:"text-[10px] text-gray-500 mb-2",children:["Font: ",e.fonts.join(", ")]}),t&&n("button",{type:"button",onClick:t,className:"text-[11px] text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 cursor-pointer transition-colors font-medium",children:"View & Edit >"})]})}function q5({projectTitle:e,projectDescription:t,onSave:r}){const[s,a]=j(!1),[o,i]=j(e||""),[l,c]=j(t||""),[u,p]=j(!1);te(()=>{i(e||""),c(t||"")},[e,t]);const h=()=>{p(!0),r(o,l),p(!1),a(!1)},m=()=>{i(e||""),c(t||""),a(!1)};return s?n("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:d("div",{className:"space-y-2.5",children:[d("div",{children:[n("label",{className:"block text-[10px] font-semibold text-gray-500 uppercase tracking-wider mb-1",children:"Project Name"}),n("input",{type:"text",value:o,onChange:f=>i(f.target.value),placeholder:"My App",className:"w-full px-2.5 py-1.5 text-sm bg-[#2a2a2a] border border-[#3d3d3d] rounded-md text-gray-200 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"})]}),d("div",{children:[n("label",{className:"block text-[10px] font-semibold text-gray-500 uppercase tracking-wider mb-1",children:"Description"}),n("textarea",{value:l,onChange:f=>c(f.target.value),placeholder:"A brief description of your project...",rows:2,className:"w-full px-2.5 py-1.5 text-sm bg-[#2a2a2a] border border-[#3d3d3d] rounded-md text-gray-200 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors resize-none"})]}),d("div",{className:"flex gap-2 pt-0.5",children:[n("button",{type:"button",onClick:h,disabled:u,className:"px-3 py-1 text-[11px] text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer font-medium disabled:opacity-50",children:u?"Saving...":"Save"}),n("button",{type:"button",onClick:m,className:"px-3 py-1 text-[11px] text-gray-400 bg-transparent border border-[#3d3d3d] rounded-md hover:text-white hover:border-[#555] transition-colors cursor-pointer",children:"Cancel"})]})]})}):d("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:[e?n("div",{className:"text-xs font-medium text-gray-200 mb-0.5",children:e}):n("div",{className:"text-xs text-gray-500 italic mb-0.5",children:"No name set"}),t&&n("div",{className:"text-[11px] text-gray-400 leading-relaxed",children:t}),n("button",{type:"button",onClick:()=>a(!0),className:"text-[11px] text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 mt-1.5 cursor-pointer transition-colors font-medium",children:"Edit >"})]})}function Q5({techStack:e,onNavigate:t}){if(!(e&&Vc.some(({key:i})=>e[i]&&e[i].length>0)))return d("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:[n("div",{className:"text-xs text-gray-400 mb-2",children:"No tech stack configured yet"}),t&&n("button",{type:"button",onClick:t,className:"px-3 py-1.5 text-[11px] font-medium text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer",children:"Set up with Claude >"})]});const s=[];for(const{key:i}of Vc){const l=e[i];if(l)for(const c of l)s.push(c)}const a=s.slice(0,5),o=s.length-5;return d("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:[d("div",{className:"flex flex-wrap gap-1.5",children:[a.map((i,l)=>d("span",{className:"inline-flex items-center gap-1 text-xs text-gray-300 bg-[#2a2a2a] px-2 py-0.5 rounded",children:[i.name,i.version&&d("span",{className:"text-[10px] text-gray-500",children:["v",i.version]})]},l)),o>0&&d("span",{className:"text-[10px] text-gray-500 self-center",children:["+",o," more"]})]}),t&&n("button",{type:"button",onClick:t,className:"text-[11px] text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 mt-2 cursor-pointer transition-colors font-medium",children:"View all >"})]})}function yo({iconType:e,size:t=14,className:r=""}){const s={width:t,height:t,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round",className:r};switch(e){case"desktop":return d("svg",{...s,children:[n("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}),n("path",{d:"M8 21h8M12 17v4"})]});case"laptop":return d("svg",{...s,children:[n("path",{d:"M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8H4V6z"}),n("path",{d:"M2 18h20"})]});case"tablet":return d("svg",{...s,children:[n("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]});case"mobile":return d("svg",{...s,children:[n("rect",{x:"7",y:"2",width:"10",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]})}}function Qc({open:e,size:t=12}){return e?d("svg",{width:t,height:t,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),n("circle",{cx:"12",cy:"12",r:"3"})]}):d("svg",{width:t,height:t,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94"}),n("path",{d:"M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19"}),n("path",{d:"M14.12 14.12a3 3 0 1 1-4.24-4.24"}),n("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]})}const Z5=new Set(fp.flatMap(e=>e.presets.map(t=>t.name)));function X5({screenSizes:e,projectScreenSizes:t,defaultScreenSize:r,appFormats:s,onSave:a}){const o=le(()=>gp(e,s),[e,s]),i=le(()=>{if(e){for(const[P,F]of Object.entries(e))if(F.default)return P}return(r==null?void 0:r.name)||""},[e,r]),[l,c]=j(!1),[u,p]=j({}),[h,m]=j(new Set),[f,y]=j(""),[g,x]=j(""),[b,v]=j(""),[S,w]=j(""),C=()=>{const P={};for(const J of o)P[J.name]={width:J.width,height:J.height};p(P);const F=new Set,Y=t||e;if(Y)for(const J of Object.keys(Y)){const O=Y[J];(t||!O||!("default"in O))&&F.add(J)}m(F),y(i),x(""),v(""),w(""),c(!0)},k=(P,F,Y)=>{p(J=>{const O={...J};if(O[P]){if(delete O[P],m(B=>{const T=new Set(B);return T.delete(P),T}),P===f){const B=Object.keys(O);y(B[0]||"")}}else O[P]={width:F,height:Y},Object.keys(J).length===0&&y(P);return O})},N=P=>{m(F=>{const Y=new Set(F);return Y.has(P)?Y.delete(P):Y.add(P),Y})},A=P=>{u[P]&&y(P)},_=()=>{const P=g.trim(),F=parseInt(b,10),Y=parseInt(S,10);!P||isNaN(F)||isNaN(Y)||F<=0||Y<=0||(p(J=>(Object.keys(J).length===0&&y(P),{...J,[P]:{width:F,height:Y}})),x(""),v(""),w(""))},M=P=>{p(F=>{const Y={...F};return delete Y[P],P===f&&y(Object.keys(Y)[0]||""),Y}),m(F=>{const Y=new Set(F);return Y.delete(P),Y})},$=()=>{const P={};for(const[Y,J]of Object.entries(u))P[Y]={width:J.width,height:J.height,...Y===f?{default:!0}:{}};const F={};for(const Y of h)u[Y]&&(F[Y]={...u[Y]});a(P,F),c(!1)};if(l){const P=Object.entries(u).filter(([F])=>!Z5.has(F));return d("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:[d("div",{className:"flex items-center gap-2 mb-2 px-0.5",children:[n("div",{className:"w-3.5"}),n("div",{className:"w-3.5"}),n("span",{className:"text-[9px] font-semibold text-gray-600 uppercase tracking-wider flex-1",children:"Size"}),n("span",{className:"text-[9px] font-semibold text-gray-600 uppercase tracking-wider w-[72px] text-right",children:"Dimensions"}),n("span",{className:"text-[9px] font-semibold text-gray-600 uppercase tracking-wider w-[50px] text-center",title:"Include in project screenshot sizes",children:"Project"}),n("span",{className:"text-[9px] font-semibold text-gray-600 uppercase tracking-wider w-[54px] text-center",children:"Default"})]}),d("div",{className:"space-y-3",children:[fp.map(F=>d("div",{children:[n("div",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider mb-1.5",children:F.category}),n("div",{className:"space-y-0.5",children:F.presets.map(Y=>{const J=!!u[Y.name],O=f===Y.name,B=h.has(Y.name),T=Is(Y);return d("div",{className:"flex items-center gap-2 py-0.5",children:[n("button",{type:"button",onClick:()=>k(Y.name,Y.width,Y.height),className:`w-3.5 h-3.5 rounded-sm border flex items-center justify-center shrink-0 cursor-pointer transition-colors ${J?"bg-[#D7FF63] border-[#D7FF63]":"bg-transparent border-[#555] hover:border-[#888]"}`,children:J&&n("svg",{width:"8",height:"8",viewBox:"0 0 24 24",fill:"none",stroke:"#1e1e1e",strokeWidth:"3.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M20 6L9 17l-5-5"})})}),n(yo,{iconType:T,size:14,className:J?"text-gray-300":"text-gray-600"}),n("span",{className:`text-xs flex-1 ${J?"text-gray-300":"text-gray-500"}`,children:Y.name}),d("span",{className:"text-[10px] text-gray-500 tabular-nums w-[72px] text-right",children:[Y.width," × ",Y.height]}),n("div",{className:"w-[50px] flex justify-center",children:J?n("button",{type:"button",onClick:()=>N(Y.name),className:`p-1 rounded cursor-pointer transition-colors ${B?"text-[#D7FF63] hover:text-[#D7FF63]/70":"text-gray-600 hover:text-gray-400"}`,title:B?"In project screenshots":"Not in project screenshots",children:n(Qc,{open:B})}):n("span",{className:"w-3"})}),n("div",{className:"w-[54px] flex justify-center",children:J?n("button",{type:"button",onClick:()=>A(Y.name),className:`text-[10px] px-1.5 py-0.5 rounded border cursor-pointer transition-colors ${O?"text-[#1e1e1e] bg-[#D7FF63] border-[#D7FF63]":"text-gray-500 bg-transparent border-[#444] hover:border-[#666] hover:text-gray-300"}`,title:O?"Default size":"Set as default",children:O?"★":"☆"}):n("span",{className:"w-3"})})]},Y.name)})})]},F.category)),P.length>0&&d("div",{children:[n("div",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider mb-1.5",children:"Custom"}),n("div",{className:"space-y-0.5",children:P.map(([F,Y])=>{const J=f===F,O=h.has(F),B=Is({name:F,width:Y.width,height:Y.height});return d("div",{className:"flex items-center gap-2 py-0.5",children:[n("div",{className:"w-3.5"}),n(yo,{iconType:B,size:14,className:"text-gray-300"}),n("span",{className:"text-xs text-gray-300 flex-1",children:F}),d("span",{className:"text-[10px] text-gray-500 tabular-nums w-[72px] text-right",children:[Y.width," × ",Y.height]}),n("div",{className:"w-[50px] flex justify-center",children:n("button",{type:"button",onClick:()=>N(F),className:`p-1 rounded cursor-pointer transition-colors ${O?"text-[#D7FF63] hover:text-[#D7FF63]/70":"text-gray-600 hover:text-gray-400"}`,title:O?"In project screenshots":"Not in project screenshots",children:n(Qc,{open:O})})}),n("div",{className:"w-[54px] flex justify-center",children:n("button",{type:"button",onClick:()=>A(F),className:`text-[10px] px-1.5 py-0.5 rounded border cursor-pointer transition-colors ${J?"text-[#1e1e1e] bg-[#D7FF63] border-[#D7FF63]":"text-gray-500 bg-transparent border-[#444] hover:border-[#666] hover:text-gray-300"}`,title:J?"Default size":"Set as default",children:J?"★":"☆"})}),n("button",{type:"button",onClick:()=>M(F),className:"text-gray-600 hover:text-red-400 bg-transparent border-none p-0.5 cursor-pointer transition-colors text-xs leading-none",children:"×"})]},F)})})]}),d("div",{children:[n("div",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider mb-1.5",children:"Add Custom Size"}),d("div",{className:"flex items-center gap-1.5",children:[n("input",{type:"text",value:g,onChange:F=>x(F.target.value),placeholder:"Name",className:"flex-1 min-w-0 px-2 py-1 text-xs bg-[#2a2a2a] border border-[#3d3d3d] rounded text-gray-200 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"}),n("input",{type:"number",value:b,onChange:F=>v(F.target.value),placeholder:"W",className:"w-14 px-2 py-1 text-xs bg-[#2a2a2a] border border-[#3d3d3d] rounded text-gray-200 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"}),n("span",{className:"text-[10px] text-gray-500",children:"×"}),n("input",{type:"number",value:S,onChange:F=>w(F.target.value),placeholder:"H",className:"w-14 px-2 py-1 text-xs bg-[#2a2a2a] border border-[#3d3d3d] rounded text-gray-200 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"}),n("button",{type:"button",onClick:_,className:"text-[10px] text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 cursor-pointer transition-colors font-medium",children:"+ Add"})]})]})]}),d("div",{className:"flex gap-2 pt-2.5",children:[n("button",{type:"button",onClick:$,className:"px-3 py-1 text-[11px] text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer font-medium",children:"Save"}),n("button",{type:"button",onClick:()=>c(!1),className:"px-3 py-1 text-[11px] text-gray-400 bg-transparent border border-[#3d3d3d] rounded-md hover:text-white hover:border-[#555] transition-colors cursor-pointer",children:"Cancel"})]})]})}if(o.length===0)return d("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:[n("div",{className:"text-xs text-gray-500 italic",children:"No screen sizes configured"}),n("button",{type:"button",onClick:C,className:"text-[11px] text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 mt-1.5 cursor-pointer transition-colors font-medium",children:"Edit >"})]});const I=P=>i===P,R=P=>{var F;return!!((F=t||e)!=null&&F[P])};return d("div",{className:"ml-6 mt-1 mb-2 bg-[#222] rounded-lg p-3 border border-[#333]",children:[n("div",{className:"flex flex-wrap gap-1.5",children:o.map(P=>{const F=Is(P);return d("span",{className:"inline-flex items-center gap-1.5 text-xs bg-[#2a2a2a] px-2 py-1 rounded text-gray-300",children:[n(yo,{iconType:F,size:12,className:"text-gray-400"}),P.name,d("span",{className:"text-[10px] text-gray-500",children:[P.width,"×",P.height]}),I(P.name)&&n("span",{className:"text-[10px] text-[#D7FF63]",children:"★"}),R(P.name)&&n("span",{className:"text-[10px] text-[#D7FF63]",title:"Project screenshot size",children:"P"})]},P.name)})}),n("button",{type:"button",onClick:C,className:"text-[11px] text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 mt-2 cursor-pointer transition-colors font-medium",children:"Edit >"})]})}function ek({onBack:e,onSwitchToBuild:t,onSwitchToHistory:r,onNavigateToDesignSystem:s,onNavigateToTechStack:a}){const{revalidate:o}=Dt(),[i,l]=j(null),[c,u]=j(!1),[p,h]=j(null),m=ae(()=>{fetch("/api/editor-roadmap").then(N=>N.json()).then(N=>l(N)).catch(()=>{})},[]);te(()=>{m()},[m]);const f=(i==null?void 0:i.plan.some(N=>N.id==="plan-design-system"&&N.completed))??!1;te(()=>{if(!f){h(null);return}fetch("/api/editor-design-system").then(N=>N.json()).then(N=>{N.exists&&N.content?h(Lo(N.content)):h(null)}).catch(()=>h(null))},[f]);const y=ae(N=>{u(!0),fetch("/api/editor-roadmap",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(N)}).then(A=>A.json()).then(()=>m()).catch(()=>{}).finally(()=>u(!1))},[m]),g=ae((N,A)=>{fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({projectTitle:N,projectDescription:A})}).then(()=>m()).catch(()=>{})},[m]),x=ae((N,A)=>{fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({screenSizes:N,projectScreenSizes:A})}).then(()=>{m(),o()}).catch(()=>{})},[m,o]),b=ae((N,A)=>{if(!i)return;const _=i[N].map(M=>M.id===A?{...M,completed:!M.completed,...M.completed?{completedAt:void 0}:{completedAt:new Date().toISOString()}}:M);l({...i,[N]:_}),y({[N]:_})},[i,y]),v=ae((N,A)=>{if(!i)return;const _={id:`user-${Date.now()}-${Math.random().toString(36).slice(2,6)}`,label:A,completed:!1,userCreated:!0},M=[...i[N],_];l({...i,[N]:M}),y({[N]:M})},[i,y]),S=ae((N,A)=>{if(!i)return;const _=i[N].filter(M=>M.id!==A);l({...i,[N]:_}),y({[N]:_})},[i,y]);if(!i)return n("div",{className:"flex-1 flex items-center justify-center font-['IBM_Plex_Sans']",children:n("span",{className:"text-sm text-gray-500",children:"Loading roadmap..."})});const w=i.plan.filter(N=>N.completed).length,C=i.deploy.filter(N=>N.completed).length,k=i.buildSessionCount===1?"1 working session completed":`${i.buildSessionCount} working sessions completed`;return n("div",{className:"flex-1 overflow-auto font-['IBM_Plex_Sans']",children:d("div",{className:"p-4 space-y-6",children:[d("button",{type:"button",onClick:e,className:"flex items-center gap-1.5 text-xs text-gray-500 hover:text-white bg-transparent border-none p-0 cursor-pointer transition-colors",children:[n("svg",{width:"10",height:"10",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M15 18l-6-6 6-6"})}),"Back to App"]}),n("h2",{className:"text-lg font-medium text-white mt-0 mb-6",children:"Roadmap"}),d("div",{className:"bg-[#2a2a2a] border border-[#3d3d3d] rounded-lg p-4",children:[n(qc,{title:"Plan",completedCount:w,totalCount:i.plan.length}),n("div",{className:"mt-2",children:i.plan.map(N=>d("div",{children:[n(Kc,{todo:N,onToggle:()=>b("plan",N.id),onRemove:N.userCreated?()=>S("plan",N.id):void 0}),N.id==="plan-project-name"&&N.completed&&n(q5,{projectTitle:i.projectTitle,projectDescription:i.projectDescription,onSave:g}),N.id==="plan-tech-stack"&&n(Q5,{techStack:i.techStack,onNavigate:a}),N.id==="plan-design-system"&&N.completed&&p&&n(G5,{designSystem:p,onEdit:s}),N.id==="plan-screen-sizes"&&N.completed&&n(X5,{screenSizes:i.screenSizes,projectScreenSizes:i.projectScreenSizes,defaultScreenSize:i.defaultScreenSize,appFormats:i.appFormats,onSave:x})]},N.id))}),n(Gc,{onAdd:N=>v("plan",N)})]}),d("div",{className:"bg-[#2a2a2a] border border-[#3d3d3d] rounded-lg p-4",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-sm font-medium text-white m-0",children:"Build"}),n("span",{className:"text-xs text-gray-500",children:k})]}),i.featureName&&d("div",{className:"mt-3 flex items-center gap-2",children:[n("span",{className:"text-xs text-gray-400",children:"Active:"}),d("button",{type:"button",onClick:t,className:"text-xs text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 cursor-pointer transition-colors",children:[i.featureName,i.editorStepLabel&&d("span",{className:"text-gray-500 ml-1",children:["— ",i.editorStepLabel]})]})]}),!i.featureName&&i.buildSessionCount===0&&n("p",{className:"text-xs text-gray-500 m-0 mt-2",children:"No working sessions yet. Start building to track progress here."}),!i.featureName&&i.buildSessionCount>0&&i.recentEntries.length===0&&n("p",{className:"text-xs text-gray-500 m-0 mt-2",children:"No active feature. Start a new working session in the Build tab."}),i.recentEntries.length>0&&d("div",{className:"mt-3 space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Recent"}),i.recentEntries.map(N=>d("button",{type:"button",onClick:r,className:"w-full flex items-center gap-2 py-1 px-0 bg-transparent border-none cursor-pointer text-left group",children:[n("span",{className:`${V5[N.type]||"bg-gray-600"} text-white text-[8px] font-bold px-1.5 py-0.5 rounded uppercase tracking-wider shrink-0`,children:N.type}),n("span",{className:"text-xs text-gray-300 group-hover:text-white transition-colors truncate flex-1",children:N.title}),n("span",{className:"text-[10px] text-gray-600 shrink-0",children:K5(N.time)})]},N.time)),i.buildSessionCount>3&&n("button",{type:"button",onClick:r,className:"text-xs text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 pt-1 cursor-pointer transition-colors",children:"View all working session results >"})]})]}),d("div",{className:"bg-[#2a2a2a] border border-[#3d3d3d] rounded-lg p-4",children:[n(qc,{title:"Deploy",completedCount:C,totalCount:i.deploy.length}),n("div",{className:"mt-2",children:i.deploy.map(N=>n(Kc,{todo:N,onToggle:()=>b("deploy",N.id),onRemove:N.userCreated?()=>S("deploy",N.id):void 0},N.id))}),n(Gc,{onAdd:N=>v("deploy",N)})]}),c&&n("span",{className:"text-[10px] text-gray-600",children:"Saving..."})]})})}function tk({color:e,onColorChange:t}){const r=ye(null),s=nk(e.value),a=e.value.startsWith("#");return d("div",{className:"flex flex-col gap-1",children:[n("button",{type:"button",className:"w-full h-10 rounded-md border border-[#444] cursor-pointer relative group",style:{backgroundColor:e.value},onClick:()=>{var o;return a&&((o=r.current)==null?void 0:o.click())},title:`--${e.name}: ${e.value}${e.comment?` (${e.comment})`:""}`,children:a&&n("div",{className:"absolute inset-0 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity bg-black/30 rounded-md",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"white",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),n("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})})}),a&&n("input",{ref:r,type:"color",value:s,onChange:o=>t(e.name,o.target.value),className:"sr-only"}),d("div",{className:"text-[9px] font-mono text-gray-500 truncate",title:`--${e.name}`,children:["--",e.name]}),n("div",{className:"text-[9px] font-mono text-gray-600 truncate",children:e.value})]})}function nk(e){if(!e.startsWith("#"))return"#000000";const t=e.slice(1);return t.length===3?`#${t[0]}${t[0]}${t[1]}${t[1]}${t[2]}${t[2]}`:t.length===6||t.length===8?`#${t.slice(0,6)}`:"#000000"}function rk({group:e,colors:t,onColorChange:r}){const[s,a]=j(!1);return d("div",{className:"mb-4",children:[d("button",{type:"button",onClick:()=>a(!s),className:"flex items-center gap-1.5 text-[10px] font-semibold text-gray-400 uppercase tracking-wider mb-2 bg-transparent border-none p-0 cursor-pointer hover:text-gray-300 transition-colors",children:[n("svg",{width:"8",height:"8",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeLinejoin:"round",className:`transition-transform ${s?"":"rotate-90"}`,children:n("path",{d:"M9 18l6-6-6-6"})}),e,d("span",{className:"text-gray-600 font-normal",children:["(",t.length,")"]})]}),!s&&n("div",{className:"grid grid-cols-5 gap-2",children:t.map(o=>n(tk,{color:o,onColorChange:r},`${o.group}-${o.name}`))})]})}function sk({designSystem:e,rawMarkdown:t,onSave:r}){const s=e.colors.reduce((c,u)=>(c[u.group]||(c[u.group]=[]),c[u.group].push(u),c),{}),a=ae((c,u)=>{const p=U5(t,c,u);r(p)},[t,r]),[o,i]=j(e.fonts.length>0?e.fonts.join(", "):""),l=ae(()=>{if(!o.trim())return;const c=W5(t,`'${o.trim()}', sans-serif`);r(c)},[t,o,r]);return d("div",{className:"space-y-6",children:[Object.keys(s).length>0&&d("div",{children:[n("h4",{className:"text-xs font-medium text-white mb-3",children:"Colors"}),Object.entries(s).map(([c,u])=>n(rk,{group:c,colors:u,onColorChange:a},c))]}),e.fonts.length>0&&d("div",{children:[n("h4",{className:"text-xs font-medium text-white mb-3",children:"Typography"}),d("div",{className:"flex items-center gap-2 mb-3",children:[n("label",{className:"text-[10px] text-gray-500 uppercase tracking-wider shrink-0",children:"Font"}),n("input",{type:"text",value:o,onChange:c=>i(c.target.value),onBlur:l,onKeyDown:c=>c.key==="Enter"&&l(),className:"flex-1 px-2 py-1 text-xs bg-[#222] border border-[#3d3d3d] rounded text-gray-300 outline-none focus:border-[#D7FF63]/50"})]}),e.typographyScale.length>0&&n("div",{className:"bg-[#222] rounded border border-[#333] overflow-hidden",children:d("table",{className:"w-full",children:[n("thead",{children:d("tr",{className:"border-b border-[#333]",children:[n("th",{className:"text-left px-3 py-1.5 text-[9px] font-semibold text-gray-500 uppercase tracking-wider",children:"Style"}),n("th",{className:"text-left px-3 py-1.5 text-[9px] font-semibold text-gray-500 uppercase tracking-wider",children:"Size"}),n("th",{className:"text-left px-3 py-1.5 text-[9px] font-semibold text-gray-500 uppercase tracking-wider",children:"Weight"})]})}),n("tbody",{children:e.typographyScale.map(c=>d("tr",{className:"border-b border-[#333] last:border-b-0",children:[n("td",{className:"px-3 py-1.5 text-xs text-gray-300",children:c.style}),n("td",{className:"px-3 py-1.5 text-xs font-mono text-gray-400",children:c.size}),n("td",{className:"px-3 py-1.5 text-xs font-mono text-gray-400",children:c.weight})]},c.style))})]})})]}),e.radiusTokens.length>0&&d("div",{children:[n("h4",{className:"text-xs font-medium text-white mb-3",children:"Border Radius"}),n("div",{className:"flex gap-3 flex-wrap",children:e.radiusTokens.map(c=>d("div",{className:"flex flex-col items-center gap-1",children:[n("div",{className:"w-10 h-10 bg-[#D7FF63]/20 border border-[#D7FF63]/40",style:{borderRadius:c.value}}),d("div",{className:"text-[9px] font-mono text-gray-500",children:["--",c.name]}),n("div",{className:"text-[9px] font-mono text-gray-600",children:c.value})]},c.name))})]})]})}function ak({content:e,onSave:t}){const[r,s]=j(e),[a,o]=j(!1);te(()=>{s(e),o(!1)},[e]);const i=ae(()=>{t(r),o(!1)},[r,t]);return d("div",{className:"flex flex-col gap-2 h-full",children:[n("textarea",{value:r,onChange:l=>{s(l.target.value),o(!0)},className:"flex-1 min-h-[400px] p-3 text-xs font-mono bg-[#1a1a1a] border border-[#3d3d3d] rounded-lg text-gray-300 outline-none focus:border-[#D7FF63]/50 resize-none leading-relaxed",spellCheck:!1}),d("div",{className:"flex items-center gap-2",children:[n("button",{type:"button",onClick:i,disabled:!a,className:`px-4 py-1.5 text-xs rounded-md font-medium transition-colors cursor-pointer ${a?"text-[#1e1e1e] bg-[#D7FF63] hover:bg-[#D7FF63]/80":"text-gray-500 bg-[#333] cursor-not-allowed"}`,children:"Save"}),a&&n("span",{className:"text-[10px] text-gray-500",children:"Unsaved changes"})]})]})}function ok({onClose:e}){return n("div",{className:"border border-[#3d3d3d] rounded-lg overflow-hidden",children:n(cn,{prompt:`# Edit Design System
|
|
684
|
-
|
|
685
|
-
You are helping the user edit their design system file at \`.codeyam/design-system.md\`.
|
|
686
|
-
|
|
687
|
-
Read the current design system file first, then ask the user what they'd like to change. Common changes include:
|
|
688
|
-
- Changing colors (background, text, accent colors)
|
|
689
|
-
- Switching fonts or typography scale
|
|
690
|
-
- Adjusting spacing, radius, or shadow values
|
|
691
|
-
- Adding or removing theme modes (light/dark)
|
|
692
|
-
- Changing the overall aesthetic (minimal, bold, editorial, etc.)
|
|
693
|
-
|
|
694
|
-
After making changes, briefly summarize what was updated.`,height:500,onClose:e})})}function ik({onBack:e,onPreviewShowcase:t}){const[r,s]=j("visual"),[a,o]=j(null),[i,l]=j(null),[c,u]=j(!1),[p,h]=j(!1),m=ae(()=>{fetch("/api/editor-design-system").then(g=>g.json()).then(g=>{g.exists&&g.content&&(o(g.content),l(Lo(g.content)))}).catch(()=>{})},[]);te(()=>{m()},[m]),te(()=>{if(r!=="claude"||!p)return;const g=setInterval(m,3e3);return()=>clearInterval(g)},[r,p,m]);const f=ae(g=>{u(!0),o(g),l(Lo(g)),fetch("/api/editor-design-system",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({content:g})}).then(()=>{t()}).catch(()=>{}).finally(()=>u(!1))},[t]);if(!a||!i)return n("div",{className:"flex-1 flex items-center justify-center font-['IBM_Plex_Sans']",children:n("span",{className:"text-sm text-gray-500",children:"Loading design system..."})});const y=[{id:"visual",label:"Visual"},{id:"markdown",label:"Markdown"},{id:"claude",label:"Claude"}];return n("div",{className:"flex-1 overflow-auto font-['IBM_Plex_Sans']",children:d("div",{className:"p-4 space-y-4",children:[d("button",{type:"button",onClick:e,className:"flex items-center gap-1.5 text-xs text-gray-500 hover:text-white bg-transparent border-none p-0 cursor-pointer transition-colors",children:[n("svg",{width:"10",height:"10",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M15 18l-6-6 6-6"})}),"Back to Roadmap"]}),d("div",{className:"flex items-center justify-between",children:[d("div",{children:[n("h2",{className:"text-lg font-medium text-white m-0",children:i.name}),i.description&&n("p",{className:"text-xs text-gray-500 m-0 mt-1 max-w-md",children:i.description})]}),d("button",{type:"button",onClick:t,className:"flex items-center gap-1.5 px-3 py-1.5 text-xs text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer font-medium",children:[d("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),n("circle",{cx:"12",cy:"12",r:"3"})]}),"Preview Components"]})]}),n("div",{className:"flex gap-1 bg-[#222] rounded-lg p-0.5 w-fit border border-[#333]",children:y.map(g=>n("button",{type:"button",onClick:()=>{s(g.id),g.id==="claude"&&h(!0)},className:`px-3 py-1 text-xs rounded-md transition-colors cursor-pointer border-none ${r===g.id?"bg-[#3a3a3a] text-white font-medium":"bg-transparent text-gray-500 hover:text-gray-300"}`,children:g.label},g.id))}),d("div",{className:"bg-[#2a2a2a] border border-[#3d3d3d] rounded-lg p-4",children:[r==="visual"&&n(sk,{designSystem:i,rawMarkdown:a,onSave:f}),r==="markdown"&&n(ak,{content:a,onSave:f}),r==="claude"&&p&&n(ok,{onClose:()=>{h(!1),m()}}),r==="claude"&&!p&&d("div",{className:"flex flex-col items-center justify-center py-8 gap-3",children:[n("p",{className:"text-xs text-gray-500",children:"Use Claude to make design system changes with natural language."}),n("button",{type:"button",onClick:()=>h(!0),className:"px-4 py-2 text-xs text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer font-medium",children:"Start Claude Chat"})]})]}),c&&n("span",{className:"text-[10px] text-gray-600",children:"Saving..."})]})})}const As=[{key:"languages",label:"Languages"},{key:"frameworks",label:"Frameworks"},{key:"databases",label:"Databases"},{key:"services",label:"External Services"},{key:"libraries",label:"Key Libraries"},{key:"infrastructure",label:"Infrastructure"}];function lk({onBack:e}){const[t,r]=j(null),[s,a]=j(!1),[o,i]=j(!1),[l,c]=j({}),[u,p]=j(!1),h=typeof window<"u"?window.location.origin:"",m=ae(()=>{fetch("/api/editor-project-info").then(k=>k.json()).then(k=>{r(k.techStack||null),a(!0)}).catch(()=>a(!0))},[]);te(()=>{m()},[m]);const f=ae(k=>{fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({techStack:k})}).then(()=>m()).catch(()=>{})},[m]),y=()=>{c(t?JSON.parse(JSON.stringify(t)):{}),i(!0)},g=()=>{const k={};for(const{key:N}of As){const A=l[N];A&&A.length>0&&(k[N]=A.filter(_=>_.name.trim()!==""))}f(k),i(!1)},x=k=>{c(N=>({...N,[k]:[...N[k]||[],{name:"",url:"",description:""}]}))},b=(k,N)=>{c(A=>({...A,[k]:(A[k]||[]).filter((_,M)=>M!==N)}))},v=(k,N,A,_)=>{c(M=>({...M,[k]:(M[k]||[]).map(($,I)=>I===N?{...$,[A]:_}:$)}))},S=(k,N,A)=>{const _=A.split(",").map(M=>M.trim()).filter(Boolean);c(M=>({...M,[k]:(M[k]||[]).map(($,I)=>I===N?{...$,envKeys:_}:$)}))},w=le(()=>`# Detect and Set Up Tech Stack
|
|
695
|
-
|
|
696
|
-
You are helping the user configure their project's tech stack in CodeYam.
|
|
697
|
-
|
|
698
|
-
## Instructions
|
|
699
|
-
|
|
700
|
-
1. Read \`package.json\` to find all dependencies and devDependencies
|
|
701
|
-
2. Check for framework config files: \`next.config.js\`, \`next.config.ts\`, \`tailwind.config.js\`, \`prisma/schema.prisma\`, \`tsconfig.json\`, \`vite.config.ts\`, etc.
|
|
702
|
-
3. Check \`.env\`, \`.env.example\`, \`.env.local\` for service references (e.g., STRIPE_SECRET_KEY, DATABASE_URL, OPENAI_API_KEY)
|
|
703
|
-
4. Categorize everything into: languages, frameworks, databases, services, libraries, infrastructure
|
|
704
|
-
|
|
705
|
-
## Tech Stack Categories
|
|
706
|
-
|
|
707
|
-
- **languages**: Programming languages (TypeScript, JavaScript, Python, etc.)
|
|
708
|
-
- **frameworks**: Application frameworks (Next.js, React, Express, etc.)
|
|
709
|
-
- **databases**: Database systems (PostgreSQL, SQLite, MongoDB, etc.)
|
|
710
|
-
- **services**: External services/APIs (Stripe, Auth0, SendGrid, AWS S3, etc.) — include \`url\` and \`envKeys\` for each
|
|
711
|
-
- **libraries**: Key libraries beyond the framework (Prisma, Tailwind CSS, Zod, etc.)
|
|
712
|
-
- **infrastructure**: Deployment/infrastructure tools (Vercel, Docker, etc.)
|
|
713
|
-
|
|
714
|
-
## Output Format
|
|
715
|
-
|
|
716
|
-
After scanning, POST the tech stack:
|
|
717
|
-
|
|
718
|
-
\`\`\`bash
|
|
719
|
-
curl -s -X POST ${h}/api/editor-project-info \\
|
|
720
|
-
-H "Content-Type: application/json" \\
|
|
721
|
-
-d '{"techStack":{"languages":[{"name":"TypeScript","url":"https://typescriptlang.org","description":"Statically typed JavaScript superset","version":"5"}],"frameworks":[{"name":"Next.js","url":"https://nextjs.org","description":"Full-stack React framework with SSR and API routes","version":"15"}],"databases":[{"name":"SQLite","url":"https://sqlite.org","description":"Embedded relational database"}],"services":[{"name":"Stripe","url":"https://stripe.com","description":"Payment processing and billing","envKeys":["STRIPE_SECRET_KEY","STRIPE_PUBLISHABLE_KEY"]}],"libraries":[{"name":"Prisma","url":"https://prisma.io","description":"Type-safe database ORM and query builder","version":"7"}],"infrastructure":[]}}'
|
|
722
|
-
\`\`\`
|
|
723
|
-
|
|
724
|
-
Replace the example values with what you actually detect. For each item:
|
|
725
|
-
- \`name\` (required): Technology name
|
|
726
|
-
- \`url\` (required): Link to homepage or docs
|
|
727
|
-
- \`description\` (required): Brief description of what it does or how it's used in this project
|
|
728
|
-
- \`version\` (optional): Version number
|
|
729
|
-
- \`envKeys\` (optional): Array of environment variable names associated with this tech
|
|
730
|
-
|
|
731
|
-
Omit empty categories. After posting, briefly summarize what was detected.`,[h]),C=t&&As.some(({key:k})=>t[k]&&t[k].length>0);return n("div",{className:"flex-1 overflow-auto font-['IBM_Plex_Sans']",children:d("div",{className:"p-4 space-y-4",children:[d("button",{type:"button",onClick:e,className:"flex items-center gap-1.5 text-xs text-gray-500 hover:text-white bg-transparent border-none p-0 cursor-pointer transition-colors",children:[n("svg",{width:"10",height:"10",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M15 18l-6-6 6-6"})}),"Back to Roadmap"]}),d("div",{className:"flex items-center justify-between",children:[n("h2",{className:"text-lg font-medium text-white m-0",children:"Tech Stack"}),n("div",{className:"flex items-center gap-2",children:s&&!o&&!u&&(C?n("button",{type:"button",onClick:y,className:"px-3 py-1.5 text-[11px] font-medium text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer",children:"Edit"}):n("button",{type:"button",onClick:()=>p(!0),className:"px-3 py-1.5 text-[11px] font-medium text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer",children:"Set up with Claude"}))})]}),u&&n("div",{className:"border border-[#3d3d3d] rounded-lg overflow-hidden",children:n(cn,{prompt:w,height:400,onClose:()=>{p(!1),m()}})}),o&&d("div",{className:"space-y-4",children:[n("button",{type:"button",onClick:()=>{i(!1),p(!0)},className:"px-3 py-1.5 text-[11px] font-medium text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer",children:"Re-detect with Claude"}),As.map(({key:k,label:N})=>{const A=l[k]||[];return d("div",{children:[d("div",{className:"flex items-center justify-between mb-2",children:[n("label",{className:"text-[11px] font-semibold text-gray-500 uppercase tracking-wider",children:N}),n("button",{type:"button",onClick:()=>x(k),className:"text-[11px] text-[#D7FF63] hover:text-[#D7FF63]/70 bg-transparent border-none p-0 cursor-pointer transition-colors",children:"+ Add"})]}),A.map((_,M)=>d("div",{className:"bg-[#2a2a2a] border border-[#3d3d3d] rounded-lg p-2.5 mb-2 space-y-1.5",children:[d("div",{className:"flex items-center gap-1.5",children:[n("input",{type:"text",value:_.name,onChange:$=>v(k,M,"name",$.target.value),placeholder:"Name *",className:"flex-1 min-w-0 px-2 py-1 text-xs bg-[#1e1e1e] border border-[#3d3d3d] rounded text-gray-200 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors font-medium"}),n("input",{type:"text",value:_.version||"",onChange:$=>v(k,M,"version",$.target.value),placeholder:"Version",className:"w-20 px-2 py-1 text-xs bg-[#1e1e1e] border border-[#3d3d3d] rounded text-gray-200 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"}),n("button",{type:"button",onClick:()=>b(k,M),className:"text-gray-600 hover:text-red-400 bg-transparent border-none p-0.5 cursor-pointer transition-colors text-xs leading-none",children:"×"})]}),n("input",{type:"text",value:_.url||"",onChange:$=>v(k,M,"url",$.target.value),placeholder:"URL * (e.g. https://stripe.com)",className:"w-full px-2 py-1 text-[11px] bg-[#1e1e1e] border border-[#3d3d3d] rounded text-gray-300 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"}),n("input",{type:"text",value:_.description||"",onChange:$=>v(k,M,"description",$.target.value),placeholder:"Description * (e.g. Payment processing and billing)",className:"w-full px-2 py-1 text-[11px] bg-[#1e1e1e] border border-[#3d3d3d] rounded text-gray-300 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors"}),n("input",{type:"text",value:(_.envKeys||[]).join(", "),onChange:$=>S(k,M,$.target.value),placeholder:"ENV_KEYS (comma-separated, e.g. STRIPE_SECRET_KEY, STRIPE_PUBLISHABLE_KEY)",className:"w-full px-2 py-1 text-[10px] bg-[#1e1e1e] border border-[#3d3d3d] rounded text-gray-400 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors font-mono"})]},M)),A.length===0&&n("div",{className:"text-[11px] text-gray-600 italic py-1",children:"No items"})]},k)}),d("div",{className:"flex gap-2 pt-1",children:[n("button",{type:"button",onClick:g,className:"px-4 py-1.5 text-[11px] text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer font-medium",children:"Save"}),n("button",{type:"button",onClick:()=>i(!1),className:"px-4 py-1.5 text-[11px] text-gray-400 bg-transparent border border-[#3d3d3d] rounded-md hover:text-white hover:border-[#555] transition-colors cursor-pointer",children:"Cancel"})]})]}),!o&&!u&&n(we,{children:C?n("div",{className:"space-y-4",children:As.map(({key:k,label:N})=>{const A=t[k];return!A||A.length===0?null:d("div",{children:[n("div",{className:"text-[11px] font-semibold text-gray-500 uppercase tracking-wider mb-2",children:N}),n("div",{className:"space-y-2",children:A.map((_,M)=>d("div",{className:"bg-[#2a2a2a] rounded-lg px-3 py-2.5",children:[d("div",{className:"flex items-center gap-2",children:[_.url?n("a",{href:_.url,target:"_blank",rel:"noopener noreferrer",className:"text-sm font-medium text-gray-200 hover:text-[#D7FF63] transition-colors",children:_.name}):n("span",{className:"text-sm font-medium text-gray-200",children:_.name}),_.version&&d("span",{className:"text-[11px] text-gray-500",children:["v",_.version]}),_.url&&n("a",{href:_.url,target:"_blank",rel:"noopener noreferrer",className:"text-[11px] text-gray-600 hover:text-gray-400 transition-colors truncate",children:_.url.replace(/^https?:\/\//,"")})]}),_.description&&n("div",{className:"text-xs text-gray-400 mt-1",children:_.description}),_.envKeys&&_.envKeys.length>0&&n("div",{className:"flex flex-wrap gap-1 mt-1.5",children:_.envKeys.map(($,I)=>n("span",{className:"text-[10px] text-[#D7FF63]/60 bg-[#D7FF63]/10 px-1.5 py-0.5 rounded font-mono",children:$},I))})]},M))})]},k)})}):n("div",{className:"text-xs text-gray-500 italic py-4",children:"No tech stack configured yet. Use the buttons above to set up your project's tech stack."})})]})})}function ck({hasProject:e,scenarios:t,analyzedEntities:r,allEntities:s=[],glossaryFunctions:a=[],cachedTestResults:o={},glossaryEntries:i=[],projectRoot:l,activeScenarioId:c,onScenarioSelect:u,onAnalyzedScenarioSelect:p,onSwitchToBuild:h,onSwitchToHistory:m,zoomComponent:f,focusedEntity:y,onZoomChange:g,entityImports:x,pageFilePaths:b={},projectTitle:v,projectDescription:S,migrationMode:w="none",migrationState:C,onStartMigration:k,breadcrumbItems:N=[],onReseedPreview:A,isAdmin:_=!1,roadmapView:M=!1,onRoadmapViewChange:$,designSystemView:I=!1,onDesignSystemViewChange:R,onPreviewDesignSystem:P,techStackView:F=!1,onTechStackViewChange:Y}){const{pageGroups:J,componentGroups:O}=le(()=>Hi(t),[t]),B=le(()=>bp(J,O),[J,O]),T=le(()=>new Set(r.map(ce=>ce.sha)),[r]),D=le(()=>f5(x||{}),[x]),E=ae(ce=>g5(ce,T,s,D),[T,s,D]),W=le(()=>{const ce=new Map;for(const Ce of s)ce.set(Ce.sha,Ce.name);return ce},[s]),K=le(()=>y5(J,O,B,E),[J,O,B,E]),Z=le(()=>r.filter(ce=>ce.entityType==="visual").sort((ce,Ce)=>ce.name.localeCompare(Ce.name)),[r]),[q,U]=j(()=>{try{return localStorage.getItem("codeyam-app-banner-dismissed")==="true"}catch{return!1}}),L=ae(()=>{U(!0);try{localStorage.setItem("codeyam-app-banner-dismissed","true")}catch{}},[]),[z,V]=j(""),re=ye(null),ue=ye(0),be=ae(()=>{re.current&&(ue.current=re.current.scrollTop)},[]);te(()=>{re.current&&ue.current>0&&(re.current.scrollTop=ue.current)});const ie=(y==null?void 0:y.sha)??"overview";if(!e)return n("div",{className:"flex-1 flex items-center justify-center font-['IBM_Plex_Sans']",children:d("div",{className:"flex flex-col items-center gap-4",children:[n("h2",{className:"text-lg font-medium text-white m-0",children:"Ready to build something?"}),n("button",{onClick:h,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Start Building"})]})});if(w==="candidate")return n("div",{className:"flex-1 flex items-center justify-center font-['IBM_Plex_Sans']",children:d("div",{className:"flex flex-col items-center gap-5 px-8 text-center max-w-[420px]",children:[n("h2",{className:"text-lg font-medium text-white m-0",children:"Migrate Your Project"}),n("p",{className:"text-sm text-gray-400 m-0 leading-relaxed",children:"It looks like you have an existing project. Claude can survey your codebase and systematically migrate it — deconstructing pages into clean components, extracting functions with tests, and creating scenarios. One page per session."}),n("button",{onClick:k,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Get Started"}),n("button",{onClick:h,className:"text-xs text-gray-500 hover:text-gray-300 bg-transparent border-none p-0 cursor-pointer underline",children:"Skip — build a new feature instead"})]})});if(w==="active"&&C){const ce=C.pages||[],Ce=ce.filter(Q=>Q.status==="complete").length,Ae=ce.length,_e=Ae>0?Math.round(Ce/Ae*100):0;return d("div",{className:"flex-1 flex flex-col overflow-auto p-4 font-['IBM_Plex_Sans']",children:[n("h2",{className:"text-lg font-medium text-white m-0 mb-3",children:"Project Migration"}),d("div",{className:"mb-4",children:[n("div",{className:"flex items-center gap-2 mb-1",children:d("span",{className:"text-xs text-gray-400",children:[Ce,"/",Ae," pages (",_e,"%)"]})}),n("div",{className:"w-full h-1.5 bg-[#2d2d2d] rounded-full overflow-hidden",children:n("div",{className:"h-full bg-[#005c75] rounded-full transition-all",style:{width:`${_e}%`}})})]}),n("div",{className:"space-y-1.5",children:ce.map((Q,xe)=>{const oe=Q.status==="complete"?"✓":Q.status==="in-progress"?"→":"○",se=Q.status==="complete"?"text-green-400":Q.status==="in-progress"?"text-cyan-400":"text-gray-600";return d("div",{className:"flex items-center gap-2",children:[n("span",{className:`text-xs ${se} w-3 text-center`,children:oe}),n("span",{className:`text-xs ${Q.status==="in-progress"?"text-white font-medium":Q.status==="complete"?"text-gray-400":"text-gray-600"}`,children:Q.name}),n("span",{className:"text-[10px] text-gray-600",children:Q.route}),Q.status==="complete"&&d("span",{className:"text-[10px] text-gray-600",children:[(Q.extractedComponents||[]).length,"c"," ",(Q.extractedFunctions||[]).length,"f"," ",Q.scenarioCount||0,"s"]})]},xe)})}),(C.sharedComponents||[]).length>0&&d("div",{className:"mt-4",children:[n("h3",{className:"text-xs font-medium text-gray-400 mb-1.5",children:"Shared Components"}),(C.sharedComponents||[]).map((Q,xe)=>d("div",{className:"text-[10px] text-gray-500 mb-0.5",children:[Q.name," ",d("span",{className:"text-gray-600",children:["— used in: ",(Q.usedInPages||[]).join(", ")]})]},xe))]}),n("div",{className:"mt-4",children:n("button",{onClick:h,className:"px-4 py-2 bg-[#005c75] text-white text-xs font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Continue in Chat"})})]})}return t.length>0||Z.length>0?y?n(Sp,{focusedEntity:y,breadcrumbItems:N,onZoomChange:g,projectRoot:l,scenarios:t,analyzedEntities:r,activeScenarioId:c,onScenarioSelect:u,onAnalyzedScenarioSelect:p,onSwitchToBuild:h,entityImports:x,glossaryFunctions:a,cachedTestResults:o,glossaryEntries:i,entityShaMap:B,componentGroups:O,visualEntities:Z,isEntityComplete:E,onReseedPreview:A}):F?n(lk,{onBack:()=>{Y==null||Y(!1),$==null||$(!0)}}):I?n(ik,{onBack:()=>{R==null||R(!1),$==null||$(!0)},onPreviewShowcase:()=>P==null?void 0:P()}):_&&M?n(ek,{onBack:()=>$==null?void 0:$(!1),onSwitchToBuild:h,onSwitchToHistory:m,onNavigateToDesignSystem:()=>{$==null||$(!1),R==null||R(!0)},onNavigateToTechStack:()=>{$==null||$(!1),Y==null||Y(!0)}}):n("div",{ref:re,onScroll:be,className:"flex-1 overflow-auto font-['IBM_Plex_Sans']",children:d("div",{className:"p-4 space-y-4 flex flex-col gap-12",children:[K.length>1&&n(v5,{brokenEntities:K}),!q&&d("div",{className:"relative border border-[#2e7d32]/40 bg-cybg rounded-lg p-4 pr-10",children:[n("button",{onClick:L,className:"absolute top-3 right-3 text-[#D7FF63] hover:text-white bg-transparent border-none cursor-pointer p-0.5",title:"Dismiss",children:n("svg",{width:"14",height:"14",viewBox:"0 0 12 12",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",children:n("path",{d:"M2 2l8 8M10 2l-8 8"})})}),n("p",{className:"text-sm text-white font-medium m-0 leading-snug",children:"These are all the pages in your project."}),d("p",{className:"text-sm text-gray-400 m-0 leading-snug mt-0.5",children:["(1) Select a scenario below and switch to"," ",n("button",{type:"button",onClick:h,className:"underline text-[#D7FF63] bg-transparent border-none cursor-pointer p-0 text-sm inline hover:text-[#D7FF63]/70 transition-colors",children:"build"})," ","to change or enhance an existing page."]}),n("p",{className:"text-sm text-gray-400 m-0 leading-snug mt-0.5",children:"(2) Select a page to see all of its sub-components and edit scenarios."})]}),_&&n("div",{className:"mb-4",children:n(D5,{onNavigateToRoadmap:()=>$==null?void 0:$(!0),onSwitchToBuild:h})}),J.size>0&&d("div",{children:[d("div",{className:"flex items-center gap-3 font-['IBM_Plex_Mono']",children:[n("span",{className:"text-xs font-bold text-gray-400 uppercase tracking-wider shrink-0",children:"Pages"}),n("div",{className:"flex-1"}),d("div",{className:"relative",style:{width:170},children:[d("svg",{className:"absolute left-3 top-1/2 -translate-y-1/2 text-gray-500",width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"11",cy:"11",r:"8"}),n("path",{d:"M21 21l-4.35-4.35"})]}),n("input",{type:"text",placeholder:"SEARCH...",value:z,onChange:ce=>V(ce.target.value),className:"w-full pl-9 pr-3 py-2 text-xs bg-[#2a2a2a] border border-[#3d3d3d] rounded-md text-gray-300 placeholder-gray-600 outline-none focus:border-[#D7FF63]/50 transition-colors tracking-wider"})]}),d("button",{onClick:h,className:"flex items-center gap-1.5 px-4 py-2 text-xs font-semibold text-[#1e1e1e] bg-[#D7FF63] rounded-md hover:bg-[#D7FF63]/80 transition-colors cursor-pointer shrink-0 uppercase tracking-wider",children:[n("span",{children:"+"})," New Page"]})]}),n("div",{className:"border-b border-[#2d2d2d] mt-3"}),[...J.entries()].sort(([ce],[Ce])=>ce==="Home"?-1:Ce==="Home"?1:ce.localeCompare(Ce)).filter(([ce])=>{if(!z.trim())return!0;const Ce=B.get(ce);return((Ce?W.get(Ce):void 0)||ce).toLowerCase().includes(z.trim().toLowerCase())}).map(([ce,Ce])=>{const Ae=Ce.some(_e=>_e.id===c);return n("div",{className:"mt-2",children:B.has(ce)&&E(B.get(ce))?d(we,{children:[n("div",{className:"flex items-center gap-1.5 py-1",children:d("button",{onClick:()=>g(ce,B.get(ce)),className:`flex items-center gap-1.5 text-sm font-normal cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0 ${Ae?"text-[#D7FF63]":"text-gray-300"}`,children:[(()=>{const _e=B.get(ce);return(_e?W.get(_e):void 0)||ce})(),d("span",{className:`font-normal text-sm ${Ae?"text-[#D7FF63]/60":"text-gray-500"}`,children:["(",Ce.length,")"]}),n("svg",{className:Ae?"text-[#D7FF63]/60":"text-gray-500",width:"10",height:"10",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M9 18l6-6-6-6"})})]})}),n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:on(Ce).map(({scenario:_e,dimensionLabel:Q,screenshotPath:xe,key:oe})=>n(Fs,{scenarioId:_e.id,screenshotPath:xe,updatedAt:_e.updatedAt,hasScreenshot:!!xe,name:_e.name,dimensionLabel:Q,isActive:_e.id===c,onSelect:()=>u(_e,Q??void 0)},oe))})]}):d("div",{className:"py-2",children:[n("span",{className:"text-sm font-normal text-gray-500",children:(()=>{const _e=B.get(ce);return _e&&W.get(_e)||ce})()}),d("div",{className:"flex items-center gap-2 mt-1.5",children:[d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#E0D400",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",className:"shrink-0",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})]}),n("p",{className:"text-xs text-[#E0D400]/80 m-0 leading-relaxed",children:"Data missing for this page."}),n(Np,{name:ce,scenarios:Ce,reason:B.has(ce)?"incomplete":"missing"})]})]})},ce)})]})]})},ie):n("div",{className:"flex-1 flex items-center justify-center font-['IBM_Plex_Sans']",children:d("div",{className:"flex flex-col items-center gap-4 px-8 text-center",children:[v?d(we,{children:[n("h2",{className:"text-lg font-medium text-white m-0",children:v}),S&&n("p",{className:"text-sm text-gray-400 m-0 leading-relaxed",children:S})]}):n("h2",{className:"text-lg font-medium text-white m-0",children:"Your project is ready"}),n("p",{className:"text-sm text-gray-400 m-0 leading-relaxed",children:"Describe what you want to build in the Chat and your pages and components will appear here."}),n("button",{onClick:h,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Start Building"})]})})}const Zc=[{key:"app",label:"App"},{key:"build",label:"Build"},{key:"data",label:"Structure"},{key:"history",label:"History"}],dk=()=>n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:"text-[#8E8E8E] shrink-0",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})});function uk({activeTab:e,onTabChange:t,buildIdle:r,projectTitle:s,breadcrumbItems:a,onBreadcrumbNavigate:o}){const[i,l]=j(!1),c=ye(null);te(()=>{if(!i)return;const p=h=>{c.current&&!c.current.contains(h.target)&&l(!1)};return document.addEventListener("mousedown",p),()=>document.removeEventListener("mousedown",p)},[i]);const u=a&&a.length>0;return d("div",{className:"shrink-0 z-20 @container",children:[d("div",{className:"bg-black h-10 flex items-center px-4 gap-4",children:[d("div",{className:"flex items-center gap-3 min-w-0",children:[d("div",{className:"flex items-center gap-2 shrink-0",children:[n("img",{src:na,alt:"CodeYam",className:"h-5 shrink-0"}),n("span",{className:"text-sm font-medium text-white whitespace-nowrap hidden @min-[500px]:inline",children:"CodeYam Editor"})]}),n("span",{className:"text-[#8E8E8E] text-sm shrink-0",children:"/"}),n("div",{className:"hidden @min-[350px]:flex items-center gap-1",children:Zc.map(p=>d("button",{onClick:()=>t(p.key),className:`px-2.5 py-2.5 text-sm transition-colors cursor-pointer border-b ${e===p.key?"text-[#D7FF63] border-[#D7FF63] font-medium":"text-[#8E8E8E] border-transparent hover:text-white font-light"}`,children:[p.label,p.key==="build"&&r&&e!=="build"&&n("span",{className:"ml-1 inline-block w-1.5 h-1.5 rounded-full bg-amber-400 animate-pulse"})]},p.key))})]}),n("div",{className:"flex-1"}),n("button",{onClick:()=>t("settings"),className:`hidden @min-[350px]:block p-1.5 rounded-md transition-colors cursor-pointer ${e==="settings"?"text-[#D7FF63]":"text-[#8E8E8E] hover:text-white"}`,title:"Settings",children:d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"3"}),n("path",{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z"})]})}),d("div",{className:"@min-[350px]:hidden relative",ref:c,children:[n("button",{onClick:()=>l(!i),className:"p-1.5 rounded-md transition-colors cursor-pointer text-[#8E8E8E] hover:text-white",title:"Menu",children:d("svg",{width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",children:[n("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n("line",{x1:"3",y1:"12",x2:"21",y2:"12"}),n("line",{x1:"3",y1:"18",x2:"21",y2:"18"})]})}),i&&d("div",{className:"absolute right-0 top-full mt-1 bg-[#2d2d2d] border border-[#3d3d3d] rounded-lg shadow-lg py-1 min-w-[140px] z-50",children:[Zc.map(p=>d("button",{onClick:()=>{t(p.key),l(!1)},className:`w-full text-left px-4 py-2 text-sm transition-colors cursor-pointer bg-transparent border-none ${e===p.key?"text-[#D7FF63]":"text-[#8E8E8E] hover:text-white hover:bg-[#3d3d3d]"}`,children:[p.label,p.key==="build"&&r&&e!=="build"&&n("span",{className:"ml-1 inline-block w-1.5 h-1.5 rounded-full bg-amber-400 animate-pulse"})]},p.key)),n("div",{className:"border-t border-[#3d3d3d] my-1"}),n("button",{onClick:()=>{t("settings"),l(!1)},className:`w-full text-left px-4 py-2 text-sm transition-colors cursor-pointer bg-transparent border-none ${e==="settings"?"text-[#D7FF63]":"text-[#8E8E8E] hover:text-white hover:bg-[#3d3d3d]"}`,children:"Settings"})]})]})]}),n("div",{className:`bg-[#161616] h-8 flex items-center px-4 border-b border-[#2d2d2d]${e==="build"?" hidden":""}`,children:n("nav",{className:"flex items-center gap-2 text-sm min-w-0",children:u?d(we,{children:[n("button",{type:"button",onClick:()=>o==null?void 0:o(),className:"text-[#8E8E8E] hover:text-white transition-colors bg-transparent border-none p-0 cursor-pointer shrink-0",children:s||"Untitled Project"}),a.slice(1).map((p,h)=>{const m=h===a.length-2;return d("span",{className:"flex items-center gap-2 min-w-0",children:[n(dk,{}),m?n("span",{className:"text-white truncate",children:p.name}):n("button",{type:"button",onClick:()=>o==null?void 0:o(p.componentName,p.entitySha),className:"text-[#8E8E8E] hover:text-white transition-colors bg-transparent border-none p-0 cursor-pointer truncate",children:p.name})]},p.componentName||p.name)})]}):n("span",{className:"text-[#8E8E8E]",children:s||"Untitled Project"})})})]})}function pk({onMouseDown:e,onDoubleClick:t,isDragging:r}){return d("div",{className:"shrink-0 relative flex items-center justify-center cursor-col-resize group",style:{width:12},onMouseDown:e,onDoubleClick:t,children:[n("div",{className:"absolute inset-y-0 left-1/2 -translate-x-1/2",style:{width:r?3:1,backgroundColor:r?"#3b82f6":"#3d3d3d",transition:"width 100ms, background-color 100ms"}}),!r&&n("div",{className:"absolute inset-0 bg-blue-500/0 group-hover:bg-blue-500/20 transition-colors pointer-events-none"}),d("div",{className:"relative z-10 flex flex-col gap-[3px] opacity-0 group-hover:opacity-100 transition-opacity",style:r?{opacity:1}:void 0,children:[n("div",{className:"w-2 h-px bg-gray-400"}),n("div",{className:"w-2 h-px bg-gray-400"}),n("div",{className:"w-2 h-px bg-gray-400"})]})]})}const Xc=300,js=150;function hk(e){const[t,r]=j(null),[s,a]=j(!1),o=ye(0),i=ye(null);te(()=>{e.current&&r(Math.round(e.current.offsetWidth*.5))},[e]);const l=ae(()=>{var x;return((x=e.current)==null?void 0:x.offsetWidth)??(typeof window<"u"?window.innerWidth:1024)},[e]),c=ae(x=>{x.preventDefault(),a(!0)},[]),u=ae(()=>{r(Math.round(l()*.5))},[l]),p=ae(()=>{r(x=>(x&&x>0&&(i.current=x),0))},[]),h=ae(()=>{const x=i.current;i.current=null,r(x&&x>=Xc?x:Math.round(l()*.5))},[l]),m=ae(()=>{r(Math.round(l()*.5))},[l]);te(()=>{if(!s)return;document.body.style.cursor="col-resize",document.body.style.userSelect="none";const x=v=>{cancelAnimationFrame(o.current),o.current=requestAnimationFrame(()=>{var _;const S=(_=e.current)==null?void 0:_.getBoundingClientRect(),w=(S==null?void 0:S.left)??0,k=((S==null?void 0:S.width)??window.innerWidth)-js,N=v.clientX-w,A=Math.min(Math.max(N,Xc),k);r(A)})},b=v=>{var N;cancelAnimationFrame(o.current),a(!1);const S=(N=e.current)==null?void 0:N.getBoundingClientRect(),w=(S==null?void 0:S.left)??0,C=(S==null?void 0:S.width)??window.innerWidth,k=v.clientX-w;k<js?r(0):C-k<js&&r(C)};return document.addEventListener("mousemove",x),document.addEventListener("mouseup",b),()=>{cancelAnimationFrame(o.current),document.removeEventListener("mousemove",x),document.removeEventListener("mouseup",b),document.body.style.cursor="",document.body.style.userSelect=""}},[s,e]),te(()=>{const x=()=>{r(b=>{if(b===null||b===0)return b;const v=l();return b>=v?v:Math.min(b,v-js)})};if(!(typeof window>"u"))return window.addEventListener("resize",x),()=>window.removeEventListener("resize",x)},[l]);const f=l(),y=t===0,g=t!==null&&t>=f;return{editorWidth:t,isDragging:s,isEditorCollapsed:y,isPreviewCollapsed:g,handleMouseDown:c,handleDoubleClick:u,collapseEditor:p,expandEditor:h,expandPreview:m}}function mk({preview:e,viewportWidth:t,viewportHeight:r,scale:s,onDismiss:a,onLoadCommit:o}){const i=t*s,l=r*s;return d("div",{className:"flex flex-col items-center gap-4 w-full",style:{maxWidth:`${i}px`},children:[d("div",{className:"text-center shrink-0",children:[n("h2",{className:"text-lg font-semibold text-[#333] m-0 font-['IBM_Plex_Sans']",children:"Journal Screenshot"}),n("p",{className:"text-sm text-[#888] mt-1 m-0 font-['IBM_Plex_Sans']",children:"This is a snapshot from a previous version — not a live preview"})]}),n("div",{className:"rounded-lg border-2 border-[#ccc] shadow-md overflow-y-auto overflow-x-hidden shrink",style:{width:`${i}px`,maxHeight:`${l}px`},children:n("img",{src:e.screenshotUrl,alt:e.scenarioName,className:"block",style:{width:`${i}px`}})}),d("div",{className:"flex items-center gap-2 text-sm text-[#666] shrink-0",children:[e.commitSha&&n("span",{className:"font-mono text-xs text-[#00a0c4] bg-[#00a0c4]/15 px-2 py-0.5 rounded",children:e.commitSha.slice(0,7)}),d("span",{className:"truncate",children:[e.scenarioName,e.commitMessage&&` — ${e.commitMessage}`]})]}),n("div",{className:"flex items-center gap-3 shrink-0",children:e.commitSha&&o&&n(fk,{commitSha:e.commitSha,onLoadCommit:o})})]})}function fk({commitSha:e,onLoadCommit:t}){const[r,s]=j(!1),[a,o]=j(null);return d(we,{children:[n("button",{onClick:()=>{s(!0),o(null),t(e).then(i=>{i.success||o(i.error||"Failed to load commit")}).catch(i=>{o(i instanceof Error?i.message:"Network error")}).finally(()=>s(!1))},disabled:r,className:"bg-[#005c75] hover:bg-[#004d63] disabled:opacity-50 text-white text-sm font-medium px-4 py-1.5 rounded transition-colors cursor-pointer",children:r?"Reverting...":"Revert to this code and load this version"}),a&&n("div",{className:"bg-red-50 border border-red-200 rounded px-4 py-2 text-sm text-red-600 w-full text-center",children:a})]})}function gk({preview:e,viewportWidth:t,viewportHeight:r,scale:s,onDismiss:a}){const o=t*s,i=r*s;return d("div",{className:"flex flex-col items-center gap-4 w-full",style:{maxWidth:`${o}px`},children:[d("div",{className:"text-center shrink-0",children:[n("h2",{className:"text-lg font-semibold text-gray-200 m-0 font-['IBM_Plex_Sans']",children:e.scenarioName}),d("div",{className:"flex items-center justify-center gap-2 mt-2",children:[n("span",{className:"inline-block w-2 h-2 rounded-full bg-amber-400 animate-pulse"}),n("p",{className:"text-sm text-amber-400/90 m-0 font-['IBM_Plex_Sans']",children:"The app is being edited - you can control the live preview when building is paused or complete."})]})]}),e.hasScreenshot?n("div",{className:"rounded-lg border-2 border-[#4d4d4d] shadow-md overflow-y-auto overflow-x-hidden shrink",style:{width:`${o}px`,maxHeight:`${i}px`},children:n(ar,{scenarioId:e.scenarioId,screenshotPath:e.screenshotPath,updatedAt:e.updatedAt,alt:e.scenarioName,imgClassName:"block w-full",className:""})}):n("div",{className:"rounded-lg border-2 border-[#4d4d4d] bg-[#1a1a1a] flex items-center justify-center w-[400px] h-[300px]",children:n("span",{className:"text-sm text-gray-500",children:"No screenshot available"})}),n("button",{onClick:a,className:"text-xs text-gray-500 hover:text-gray-300 bg-transparent border-none cursor-pointer transition-colors shrink-0",children:"Dismiss"})]})}function yk({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,onStateChange:o}){const{interactiveServerUrl:i,isStarting:l,isLoading:c}=$n({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,enabled:!0});return te(()=>{o(i,l||c)},[i,l,c,o]),null}function xk({onSaveToCurrent:e,onSaveAsNew:t,onDismiss:r,isSaving:s,scenarioName:a}){return d("div",{className:"flex items-center justify-between px-4 py-1.5 bg-emerald-900/60 border-b border-emerald-700/50 text-emerald-200 text-xs",children:[n("span",{className:"font-medium",children:a?d(we,{children:["Data modified in “",a,"”."]}):"Data modified."}),d("div",{className:"flex items-center gap-2",children:[n("button",{onClick:e,disabled:s,className:"px-2.5 py-0.5 bg-emerald-600 hover:bg-emerald-500 disabled:opacity-50 text-white text-xs font-medium rounded transition-colors cursor-pointer disabled:cursor-not-allowed",children:s?"Saving...":"Save to Scenario"}),n("button",{onClick:t,disabled:s,className:"px-2.5 py-0.5 bg-emerald-800 hover:bg-emerald-700 disabled:opacity-50 text-emerald-200 text-xs font-medium rounded transition-colors cursor-pointer disabled:cursor-not-allowed",children:"Save as New"}),n("button",{onClick:r,disabled:s,className:"text-emerald-400 hover:text-emerald-200 disabled:opacity-50 transition-colors cursor-pointer disabled:cursor-not-allowed",title:"Dismiss",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),n("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]})})]})]})}function bk({latestVersion:e}){const[t,r]=j(!1);if(t)return null;const s=`npm install -g @codeyam/codeyam-cli@${e}`;return d("div",{className:"shrink-0 w-full bg-[#D7FF63] px-4 py-1.5 flex items-center text-xs text-black font-['IBM_Plex_Sans']",children:[d("div",{className:"flex-1 flex items-center justify-center gap-2",children:[n("span",{children:"An update to the codeyam editor is available."}),n("code",{className:"bg-[#2d2d2d] text-white font-mono text-xs px-3 py-0.5 rounded-full",children:s}),n(pt,{content:s,icon:!0,iconSize:12,className:"text-black hover:text-gray-700 transition-colors"})]}),n("button",{type:"button",onClick:()=>r(!0),className:"shrink-0 p-0.5 rounded text-black/60 hover:text-black hover:bg-black/10 transition-colors cursor-pointer bg-transparent border-none","aria-label":"Dismiss upgrade banner",children:n("svg",{className:"w-3.5 h-3.5",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M6 18L18 6M6 6l12 12"})})})]})}function vk(e,t){return t.status==="error"?{url:null,proxyUrl:null,isStarting:!1,error:t.errorMessage||"Dev server crashed",canStartServer:e.canStartServer,autoStartAttempted:e.autoStartAttempted,shouldAutoStart:!1}:t.url?{url:t.url,proxyUrl:t.proxyUrl||null,isStarting:!1,error:null,canStartServer:!0,autoStartAttempted:e.autoStartAttempted,shouldAutoStart:!1}:t.status==="starting"?{...e,isStarting:!0,error:null,canStartServer:!0,shouldAutoStart:!1}:t.status==="stopped"?e.url?{...e,url:null,isStarting:!1,shouldAutoStart:!1}:e.autoStartAttempted?{...e,isStarting:!1,shouldAutoStart:!1}:{...e,autoStartAttempted:!0,shouldAutoStart:!0}:{...e,shouldAutoStart:!1}}function wk(e){const[t,r]=j({url:null,proxyUrl:null,isStarting:!1,error:null,canStartServer:!0,autoStartAttempted:!1}),s=ye(t);s.current=t,te(()=>{let i=!1,l=null;const c=async()=>{try{const u=await fetch("/api/editor-dev-server");if(i)return;const p=await u.json(),h=vk(s.current,p),{shouldAutoStart:m,...f}=h;if(r(f),m&&!(e!=null&&e.skipAutoStart))try{const y=await fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})});if(i)return;y.ok?r(g=>({...g,isStarting:!0})):r(g=>({...g,canStartServer:!1}))}catch{}}catch{}};return c(),l=setInterval(()=>void c(),2e3),()=>{i=!0,l&&clearInterval(l)}},[t.url]);const a=ae(()=>{r(i=>({...i,error:null,isStarting:!0})),fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"restart"})}).catch(()=>{})},[]),o=ae(()=>{r(i=>({...i,error:null,isStarting:!0})),fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})}).catch(()=>{})},[]);return{devServerUrl:t.url,proxyUrl:t.proxyUrl,isStarting:t.isStarting,error:t.error,canStartServer:t.canStartServer,retryServer:a,startServer:o}}function Nk(e){const t=ye(null),r=ye(null);te(()=>{if(typeof document>"u")return;r.current||(r.current=document.createElement("canvas"),r.current.width=64,r.current.height=64);const s=document.querySelector('link[rel="icon"]');if(!s)return;if(t.current||(t.current=s.href),!e){s.href=t.current;return}const a=new Image;a.crossOrigin="anonymous",a.onload=()=>{const o=r.current,i=o.getContext("2d");i.clearRect(0,0,64,64);const l=56,c=(64-l)/2;i.drawImage(a,c,c,l,l);const u=12,p=64-u-1,h=u+1;i.beginPath(),i.arc(p,h,u,0,2*Math.PI),i.fillStyle="#ef4444",i.fill(),s.href=o.toDataURL("image/png")},a.src=t.current},[e]),te(()=>()=>{if(typeof document>"u")return;const s=document.querySelector('link[rel="icon"]');s&&t.current&&(s.href=t.current)},[])}function Sk(e){if(!e||typeof e!="object")return[];for(const t of Object.values(e))if(Array.isArray(t))return t;return[]}function Ck(e){return H.join(e,".codeyam","migration-state.json")}function kp(e){const t=Ck(e);try{const r=G.readFileSync(t,"utf8"),s=JSON.parse(r);return kk(s)}catch{return null}}function kk(e){const t=Array.isArray(e.pages)?e.pages:[],r=Array.isArray(e.sharedComponents)?e.sharedComponents:[];return{status:e.status||"surveyed",startedAt:e.startedAt||new Date().toISOString(),completedAt:e.completedAt??null,currentPageIndex:typeof e.currentPageIndex=="number"?e.currentPageIndex:0,pages:t.map(s=>({name:s.name||"Unknown",route:s.route||"/",filePath:s.filePath||"",status:s.status||"pending",startedAt:s.startedAt??null,completedAt:s.completedAt??null,extractedComponents:Array.isArray(s.extractedComponents)?s.extractedComponents:[],extractedFunctions:Array.isArray(s.extractedFunctions)?s.extractedFunctions:[],scenarioCount:typeof s.scenarioCount=="number"?s.scenarioCount:0})),sharedComponents:r.map(s=>({name:s.name||"",filePath:s.filePath||"",extractedFromPage:s.extractedFromPage||"",usedInPages:Array.isArray(s.usedInPages)?s.usedInPages:[]}))}}function _k(e,t){if(!G.existsSync(H.join(e,"package.json"))||t!=null&&t.hasEditorScenarios)return!1;const r=H.join(e,".codeyam","glossary.json");if(G.existsSync(r))try{const o=JSON.parse(G.readFileSync(r,"utf8"));if((Array.isArray(o)?o:Sk(o)).length>0)return!1}catch{}const s=H.join(e,".codeyam","editor-step.json");if(G.existsSync(s))try{const o=JSON.parse(G.readFileSync(s,"utf8"));if(o.feature||o.scaffolded)return!1}catch{}const a=kp(e);return(a==null?void 0:a.status)!=="complete"}function Ek(e){const t=H.join(e,".codeyam","editor-step.json");try{const r=G.readFileSync(t,"utf8");return!!JSON.parse(r).migration}catch{return!1}}function Ak({currentUrl:e,nextUrl:t,formMethod:r,defaultShouldRevalidate:s}){return r||e.pathname===t.pathname?s:e.pathname.startsWith("/editor")&&t.pathname.startsWith("/editor")?!1:s}const jk=()=>[{title:"Editor - CodeYam"},{name:"description",content:"CodeYam Code + Data Editor"}];function Pk(e){const t=new URL(e).pathname.match(/\/editor\/entity\/([^/]+)/);return t?t[1]:null}async function Tk({request:e}){var T;const t=await Ye();let r=!1,s=[],a=[];const o=Se()||process.cwd();let i={map:{},allFiles:[]};try{i=Si(o)}catch{}let l=[];try{l=mr()}catch{}if(t){const{project:D}=await Re(t);r=((T=D.metadata)==null?void 0:T.editorMode)??!1;try{const E=$e();try{const q=await E.selectFrom("editor_scenarios").select(["id","url"]).where("project_id","=",D.id).where("component_name","is",null).where("page_file_path","is",null).execute();if(q.length>0){const{allFiles:U}=i;for(const L of q){const z=L;if(!z.url)continue;const V=Vd(z.url,U);V&&await E.updateTable("editor_scenarios").set({page_file_path:V}).where("id","=",z.id).execute()}}}catch(q){console.warn("[editor] page_file_path backfill failed (non-fatal):",q instanceof Error?q.message:q)}const W=await E.selectFrom("editor_scenarios").selectAll().where("project_id","=",D.id).orderBy("created_at","asc").execute(),K=q=>{const U=q;let L=null,z=null;try{U.dimensions&&(L=typeof U.dimensions=="string"?JSON.parse(U.dimensions):U.dimensions)}catch{}try{U.screenshot_paths&&(z=typeof U.screenshot_paths=="string"?JSON.parse(U.screenshot_paths):U.screenshot_paths)}catch{}return{id:q.id,name:q.name,description:q.description||"",componentName:q.component_name||null,componentPath:q.component_path||null,screenshotPath:q.screenshot_path||null,url:U.url||null,type:U.type||null,viewportWidth:U.viewport_width||null,viewportHeight:U.viewport_height||null,dimensions:L,screenshotPaths:z,pageFilePath:U.page_file_path||null,entitySha:U.entity_sha||null,displayName:U.display_name||null,updatedAt:U.updated_at||null}};a=kt(W,q=>`${q.name}::${q.url||"/"}`).map(K);const Z=ku(o);if(Z){const q=Qr(Z),U=W.filter(L=>ci(L,q));s=kt(U,L=>`${L.name}::${L.url||"/"}`).map(K)}else s=a}catch{}}const c=[...new Set(a.map(D=>D.componentName).filter(D=>D!==null))];let u=[];try{const D=H.join(o,".codeyam","glossary.json");if(G.existsSync(D)){const E=G.readFileSync(D,"utf8");u=JSON.parse(E)}}catch{}const p=Z0(u),h={};try{const D=Pi(o),E=p.filter(W=>W.testFile).map(W=>({filePath:W.filePath,testFile:W.testFile}));if(E.length>0){const W=Ti(o,E);for(const[K,Z]of Object.entries(D.results)){const q=W[K];h[K]={...Z,stale:q?Ru(Z,q.sourceHash,q.testHash):!0}}}}catch{}let m=[],f=[];try{const D=await Mn()||[];m=D.map(E=>({sha:E.sha,name:E.name,entityType:E.entityType||"visual",filePath:E.filePath||""})),f=X0(D,u)}catch{}let y=[];try{if(m.length>0){const D=m.map(E=>E.sha);await Je(),y=await Xe({shas:D})||[]}}catch{}let g={};try{if(y.length>0){const D=new Set([...f.map(E=>E.name),...m.map(E=>E.name),...c,...u.map(E=>E.name)]);g=ey(y,D)}}catch{}const x=i.map,b=i.allFiles;if(Object.keys(x).length>0&&y.length>0&&(g=ty(g,x,y)),b.length>0&&y.length>0){const D=new Map;for(const E of y)E.filePath&&D.set(E.filePath,E.name);for(const E of b){const W=Ot(Et(E));if(g[W])continue;const K=D.get(E);K&&g[K]&&(g[W]=g[K])}}let v={};try{v=(await fr({projectRoot:o,scenarioInputs:a,glossaryInputs:p,precomputedPageFilePaths:i,precomputedGitFiles:l,precomputedEntities:y})).entityChangeStatus}catch{}const S=l.filter(D=>D.status!=="deleted").map(D=>({path:D.path,status:D.status})),w=Ca(o),C=_i(o),k=Ci(o),N=_u(o);let A=null,_=null,M=null,$=null,I=null;try{const D=H.join(o,".codeyam","config.json");if(G.existsSync(D)){const E=JSON.parse(G.readFileSync(D,"utf8"));A=E.projectTitle||null,_=E.projectDescription||null,M=E.defaultScreenSize||null,$=E.screenSizes||null,I=E.appFormats||null}}catch{}I||(I=ki(o));const R=Pk(e.url);let P=null,F=null;if(R&&t)try{await Je();const D=await Xe({}),E=D==null?void 0:D.find(W=>W.sha===R);if(E){const W=E.name,K=E.filePath||"",Z=E.entityType||"visual";F={name:W,filePath:K,entityType:Z,displayName:W};const q=D==null?void 0:D.find(U=>U.name===E.name&&U.filePath===E.filePath&&U.sha!==R&&U.createdAt&&E.createdAt&&U.createdAt>E.createdAt);q&&(P=q.sha)}}catch{}const Y=Eu(o),J=Y&&a.some(D=>D.id===Y)?Y:null;let O="none",B=null;try{if(B=kp(projRoot),(B==null?void 0:B.status)==="complete")O="complete";else if((B==null?void 0:B.status)==="in-progress"||(B==null?void 0:B.status)==="surveyed")O="active";else if(Ek(projRoot))O="active";else if(t){const D=a.length>0;_k(projRoot,{hasEditorScenarios:D})&&(O="candidate")}}catch{}return ne({projectSlug:t,projectRoot:Se(),hasProject:!!t,editorMode:r,scenarios:s,allScenarios:a,components:c,analyzedEntities:f,allEntities:m,glossaryFunctions:p,glossaryEntries:u,entityImports:g,pageFilePaths:x,entityChangeStatus:v,modifiedFiles:S,featureName:w,userPrompt:C,projectTitle:A,projectDescription:_,defaultScreenSize:M,screenSizes:$,appFormats:I,editorStep:(k==null?void 0:k.step)??null,editorStepLabel:(k==null?void 0:k.label)??null,claudeSessionId:N,focusedEntitySha:R,newerEntitySha:P,focusedEntity:F,savedActiveScenarioId:J,migrationMode:O,migrationState:B,cachedTestResults:h})}class Mk extends ph{constructor(){super(...arguments);ht(this,"state",{error:null,errorInfo:null})}static getDerivedStateFromError(r){return{error:r,errorInfo:null}}componentDidCatch(r,s){console.error("[EditorErrorBoundary] Error:",r.message),console.error("[EditorErrorBoundary] Component stack:",s.componentStack),console.error("[EditorErrorBoundary] Loader snapshot:",JSON.stringify(this.props.loaderSnapshot,null,2)),this.setState({errorInfo:s})}render(){var r;return this.state.error?n("div",{className:"fixed inset-0 bg-[#1e1e1e] flex items-center justify-center p-8",children:d("div",{className:"max-w-[600px] w-full space-y-4",children:[n("h2",{className:"text-lg font-semibold text-red-400 font-['IBM_Plex_Sans'] m-0",children:"Something went wrong"}),n("pre",{className:"text-xs text-gray-300 bg-[#2d2d2d] p-3 rounded overflow-auto max-h-[120px]",children:this.state.error.message}),((r=this.state.errorInfo)==null?void 0:r.componentStack)&&d("details",{className:"text-xs text-gray-500",children:[n("summary",{className:"cursor-pointer hover:text-gray-300 transition-colors",children:"Component stack"}),n("pre",{className:"mt-2 bg-[#2d2d2d] p-3 rounded overflow-auto max-h-[200px] text-yellow-300",children:this.state.errorInfo.componentStack})]}),n("p",{className:"text-xs text-gray-500 m-0",children:"Full diagnostics are in the browser console."}),n("button",{onClick:()=>window.location.reload(),className:"px-4 py-2 bg-[#005c75] text-white text-sm rounded hover:bg-[#004d63] transition-colors cursor-pointer",children:"Reload"})]})}):this.props.children}}const $k=et(function(){var ul,pl;const{projectSlug:t,projectRoot:r,hasProject:s,scenarios:a,allScenarios:o,analyzedEntities:i,allEntities:l,glossaryFunctions:c,glossaryEntries:u,entityImports:p,pageFilePaths:h,entityChangeStatus:m,modifiedFiles:f,featureName:y,userPrompt:g,projectTitle:x,projectDescription:b,defaultScreenSize:v,screenSizes:S,appFormats:w,editorStep:C,editorStepLabel:k,claudeSessionId:N,focusedEntitySha:A,newerEntitySha:_,focusedEntity:M,migrationMode:$,migrationState:I,cachedTestResults:R}=ot(),P=td("root"),F=(P==null?void 0:P.npmUpdate)??null,Y=(P==null?void 0:P.isAdmin)??!1,[J,O]=or(),B=Ft(),T=ye(null),D=ye(null),E=ye(null),W=ye(null),[K,Z]=j(A),[q,U]=j(!1),[L,z]=j(!1),[V,re]=j(!1),[ue,be]=j(0);te(()=>{Z(A)},[A]),te(()=>{const X=de=>{const Ne=de.target;(Ne.tagName==="BUTTON"||Ne.closest("button"))&&(Ne.closest("button")??Ne).blur()};return document.addEventListener("mouseup",X),()=>document.removeEventListener("mouseup",X)},[]);const ie=le(()=>Fc(K,l),[K,l,o]),fe=(ie==null?void 0:ie.displayName)??void 0,ce=J.get("scenario")||((ul=ys(o))==null?void 0:ul.id)||void 0,[Ce,Ae]=j(()=>fe?[fe]:[]),_e=ye(null),Q=ye([]),xe=ye(null);te(()=>{var We;const X=ce||((We=ys(o))==null?void 0:We.id);if(!py(X,_e.current))return;const de=o.find(qe=>qe.id===X);if(!de)return;_e.current=X;const Ne=to(de,Q.current,xe.current);Ne&&Gt(Ne);const Ie=Tt(de.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:Ie,scenarioId:de.id,scenarioName:de.name,scenarioType:de.type})}).catch(()=>{})},[ce,o]),te(()=>{const X=new BroadcastChannel("codeyam-editor");return X.onmessage=de=>{var Ne;if(((Ne=de.data)==null?void 0:Ne.type)==="switch-scenario"&&de.data.scenarioId){const Ie=de.data.scenarioId,We=o.find(qn=>qn.id===Ie);if(!We)return;_e.current=Ie;const qe=new URLSearchParams(J);qe.set("scenario",Ie),qe.delete("zoom"),O(qe),Xr(null),At(null),vt(null),en(!0);const tn=Tt(We.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:tn,scenarioId:Ie,scenarioType:We.type})}).then(()=>{Le(!1),Jn(qn=>qn+1)}).catch(()=>{en(!1)})}},()=>X.close()},[J,O,o]),te(()=>{if(J.get("ref")!=="link"||!ce)return;const X=new BroadcastChannel("codeyam-editor");X.postMessage({type:"switch-scenario",scenarioId:ce}),X.close(),window.close()},[]);const{devServerUrl:oe,proxyUrl:se,isStarting:he,error:Te,canStartServer:ge,retryServer:ze,startServer:Ve}=wk({skipAutoStart:$==="candidate"||$==="active"}),[it,Le]=j(!1),[lt,Xr]=j(null),[hn,At]=j(null),[In,Fn]=j(!1),[Dn,vt]=j(null),[Rn,Lt]=j(null),wt=ae(async X=>{const Ne=await(await fetch("/api/editor-load-commit",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({commitSha:X})})).json();return Ne.success&&(vt(null),Le(!1)),Ne},[]),zt=ae((X,de)=>{At(Ne=>(X&&X!==Ne&&Le(!1),X)),!de&&X&&Le(!0),Fn(de)},[]),rt=ae(X=>{vt(null),Xr(Ne=>(Ne&&Ne.analysisId===X.analysisId||(At(null),Jn(We=>We+1)),X)),Fn(!0),Le(!1);const de=new URLSearchParams(J);de.delete("scenario"),de.delete("zoom"),O(de)},[J,O]),[Fe,Gt]=j(v?{name:v.name,width:v.width,height:v.height}:{name:"Desktop",width:1440,height:900}),[On,gr]=j(!1),[ct,yr]=j(!1),ja=(w==null?void 0:w.includes("mobile-app"))??!1,xr=v?{name:v.name,width:v.width,height:v.height}:null;xe.current=xr;const br=Jr(),Qe=le(()=>{const X=br.pathname.split("/").filter(Boolean),de=X[X.length-1];return de==="build"||de==="history"||de==="settings"?de:de==="structure"?"data":"app"},[br.pathname]),ut=ae(X=>{Z(null),Ae([]),U(!1);const de=X==="app"?"":`/${X==="data"?"structure":X}`,Ne=J.get("scenario"),Ie=Ne?`?scenario=${Ne}`:"";B(`/editor${de}${Ie}`)},[B,J]),vr=ae(()=>{ut("build"),qt(!0)},[ut]),Pa=ae(()=>{ut("history")},[ut]),Ta=ae(()=>{ut("build"),qt(!0),setTimeout(()=>{var X;(X=T.current)==null||X.sendInput("codeyam editor migrate")},300)},[ut]),[Ma,qt]=j(Qe==="build"),Qt=!!(y&&C),Ln=C!=null&&C<=1,[mn,wr]=j(Qt&&!Ln?"pending":Qt&&Ln?"fresh":"no-session"),Nr=ye(!1);te(()=>{mn==="pending"&&!Nr.current&&(Nr.current=!0,ut("build"),qt(!0))},[mn,ut]);const Sr=ye(!1);te(()=>{Qt&&Ln&&!Sr.current&&(Sr.current=!0,fetch("/api/editor-session",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}).catch(()=>{}))},[Qt,Ln]);const es=ae(()=>{wr("continue")},[]),ts=ae(()=>{fetch("/api/editor-session",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}).catch(()=>{}),wr("fresh")},[]),[ns,zn]=j("none"),rs=ae(()=>{zn("choosing")},[]),ss=ae(()=>{var X;fetch("/api/editor-session",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}).catch(()=>{}),zn("none"),(X=T.current)==null||X.sendInput("/clear"),setTimeout(()=>{var de;(de=T.current)==null||de.sendInput("/codeyam-editor")},500)},[]),as=ae(()=>{zn("none")},[]),[Bn,Yn]=j(!1),[os,Cr]=j(!1),me=ye(!1),Me=ye(0),tt=ye(!1),Ue=ae(X=>{Yn(X),X||(tt.current=!0),X&&!me.current&&(Cr(!1),Me.current=Date.now()),X||(Me.current=0),me.current=X},[]),[Ke,jt]=j(!1),He=ye(!1),st=ae(X=>{X!==He.current&&(console.log("[Editor] claudeBuilding: %s → %s",He.current,X),He.current=X,jt(X))},[]);Nk(Bn);const at=ye(Ke);te(()=>{var de;const X=at.current&&!Ke;if(at.current=Ke,!Ke)if(X){const Ne=J.get("scenario")||((de=ys(o))==null?void 0:de.id),Ie=o.find(We=>We.id===Ne);if(Ie){console.log("[Editor] Building stopped, loading live preview for: %s",Ie.name),Lt(null);const We=Tt(Ie.name);_e.current=Ie.id,en(!0),Hn(!1),Le(!1),fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:We,scenarioId:Ie.id,scenarioType:Ie.type,skipBroadcast:!0})}).then(()=>{Jn(qe=>qe+1)}).catch(()=>{en(!1),Le(!0)})}else Lt(null)}else Lt(null)},[Ke,J,o]);const{editorWidth:Zt,isDragging:Un,isEditorCollapsed:fn,isPreviewCollapsed:$a,handleMouseDown:_p,handleDoubleClick:Ep,collapseEditor:Ap,expandEditor:Ki,expandPreview:jp}=hk(W),[Ia,Gi]=j(!1),Pp=ae(()=>{Gi(!0),ut("build"),qt(!0)},[ut]),qi=ae(()=>{Gi(!1)},[]),Tp=ae(X=>{Gt(X),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:X,skipBroadcast:!0})})},[]),[Qi,Zi]=j(er);te(()=>{const X=O0();Zi(X),X.systemNotification&&typeof Notification<"u"&&Notification.permission==="default"&&Notification.requestPermission()},[]);const Mp=ae(X=>{Zi(X),L0(X)},[]);te(()=>{if(Qe==="build"){Yn(!1);const X=setTimeout(()=>{var de,Ne;(de=T.current)==null||de.scrollToBottom(),(Ne=T.current)==null||Ne.focus()},50);return()=>clearTimeout(X)}},[Qe]),te(()=>{function X(){!document.hidden&&Qe==="build"&&Yn(!1)}return document.addEventListener("visibilitychange",X),()=>document.removeEventListener("visibilitychange",X)},[Qe]);const[gn,$p]=j(null);te(()=>{const X=E.current;if(!X)return;const de=new ResizeObserver(Ne=>{const Ie=Ne[0];Ie&&$p({width:Ie.contentRect.width,height:Ie.contentRect.height})});return de.observe(X),()=>de.disconnect()},[]);const kr=ja&&!ct&&(Fe.height??900)>Fe.width,Xt=le(()=>gn?kr?Ll(gn,{width:Fe.width+_s.width,height:(Fe.height??900)+_s.height}):Ll(gn,Fe):1,[gn,Fe,kr]),[Wn,Jn]=j(0),[Xi,Fa]=j(null),[is,en]=j(!1),ls=ye(!1),[Ip,Hn]=j(!1),[Fp,el]=j(!1),Da=ye(0);te(()=>{Wn>0&&(Da.current=Date.now()+3e3)},[Wn]);const Dp=ae(()=>{if(Date.now()<Da.current)return;const X=Me.current;X===0||Date.now()-X<5e3||Hn(!0)},[]);te(()=>{const X=de=>{var Ne;if(((Ne=de.data)==null?void 0:Ne.type)==="codeyam-localstorage-changed"){if(Date.now()<Da.current)return;const Ie=Me.current;if(Ie===0||Date.now()-Ie<5e3)return;Hn(!0)}};return window.addEventListener("message",X),()=>window.removeEventListener("message",X)},[]);const tl=ae(async X=>{el(!0);try{let de;const Ne=D.current;Ne!=null&&Ne.contentWindow&&(de=await new Promise(qe=>{const tn=setTimeout(()=>qe(void 0),2e3),qn=hl=>{var ml;((ml=hl.data)==null?void 0:ml.type)==="codeyam-localstorage-state"&&(clearTimeout(tn),window.removeEventListener("message",qn),qe(hl.data.data))};window.addEventListener("message",qn),Ne.contentWindow.postMessage({type:"codeyam-get-localstorage"},"*")}));const We=await(await fetch("/api/editor-save-seed-state",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({mode:X,localStorage:de})})).json();We.success?Hn(!1):console.error("[editor] Save seed state failed:",We.error)}catch(de){console.error("[editor] Save seed state error:",de)}finally{el(!1)}},[]),Rp=ae((X,de)=>{if(Fa(X||null),de){const Ne=new URLSearchParams(J);Ne.set("scenario",de),_e.current=de,O(Ne);const Ie=o.find(We=>We.id===de);if(Ie){const We=to(Ie,Q.current,xe.current);We&&Gt(We)}}vt(null),Le(!1),Jn(Ne=>Ne+1)},[J,O,o]),{customSizes:Ra,addCustomSize:Op,removeCustomSize:Lp}=ha(t),_r=le(()=>gp(S,w),[S,w]),cs=le(()=>[..._r,...Ra],[_r,Ra]);Q.current=cs;const ds=le(()=>{const X=new Map;for(const de of l){X.set(de.name,de.sha);const Ne=Ot(Et(de.filePath));Ne!==de.name&&X.set(Ne,de.sha)}return X},[l]),nl=le(()=>{const X=new Map;for(const de of l)X.set(de.sha,de.name);return X},[l]),rl=le(()=>{const X=[{name:"App"}];q&&X.push({name:"Roadmap"}),L&&X.push({name:"Design System"}),V&&X.push({name:"Tech Stack"});for(const de of Ce){const Ne=ds.get(de),Ie=Ne?nl.get(Ne):void 0;X.push({name:Ie||de,componentName:de,entitySha:Ne})}return X},[Ce,ds,nl,q,L,V]),{pageGroups:sl,componentGroups:Oa}=le(()=>Hi(o),[o]),us=le(()=>bp(sl,Oa),[sl,Oa]),[zp,Bp]=j("application"),[Vn,La]=j([]),[za,al]=j(null),ol=le(()=>za?Fc(za,l):null,[za,l,o]),il=le(()=>{const X=[{name:"App"}];for(const de of Vn)X.push({name:de,componentName:de,entitySha:ds.get(de)});return X},[Vn,ds]),Ba=ae((X,de)=>{if(!X){La([]),al(null);return}const Ne=de||us.get(X);if(!Ne)return;const Ie=Vn.indexOf(X);Ie>=0?La(Vn.slice(0,Ie+1)):La([...Vn,X]),al(Ne)},[Vn,us]),ll=ae((X,de)=>{if(!X){Ae([]),Z(null);const qe=J.get("scenario"),tn=qe?`?scenario=${qe}`:"";B(`/editor${tn}`);return}if(!de){console.error(`[editor] No entity SHA for "${X}" — entity missing from database`);return}const Ne=Ce.indexOf(X);Ne>=0?Ae(Ce.slice(0,Ne+1)):Ae([...Ce,X]);const Ie=o.find(qe=>qe.entitySha===de);Z(de);const We=Ie?`?scenario=${Ie.id}`:"";B(`/editor/entity/${de}${We}`)},[B,o,Ce,J]),cl=ae(X=>{en(!0),ls.current=!0,Hn(!1),Le(!1);const de=Tt(X.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:de,scenarioId:X.id,scenarioType:X.type,skipBroadcast:!0})}).then(()=>{ls.current=!1,Jn(Ne=>Ne+1)}).catch(()=>{ls.current=!1,en(!1),Le(!0)})},[]),Kn=ae((X,de)=>{console.log("[Editor] Scenario selected: %s dimension=%s (claudeBuilding=%s)",X.name,de??"default",Ke),Xr(null),At(null),vt(null),Fa(null);let Ne=null;if(de&&(S!=null&&S[de])){const We=S[de],qe=cs.find(tn=>tn.width===We.width&&tn.height===We.height);Ne={name:(qe==null?void 0:qe.name)||de,...We}}Ne||(Ne=to(X,cs,xr)),Ne&&Gt(Ne),_e.current=X.id;const Ie=new URLSearchParams(J);Ie.set("scenario",X.id),O(Ie),Ke?Lt({scenarioId:X.id,scenarioName:X.name,updatedAt:X.updatedAt,hasScreenshot:!!X.screenshotPath,screenshotPath:X.screenshotPath}):(Lt(null),cl(X))},[J,O,cs,S,Ke,cl]),Yp=ae(()=>{const X=ce;if(!X)return;const de=o.find(Ie=>Ie.id===X);if(!de)return;const Ne=Tt(de.name);Le(!1),fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:Ne,scenarioId:de.id,scenarioType:de.type})}).then(()=>{Jn(Ie=>Ie+1)})},[ce,o]),Up=ae(X=>{if(!X.commitSha){const de=o.find(Ne=>Ne.name===X.scenarioName);if(de){Kn(de);return}}vt(X)},[o,Kn]),Wp=X=>{const de={name:X.name,width:X.width,height:X.height};Gt(de),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:de,skipBroadcast:!0})})},Jp=(X,de,Ne)=>{Op(X,de,Ne)},Hp=X=>{Gt(X),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:X,skipBroadcast:!0})})};te(()=>{const X=de=>{var Ne;if(((Ne=de.data)==null?void 0:Ne.type)==="codeyam-preview-ready"&&!lt){if(ls.current)return;Le(!0),en(!1)}};return window.addEventListener("message",X),()=>window.removeEventListener("message",X)},[lt]);const dl=()=>{lt||setTimeout(()=>{Le(X=>(X||en(!1),!0))},5e3)},Gn=le(()=>uy({activeAnalyzedScenario:!!lt,analyzedPreviewUrl:hn,activeScenarioId:ce||null,scenarios:o,proxyUrl:se,devServerUrl:oe,zoomComponent:fe||null}),[se,oe,fe,ce,o,lt,hn]),Ya=le(()=>{if(L)return`/api/design-system-showcase?__cb=${ue}`;const X=Xd(Gn,Xi);if(!X)return null;const de=X.includes("?")?"&":"?";return`${X}${de}__cb=${Wn}`},[Gn,Xi,Wn,L,ue]),Vp=le(()=>({projectSlug:t,hasProject:s,scenarioCount:a==null?void 0:a.length,allScenarioCount:o==null?void 0:o.length,analyzedEntityCount:i==null?void 0:i.length,glossaryFunctionCount:c==null?void 0:c.length,entityChangeStatusKeys:m?Object.keys(m):[],featureName:y}),[t,s,a,o,i,c,m,y]);return d(we,{children:[n(Mk,{loaderSnapshot:Vp,children:d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[lt&&n(yk,{analysisId:lt.analysisId,scenarioId:lt.scenarioId,scenarioName:lt.scenarioName,entityName:lt.entityName,projectSlug:t,onStateChange:zt},lt.analysisId),F&&n(bk,{latestVersion:F.latestVersion}),d("div",{ref:W,className:"flex-1 flex min-h-0",children:[fn&&n("div",{className:"shrink-0 flex items-center justify-center cursor-pointer hover:bg-[#3d3d3d] transition-colors",style:{width:8,backgroundColor:"#2d2d2d"},onClick:Ki,title:"Expand editor",children:n("svg",{width:"6",height:"10",viewBox:"0 0 6 10",fill:"none",stroke:"#888",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M1 1l4 4-4 4"})})}),d("aside",{className:"bg-[#1e1e1e] shrink-0 flex flex-col overflow-hidden",style:{...fn?{display:"none"}:Zt!==null?{width:`${Zt}px`}:{width:"50%"}},children:[_&&ie&&d("div",{className:"px-3 py-2 text-xs flex items-center justify-between",style:{background:"#2a1f00",borderBottom:"1px solid #3d2e00",color:"#f0c040"},children:[d("span",{children:["Viewing an older version of"," ",n("strong",{children:ie.name}),". A newer version exists."]}),n("a",{href:`/editor/entity/${_}`,className:"px-2 py-0.5 rounded text-xs",style:{background:"#3d2e00",color:"#f0c040",textDecoration:"none"},children:"View latest"})]}),n(uk,{activeTab:Qe,onTabChange:X=>{ut(X),X==="build"&&qt(!0),fetch("/api/telemetry-page-view",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({route:`/editor/${X}`})}).catch(()=>{})},buildIdle:Bn,projectTitle:x,breadcrumbItems:Qe==="data"?il:rl,onBreadcrumbNavigate:Qe==="data"?Ba:ll}),d("div",{className:"flex-1 min-h-0 overflow-hidden relative",children:[Bn&&Qe!=="build"&&!os&&d("div",{className:"absolute top-3 left-1/2 -translate-x-1/2 z-50 animate-[slideDown_0.3s_ease-out]",children:[n("style",{children:`
|
|
732
|
-
@keyframes slideDown {
|
|
733
|
-
from { transform: translate(-50%, -100%); opacity: 0; }
|
|
734
|
-
to { transform: translate(-50%, 0); opacity: 1; }
|
|
735
|
-
}
|
|
736
|
-
`}),d("div",{className:"flex items-center gap-1 bg-amber-50 border-2 border-amber-300 rounded-lg shadow-lg",children:[d("button",{onClick:()=>{ut("build"),qt(!0)},className:"flex items-center gap-2 px-4 py-2 cursor-pointer hover:bg-amber-100 transition-colors rounded-l-md",children:[n("span",{className:"inline-block w-2 h-2 rounded-full bg-amber-400 animate-pulse"}),n("span",{className:"text-sm font-medium text-amber-900",children:"Claude is waiting for you"}),n("span",{className:"text-xs text-amber-600 ml-1",children:"Go to Build"})]}),n("button",{onClick:X=>{X.stopPropagation(),Cr(!0)},className:"px-2 py-2 cursor-pointer hover:bg-amber-100 transition-colors rounded-r-md text-amber-400 hover:text-amber-600","aria-label":"Dismiss",children:n("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",children:n("path",{d:"M3 3l8 8M11 3l-8 8"})})})]})]}),Ma&&d("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:Qe==="build"?"visible":"hidden"},children:[n(i5,{projectTitle:x,featureName:y,editorStep:C,editorStepLabel:k,migrationMode:$}),n("div",{className:"flex-1 min-h-0",style:Ia?{flex:"1 1 50%"}:void 0,children:mn==="pending"?n(X2,{featureName:y,editorStep:C,editorStepLabel:k,onContinue:es,onStartFresh:ts}):d("div",{className:"relative h-full",children:[n(Hd,{ref:T,entityName:"Editor",projectSlug:t,entityFilePath:null,scenarioName:null,onRefreshPreview:Rp,onShowResults:Pp,onHideResults:qi,onSetViewport:Tp,onDataMutationForwarded:Dp,onFeatureComplete:rs,editorMode:!0,onIdleChange:Ue,onBuildingChange:st,notificationSettings:Qi,buildTabActive:Qe==="build",claudeStartMode:mn==="continue"?"resume":"fresh",claudeSessionId:N,editorStepLabel:k,resultsOpen:Ia}),ns==="choosing"&&n(e5,{onStartNextFeature:ss,onContinueInSession:as})]})}),Ia&&n("div",{style:{flex:"1 1 50%"},className:"min-h-0 border-t-2 border-gray-300",children:n(b5,{scenarios:a,allScenarios:o,glossaryFunctions:c,cachedTestResults:R,projectRoot:r,activeScenarioId:ce,onScenarioSelect:Kn,onClose:qi,entityChangeStatus:m,modifiedFiles:f,featureName:y,userPrompt:g})})]}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:Qe==="app"?"visible":"hidden"},children:n(ck,{hasProject:s,scenarios:o,analyzedEntities:i,allEntities:l,glossaryFunctions:c,cachedTestResults:R,glossaryEntries:u,projectRoot:r,activeScenarioId:ce,onScenarioSelect:Kn,onAnalyzedScenarioSelect:rt,onSwitchToBuild:vr,onSwitchToHistory:Pa,zoomComponent:fe,focusedEntity:ie,onZoomChange:ll,entityImports:p,pageFilePaths:h,projectTitle:x,projectDescription:b,breadcrumbItems:rl,migrationMode:$,migrationState:I,onStartMigration:Ta,onReseedPreview:Yp,isAdmin:Y,roadmapView:q,onRoadmapViewChange:U,designSystemView:L,onDesignSystemViewChange:z,onPreviewDesignSystem:()=>{be(X=>X+1)},techStackView:V,onTechStackViewChange:re})}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:Qe==="data"?"visible":"hidden"},children:ol?n(Sp,{focusedEntity:ol,breadcrumbItems:il,onZoomChange:Ba,projectRoot:r,scenarios:o,analyzedEntities:[],activeScenarioId:ce,onScenarioSelect:Kn,onAnalyzedScenarioSelect:rt,onSwitchToBuild:vr,entityImports:p,glossaryFunctions:c,cachedTestResults:R,glossaryEntries:u,entityShaMap:us,componentGroups:Oa,visualEntities:[],isEntityComplete:()=>!0}):n(l5,{scenarios:o,projectRoot:r,activeScenarioId:ce,onScenarioSelect:Kn,zoomComponent:void 0,focusedEntity:null,onZoomChange:Ba,analyzedEntities:[],glossaryFunctions:c,cachedTestResults:R,activeAnalyzedScenarioId:lt==null?void 0:lt.scenarioId,onAnalyzedScenarioSelect:rt,entityImports:p,pageFilePaths:h,onSwitchToBuild:vr,entityShaMap:us,structureTab:zp,onStructureTabChange:Bp})}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:Qe==="history"?"visible":"hidden"},children:n(I5,{isActive:Qe==="history",onScreenshotClick:Up,glossaryFunctions:c,cachedTestResults:R})}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:Qe==="settings"?"visible":"hidden"},children:d("div",{className:"flex-1 overflow-auto p-4",children:[n("h2",{className:"text-sm font-semibold text-white mb-4",children:"Settings"}),n("p",{className:"text-xs text-gray-400",children:"Settings panel coming soon."})]})})]}),n(Jd,{serverUrl:oe,isStarting:he,projectSlug:t,devServerError:Te,onStartServer:ge?Ve:void 0,notificationSettings:Qi,onChangeNotificationSettings:Mp})]}),!fn&&!$a&&n(pk,{onMouseDown:_p,onDoubleClick:Ep,isDragging:Un}),$a&&n("div",{className:"shrink-0 flex items-center justify-center cursor-pointer hover:bg-[#3d3d3d] transition-colors",style:{width:8,backgroundColor:"#2d2d2d"},onClick:jp,title:"Expand preview",children:n("svg",{width:"6",height:"10",viewBox:"0 0 6 10",fill:"none",stroke:"#888",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M5 1l-4 4 4 4"})})}),d("div",{className:"flex-1 flex flex-col min-w-0",style:{...$a?{display:"none"}:void 0,...Un?{pointerEvents:"none"}:void 0},children:[d("div",{className:"bg-[#2d2d2d] border-b border-[#3d3d3d] shrink-0 z-10 h-10 flex items-center pr-4 relative",children:[n("div",{className:"flex items-center gap-1 shrink-0 z-10",children:n("button",{onClick:()=>{fn?(Ki(),setTimeout(()=>{var X;return(X=T.current)==null?void 0:X.focus()},50)):Ap()},className:`p-1.5 rounded transition-colors cursor-pointer ${fn?"text-white bg-[#666] hover:bg-[#777]":"text-gray-500 hover:text-gray-300"}`,title:fn?"Show chat":"Hide chat",children:n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:fn?d(we,{children:[n("path",{d:"M13 17l5-5-5-5"}),n("path",{d:"M6 17l5-5-5-5"})]}):d(we,{children:[n("path",{d:"M11 17l-5-5 5-5"}),n("path",{d:"M18 17l-5-5 5-5"})]})})})}),n("div",{className:"absolute inset-0 flex items-center justify-center gap-1 pointer-events-none",children:d("div",{className:"flex items-center gap-1 pointer-events-auto",children:[_r.map(X=>{const de=Is(X),Ne=de==="desktop"?"Desktop":de==="laptop"?"Laptop":de==="tablet"?"Tablet":"Mobile";return d("button",{onClick:()=>{ct&&yr(!1),Wp(X)},className:`p-1.5 rounded transition-colors cursor-pointer ${!ct&&Fe.name===X.name?"text-white bg-[#555]":"text-gray-500 hover:text-gray-300"}`,title:`${X.name} (${X.width}×${X.height})`,children:[Ne==="Desktop"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}),n("path",{d:"M8 21h8M12 17v4"})]}),Ne==="Laptop"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8H4V6z"}),n("path",{d:"M2 18h20"})]}),Ne==="Tablet"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]}),Ne==="Mobile"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"7",y:"2",width:"10",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]})]},X.name)}),d("div",{className:"relative",children:[d("button",{onClick:()=>{ct||gr(X=>!X)},className:`flex items-center gap-1.5 px-2 py-1 rounded transition-colors ${ct?"":"cursor-pointer"} ${ct||On||!_r.some(X=>X.name===Fe.name)?"text-white bg-[#555]":"text-gray-400 hover:text-gray-200 hover:bg-[#444]"}`,title:"Custom dimensions",children:[n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M17 3a2.83 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"})}),n("span",{className:"text-xs font-mono",children:ct&&gn?`${Math.round(gn.width)} × ${Math.round(gn.height)}`:`${Fe.width} × ${Fe.height??900}`})]}),On&&n(M0,{currentWidth:Fe.width,currentHeight:Fe.height??900,devicePresets:_r,customSizes:Ra,onApply:Hp,onSave:Jp,onRemove:Lp,onClose:()=>gr(!1)})]}),n("button",{onClick:()=>{yr(X=>!X)},className:`p-1.5 rounded transition-colors cursor-pointer ${ct?"text-white bg-[#555]":"text-gray-500 hover:text-gray-300"}`,title:ct?"Exit fullscreen":"Fill page with preview",children:n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:ct?d(we,{children:[n("polyline",{points:"4 14 10 14 10 20"}),n("polyline",{points:"20 10 14 10 14 4"}),n("line",{x1:"14",y1:"10",x2:"21",y2:"3"}),n("line",{x1:"3",y1:"21",x2:"10",y2:"14"})]}):d(we,{children:[n("polyline",{points:"15 3 21 3 21 9"}),n("polyline",{points:"9 21 3 21 3 15"}),n("line",{x1:"21",y1:"3",x2:"14",y2:"10"}),n("line",{x1:"3",y1:"21",x2:"10",y2:"14"})]})})}),n("button",{onClick:()=>{const X=Ya||Gn;X&&window.open(X,"_blank")},className:"p-1.5 rounded text-gray-500 hover:text-gray-300 transition-colors cursor-pointer",title:"Open preview in new window",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),n("polyline",{points:"15 3 21 3 21 9"}),n("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]})})]})})]}),Ip&&n(xk,{onSaveToCurrent:()=>void tl("overwrite"),onSaveAsNew:()=>void tl("new"),onDismiss:()=>Hn(!1),isSaving:Fp,scenarioName:(pl=o.find(X=>{var de;return X.id===(ce||((de=ys(o))==null?void 0:de.id))}))==null?void 0:pl.name}),n("div",{ref:E,className:`flex-1 flex ${Dn||Rn?"overflow-y-auto overflow-x-hidden":"overflow-hidden"} ${ct?"":"items-center justify-center p-8"}`,style:ct?{backgroundColor:"#fff"}:Dn?{backgroundColor:"#f5f0e8",backgroundImage:"repeating-linear-gradient(0deg, transparent, transparent 19px, #e8e0d0 19px, #e8e0d0 20px), repeating-linear-gradient(90deg, transparent, transparent 19px, #e8e0d0 19px, #e8e0d0 20px)"}:Rn?{backgroundColor:"#1e1e1e"}:{backgroundImage:`
|
|
737
|
-
linear-gradient(45deg, #333 25%, transparent 25%),
|
|
738
|
-
linear-gradient(-45deg, #333 25%, transparent 25%),
|
|
739
|
-
linear-gradient(45deg, transparent 75%, #333 75%),
|
|
740
|
-
linear-gradient(-45deg, transparent 75%, #333 75%)
|
|
741
|
-
`,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#2d2d2d"},children:Dn?n(mk,{preview:Dn,viewportWidth:Fe.width,viewportHeight:Fe.height??900,scale:Xt,onDismiss:()=>vt(null),onLoadCommit:wt}):Rn?n(gk,{preview:Rn,viewportWidth:Fe.width,viewportHeight:Fe.height??900,scale:Xt,onDismiss:()=>Lt(null)}):Gn?ct?d("div",{className:"relative w-full h-full bg-white",children:[!it&&!is&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-[#2a2a2a] rounded-lg p-8 w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the app to render"})]})]})}),is&&n("div",{className:"absolute inset-0 z-20 flex items-center justify-center",style:{backgroundColor:"rgba(0, 0, 0, 0.25)",backdropFilter:"blur(1px)",transition:"opacity 200ms ease-out"},children:d("div",{className:"flex flex-col items-center gap-3 animate-pulse",children:[n("svg",{className:"w-6 h-6 text-white/80 animate-spin",viewBox:"0 0 24 24",fill:"none",children:n("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeDasharray:"50 100"})}),n("span",{className:"text-white/70 text-xs font-['IBM_Plex_Sans']",children:"Switching scenario"})]})}),n("iframe",{ref:D,src:Ya||Gn,className:"w-full h-full border-none",title:"Editor preview",onLoad:dl,style:{opacity:it?1:0}},Wn)]}):n("div",{style:{width:`${(kr?Fe.width+_s.width:Fe.width)*Xt}px`,height:`${(kr?(Fe.height??900)+_s.height:Fe.height??900)*Xt}px`},children:n("div",{className:"origin-top-left",style:{transform:Xt<1?`scale(${Xt})`:void 0},children:n(Z2,{width:Fe.width,height:Fe.height??900,enabled:kr,children:d("div",{className:"relative bg-white",style:{width:`${Fe.width}px`,height:`${Fe.height??900}px`},children:[!it&&!is&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-[#2a2a2a] rounded-lg p-8 w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the app to render"})]})]})}),is&&n("div",{className:"absolute inset-0 z-20 flex items-center justify-center",style:{backgroundColor:"rgba(0, 0, 0, 0.25)",backdropFilter:"blur(1px)",transition:"opacity 200ms ease-out"},children:d("div",{className:"flex flex-col items-center gap-3 animate-pulse",children:[n("svg",{className:"w-6 h-6 text-white/80 animate-spin",viewBox:"0 0 24 24",fill:"none",children:n("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeDasharray:"50 100"})}),n("span",{className:"text-white/70 text-xs font-['IBM_Plex_Sans']",children:"Switching scenario"})]})}),n("iframe",{ref:D,src:Ya||Gn,className:"w-full h-full border-none",title:"Editor preview",onLoad:dl,style:{opacity:it?1:0}},Wn)]})})})}):n("div",{className:"bg-[#2a2a2a] rounded-lg flex flex-col items-center justify-center",style:{width:`${Fe.width*Xt}px`,height:`${(Fe.height??900)*Xt}px`},children:Te?d("div",{className:"flex flex-col gap-4 text-center px-8 max-w-[600px]",children:[n("h2",{className:"text-xl font-medium text-red-400 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Dev Server Failed"}),n("pre",{className:"text-xs text-left bg-[#1e1e1e] text-gray-300 p-4 rounded overflow-auto max-h-[300px] w-full font-mono whitespace-pre-wrap",children:Te}),n("button",{onClick:ze,className:"mx-auto px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded hover:bg-[#004d63] transition-colors cursor-pointer",children:"Retry"})]}):he||In?d(we,{children:[n("div",{className:"mb-4",children:n(Ut,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:In?"Starting Interactive Mode":"Starting Dev Server"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:In?"Loading component preview...":"Your dev server is starting up..."})]})]}):d("div",{className:"flex flex-col gap-3 text-center px-8",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Live Preview"}),n("p",{className:"text-sm text-gray-500 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Describe what you want to build in the Build tab"})]})})})]})]})]})}),n(ed,{})]})}),Ik=Object.freeze(Object.defineProperty({__proto__:null,default:$k,loader:Tk,meta:jk,shouldRevalidate:Ak},Symbol.toStringTag,{value:"Module"})),Fk=et(function(){return null}),Xn=Object.freeze(Object.defineProperty({__proto__:null,default:Fk},Symbol.toStringTag,{value:"Module"})),Y_={entry:{module:"/assets/entry.client-j1Vi0bco.js",imports:["/assets/jsx-runtime-D_zvdyIk.js","/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/index-vyrZD2g4.js"],css:[]},routes:{root:{id:"root",parentId:void 0,path:"",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!0,module:"/assets/root-CVjDQwjJ.js",imports:["/assets/jsx-runtime-D_zvdyIk.js","/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/index-vyrZD2g4.js","/assets/preload-helper-ckwbz45p.js","/assets/cy-logo-cli-Coe5NhbS.js","/assets/ReportIssueModal-DQsceHVv.js","/assets/useReportContext-jkCytuYz.js","/assets/loader-circle-D-q28GLF.js","/assets/createLucideIcon-BwyFiRot.js","/assets/book-open-BFSIqZgO.js","/assets/useToast-BgqkixU9.js","/assets/useLastLogLine-C8QvIe05.js","/assets/LogViewer-C-9zQdXg.js","/assets/EntityTypeIcon-BsnEOJZ_.js","/assets/TruncatedFilePath-CK7-NaPZ.js","/assets/chevron-down-B9fDzFVh.js","/assets/circle-check-DLPObLUx.js","/assets/CopyButton-DTBZZfSk.js","/assets/triangle-alert-D87ekDl8.js","/assets/copy-DXEmO0TD.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.scenarios.$scenarioId.fullscreen":{id:"routes/entity.$sha.scenarios.$scenarioId.fullscreen",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/fullscreen",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha.scenarios._scenarioId.fullscreen-DziaVQX1.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/Spinner-CIil5-gb.js","/assets/useLastLogLine-C8QvIe05.js","/assets/ViewportInspectBar-BqkA9zyZ.js","/assets/useCustomSizes-Dk0Tciqg.js","/assets/cy-logo-cli-Coe5NhbS.js","/assets/InlineSpinner-ByaELMbv.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.scenarios.$scenarioId.dev":{id:"routes/entity.$sha.scenarios.$scenarioId.dev",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/dev",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha.scenarios._scenarioId.dev-C8AyYgYT.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/Spinner-CIil5-gb.js","/assets/useLastLogLine-C8QvIe05.js","/assets/ViewportInspectBar-BqkA9zyZ.js","/assets/useCustomSizes-Dk0Tciqg.js","/assets/cy-logo-cli-Coe5NhbS.js","/assets/InlineSpinner-ByaELMbv.js","/assets/editorPreview-C6fEYHrh.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/preload-helper-ckwbz45p.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.interactive-switch-scenario":{id:"routes/api.interactive-switch-scenario",parentId:"root",path:"api/interactive-switch-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.interactive-switch-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-screenshot":{id:"routes/api.editor-journal-screenshot",parentId:"root",path:"api/editor-journal-screenshot",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-screenshot-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-save-scenario-data":{id:"routes/api.editor-save-scenario-data",parentId:"root",path:"api/editor-save-scenario-data",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-save-scenario-data-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha_.edit.$scenarioId":{id:"routes/entity.$sha_.edit.$scenarioId",parentId:"root",path:"entity/:sha/edit/:scenarioId",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha_.edit._scenarioId-D_O_ajfZ.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/InteractivePreview-6WjVfhxX.js","/assets/Spinner-CIil5-gb.js","/assets/preload-helper-ckwbz45p.js","/assets/useLastLogLine-C8QvIe05.js","/assets/InlineSpinner-ByaELMbv.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-register-scenario":{id:"routes/api.editor-register-scenario",parentId:"root",path:"api/editor-register-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-register-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-coverage":{id:"routes/api.editor-scenario-coverage",parentId:"root",path:"api/editor-scenario-coverage",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-coverage-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha_.create-scenario":{id:"routes/entity.$sha_.create-scenario",parentId:"root",path:"entity/:sha/create-scenario",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha_.create-scenario-BTcpgIpC.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/InteractivePreview-6WjVfhxX.js","/assets/Spinner-CIil5-gb.js","/assets/executionFlowCoverage-BWhdfn70.js","/assets/preload-helper-ckwbz45p.js","/assets/useLastLogLine-C8QvIe05.js","/assets/InlineSpinner-ByaELMbv.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-capture-scenario":{id:"routes/api.editor-capture-scenario",parentId:"root",path:"api/editor-capture-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-capture-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-image.$":{id:"routes/api.editor-scenario-image.$",parentId:"root",path:"api/editor-scenario-image/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-image._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-image.$":{id:"routes/api.editor-journal-image.$",parentId:"root",path:"api/editor-journal-image/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-image._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-recapture-stale":{id:"routes/api.editor-recapture-stale",parentId:"root",path:"api/editor-recapture-stale",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-recapture-stale-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-rename-scenario":{id:"routes/api.editor-rename-scenario",parentId:"root",path:"api/editor-rename-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-rename-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-save-seed-state":{id:"routes/api.editor-save-seed-state",parentId:"root",path:"api/editor-save-seed-state",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-save-seed-state-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-prompt":{id:"routes/api.editor-scenario-prompt",parentId:"root",path:"api/editor-scenario-prompt",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-prompt-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-switch-scenario":{id:"routes/api.editor-switch-scenario",parentId:"root",path:"api/editor-switch-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-switch-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.generate-scenario-data":{id:"routes/api.generate-scenario-data",parentId:"root",path:"api/generate-scenario-data",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.generate-scenario-data-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-update":{id:"routes/api.editor-journal-update",parentId:"root",path:"api/editor-journal-update",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-update-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-client-errors":{id:"routes/api.editor-client-errors",parentId:"root",path:"api/editor-client-errors",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-client-errors-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-entity-status":{id:"routes/api.editor-entity-status",parentId:"root",path:"api/editor-entity-status",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-entity-status-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-entry":{id:"routes/api.editor-journal-entry",parentId:"root",path:"api/editor-journal-entry",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-entry-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-data":{id:"routes/api.editor-scenario-data",parentId:"root",path:"api/editor-scenario-data",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-data-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-verify-routes":{id:"routes/api.editor-verify-routes",parentId:"root",path:"api/editor-verify-routes",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-verify-routes-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.llm-calls.$entitySha":{id:"routes/api.llm-calls.$entitySha",parentId:"root",path:"api/llm-calls/:entitySha",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.llm-calls._entitySha-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-project-info":{id:"routes/api.editor-project-info",parentId:"root",path:"api/editor-project-info",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-project-info-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-test-results":{id:"routes/api.editor-test-results",parentId:"root",path:"api/editor-test-results",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-test-results-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.branch-entity-diff":{id:"routes/api.branch-entity-diff",parentId:"root",path:"api/branch-entity-diff",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.branch-entity-diff-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.capture-screenshot":{id:"routes/api.capture-screenshot",parentId:"root",path:"api/capture-screenshot",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.capture-screenshot-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-load-commit":{id:"routes/api.editor-load-commit",parentId:"root",path:"api/editor-load-commit",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-load-commit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.recapture-scenario":{id:"routes/api.recapture-scenario",parentId:"root",path:"api/recapture-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.recapture-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.agent-transcripts":{id:"routes/api.agent-transcripts",parentId:"root",path:"api/agent-transcripts",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.agent-transcripts-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-dev-server":{id:"routes/api.editor-dev-server",parentId:"root",path:"api/editor-dev-server",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-dev-server-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.logs.$projectSlug":{id:"routes/api.logs.$projectSlug",parentId:"root",path:"api/logs/:projectSlug",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.logs._projectSlug-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-file-diff":{id:"routes/api.editor-file-diff",parentId:"root",path:"api/editor-file-diff",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-file-diff-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenarios":{id:"routes/api.editor-scenarios",parentId:"root",path:"api/editor-scenarios",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenarios-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.execute-function":{id:"routes/api.execute-function",parentId:"root",path:"api/execute-function",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.execute-function-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.interactive-mode":{id:"routes/api.interactive-mode",parentId:"root",path:"api/interactive-mode",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.interactive-mode-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.delete-scenario":{id:"routes/api.delete-scenario",parentId:"root",path:"api/delete-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.delete-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.dev-mode-events":{id:"routes/api.dev-mode-events",parentId:"root",path:"api/dev-mode-events",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.dev-mode-events-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.generate-report":{id:"routes/api.generate-report",parentId:"root",path:"api/generate-report",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.generate-report-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal":{id:"routes/api.editor-journal",parentId:"root",path:"api/editor-journal",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-refresh":{id:"routes/api.editor-refresh",parentId:"root",path:"api/editor-refresh",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-refresh-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-roadmap":{id:"routes/api.editor-roadmap",parentId:"root",path:"api/editor-roadmap",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-roadmap-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-session":{id:"routes/api.editor-session",parentId:"root",path:"api/editor-session",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-session-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.memory-profile":{id:"routes/api.memory-profile",parentId:"root",path:"api/memory-profile",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.memory-profile-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.process-status":{id:"routes/api.process-status",parentId:"root",path:"api/process-status",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.process-status-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.restart-server":{id:"routes/api.restart-server",parentId:"root",path:"api/restart-server",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.restart-server-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.save-scenarios":{id:"routes/api.save-scenarios",parentId:"root",path:"api/save-scenarios",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.save-scenarios-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/agent-transcripts":{id:"routes/agent-transcripts",parentId:"root",path:"agent-transcripts",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/agent-transcripts-B8NCeOrm.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-jkCytuYz.js","/assets/createLucideIcon-BwyFiRot.js","/assets/terminal-DHemCJIs.js","/assets/search-BooqacKS.js","/assets/chevron-down-B9fDzFVh.js","/assets/book-open-BFSIqZgO.js","/assets/triangle-alert-D87ekDl8.js","/assets/copy-DXEmO0TD.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-commit":{id:"routes/api.editor-commit",parentId:"root",path:"api/editor-commit",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-commit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-schema":{id:"routes/api.editor-schema",parentId:"root",path:"api/editor-schema",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-schema-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-audit":{id:"routes/api.editor-audit",parentId:"root",path:"api/editor-audit",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-audit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.kill-process":{id:"routes/api.kill-process",parentId:"root",path:"api/kill-process",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.kill-process-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.save-fixture":{id:"routes/api.save-fixture",parentId:"root",path:"api/save-fixture",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.save-fixture-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.screenshot.$":{id:"routes/api.screenshot.$",parentId:"root",path:"api/screenshot/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.screenshot._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/activity.($tab)":{id:"routes/activity.($tab)",parentId:"root",path:"activity/:tab?",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/activity.(_tab)-DqM9hbNE.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/LogViewer-C-9zQdXg.js","/assets/useLastLogLine-C8QvIe05.js","/assets/useReportContext-jkCytuYz.js","/assets/EntityTypeIcon-BsnEOJZ_.js","/assets/EntityTypeBadge-CQgyEGV-.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/LoadingDots-By5zI316.js","/assets/loader-circle-D-q28GLF.js","/assets/pause-BP6fitdh.js","/assets/createLucideIcon-BwyFiRot.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.debug-setup":{id:"routes/api.debug-setup",parentId:"root",path:"api/debug-setup",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.debug-setup-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-file":{id:"routes/api.editor-file",parentId:"root",path:"api/editor-file",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-file-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.labs-unlock":{id:"routes/api.labs-unlock",parentId:"root",path:"api/labs-unlock",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.labs-unlock-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.recapture":{id:"routes/api.recapture",parentId:"root",path:"api/recapture",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.recapture-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.rule-path":{id:"routes/api.rule-path",parentId:"root",path:"api/rule-path",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.rule-path-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.$":{id:"routes/entity.$sha.$",parentId:"root",path:"entity/:sha/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha._-Ce1s4OQ1.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useLastLogLine-C8QvIe05.js","/assets/Spinner-CIil5-gb.js","/assets/InteractivePreview-6WjVfhxX.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/LibraryFunctionPreview-ChX-Hp7W.js","/assets/LoadingDots-By5zI316.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/ScenarioViewer-Cl4oOA3A.js","/assets/createLucideIcon-BwyFiRot.js","/assets/executionFlowCoverage-BWhdfn70.js","/assets/EntityTypeIcon-BsnEOJZ_.js","/assets/CopyButton-DTBZZfSk.js","/assets/LogViewer-C-9zQdXg.js","/assets/MiniClaudeChat-BusrvT2F.js","/assets/useReportContext-jkCytuYz.js","/assets/preload-helper-ckwbz45p.js","/assets/InlineSpinner-ByaELMbv.js","/assets/ViewportInspectBar-BqkA9zyZ.js","/assets/useCustomSizes-Dk0Tciqg.js","/assets/ReportIssueModal-DQsceHVv.js","/assets/circle-check-DLPObLUx.js","/assets/triangle-alert-D87ekDl8.js","/assets/copy-DXEmO0TD.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.analyze":{id:"routes/api.analyze",parentId:"root",path:"api/analyze",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.analyze-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/simulations":{id:"routes/simulations",parentId:"root",path:"simulations",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/simulations-ovy6FjRY.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-jkCytuYz.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/LoadingDots-By5zI316.js","/assets/EntityTypeIcon-BsnEOJZ_.js","/assets/fileTableUtils-Daa96Fr1.js","/assets/chevron-down-B9fDzFVh.js","/assets/search-BooqacKS.js","/assets/loader-circle-D-q28GLF.js","/assets/createLucideIcon-BwyFiRot.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.events":{id:"routes/api.events",parentId:"root",path:"api/events",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.events-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.health":{id:"routes/api.health",parentId:"root",path:"api/health",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.health-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.memory":{id:"routes/api.memory",parentId:"root",path:"api/memory",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.memory-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.queue":{id:"routes/api.queue",parentId:"root",path:"api/queue",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.queue-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/dev.empty":{id:"routes/dev.empty",parentId:"root",path:"dev/empty",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/dev.empty-iRhRIFlp.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/ScenarioViewer-Cl4oOA3A.js","/assets/InteractivePreview-6WjVfhxX.js","/assets/ViewportInspectBar-BqkA9zyZ.js","/assets/useCustomSizes-Dk0Tciqg.js","/assets/LogViewer-C-9zQdXg.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/useLastLogLine-C8QvIe05.js","/assets/Spinner-CIil5-gb.js","/assets/preload-helper-ckwbz45p.js","/assets/ReportIssueModal-DQsceHVv.js","/assets/createLucideIcon-BwyFiRot.js","/assets/circle-check-DLPObLUx.js","/assets/triangle-alert-D87ekDl8.js","/assets/copy-DXEmO0TD.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/InlineSpinner-ByaELMbv.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/settings":{id:"routes/settings",parentId:"root",path:"settings",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/settings-BM0nbryO.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-jkCytuYz.js","/assets/CopyButton-DTBZZfSk.js","/assets/copy-DXEmO0TD.js","/assets/createLucideIcon-BwyFiRot.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/static.$":{id:"routes/static.$",parentId:"root",path:"static/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/static._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/_index":{id:"routes/_index",parentId:"root",path:void 0,index:!0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/_index-DnOgyseQ.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useLastLogLine-C8QvIe05.js","/assets/useToast-BgqkixU9.js","/assets/useReportContext-jkCytuYz.js","/assets/LogViewer-C-9zQdXg.js","/assets/EntityTypeIcon-BsnEOJZ_.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/createLucideIcon-BwyFiRot.js","/assets/circle-check-DLPObLUx.js","/assets/loader-circle-D-q28GLF.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/memory":{id:"routes/memory",parentId:"root",path:"memory",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/memory-CEWIUC4t.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-jkCytuYz.js","/assets/createLucideIcon-BwyFiRot.js","/assets/terminal-DHemCJIs.js","/assets/copy-DXEmO0TD.js","/assets/CopyButton-DTBZZfSk.js","/assets/chevron-down-B9fDzFVh.js","/assets/search-BooqacKS.js","/assets/pause-BP6fitdh.js","/assets/book-open-BFSIqZgO.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/files":{id:"routes/files",parentId:"root",path:"files",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/files-kuny2Q_s.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-jkCytuYz.js","/assets/EntityItem-BxclONWq.js","/assets/fileTableUtils-Daa96Fr1.js","/assets/chevron-down-B9fDzFVh.js","/assets/search-BooqacKS.js","/assets/createLucideIcon-BwyFiRot.js","/assets/useToast-BgqkixU9.js","/assets/TruncatedFilePath-CK7-NaPZ.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/LibraryFunctionPreview-ChX-Hp7W.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/triangle-alert-D87ekDl8.js","/assets/EntityTypeIcon-BsnEOJZ_.js","/assets/EntityTypeBadge-CQgyEGV-.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/labs":{id:"routes/labs",parentId:"root",path:"labs",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/labs-c3yLxSEp.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-jkCytuYz.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/git":{id:"routes/git",parentId:"root",path:"git",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/git-DgCZPMie.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useReportContext-jkCytuYz.js","/assets/EntityItem-BxclONWq.js","/assets/LogViewer-C-9zQdXg.js","/assets/index-SqjQKTdH.js","/assets/fileTableUtils-Daa96Fr1.js","/assets/createLucideIcon-BwyFiRot.js","/assets/useToast-BgqkixU9.js","/assets/TruncatedFilePath-CK7-NaPZ.js","/assets/SafeScreenshot-DThcm_9M.js","/assets/LibraryFunctionPreview-ChX-Hp7W.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/triangle-alert-D87ekDl8.js","/assets/EntityTypeIcon-BsnEOJZ_.js","/assets/EntityTypeBadge-CQgyEGV-.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/editor.entity.($sha)":{id:"routes/editor.entity.($sha)",parentId:"root",path:"editor",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor.entity.(_sha)-785deXbZ.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js","/assets/jsx-runtime-D_zvdyIk.js","/assets/useCustomSizes-Dk0Tciqg.js","/assets/editorPreview-C6fEYHrh.js","/assets/CopyButton-DTBZZfSk.js","/assets/MiniClaudeChat-BusrvT2F.js","/assets/preload-helper-ckwbz45p.js","/assets/cy-logo-cli-Coe5NhbS.js","/assets/Spinner-CIil5-gb.js","/assets/copy-DXEmO0TD.js","/assets/createLucideIcon-BwyFiRot.js","/assets/useLastLogLine-C8QvIe05.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-index":{id:"editor-tab-index",parentId:"routes/editor.entity.($sha)",path:void 0,index:!0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-BZPBzV73.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-build":{id:"editor-tab-build",parentId:"routes/editor.entity.($sha)",path:"build",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-BZPBzV73.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-structure":{id:"editor-tab-structure",parentId:"routes/editor.entity.($sha)",path:"structure",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-BZPBzV73.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-history":{id:"editor-tab-history",parentId:"routes/editor.entity.($sha)",path:"history",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-BZPBzV73.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-settings":{id:"editor-tab-settings",parentId:"routes/editor.entity.($sha)",path:"settings",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-BZPBzV73.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"editor-tab-entity":{id:"editor-tab-entity",parentId:"routes/editor.entity.($sha)",path:"entity/:sha",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor._tab-BZPBzV73.js",imports:["/assets/chunk-UVKPFVEO-Bmq2apuh.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0}},url:"/assets/manifest-3d8cde80.js",version:"3d8cde80",sri:void 0},U_="build/client",W_="/",J_={unstable_optimizeDeps:!1,unstable_subResourceIntegrity:!1,unstable_trailingSlashAwareDataRequests:!1,unstable_previewServerPrerendering:!1,v8_middleware:!1,v8_splitRouteModules:!1,v8_viteEnvironmentApi:!1},H_=!0,V_=!1,K_=[],G_={mode:"lazy",manifestPath:"/__manifest"},q_="/",Q_={module:ym},Z_={root:{id:"root",parentId:void 0,path:"",index:void 0,caseSensitive:void 0,module:P0},"routes/entity.$sha.scenarios.$scenarioId.fullscreen":{id:"routes/entity.$sha.scenarios.$scenarioId.fullscreen",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/fullscreen",index:void 0,caseSensitive:void 0,module:D0},"routes/entity.$sha.scenarios.$scenarioId.dev":{id:"routes/entity.$sha.scenarios.$scenarioId.dev",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/dev",index:void 0,caseSensitive:void 0,module:fy},"routes/api.interactive-switch-scenario":{id:"routes/api.interactive-switch-scenario",parentId:"root",path:"api/interactive-switch-scenario",index:void 0,caseSensitive:void 0,module:Gy},"routes/api.editor-journal-screenshot":{id:"routes/api.editor-journal-screenshot",parentId:"root",path:"api/editor-journal-screenshot",index:void 0,caseSensitive:void 0,module:Qy},"routes/api.editor-save-scenario-data":{id:"routes/api.editor-save-scenario-data",parentId:"root",path:"api/editor-save-scenario-data",index:void 0,caseSensitive:void 0,module:Xy},"routes/entity.$sha_.edit.$scenarioId":{id:"routes/entity.$sha_.edit.$scenarioId",parentId:"root",path:"entity/:sha/edit/:scenarioId",index:void 0,caseSensitive:void 0,module:wx},"routes/api.editor-register-scenario":{id:"routes/api.editor-register-scenario",parentId:"root",path:"api/editor-register-scenario",index:void 0,caseSensitive:void 0,module:Wx},"routes/api.editor-scenario-coverage":{id:"routes/api.editor-scenario-coverage",parentId:"root",path:"api/editor-scenario-coverage",index:void 0,caseSensitive:void 0,module:Kx},"routes/entity.$sha_.create-scenario":{id:"routes/entity.$sha_.create-scenario",parentId:"root",path:"entity/:sha/create-scenario",index:void 0,caseSensitive:void 0,module:tb},"routes/api.editor-capture-scenario":{id:"routes/api.editor-capture-scenario",parentId:"root",path:"api/editor-capture-scenario",index:void 0,caseSensitive:void 0,module:sb},"routes/api.editor-scenario-image.$":{id:"routes/api.editor-scenario-image.$",parentId:"root",path:"api/editor-scenario-image/*",index:void 0,caseSensitive:void 0,module:ob},"routes/api.editor-journal-image.$":{id:"routes/api.editor-journal-image.$",parentId:"root",path:"api/editor-journal-image/*",index:void 0,caseSensitive:void 0,module:lb},"routes/api.editor-recapture-stale":{id:"routes/api.editor-recapture-stale",parentId:"root",path:"api/editor-recapture-stale",index:void 0,caseSensitive:void 0,module:Nb},"routes/api.editor-rename-scenario":{id:"routes/api.editor-rename-scenario",parentId:"root",path:"api/editor-rename-scenario",index:void 0,caseSensitive:void 0,module:Cb},"routes/api.editor-save-seed-state":{id:"routes/api.editor-save-seed-state",parentId:"root",path:"api/editor-save-seed-state",index:void 0,caseSensitive:void 0,module:_b},"routes/api.editor-scenario-prompt":{id:"routes/api.editor-scenario-prompt",parentId:"root",path:"api/editor-scenario-prompt",index:void 0,caseSensitive:void 0,module:Ab},"routes/api.editor-switch-scenario":{id:"routes/api.editor-switch-scenario",parentId:"root",path:"api/editor-switch-scenario",index:void 0,caseSensitive:void 0,module:Pb},"routes/api.generate-scenario-data":{id:"routes/api.generate-scenario-data",parentId:"root",path:"api/generate-scenario-data",index:void 0,caseSensitive:void 0,module:Lv},"routes/api.editor-journal-update":{id:"routes/api.editor-journal-update",parentId:"root",path:"api/editor-journal-update",index:void 0,caseSensitive:void 0,module:Zv},"routes/api.editor-client-errors":{id:"routes/api.editor-client-errors",parentId:"root",path:"api/editor-client-errors",index:void 0,caseSensitive:void 0,module:ew},"routes/api.editor-entity-status":{id:"routes/api.editor-entity-status",parentId:"root",path:"api/editor-entity-status",index:void 0,caseSensitive:void 0,module:nw},"routes/api.editor-journal-entry":{id:"routes/api.editor-journal-entry",parentId:"root",path:"api/editor-journal-entry",index:void 0,caseSensitive:void 0,module:sw},"routes/api.editor-scenario-data":{id:"routes/api.editor-scenario-data",parentId:"root",path:"api/editor-scenario-data",index:void 0,caseSensitive:void 0,module:ow},"routes/api.editor-verify-routes":{id:"routes/api.editor-verify-routes",parentId:"root",path:"api/editor-verify-routes",index:void 0,caseSensitive:void 0,module:lw},"routes/api.llm-calls.$entitySha":{id:"routes/api.llm-calls.$entitySha",parentId:"root",path:"api/llm-calls/:entitySha",index:void 0,caseSensitive:void 0,module:uw},"routes/api.editor-project-info":{id:"routes/api.editor-project-info",parentId:"root",path:"api/editor-project-info",index:void 0,caseSensitive:void 0,module:mw},"routes/api.editor-test-results":{id:"routes/api.editor-test-results",parentId:"root",path:"api/editor-test-results",index:void 0,caseSensitive:void 0,module:Cw},"routes/api.branch-entity-diff":{id:"routes/api.branch-entity-diff",parentId:"root",path:"api/branch-entity-diff",index:void 0,caseSensitive:void 0,module:Tw},"routes/api.capture-screenshot":{id:"routes/api.capture-screenshot",parentId:"root",path:"api/capture-screenshot",index:void 0,caseSensitive:void 0,module:$w},"routes/api.editor-load-commit":{id:"routes/api.editor-load-commit",parentId:"root",path:"api/editor-load-commit",index:void 0,caseSensitive:void 0,module:Ww},"routes/api.recapture-scenario":{id:"routes/api.recapture-scenario",parentId:"root",path:"api/recapture-scenario",index:void 0,caseSensitive:void 0,module:Kw},"routes/api.agent-transcripts":{id:"routes/api.agent-transcripts",parentId:"root",path:"api/agent-transcripts",index:void 0,caseSensitive:void 0,module:lN},"routes/api.editor-dev-server":{id:"routes/api.editor-dev-server",parentId:"root",path:"api/editor-dev-server",index:void 0,caseSensitive:void 0,module:pN},"routes/api.logs.$projectSlug":{id:"routes/api.logs.$projectSlug",parentId:"root",path:"api/logs/:projectSlug",index:void 0,caseSensitive:void 0,module:fN},"routes/api.editor-file-diff":{id:"routes/api.editor-file-diff",parentId:"root",path:"api/editor-file-diff",index:void 0,caseSensitive:void 0,module:yN},"routes/api.editor-scenarios":{id:"routes/api.editor-scenarios",parentId:"root",path:"api/editor-scenarios",index:void 0,caseSensitive:void 0,module:bN},"routes/api.execute-function":{id:"routes/api.execute-function",parentId:"root",path:"api/execute-function",index:void 0,caseSensitive:void 0,module:NN},"routes/api.interactive-mode":{id:"routes/api.interactive-mode",parentId:"root",path:"api/interactive-mode",index:void 0,caseSensitive:void 0,module:kN},"routes/api.delete-scenario":{id:"routes/api.delete-scenario",parentId:"root",path:"api/delete-scenario",index:void 0,caseSensitive:void 0,module:EN},"routes/api.dev-mode-events":{id:"routes/api.dev-mode-events",parentId:"root",path:"api/dev-mode-events",index:void 0,caseSensitive:void 0,module:PN},"routes/api.generate-report":{id:"routes/api.generate-report",parentId:"root",path:"api/generate-report",index:void 0,caseSensitive:void 0,module:BN},"routes/api.editor-journal":{id:"routes/api.editor-journal",parentId:"root",path:"api/editor-journal",index:void 0,caseSensitive:void 0,module:UN},"routes/api.editor-refresh":{id:"routes/api.editor-refresh",parentId:"root",path:"api/editor-refresh",index:void 0,caseSensitive:void 0,module:QN},"routes/api.editor-roadmap":{id:"routes/api.editor-roadmap",parentId:"root",path:"api/editor-roadmap",index:void 0,caseSensitive:void 0,module:l1},"routes/api.editor-session":{id:"routes/api.editor-session",parentId:"root",path:"api/editor-session",index:void 0,caseSensitive:void 0,module:d1},"routes/api.memory-profile":{id:"routes/api.memory-profile",parentId:"root",path:"api/memory-profile",index:void 0,caseSensitive:void 0,module:f1},"routes/api.process-status":{id:"routes/api.process-status",parentId:"root",path:"api/process-status",index:void 0,caseSensitive:void 0,module:b1},"routes/api.restart-server":{id:"routes/api.restart-server",parentId:"root",path:"api/restart-server",index:void 0,caseSensitive:void 0,module:S1},"routes/api.save-scenarios":{id:"routes/api.save-scenarios",parentId:"root",path:"api/save-scenarios",index:void 0,caseSensitive:void 0,module:k1},"routes/agent-transcripts":{id:"routes/agent-transcripts",parentId:"root",path:"agent-transcripts",index:void 0,caseSensitive:void 0,module:B1},"routes/api.editor-commit":{id:"routes/api.editor-commit",parentId:"root",path:"api/editor-commit",index:void 0,caseSensitive:void 0,module:U1},"routes/api.editor-schema":{id:"routes/api.editor-schema",parentId:"root",path:"api/editor-schema",index:void 0,caseSensitive:void 0,module:V1},"routes/api.editor-audit":{id:"routes/api.editor-audit",parentId:"root",path:"api/editor-audit",index:void 0,caseSensitive:void 0,module:G1},"routes/api.kill-process":{id:"routes/api.kill-process",parentId:"root",path:"api/kill-process",index:void 0,caseSensitive:void 0,module:Q1},"routes/api.save-fixture":{id:"routes/api.save-fixture",parentId:"root",path:"api/save-fixture",index:void 0,caseSensitive:void 0,module:rS},"routes/api.screenshot.$":{id:"routes/api.screenshot.$",parentId:"root",path:"api/screenshot/*",index:void 0,caseSensitive:void 0,module:aS},"routes/activity.($tab)":{id:"routes/activity.($tab)",parentId:"root",path:"activity/:tab?",index:void 0,caseSensitive:void 0,module:fS},"routes/api.debug-setup":{id:"routes/api.debug-setup",parentId:"root",path:"api/debug-setup",index:void 0,caseSensitive:void 0,module:xS},"routes/api.editor-file":{id:"routes/api.editor-file",parentId:"root",path:"api/editor-file",index:void 0,caseSensitive:void 0,module:vS},"routes/api.labs-unlock":{id:"routes/api.labs-unlock",parentId:"root",path:"api/labs-unlock",index:void 0,caseSensitive:void 0,module:CS},"routes/api.recapture":{id:"routes/api.recapture",parentId:"root",path:"api/recapture",index:void 0,caseSensitive:void 0,module:_S},"routes/api.rule-path":{id:"routes/api.rule-path",parentId:"root",path:"api/rule-path",index:void 0,caseSensitive:void 0,module:TS},"routes/entity.$sha.$":{id:"routes/entity.$sha.$",parentId:"root",path:"entity/:sha/*",index:void 0,caseSensitive:void 0,module:eC},"routes/api.analyze":{id:"routes/api.analyze",parentId:"root",path:"api/analyze",index:void 0,caseSensitive:void 0,module:rC},"routes/simulations":{id:"routes/simulations",parentId:"root",path:"simulations",index:void 0,caseSensitive:void 0,module:dC},"routes/api.events":{id:"routes/api.events",parentId:"root",path:"api/events",index:void 0,caseSensitive:void 0,module:pC},"routes/api.health":{id:"routes/api.health",parentId:"root",path:"api/health",index:void 0,caseSensitive:void 0,module:mC},"routes/api.memory":{id:"routes/api.memory",parentId:"root",path:"api/memory",index:void 0,caseSensitive:void 0,module:AC},"routes/api.queue":{id:"routes/api.queue",parentId:"root",path:"api/queue",index:void 0,caseSensitive:void 0,module:TC},"routes/dev.empty":{id:"routes/dev.empty",parentId:"root",path:"dev/empty",index:void 0,caseSensitive:void 0,module:IC},"routes/settings":{id:"routes/settings",parentId:"root",path:"settings",index:void 0,caseSensitive:void 0,module:BC},"routes/static.$":{id:"routes/static.$",parentId:"root",path:"static/*",index:void 0,caseSensitive:void 0,module:UC},"routes/_index":{id:"routes/_index",parentId:"root",path:void 0,index:!0,caseSensitive:void 0,module:ZC},"routes/memory":{id:"routes/memory",parentId:"root",path:"memory",index:void 0,caseSensitive:void 0,module:S2},"routes/files":{id:"routes/files",parentId:"root",path:"files",index:void 0,caseSensitive:void 0,module:j2},"routes/labs":{id:"routes/labs",parentId:"root",path:"labs",index:void 0,caseSensitive:void 0,module:O2},"routes/git":{id:"routes/git",parentId:"root",path:"git",index:void 0,caseSensitive:void 0,module:G2},"routes/editor.entity.($sha)":{id:"routes/editor.entity.($sha)",parentId:"root",path:"editor",index:void 0,caseSensitive:void 0,module:Ik},"editor-tab-index":{id:"editor-tab-index",parentId:"routes/editor.entity.($sha)",path:void 0,index:!0,caseSensitive:void 0,module:Xn},"editor-tab-build":{id:"editor-tab-build",parentId:"routes/editor.entity.($sha)",path:"build",index:void 0,caseSensitive:void 0,module:Xn},"editor-tab-structure":{id:"editor-tab-structure",parentId:"routes/editor.entity.($sha)",path:"structure",index:void 0,caseSensitive:void 0,module:Xn},"editor-tab-history":{id:"editor-tab-history",parentId:"routes/editor.entity.($sha)",path:"history",index:void 0,caseSensitive:void 0,module:Xn},"editor-tab-settings":{id:"editor-tab-settings",parentId:"routes/editor.entity.($sha)",path:"settings",index:void 0,caseSensitive:void 0,module:Xn},"editor-tab-entity":{id:"editor-tab-entity",parentId:"routes/editor.entity.($sha)",path:"entity/:sha",index:void 0,caseSensitive:void 0,module:Xn}},X_=!1;export{df as $,ag as A,ng as B,lg as C,Xf as D,$e as E,Sf as F,Cf as G,Tn as H,P_ as I,Bm as J,Um as K,Wm as L,Jm as M,gd as N,Vm as O,Km as P,yd as Q,qm as R,Qm as S,hf as T,xd as U,tf as V,rf as W,sf as X,af as Y,lf as Z,cf as _,Im as a,uf as a0,Lm as a1,zm as a2,pf as a3,Bs as a4,ff as a5,gf as a6,yf as a7,xf as a8,vf as a9,V_ as aA,K_ as aB,G_ as aC,q_ as aD,Q_ as aE,Z_ as aF,X_ as aG,Y_ as aH,bf as aa,F_ as ab,ri as ac,D_ as ad,O_ as ae,R_ as af,I_ as ag,B_ as ah,Re as ai,vg as aj,xg as ak,Tg as al,Gr as am,T_ as an,Cd as ao,hg as ap,mg as aq,VN as ar,z_ as as,pn as at,M_ as au,$_ as av,U_ as aw,W_ as ax,J_ as ay,H_ as az,En as b,_n as c,Jt as d,Kr as e,Zo as f,ra as g,fd as h,Mm as i,Rf as j,Of as k,ln as l,Ht as m,ei as n,Hf as o,Us as p,Xe as q,wd as r,Nd as s,ti as t,sn as u,Sd as v,dr as w,rr as x,Ff as y,El as z};
|