Spaces:
Running
Running
File size: 14,001 Bytes
13ae717 ec51066 13ae717 378e163 13ae717 ec51066 13ae717 378e163 0ee2ef4 ec51066 13ae717 ec51066 88c1c3d ec51066 88c1c3d ec51066 13ae717 ec51066 0d9156b c94b5be 13ae717 980bc0b 13ae717 ec51066 13ae717 c9b2910 88c1c3d 13ae717 ec51066 13ae717 bb2648a ec51066 13ae717 ec1f23a 13ae717 378e163 0b4acc5 378e163 ec51066 13ae717 ec51066 13ae717 ec51066 13ae717 ec1f23a 13ae717 ec1f23a 44259fa ec1f23a ec51066 13ae717 ec51066 13ae717 ec51066 13ae717 bb2648a 13ae717 15d8e20 13ae717 15d8e20 13ae717 ec51066 13ae717 ec51066 13ae717 bb2648a 13ae717 88c1c3d ec51066 13ae717 d16ac3e 80fd52f 13ae717 ec51066 13ae717 c9b2910 88c1c3d 13ae717 80fd52f 13ae717 80fd52f 13ae717 ec51066 13ae717 ec51066 c9b2910 88c1c3d 13ae717 ec51066 13ae717 ec51066 13ae717 c9b2910 13ae717 c9b2910 33dc9ee c9b2910 13ae717 0d9156b 13ae717 ec51066 980bc0b 13ae717 0d9156b 13ae717 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
"use client";
import { useMemo, useRef, useState } from "react";
import { toast } from "sonner";
import { editor } from "monaco-editor";
import Editor from "@monaco-editor/react";
import { CopyIcon } from "lucide-react";
import {
useCopyToClipboard,
useEvent,
useLocalStorage,
useMount,
useUnmount,
useUpdateEffect,
} from "react-use";
import classNames from "classnames";
import { useRouter, useSearchParams } from "next/navigation";
import { Header } from "@/components/editor/header";
import { Footer } from "@/components/editor/footer";
import { defaultHTML } from "@/lib/consts";
import { Preview } from "@/components/editor/preview";
import { useEditor } from "@/hooks/useEditor";
import { AskAI } from "@/components/editor/ask-ai";
import { DeployButton } from "./deploy-button";
import { Page, Project } from "@/types";
import { SaveButton } from "./save-button";
import { LoadProject } from "../my-projects/load-project";
import { isTheSameHtml } from "@/lib/compare-html-diff";
import { ListPages } from "./pages";
export const AppEditor = ({
project,
pages: initialPages,
images,
isNew,
}: {
project?: Project | null;
pages?: Page[];
images?: string[];
isNew?: boolean;
}) => {
const [htmlStorage, , removeHtmlStorage] = useLocalStorage("pages");
const [, copyToClipboard] = useCopyToClipboard();
const { htmlHistory, setHtmlHistory, prompts, setPrompts, pages, setPages } =
useEditor(
initialPages,
project?.prompts ?? [],
typeof htmlStorage === "string" ? htmlStorage : undefined
);
const searchParams = useSearchParams();
const router = useRouter();
const deploy = searchParams.get("deploy") === "true";
const iframeRef = useRef<HTMLIFrameElement | null>(null);
const preview = useRef<HTMLDivElement>(null);
const editor = useRef<HTMLDivElement>(null);
const editorRef = useRef<editor.IStandaloneCodeEditor | null>(null);
const resizer = useRef<HTMLDivElement>(null);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const monacoRef = useRef<any>(null);
const [currentTab, setCurrentTab] = useState("chat");
const [currentPage, setCurrentPage] = useState("index.html");
const [device, setDevice] = useState<"desktop" | "mobile">("desktop");
const [isResizing, setIsResizing] = useState(false);
const [isAiWorking, setIsAiWorking] = useState(false);
const [isEditableModeEnabled, setIsEditableModeEnabled] = useState(false);
const [selectedElement, setSelectedElement] = useState<HTMLElement | null>(
null
);
const [selectedFiles, setSelectedFiles] = useState<string[]>([]);
const resetLayout = () => {
if (!editor.current || !preview.current) return;
// lg breakpoint is 1024px based on useBreakpoint definition and Tailwind defaults
if (window.innerWidth >= 1024) {
// Set initial 1/3 - 2/3 sizes for large screens, accounting for resizer width
const resizerWidth = resizer.current?.offsetWidth ?? 8; // w-2 = 0.5rem = 8px
const availableWidth = window.innerWidth - resizerWidth;
const initialEditorWidth = availableWidth / 3; // Editor takes 1/3 of space
const initialPreviewWidth = availableWidth - initialEditorWidth; // Preview takes 2/3
editor.current.style.width = `${initialEditorWidth}px`;
preview.current.style.width = `${initialPreviewWidth}px`;
} else {
// Remove inline styles for smaller screens, let CSS flex-col handle it
editor.current.style.width = "";
preview.current.style.width = "";
}
};
const handleResize = (e: MouseEvent) => {
if (!editor.current || !preview.current || !resizer.current) return;
const resizerWidth = resizer.current.offsetWidth;
const minWidth = 100; // Minimum width for editor/preview
const maxWidth = window.innerWidth - resizerWidth - minWidth;
const editorWidth = e.clientX;
const clampedEditorWidth = Math.max(
minWidth,
Math.min(editorWidth, maxWidth)
);
const calculatedPreviewWidth =
window.innerWidth - clampedEditorWidth - resizerWidth;
editor.current.style.width = `${clampedEditorWidth}px`;
preview.current.style.width = `${calculatedPreviewWidth}px`;
};
const handleMouseDown = () => {
setIsResizing(true);
document.addEventListener("mousemove", handleResize);
document.addEventListener("mouseup", handleMouseUp);
};
const handleMouseUp = () => {
setIsResizing(false);
document.removeEventListener("mousemove", handleResize);
document.removeEventListener("mouseup", handleMouseUp);
};
useMount(() => {
if (deploy && project?._id) {
toast.success("Your project is deployed! 🎉", {
action: {
label: "See Project",
onClick: () => {
window.open(
`https://huggingface.co/spaces/${project?.space_id}`,
"_blank"
);
},
},
});
router.replace(`/projects/${project?.space_id}`);
}
if (htmlStorage) {
removeHtmlStorage();
toast.warning("Previous HTML content restored from local storage.");
}
resetLayout();
if (!resizer.current) return;
resizer.current.addEventListener("mousedown", handleMouseDown);
window.addEventListener("resize", resetLayout);
});
useUnmount(() => {
document.removeEventListener("mousemove", handleResize);
document.removeEventListener("mouseup", handleMouseUp);
if (resizer.current) {
resizer.current.removeEventListener("mousedown", handleMouseDown);
}
window.removeEventListener("resize", resetLayout);
});
// Prevent accidental navigation away when AI is working or content has changed
useEvent("beforeunload", (e) => {
if (isAiWorking || !isTheSameHtml(currentPageData?.html)) {
e.preventDefault();
return "";
}
});
useUpdateEffect(() => {
if (currentTab === "chat") {
// Reset editor width when switching to reasoning tab
resetLayout();
// re-add the event listener for resizing
if (resizer.current) {
resizer.current.addEventListener("mousedown", handleMouseDown);
}
} else {
if (preview.current) {
// Reset preview width when switching to preview tab
preview.current.style.width = "100%";
}
}
}, [currentTab]);
const handleEditorValidation = (markers: editor.IMarker[]) => {
console.log("Editor validation markers:", markers);
};
const currentPageData = useMemo(() => {
return (
pages.find((page) => page.path === currentPage) ?? {
path: "index.html",
html: defaultHTML,
}
);
}, [pages, currentPage]);
return (
<section className="h-[100dvh] bg-neutral-950 flex flex-col">
<Header tab={currentTab} onNewTab={setCurrentTab}>
<LoadProject
onSuccess={(project: Project) => {
router.push(`/projects/${project.space_id}`);
}}
/>
{/* for these buttons pass the whole pages */}
{project?._id ? (
<SaveButton pages={pages} prompts={prompts} />
) : (
<DeployButton pages={pages} prompts={prompts} />
)}
</Header>
<main className="bg-neutral-950 flex-1 max-lg:flex-col flex w-full max-lg:h-[calc(100%-82px)] relative">
{currentTab === "chat" && (
<>
<div
ref={editor}
className="bg-neutral-900 relative flex-1 overflow-hidden h-full flex flex-col gap-2 pb-3"
>
<ListPages
pages={pages}
currentPage={currentPage}
onSelectPage={(path, newPath) => {
if (newPath) {
setPages((prev) =>
prev.map((page) =>
page.path === path ? { ...page, path: newPath } : page
)
);
setCurrentPage(newPath);
} else {
setCurrentPage(path);
}
}}
onDeletePage={(path) => {
const newPages = pages.filter((page) => page.path !== path);
setPages(newPages);
if (currentPage === path) {
setCurrentPage(newPages[0]?.path ?? "index.html");
}
}}
onNewPage={() => {
setPages((prev) => [
...prev,
{
path: `page-${prev.length + 1}.html`,
html: defaultHTML,
},
]);
setCurrentPage(`page-${pages.length + 1}.html`);
}}
/>
<CopyIcon
className="size-4 absolute top-14 right-5 text-neutral-500 hover:text-neutral-300 z-2 cursor-pointer"
onClick={() => {
copyToClipboard(currentPageData.html);
toast.success("HTML copied to clipboard!");
}}
/>
<Editor
defaultLanguage="html"
theme="vs-dark"
className={classNames(
"h-full bg-neutral-900 transition-all duration-200 absolute left-0 top-0",
{
"pointer-events-none": isAiWorking,
}
)}
options={{
colorDecorators: true,
fontLigatures: true,
theme: "vs-dark",
minimap: { enabled: false },
scrollbar: {
horizontal: "hidden",
},
wordWrap: "on",
}}
value={currentPageData.html}
onChange={(value) => {
const newValue = value ?? "";
// setHtml(newValue);
setPages((prev) =>
prev.map((page) =>
page.path === currentPageData.path
? { ...page, html: newValue }
: page
)
);
}}
onMount={(editor, monaco) => {
editorRef.current = editor;
monacoRef.current = monaco;
}}
onValidate={handleEditorValidation}
/>
<AskAI
project={project}
images={images}
currentPage={currentPageData}
htmlHistory={htmlHistory}
previousPrompts={prompts}
onSuccess={(newPages, p: string) => {
const currentHistory = [...htmlHistory];
currentHistory.unshift({
pages: newPages,
createdAt: new Date(),
prompt: p,
});
setHtmlHistory(currentHistory);
setSelectedElement(null);
setSelectedFiles([]);
// if xs or sm
if (window.innerWidth <= 1024) {
setCurrentTab("preview");
}
// if (updatedLines && updatedLines?.length > 0) {
// const decorations = updatedLines.map((line) => ({
// range: new monacoRef.current.Range(
// line[0],
// 1,
// line[1],
// 1
// ),
// options: {
// inlineClassName: "matched-line",
// },
// }));
// setTimeout(() => {
// editorRef?.current
// ?.getModel()
// ?.deltaDecorations([], decorations);
// editorRef.current?.revealLine(updatedLines[0][0]);
// }, 100);
// }
}}
setPages={setPages}
pages={pages}
setCurrentPage={setCurrentPage}
isAiWorking={isAiWorking}
setisAiWorking={setIsAiWorking}
onNewPrompt={(prompt: string) => {
setPrompts((prev) => [...prev, prompt]);
}}
onScrollToBottom={() => {
editorRef.current?.revealLine(
editorRef.current?.getModel()?.getLineCount() ?? 0
);
}}
isNew={isNew}
isEditableModeEnabled={isEditableModeEnabled}
setIsEditableModeEnabled={setIsEditableModeEnabled}
selectedElement={selectedElement}
setSelectedElement={setSelectedElement}
setSelectedFiles={setSelectedFiles}
selectedFiles={selectedFiles}
/>
</div>
<div
ref={resizer}
className="bg-neutral-800 hover:bg-sky-500 active:bg-sky-500 w-1.5 cursor-col-resize h-full max-lg:hidden"
/>
</>
)}
<Preview
html={currentPageData?.html}
isResizing={isResizing}
isAiWorking={isAiWorking}
ref={preview}
device={device}
pages={pages}
setCurrentPage={setCurrentPage}
currentTab={currentTab}
isEditableModeEnabled={isEditableModeEnabled}
iframeRef={iframeRef}
onClickElement={(element) => {
setIsEditableModeEnabled(false);
setSelectedElement(element);
setCurrentTab("chat");
}}
/>
</main>
<Footer
pages={pages}
htmlHistory={htmlHistory}
setPages={setPages}
iframeRef={iframeRef}
device={device}
isNew={isNew}
setDevice={setDevice}
/>
</section>
);
};
|