mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-09 23:36:02 +00:00
* feat: add i18n support with language selector on login page Co-Authored-By: Junyan Qin <Chin> <rockchinq@gmail.com> * feat: complete i18n implementation for all webui components Co-Authored-By: Junyan Qin <Chin> <rockchinq@gmail.com> * feat: complete all hardcoded text * feat: dynamic label i18n * fix: lint errors * fix: lint errors * delete sh fils * fix: edit model dialog title --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Junyan Qin <Chin> <rockchinq@gmail.com>
196 lines
6.8 KiB
TypeScript
196 lines
6.8 KiB
TypeScript
'use client';
|
|
import PluginInstalledComponent, {
|
|
PluginInstalledComponentRef,
|
|
} from '@/app/home/plugins/plugin-installed/PluginInstalledComponent';
|
|
import PluginMarketComponent from '@/app/home/plugins/plugin-market/PluginMarketComponent';
|
|
import PluginSortDialog from '@/app/home/plugins/plugin-sort/PluginSortDialog';
|
|
import styles from './plugins.module.css';
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
|
|
import { Button } from '@/components/ui/button';
|
|
import { PlusIcon } from 'lucide-react';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogFooter,
|
|
} from '@/components/ui/dialog';
|
|
import { Input } from '@/components/ui/input';
|
|
import { GithubIcon } from 'lucide-react';
|
|
import { useState, useRef } from 'react';
|
|
import { httpClient } from '@/app/infra/http/HttpClient';
|
|
import { toast } from 'sonner';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
enum PluginInstallStatus {
|
|
WAIT_INPUT = 'wait_input',
|
|
INSTALLING = 'installing',
|
|
ERROR = 'error',
|
|
}
|
|
|
|
export default function PluginConfigPage() {
|
|
const { t } = useTranslation();
|
|
const [modalOpen, setModalOpen] = useState(false);
|
|
const [sortModalOpen, setSortModalOpen] = useState(false);
|
|
const [pluginInstallStatus, setPluginInstallStatus] =
|
|
useState<PluginInstallStatus>(PluginInstallStatus.WAIT_INPUT);
|
|
const [installError, setInstallError] = useState<string | null>(null);
|
|
const [githubURL, setGithubURL] = useState('');
|
|
const pluginInstalledRef = useRef<PluginInstalledComponentRef>(null);
|
|
|
|
function handleModalConfirm() {
|
|
installPlugin(githubURL);
|
|
}
|
|
function installPlugin(url: string) {
|
|
setPluginInstallStatus(PluginInstallStatus.INSTALLING);
|
|
httpClient
|
|
.installPluginFromGithub(url)
|
|
.then((resp) => {
|
|
const taskId = resp.task_id;
|
|
|
|
let alreadySuccess = false;
|
|
console.log('taskId:', taskId);
|
|
|
|
// 每秒拉取一次任务状态
|
|
const interval = setInterval(() => {
|
|
httpClient.getAsyncTask(taskId).then((resp) => {
|
|
console.log('task status:', resp);
|
|
if (resp.runtime.done) {
|
|
clearInterval(interval);
|
|
if (resp.runtime.exception) {
|
|
setInstallError(resp.runtime.exception);
|
|
setPluginInstallStatus(PluginInstallStatus.ERROR);
|
|
} else {
|
|
// success
|
|
if (!alreadySuccess) {
|
|
toast.success(t('plugins.installSuccess'));
|
|
alreadySuccess = true;
|
|
}
|
|
setGithubURL('');
|
|
setModalOpen(false);
|
|
pluginInstalledRef.current?.refreshPluginList();
|
|
}
|
|
}
|
|
});
|
|
}, 1000);
|
|
})
|
|
.catch((err) => {
|
|
console.log('error when install plugin:', err);
|
|
setInstallError(err.message);
|
|
setPluginInstallStatus(PluginInstallStatus.ERROR);
|
|
});
|
|
}
|
|
|
|
return (
|
|
<div className={styles.pageContainer}>
|
|
<Tabs defaultValue="installed" className="w-full">
|
|
<div className="flex flex-row justify-between items-center px-[0.8rem]">
|
|
<TabsList className="shadow-md py-5 bg-[#f0f0f0]">
|
|
<TabsTrigger value="installed" className="px-6 py-4 cursor-pointer">
|
|
{t('plugins.installed')}
|
|
</TabsTrigger>
|
|
<TabsTrigger value="market" className="px-6 py-4 cursor-pointer">
|
|
{t('plugins.marketplace')}
|
|
</TabsTrigger>
|
|
</TabsList>
|
|
|
|
<div className="flex flex-row justify-end items-center">
|
|
<Button
|
|
variant="outline"
|
|
className="px-6 py-4 cursor-pointer mr-2"
|
|
onClick={() => {
|
|
setSortModalOpen(true);
|
|
}}
|
|
>
|
|
{t('plugins.arrange')}
|
|
</Button>
|
|
<Button
|
|
variant="default"
|
|
className="px-6 py-4 cursor-pointer"
|
|
onClick={() => {
|
|
setModalOpen(true);
|
|
setPluginInstallStatus(PluginInstallStatus.WAIT_INPUT);
|
|
setInstallError(null);
|
|
}}
|
|
>
|
|
<PlusIcon className="w-4 h-4" />
|
|
{t('plugins.install')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<TabsContent value="installed">
|
|
<PluginInstalledComponent ref={pluginInstalledRef} />
|
|
</TabsContent>
|
|
<TabsContent value="market">
|
|
<PluginMarketComponent
|
|
askInstallPlugin={(githubURL) => {
|
|
setGithubURL(githubURL);
|
|
setModalOpen(true);
|
|
setPluginInstallStatus(PluginInstallStatus.WAIT_INPUT);
|
|
setInstallError(null);
|
|
}}
|
|
/>
|
|
</TabsContent>
|
|
</Tabs>
|
|
|
|
<Dialog open={modalOpen} onOpenChange={setModalOpen}>
|
|
<DialogContent className="w-[500px] p-6">
|
|
<DialogHeader>
|
|
<DialogTitle className="flex items-center gap-4">
|
|
<GithubIcon className="size-6" />
|
|
<span>{t('plugins.installFromGithub')}</span>
|
|
</DialogTitle>
|
|
</DialogHeader>
|
|
{pluginInstallStatus === PluginInstallStatus.WAIT_INPUT && (
|
|
<div className="mt-4">
|
|
<p className="mb-2">{t('plugins.onlySupportGithub')}</p>
|
|
<Input
|
|
placeholder={t('plugins.enterGithubLink')}
|
|
value={githubURL}
|
|
onChange={(e) => setGithubURL(e.target.value)}
|
|
className="mb-4"
|
|
/>
|
|
</div>
|
|
)}
|
|
{pluginInstallStatus === PluginInstallStatus.INSTALLING && (
|
|
<div className="mt-4">
|
|
<p className="mb-2">{t('plugins.installing')}</p>
|
|
</div>
|
|
)}
|
|
{pluginInstallStatus === PluginInstallStatus.ERROR && (
|
|
<div className="mt-4">
|
|
<p className="mb-2">{t('plugins.installFailed')}</p>
|
|
<p className="mb-2 text-red-500">{installError}</p>
|
|
</div>
|
|
)}
|
|
<DialogFooter>
|
|
{pluginInstallStatus === PluginInstallStatus.WAIT_INPUT && (
|
|
<>
|
|
<Button variant="outline" onClick={() => setModalOpen(false)}>
|
|
{t('common.cancel')}
|
|
</Button>
|
|
<Button onClick={handleModalConfirm}>
|
|
{t('common.confirm')}
|
|
</Button>
|
|
</>
|
|
)}
|
|
{pluginInstallStatus === PluginInstallStatus.ERROR && (
|
|
<Button variant="default" onClick={() => setModalOpen(false)}>
|
|
{t('common.close')}
|
|
</Button>
|
|
)}
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
|
|
<PluginSortDialog
|
|
open={sortModalOpen}
|
|
onOpenChange={setSortModalOpen}
|
|
onSortComplete={() => {
|
|
pluginInstalledRef.current?.refreshPluginList();
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|