mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-07 14:26:03 +00:00
* refactor(web): migrate from Next.js to Vite + React Router
* fix: update build pipelines for Vite migration (out → dist)
- Dockerfile: npm run build → npx vite build, web/out → web/dist
- pyproject.toml: package-data web/out/** → web/dist/**
- paths.py: support both web/dist (Vite) and web/out (legacy) with fallback
* fix: remove .next from git tracking, add to .gitignore
1334 cached files from web/.next/ were accidentally committed.
Added .next/ to both root and web/.gitignore.
* fix: update build process to use Vite and correct output directory
* fix: update pnpm-lock.yaml and eslint config for Vite migration
* style: fix prettier formatting issues
* fix: add eslint-plugin-react-hooks for Vite migration
* fix: remove undefined eslint rule reference, downgrade react-hooks plugin to v5
* fix(web): clean up remaining Next.js artifacts in Vite migration
- Add vite-env.d.ts for import.meta.env and asset type declarations
- Remove dead layout.tsx (providers already in main.tsx)
- Fix useSearchParams destructuring to [searchParams] tuple (11 locations)
- Replace process.env.NEXT_PUBLIC_* with import.meta.env.VITE_*
- Fix langbotIcon.src to langbotIcon (Vite returns URL string)
- Fix Link href to Link to for react-router-dom
- Fix navigate({ scroll: false }) to { preventScrollReset: true }
- Fix [router] dependency arrays to [navigate]
- Remove Next.js plugin from tsconfig, set rsc: false in components.json
- Replace next lint with eslint in lint-staged
* feat: add tools API endpoint and tools-selector form type
Backend:
- Add GET /api/v1/tools — list all available tools (plugin + MCP)
- Add GET /api/v1/tools/<tool_name> — get specific tool details
Frontend:
- Add TOOLS_SELECTOR form type for plugin config forms
- Multi-select dialog with tool name and description
- Add PluginTool entity type and API client methods
* Revert "feat: add tools API endpoint and tools-selector form type"
This reverts commit 3c637fc563.
145 lines
3.1 KiB
TypeScript
145 lines
3.1 KiB
TypeScript
import React, { Suspense } from 'react';
|
|
import { createBrowserRouter, Navigate } from 'react-router-dom';
|
|
|
|
// Layouts
|
|
import LoginLayout from '@/app/login/layout';
|
|
import RegisterLayout from '@/app/register/layout';
|
|
import ResetPasswordLayout from '@/app/reset-password/layout';
|
|
import HomeLayout from '@/app/home/layout';
|
|
|
|
// Pages
|
|
import LoginPage from '@/app/login/page';
|
|
import RegisterPage from '@/app/register/page';
|
|
import ResetPasswordPage from '@/app/reset-password/page';
|
|
import WizardPage from '@/app/wizard/page';
|
|
import SpaceCallbackPage from '@/app/auth/space/callback/page';
|
|
import HomePage from '@/app/home/page';
|
|
import MonitoringPage from '@/app/home/monitoring/page';
|
|
import BotsPage from '@/app/home/bots/page';
|
|
import PipelinesPage from '@/app/home/pipelines/page';
|
|
import PluginsPage from '@/app/home/plugins/page';
|
|
import MarketPage from '@/app/home/market/page';
|
|
import MCPPage from '@/app/home/mcp/page';
|
|
import KnowledgePage from '@/app/home/knowledge/page';
|
|
|
|
const Loading = () => <div>Loading...</div>;
|
|
|
|
export const router = createBrowserRouter([
|
|
{
|
|
path: '/',
|
|
element: <Navigate to="/login" replace />,
|
|
},
|
|
{
|
|
path: '/login',
|
|
element: (
|
|
<LoginLayout>
|
|
<LoginPage />
|
|
</LoginLayout>
|
|
),
|
|
},
|
|
{
|
|
path: '/register',
|
|
element: (
|
|
<RegisterLayout>
|
|
<RegisterPage />
|
|
</RegisterLayout>
|
|
),
|
|
},
|
|
{
|
|
path: '/reset-password',
|
|
element: (
|
|
<ResetPasswordLayout>
|
|
<ResetPasswordPage />
|
|
</ResetPasswordLayout>
|
|
),
|
|
},
|
|
{
|
|
path: '/wizard',
|
|
element: <WizardPage />,
|
|
},
|
|
{
|
|
path: '/auth/space/callback',
|
|
element: <SpaceCallbackPage />,
|
|
},
|
|
{
|
|
path: '/home',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<HomePage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
{
|
|
path: '/home/monitoring',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<MonitoringPage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
{
|
|
path: '/home/bots',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<BotsPage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
{
|
|
path: '/home/pipelines',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<PipelinesPage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
{
|
|
path: '/home/plugins',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<PluginsPage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
{
|
|
path: '/home/market',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<MarketPage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
{
|
|
path: '/home/mcp',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<MCPPage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
{
|
|
path: '/home/knowledge',
|
|
element: (
|
|
<Suspense fallback={<Loading />}>
|
|
<HomeLayout>
|
|
<KnowledgePage />
|
|
</HomeLayout>
|
|
</Suspense>
|
|
),
|
|
},
|
|
]);
|