You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/client/web/src/plugin/PluginStore/Item.tsx

111 lines
3.3 KiB
TypeScript

import { Avatar } from 'tailchat-design';
import { Button, Space } from 'antd';
import React, { useCallback, useState } from 'react';
import {
isValidStr,
parseUrlStr,
PluginManifest,
showAlert,
showToasts,
t,
useAsyncRequest,
} from 'tailchat-shared';
import { ModalWrapper, openModal } from '../common';
import { pluginManager } from '../manager';
import { DocumentView } from './DocumentView';
import { getManifestFieldWithI18N } from '../utils';
/**
* 插件项
*/
export const PluginStoreItem: React.FC<{
manifest: PluginManifest;
installed: boolean;
builtin?: boolean;
}> = React.memo((props) => {
const { manifest, builtin = false } = props;
const [installed, setInstalled] = useState(props.installed);
const [{ loading }, handleInstallPlugin] = useAsyncRequest(async () => {
await pluginManager.installPlugin(manifest);
if (manifest.requireRestart === true) {
showToasts(t('插件安装成功, 刷新页面后生效'), 'success');
} else {
showToasts(t('插件安装成功'), 'success');
}
setInstalled(true);
}, [manifest]);
const handleUninstallPlugin = useCallback(() => {
showAlert({
message: t('是否要卸载插件'),
onConfirm: async () => {
await pluginManager.uninstallPlugin(manifest.name);
showToasts(t('插件卸载成功, 刷新页面后生效'), 'success');
},
});
}, [manifest]);
const handleShowDocument = useCallback(() => {
if (!isValidStr(manifest.documentUrl)) {
return;
}
openModal(
<ModalWrapper title={label}>
<DocumentView documentUrl={parseUrlStr(manifest.documentUrl)} />
</ModalWrapper>
);
}, [manifest]);
const label = getManifestFieldWithI18N(manifest, 'label');
const description = getManifestFieldWithI18N(manifest, 'description');
return (
<div className="mobile:w-full sm:w-full md:w-full lg:w-1/2 xl:w-1/3 2xl:w-1/4 p-1">
<div className="rounded-md flex w-full h-36 bg-white bg-opacity-40 dark:bg-black dark:bg-opacity-40 shadow py-2 px-3">
<div className="mr-2">
<Avatar shape="square" src={manifest.icon} name={label} />
</div>
<div className="flex flex-col flex-1 min-w-0 overflow-hidden">
<div className="font-bold">{label}</div>
<div className="text-xs text-gray-700 dark:text-gray-300 text-opacity-50">
{manifest.name}
</div>
<div className="flex-1 overflow-auto">{description}</div>
<Space className="mt-1 justify-end">
{isValidStr(manifest.documentUrl) && (
<Button onClick={handleShowDocument}>{t('文档')}</Button>
)}
<div>
{builtin ? (
<Button type="primary" disabled={true}>
{t('内置插件')}
</Button>
) : installed ? (
<Button type="primary" onClick={handleUninstallPlugin}>
{t('已安装')}
</Button>
) : (
<Button
type="primary"
loading={loading}
onClick={handleInstallPlugin}
>
{t('安装')}
</Button>
)}
</div>
</Space>
</div>
</div>
</div>
);
});
PluginStoreItem.displayName = 'PluginStoreItem';