bolt.new/app/routes/git.tsx
Dustin Loring 8707d01128 chore: lint fix
completed lint fixes
2025-01-17 15:14:15 -05:00

38 lines
1.1 KiB
TypeScript

import type { LoaderFunctionArgs } from '@remix-run/cloudflare';
import { json, type MetaFunction } from '@remix-run/cloudflare';
import { useLoaderData } from '@remix-run/react';
import { ClientOnly } from 'remix-utils/client-only';
import { BaseChat } from '~/components/chat/BaseChat';
import { GitUrlImport } from '~/components/git/GitUrlImport.client';
import { Header } from '~/components/header/Header';
export const meta: MetaFunction = () => {
return [{ title: 'Bolt' }, { name: 'description', content: 'Talk with Bolt, an AI assistant from StackBlitz' }];
};
interface LoaderData {
url: string;
}
export async function loader({ request }: LoaderFunctionArgs) {
const url = new URL(request.url);
const gitUrl = url.searchParams.get('url');
if (!gitUrl) {
throw new Response('No Git URL provided', { status: 400 });
}
return json<LoaderData>({ url: gitUrl });
}
export default function Index() {
const data = useLoaderData<typeof loader>();
return (
<div className="flex flex-col h-full w-full">
<Header />
<ClientOnly fallback={<BaseChat />}>{() => <GitUrlImport initialUrl={data.url} />}</ClientOnly>
</div>
);
}