mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-27 03:41:26 +01:00
Add .oxfmtignore to skip generated bindings and wasm-pack output. Add npm format script, update DEVELOPMENT.md for Vite+ toolchain, and format all non-generated files with oxfmt. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import { Workspace } from "../../../components/Workspace";
|
|
|
|
type WorkspaceSearchSchema = {
|
|
environment_id?: string | null;
|
|
cookie_jar_id?: string | null;
|
|
} & (
|
|
| {
|
|
request_id: string;
|
|
}
|
|
| {
|
|
folder_id: string;
|
|
}
|
|
// oxlint-disable-next-line no-restricted-types -- Needed to support empty
|
|
| {}
|
|
);
|
|
|
|
export const Route = createFileRoute("/workspaces/$workspaceId/")({
|
|
component: RouteComponent,
|
|
validateSearch: (search: Record<string, unknown>): WorkspaceSearchSchema => {
|
|
const base: Pick<WorkspaceSearchSchema, "environment_id" | "cookie_jar_id"> = {
|
|
environment_id: search.environment_id as string,
|
|
cookie_jar_id: search.cookie_jar_id as string,
|
|
};
|
|
|
|
const requestId = search.request_id as string | undefined;
|
|
const folderId = search.folder_id as string | undefined;
|
|
if (requestId != null) {
|
|
return { ...base, request_id: requestId };
|
|
}
|
|
if (folderId) {
|
|
return { ...base, folder_id: folderId };
|
|
}
|
|
return base;
|
|
},
|
|
});
|
|
|
|
function RouteComponent() {
|
|
return <Workspace />;
|
|
}
|