Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0-indexed, 1-indexed, directed を切り替えられるようにする #4

Merged
merged 9 commits into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
177 changes: 156 additions & 21 deletions app/graph/page.tsx
Original file line number Diff line number Diff line change
@@ -1,59 +1,194 @@
"use client";

import { VSpace } from "@/components/VSpace";
import type cytoscape from "cytoscape";
import { Field, Label, Switch } from "@headlessui/react";
import clsx from "clsx";
import { useRef, useState } from "react";

import type cytoscape from "cytoscape";
import CytoscapeComponent from "react-cytoscapejs";

import { VSpace } from "@/components/VSpace";
import { parseGraph } from "./parse";

export default function Graph() {
const layouts = ["random", "grid", "circle"] as const;
type Layout = (typeof layouts)[number];
const indexings = ["0-indexed", "1-indexed"] as const;
type Indexing = (typeof indexings)[number];

const cyRef = useRef<cytoscape.Core>();
const [graphText, setGraphText] = useState("");
const [elements, setElements] = useState<cytoscape.ElementDefinition[]>([]);
const [graphText, setGraphText] = useState("3\n1 2");
const [layout, setLayout] = useState<Layout>("random");
const [indexing, setIndexing] = useState<Indexing>("1-indexed");
const [directed, setDirected] = useState(true);
const [elements, setElements] = useState<cytoscape.ElementDefinition[]>([
{ data: { id: "1" }, renderedPosition: { x: 50, y: 50 } },
{ data: { id: "2" }, renderedPosition: { x: 100, y: 150 } },
{ data: { id: "3" }, renderedPosition: { x: 200, y: 100 } },
{ data: { source: "1", target: "2" } },
]);

const handleTextAreaChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
const value = e.target.value;
const graph = parseGraph(value);
if (graph !== null) {
const width = cyRef.current?.width() ?? 0;
const height = cyRef.current?.height() ?? 0;
updateElements(value, { indexing });
setGraphText(value);
};

const handleLayoutChange = (ly: Layout) => {
setLayout(ly);
cyRef.current?.layout({ name: ly }).run();
};

const handleIndexingChange = (ind: Indexing) => {
setIndexing(ind);
updateElements(graphText, { indexing: ind });
};

const updateElements = (text: string, option: { indexing: Indexing }) => {
const graph = parseGraph(text, {
indexStart: option.indexing,
});
if (graph.ok) {
const newElements: typeof elements = [];
for (let i = 1; i <= graph.n; i++) {
const width = cyRef.current?.width() ?? 300;
const height = cyRef.current?.height() ?? 400;
for (let i = 1; i <= graph.data.n; i++) {
newElements.push({
data: { id: `${i}`, label: `Node ${i}` },
data: { id: option.indexing === "0-indexed" ? `${i - 1}` : `${i}` },
renderedPosition: {
x: (Math.random() + 0.5) * (width / 2),
y: (Math.random() + 0.5) * (height / 2),
},
});
}
for (const e of graph.edges) {
for (const e of graph.data.edges) {
newElements.push({ data: { source: `${e.from}`, target: `${e.to}` } });
}
setElements(newElements);
}
setGraphText(value);
};

// invalid を state にしたほうがいい?
const invalid = parseGraph(graphText, { indexStart: indexing }).ok === false;

return (
<>
<textarea value={graphText} onChange={handleTextAreaChange} />
<div />
<button
type="button"
onClick={() => {
cyRef.current?.layout({ name: "random" }).run();
}}
<label
htmlFor="graph-text"
className="block text-sm font-medium leading-6 text-gray-900"
>
layout
</button>
Graph Input
</label>
<div className="mt-2">
<textarea
id="graph-text"
rows={4}
className={clsx(
"block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6",
invalid && "text-red-900 ring-red-300 focus:ring-red-500",
)}
value={graphText}
onChange={handleTextAreaChange}
/>
</div>
<VSpace size="M" />
<fieldset>
<legend className="text-sm font-semibold leading-6 text-gray-900">
Layout
</legend>
<div className="mt-2 space-y-2 sm:flex sm:items-center sm:space-x-10 sm:space-y-0">
{layouts.map((ly) => (
<div key={ly} className="flex items-center">
<input
id={ly}
type="radio"
checked={ly === layout}
onChange={() => handleLayoutChange(ly)}
className="h-4 w-4 border-gray-300 text-indigo-600 focus:ring-indigo-600"
/>
<label
htmlFor={ly}
className="ml-3 block text-sm font-medium leading-6 text-gray-900"
>
{ly}
</label>
</div>
))}
</div>
</fieldset>
<VSpace size="M" />
<fieldset>
<legend className="text-sm font-semibold leading-6 text-gray-900">
Indexing
</legend>
<div className="mt-2 space-y-2 sm:flex sm:items-center sm:space-x-10 sm:space-y-0">
{indexings.map((ind) => (
<div key={ind} className="flex items-center">
<input
id={ind}
type="radio"
checked={ind === indexing}
onChange={() => handleIndexingChange(ind)}
className="h-4 w-4 border-gray-300 text-indigo-600 focus:ring-indigo-600"
/>
<label
htmlFor={ind}
className="ml-3 block text-sm font-medium leading-6 text-gray-900"
>
{ind}
</label>
</div>
))}
</div>
</fieldset>
<VSpace size="M" />
<fieldset>
<legend className="text-sm font-semibold leading-6 text-gray-900">
Edge Type
</legend>
<VSpace size="S" />
<Field className="flex items-center">
<Label as="span" className="mr-3 text-sm">
<span className="font-medium text-gray-900">directed</span>
</Label>
<Switch
checked={directed}
onChange={setDirected}
className="group relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent bg-gray-200 transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-indigo-600 focus:ring-offset-2 data-[checked]:bg-indigo-600"
>
<span
aria-hidden="true"
className="pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out group-data-[checked]:translate-x-5"
/>
</Switch>
</Field>
</fieldset>
<VSpace size="L" />
<CytoscapeComponent
className="border"
cy={(cy) => {
cyRef.current = cy;
}}
elements={elements}
style={{ width: "100%", height: "80vh" }}
stylesheet={[
{
selector: "node",
style: {
label: "data(id)",
color: "white",
"text-halign": "center",
"text-valign": "center",
},
},
{
selector: "edge",
style: {
"curve-style": "bezier",
"target-arrow-shape": directed ? "triangle" : "none",
},
},
]}
/>
<VSpace size="L" />
</>
Expand Down
Loading