2025-03-19 06:04:06 +00:00
|
|
|
"use client";
|
2025-11-10 09:25:56 +09:00
|
|
|
import React, { useState, useEffect } from "react";
|
2025-03-26 00:30:00 +00:00
|
|
|
import { DrawIoEmbed } from "react-drawio";
|
2025-03-25 02:24:12 +00:00
|
|
|
import ChatPanel from "@/components/chat-panel";
|
2025-03-27 08:24:17 +00:00
|
|
|
import { useDiagram } from "@/contexts/diagram-context";
|
2025-12-03 21:49:34 +09:00
|
|
|
import { Monitor } from "lucide-react";
|
2025-03-19 06:04:06 +00:00
|
|
|
|
2025-03-27 08:17:54 +00:00
|
|
|
export default function Home() {
|
2025-03-26 00:30:00 +00:00
|
|
|
const { drawioRef, handleDiagramExport } = useDiagram();
|
2025-11-10 09:25:56 +09:00
|
|
|
const [isMobile, setIsMobile] = useState(false);
|
2025-11-15 12:09:32 +09:00
|
|
|
const [isChatVisible, setIsChatVisible] = useState(true);
|
2025-11-10 09:25:56 +09:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const checkMobile = () => {
|
|
|
|
|
setIsMobile(window.innerWidth < 768);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
checkMobile();
|
|
|
|
|
window.addEventListener("resize", checkMobile);
|
|
|
|
|
return () => window.removeEventListener("resize", checkMobile);
|
|
|
|
|
}, []);
|
|
|
|
|
|
2025-11-15 12:09:32 +09:00
|
|
|
useEffect(() => {
|
|
|
|
|
const handleKeyDown = (event: KeyboardEvent) => {
|
|
|
|
|
if ((event.ctrlKey || event.metaKey) && event.key === 'b') {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
setIsChatVisible((prev) => !prev);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.addEventListener('keydown', handleKeyDown);
|
2025-12-03 21:49:34 +09:00
|
|
|
return () => window.removeEventListener('keydown', handleKeyDown);
|
2025-11-15 12:09:32 +09:00
|
|
|
}, []);
|
|
|
|
|
|
2025-11-17 15:18:29 +09:00
|
|
|
return (
|
2025-12-03 21:49:34 +09:00
|
|
|
<div className="flex h-screen bg-background relative overflow-hidden">
|
|
|
|
|
{/* Mobile warning overlay */}
|
2025-11-17 15:18:29 +09:00
|
|
|
{isMobile && (
|
2025-12-03 21:49:34 +09:00
|
|
|
<div className="absolute inset-0 z-50 flex items-center justify-center bg-background">
|
|
|
|
|
<div className="text-center p-8 max-w-sm mx-auto animate-fade-in">
|
|
|
|
|
<div className="w-16 h-16 rounded-2xl bg-primary/10 flex items-center justify-center mx-auto mb-6">
|
|
|
|
|
<Monitor className="w-8 h-8 text-primary" />
|
|
|
|
|
</div>
|
|
|
|
|
<h1 className="text-xl font-semibold text-foreground mb-3">
|
|
|
|
|
Desktop Required
|
2025-11-17 15:18:29 +09:00
|
|
|
</h1>
|
2025-12-03 21:49:34 +09:00
|
|
|
<p className="text-sm text-muted-foreground leading-relaxed">
|
|
|
|
|
This application works best on desktop or laptop devices. Please open it on a larger screen for the full experience.
|
|
|
|
|
</p>
|
2025-11-17 15:18:29 +09:00
|
|
|
</div>
|
2025-11-10 09:25:56 +09:00
|
|
|
</div>
|
2025-11-17 15:18:29 +09:00
|
|
|
)}
|
2025-03-19 08:16:44 +00:00
|
|
|
|
2025-12-03 21:49:34 +09:00
|
|
|
{/* Draw.io Canvas */}
|
|
|
|
|
<div
|
|
|
|
|
className={`${isChatVisible ? 'w-2/3' : 'w-full'} h-full relative transition-all duration-300 ease-out`}
|
|
|
|
|
>
|
|
|
|
|
<div className="absolute inset-2 rounded-xl overflow-hidden shadow-soft-lg border border-border/30 bg-white">
|
|
|
|
|
<DrawIoEmbed
|
|
|
|
|
ref={drawioRef}
|
|
|
|
|
onExport={handleDiagramExport}
|
|
|
|
|
urlParameters={{
|
|
|
|
|
spin: true,
|
|
|
|
|
libraries: false,
|
|
|
|
|
saveAndExit: false,
|
|
|
|
|
noExitBtn: true,
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-03-27 08:17:54 +00:00
|
|
|
</div>
|
2025-12-03 21:49:34 +09:00
|
|
|
|
|
|
|
|
{/* Chat Panel */}
|
|
|
|
|
<div
|
|
|
|
|
className={`${isChatVisible ? 'w-1/3' : 'w-12'} h-full transition-all duration-300 ease-out`}
|
|
|
|
|
>
|
|
|
|
|
<div className="h-full py-2 pr-2">
|
|
|
|
|
<ChatPanel
|
|
|
|
|
isVisible={isChatVisible}
|
|
|
|
|
onToggleVisibility={() => setIsChatVisible(!isChatVisible)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-03-27 08:24:17 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-03-26 00:30:00 +00:00
|
|
|
);
|
|
|
|
|
}
|