mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-05-30 08:15:31 +08:00
Compare commits
2 Commits
main
...
fix/plugin
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d291d3efb | ||
|
|
6bf82a39bb |
@@ -1,12 +1,93 @@
|
|||||||
import { useState } from 'react';
|
import { useState, type ReactNode } from 'react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import { Trash2, RefreshCw, GitBranch, Loader2, ServerCrash, ShieldAlert, ExternalLink, BookOpen, Download, BarChart3 } from 'lucide-react';
|
import {
|
||||||
|
Activity,
|
||||||
|
BarChart3,
|
||||||
|
BookOpen,
|
||||||
|
Clock,
|
||||||
|
Download,
|
||||||
|
ExternalLink,
|
||||||
|
GitBranch,
|
||||||
|
Loader2,
|
||||||
|
RefreshCw,
|
||||||
|
ServerCrash,
|
||||||
|
ShieldAlert,
|
||||||
|
Terminal,
|
||||||
|
Trash2,
|
||||||
|
type LucideIcon,
|
||||||
|
} from 'lucide-react';
|
||||||
|
|
||||||
import { usePlugins } from '../../../contexts/PluginsContext';
|
import { usePlugins } from '../../../contexts/PluginsContext';
|
||||||
import type { Plugin } from '../../../contexts/PluginsContext';
|
import type { Plugin } from '../../../contexts/PluginsContext';
|
||||||
|
|
||||||
import PluginIcon from './PluginIcon';
|
import PluginIcon from './PluginIcon';
|
||||||
|
|
||||||
const STARTER_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-starter';
|
const STARTER_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-starter';
|
||||||
const TERMINAL_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-terminal';
|
const TERMINAL_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-terminal';
|
||||||
|
const SCHEDULED_PROMPT_PLUGIN_URL = 'https://github.com/grostim/cloudcli-cron';
|
||||||
|
const CLAUDE_WATCH_PLUGIN_URL = 'https://github.com/satsuki19980613/cloudcli-claude-watch';
|
||||||
|
|
||||||
|
type PluginRecommendation = {
|
||||||
|
id: string;
|
||||||
|
translationKey: string;
|
||||||
|
repoUrl: string;
|
||||||
|
installedNames: string[];
|
||||||
|
icon: LucideIcon;
|
||||||
|
source: 'official' | 'unofficial';
|
||||||
|
};
|
||||||
|
|
||||||
|
const OFFICIAL_PLUGIN_RECOMMENDATIONS: PluginRecommendation[] = [
|
||||||
|
{
|
||||||
|
id: 'project-stats',
|
||||||
|
translationKey: 'starterPlugin',
|
||||||
|
repoUrl: STARTER_PLUGIN_URL,
|
||||||
|
installedNames: ['project-stats'],
|
||||||
|
icon: BarChart3,
|
||||||
|
source: 'official',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'web-terminal',
|
||||||
|
translationKey: 'terminalPlugin',
|
||||||
|
repoUrl: TERMINAL_PLUGIN_URL,
|
||||||
|
installedNames: ['web-terminal'],
|
||||||
|
icon: Terminal,
|
||||||
|
source: 'official',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const UNOFFICIAL_PLUGIN_RECOMMENDATIONS: PluginRecommendation[] = [
|
||||||
|
{
|
||||||
|
id: 'cloudcli-claude-watch',
|
||||||
|
translationKey: 'claudeWatchPlugin',
|
||||||
|
repoUrl: CLAUDE_WATCH_PLUGIN_URL,
|
||||||
|
installedNames: ['cloudcli-claude-watch'],
|
||||||
|
icon: Activity,
|
||||||
|
source: 'unofficial',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'workspace-scheduled-prompts',
|
||||||
|
translationKey: 'scheduledPromptPlugin',
|
||||||
|
repoUrl: SCHEDULED_PROMPT_PLUGIN_URL,
|
||||||
|
installedNames: ['workspace-scheduled-prompts'],
|
||||||
|
icon: Clock,
|
||||||
|
source: 'unofficial',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
function repoSlug(repoUrl: string) {
|
||||||
|
return repoUrl.replace(/^https?:\/\/(www\.)?github\.com\//, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeRepoUrl(repoUrl: string | null) {
|
||||||
|
return repoUrl?.replace(/\.git$/, '').replace(/\/$/, '').toLowerCase() ?? null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function pluginMatchesRecommendation(plugin: Plugin, recommendation: PluginRecommendation) {
|
||||||
|
return (
|
||||||
|
recommendation.installedNames.includes(plugin.name)
|
||||||
|
|| normalizeRepoUrl(plugin.repoUrl) === normalizeRepoUrl(recommendation.repoUrl)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/* ─── Toggle Switch ─────────────────────────────────────────────────────── */
|
/* ─── Toggle Switch ─────────────────────────────────────────────────────── */
|
||||||
function ToggleSwitch({ checked, onChange, ariaLabel }: { checked: boolean; onChange: (v: boolean) => void; ariaLabel: string }) {
|
function ToggleSwitch({ checked, onChange, ariaLabel }: { checked: boolean; onChange: (v: boolean) => void; ariaLabel: string }) {
|
||||||
@@ -208,117 +289,95 @@ function PluginCard({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ─── Starter Plugin Card ───────────────────────────────────────────────── */
|
/* ─── Recommendation Section ────────────────────────────────────────────── */
|
||||||
function StarterPluginCard({ onInstall, installing }: { onInstall: () => void; installing: boolean }) {
|
function RecommendationSection({
|
||||||
const { t } = useTranslation('settings');
|
title,
|
||||||
|
description,
|
||||||
|
children,
|
||||||
|
}: {
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
children: ReactNode;
|
||||||
|
}) {
|
||||||
return (
|
return (
|
||||||
<div className="relative flex overflow-hidden rounded-lg border border-dashed border-border bg-card transition-all duration-200 hover:border-blue-400 dark:hover:border-blue-500">
|
<section className="space-y-2">
|
||||||
<div className="w-[3px] flex-shrink-0 bg-blue-500/30" />
|
<div>
|
||||||
<div className="min-w-0 flex-1 p-4">
|
<h4 className="text-xs font-semibold uppercase tracking-wide text-muted-foreground">
|
||||||
<div className="flex items-start justify-between gap-3">
|
{title}
|
||||||
<div className="flex min-w-0 items-center gap-2.5">
|
</h4>
|
||||||
<div className="h-5 w-5 flex-shrink-0 text-blue-500">
|
<p className="mt-0.5 text-xs text-muted-foreground/70">
|
||||||
<BarChart3 className="h-5 w-5" />
|
{description}
|
||||||
</div>
|
|
||||||
<div className="min-w-0">
|
|
||||||
<div className="flex flex-wrap items-center gap-2">
|
|
||||||
<span className="text-sm font-semibold leading-none text-foreground">
|
|
||||||
{t('pluginSettings.starterPlugin.name')}
|
|
||||||
</span>
|
|
||||||
<span className="rounded bg-blue-50 px-1.5 py-0.5 text-[10px] font-medium text-blue-600 dark:bg-blue-950/50 dark:text-blue-400">
|
|
||||||
{t('pluginSettings.starterPlugin.badge')}
|
|
||||||
</span>
|
|
||||||
<span className="rounded bg-muted px-1.5 py-0.5 text-[10px] text-muted-foreground">
|
|
||||||
{t('pluginSettings.tab')}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<p className="mt-1 text-sm leading-snug text-muted-foreground">
|
|
||||||
{t('pluginSettings.starterPlugin.description')}
|
|
||||||
</p>
|
</p>
|
||||||
<a
|
|
||||||
href={STARTER_PLUGIN_URL}
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
className="mt-1 inline-flex items-center gap-1 text-xs text-muted-foreground/60 transition-colors hover:text-foreground"
|
|
||||||
>
|
|
||||||
<GitBranch className="h-3 w-3" />
|
|
||||||
cloudcli-ai/cloudcli-plugin-starter
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<button
|
|
||||||
onClick={onInstall}
|
|
||||||
disabled={installing}
|
|
||||||
className="flex flex-shrink-0 items-center gap-1.5 rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white transition-colors hover:bg-blue-700 disabled:opacity-50"
|
|
||||||
>
|
|
||||||
{installing ? (
|
|
||||||
<Loader2 className="h-3.5 w-3.5 animate-spin" />
|
|
||||||
) : (
|
|
||||||
<Download className="h-3.5 w-3.5" />
|
|
||||||
)}
|
|
||||||
{installing ? t('pluginSettings.installing') : t('pluginSettings.starterPlugin.install')}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
{children}
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ─── Terminal Plugin Card ──────────────────────────────────────────────── */
|
/* ─── Plugin Recommendation Card ────────────────────────────────────────── */
|
||||||
function TerminalPluginCard({ onInstall, installing }: { onInstall: () => void; installing: boolean }) {
|
function PluginRecommendationCard({
|
||||||
|
recommendation,
|
||||||
|
onInstall,
|
||||||
|
disabled,
|
||||||
|
installing,
|
||||||
|
}: {
|
||||||
|
recommendation: PluginRecommendation;
|
||||||
|
onInstall: () => void;
|
||||||
|
disabled: boolean;
|
||||||
|
installing: boolean;
|
||||||
|
}) {
|
||||||
const { t } = useTranslation('settings');
|
const { t } = useTranslation('settings');
|
||||||
|
const Icon = recommendation.icon;
|
||||||
|
const isOfficial = recommendation.source === 'official';
|
||||||
|
const accentClass = isOfficial ? 'bg-blue-500/30' : 'bg-amber-500/40';
|
||||||
|
const hoverClass = isOfficial ? 'hover:border-blue-400 dark:hover:border-blue-500' : 'hover:border-amber-400 dark:hover:border-amber-500';
|
||||||
|
const iconClass = isOfficial ? 'text-blue-500' : 'text-amber-500';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relative flex overflow-hidden rounded-lg border border-dashed border-border bg-card transition-all duration-200 hover:border-blue-400 dark:hover:border-blue-500">
|
<div className={`relative flex overflow-hidden rounded-lg border border-dashed border-border bg-card transition-all duration-200 ${hoverClass}`}>
|
||||||
<div className="w-[3px] flex-shrink-0 bg-blue-500/30" />
|
<div className={`w-[3px] flex-shrink-0 ${accentClass}`} />
|
||||||
<div className="min-w-0 flex-1 p-4">
|
<div className="min-w-0 flex-1 p-4">
|
||||||
<div className="flex items-start justify-between gap-3">
|
<div className="flex items-start justify-between gap-3">
|
||||||
<div className="flex min-w-0 items-center gap-2.5">
|
<div className="flex min-w-0 items-center gap-2.5">
|
||||||
<div className="h-5 w-5 flex-shrink-0 text-blue-500">
|
<div className={`h-5 w-5 flex-shrink-0 ${iconClass}`}>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="h-5 w-5">
|
<Icon className="h-5 w-5" />
|
||||||
<rect x="3" y="3" width="18" height="18" rx="2"/>
|
|
||||||
<path d="M7 8l4 4-4 4"/>
|
|
||||||
<line x1="13" y1="16" x2="17" y2="16"/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
</div>
|
||||||
<div className="min-w-0">
|
<div className="min-w-0">
|
||||||
<div className="flex flex-wrap items-center gap-2">
|
<div className="flex flex-wrap items-center gap-2">
|
||||||
<span className="text-sm font-semibold leading-none text-foreground">
|
<span className="text-sm font-semibold leading-none text-foreground">
|
||||||
{t('pluginSettings.terminalPlugin.name')}
|
{t(`pluginSettings.${recommendation.translationKey}.name`)}
|
||||||
</span>
|
|
||||||
<span className="rounded bg-blue-50 px-1.5 py-0.5 text-[10px] font-medium text-blue-600 dark:bg-blue-950/50 dark:text-blue-400">
|
|
||||||
{t('pluginSettings.terminalPlugin.badge')}
|
|
||||||
</span>
|
</span>
|
||||||
<span className="rounded bg-muted px-1.5 py-0.5 text-[10px] text-muted-foreground">
|
<span className="rounded bg-muted px-1.5 py-0.5 text-[10px] text-muted-foreground">
|
||||||
{t('pluginSettings.tab')}
|
{t('pluginSettings.tab')}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<p className="mt-1 text-sm leading-snug text-muted-foreground">
|
<p className="mt-1 text-sm leading-snug text-muted-foreground">
|
||||||
{t('pluginSettings.terminalPlugin.description')}
|
{t(`pluginSettings.${recommendation.translationKey}.description`)}
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a
|
||||||
href={TERMINAL_PLUGIN_URL}
|
href={recommendation.repoUrl}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
className="mt-1 inline-flex items-center gap-1 text-xs text-muted-foreground/60 transition-colors hover:text-foreground"
|
className="mt-1 inline-flex items-center gap-1 text-xs text-muted-foreground/60 transition-colors hover:text-foreground"
|
||||||
>
|
>
|
||||||
<GitBranch className="h-3 w-3" />
|
<GitBranch className="h-3 w-3" />
|
||||||
cloudcli-ai/cloudcli-plugin-terminal
|
{repoSlug(recommendation.repoUrl)}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
onClick={onInstall}
|
onClick={onInstall}
|
||||||
disabled={installing}
|
disabled={disabled}
|
||||||
className="flex flex-shrink-0 items-center gap-1.5 rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white transition-colors hover:bg-blue-700 disabled:opacity-50"
|
className="flex flex-shrink-0 items-center gap-1.5 rounded-md bg-foreground px-4 py-2 text-sm font-medium text-background transition-opacity hover:opacity-90 disabled:opacity-50"
|
||||||
>
|
>
|
||||||
{installing ? (
|
{installing ? (
|
||||||
<Loader2 className="h-3.5 w-3.5 animate-spin" />
|
<Loader2 className="h-3.5 w-3.5 animate-spin" />
|
||||||
) : (
|
) : (
|
||||||
<Download className="h-3.5 w-3.5" />
|
<Download className="h-3.5 w-3.5" />
|
||||||
)}
|
)}
|
||||||
{installing ? t('pluginSettings.installing') : t('pluginSettings.terminalPlugin.install')}
|
{installing ? t('pluginSettings.installing') : t(`pluginSettings.${recommendation.translationKey}.install`)}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -334,8 +393,7 @@ export default function PluginSettingsTab() {
|
|||||||
|
|
||||||
const [gitUrl, setGitUrl] = useState('');
|
const [gitUrl, setGitUrl] = useState('');
|
||||||
const [installing, setInstalling] = useState(false);
|
const [installing, setInstalling] = useState(false);
|
||||||
const [installingStarter, setInstallingStarter] = useState(false);
|
const [installingRecommendation, setInstallingRecommendation] = useState<string | null>(null);
|
||||||
const [installingTerminal, setInstallingTerminal] = useState(false);
|
|
||||||
const [installError, setInstallError] = useState<string | null>(null);
|
const [installError, setInstallError] = useState<string | null>(null);
|
||||||
const [confirmUninstall, setConfirmUninstall] = useState<string | null>(null);
|
const [confirmUninstall, setConfirmUninstall] = useState<string | null>(null);
|
||||||
const [updatingPlugins, setUpdatingPlugins] = useState<Set<string>>(new Set());
|
const [updatingPlugins, setUpdatingPlugins] = useState<Set<string>>(new Set());
|
||||||
@@ -364,24 +422,18 @@ export default function PluginSettingsTab() {
|
|||||||
setInstalling(false);
|
setInstalling(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleInstallStarter = async () => {
|
const handleInstallRecommendation = async (recommendation: PluginRecommendation) => {
|
||||||
setInstallingStarter(true);
|
if (installingRecommendation) return;
|
||||||
|
setInstallingRecommendation(recommendation.id);
|
||||||
setInstallError(null);
|
setInstallError(null);
|
||||||
const result = await installPlugin(STARTER_PLUGIN_URL);
|
try {
|
||||||
|
const result = await installPlugin(recommendation.repoUrl);
|
||||||
if (!result.success) {
|
if (!result.success) {
|
||||||
setInstallError(result.error || t('pluginSettings.installFailed'));
|
setInstallError(result.error || t('pluginSettings.installFailed'));
|
||||||
}
|
}
|
||||||
setInstallingStarter(false);
|
} finally {
|
||||||
};
|
setInstallingRecommendation(null);
|
||||||
|
|
||||||
const handleInstallTerminal = async () => {
|
|
||||||
setInstallingTerminal(true);
|
|
||||||
setInstallError(null);
|
|
||||||
const result = await installPlugin(TERMINAL_PLUGIN_URL);
|
|
||||||
if (!result.success) {
|
|
||||||
setInstallError(result.error || t('pluginSettings.installFailed'));
|
|
||||||
}
|
}
|
||||||
setInstallingTerminal(false);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleUninstall = async (name: string) => {
|
const handleUninstall = async (name: string) => {
|
||||||
@@ -398,8 +450,50 @@ export default function PluginSettingsTab() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const hasStarterInstalled = plugins.some((p) => p.name === 'project-stats');
|
const isRecommendationInstalled = (recommendation: PluginRecommendation) => {
|
||||||
const hasTerminalInstalled = plugins.some((p) => p.name === 'web-terminal');
|
return plugins.some((plugin) => pluginMatchesRecommendation(plugin, recommendation));
|
||||||
|
};
|
||||||
|
|
||||||
|
const isOfficialPlugin = (plugin: Plugin) => {
|
||||||
|
return OFFICIAL_PLUGIN_RECOMMENDATIONS.some((recommendation) => (
|
||||||
|
pluginMatchesRecommendation(plugin, recommendation)
|
||||||
|
));
|
||||||
|
};
|
||||||
|
|
||||||
|
const officialPlugins = plugins.filter(isOfficialPlugin);
|
||||||
|
const otherPlugins = plugins.filter((plugin) => !isOfficialPlugin(plugin));
|
||||||
|
const officialRecommendations = OFFICIAL_PLUGIN_RECOMMENDATIONS.filter(
|
||||||
|
(recommendation) => !isRecommendationInstalled(recommendation),
|
||||||
|
);
|
||||||
|
const unofficialRecommendations = UNOFFICIAL_PLUGIN_RECOMMENDATIONS.filter(
|
||||||
|
(recommendation) => !isRecommendationInstalled(recommendation),
|
||||||
|
);
|
||||||
|
const hasOfficialSection = officialPlugins.length > 0 || officialRecommendations.length > 0;
|
||||||
|
const hasOtherSection = otherPlugins.length > 0 || unofficialRecommendations.length > 0;
|
||||||
|
|
||||||
|
const renderPluginCard = (plugin: Plugin, index: number) => {
|
||||||
|
const handleToggle = async (enabled: boolean) => {
|
||||||
|
const r = await togglePlugin(plugin.name, enabled);
|
||||||
|
if (!r.success) {
|
||||||
|
setInstallError(r.error || t('pluginSettings.toggleFailed'));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<PluginCard
|
||||||
|
key={plugin.name}
|
||||||
|
plugin={plugin}
|
||||||
|
index={index}
|
||||||
|
onToggle={(enabled) => void handleToggle(enabled)}
|
||||||
|
onUpdate={() => void handleUpdate(plugin.name)}
|
||||||
|
onUninstall={() => void handleUninstall(plugin.name)}
|
||||||
|
updating={updatingPlugins.has(plugin.name)}
|
||||||
|
confirmingUninstall={confirmUninstall === plugin.name}
|
||||||
|
onCancelUninstall={() => setConfirmUninstall(null)}
|
||||||
|
updateError={updateErrors[plugin.name] ?? null}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
@@ -456,51 +550,49 @@ export default function PluginSettingsTab() {
|
|||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{/* Official plugin suggestions — above the list */}
|
{/* Plugin sections */}
|
||||||
{!loading && (!hasStarterInstalled || !hasTerminalInstalled) && (
|
|
||||||
<div className="space-y-2">
|
|
||||||
{!hasStarterInstalled && (
|
|
||||||
<StarterPluginCard onInstall={handleInstallStarter} installing={installingStarter} />
|
|
||||||
)}
|
|
||||||
{!hasTerminalInstalled && (
|
|
||||||
<TerminalPluginCard onInstall={handleInstallTerminal} installing={installingTerminal} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* Plugin List */}
|
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<div className="flex items-center justify-center gap-2 py-10 text-sm text-muted-foreground">
|
<div className="flex items-center justify-center gap-2 py-10 text-sm text-muted-foreground">
|
||||||
<Loader2 className="h-4 w-4 animate-spin" />
|
<Loader2 className="h-4 w-4 animate-spin" />
|
||||||
{t('pluginSettings.scanningPlugins')}
|
{t('pluginSettings.scanningPlugins')}
|
||||||
</div>
|
</div>
|
||||||
) : plugins.length === 0 ? (
|
|
||||||
<p className="py-8 text-center text-sm text-muted-foreground">{t('pluginSettings.noPluginsInstalled')}</p>
|
|
||||||
) : (
|
) : (
|
||||||
<div className="space-y-2">
|
<div className="space-y-4">
|
||||||
{plugins.map((plugin, index) => {
|
{hasOfficialSection && (
|
||||||
const handleToggle = async (enabled: boolean) => {
|
<RecommendationSection
|
||||||
const r = await togglePlugin(plugin.name, enabled);
|
title={t('pluginSettings.sections.officialTitle')}
|
||||||
if (!r.success) {
|
description={t('pluginSettings.sections.officialDescription')}
|
||||||
setInstallError(r.error || t('pluginSettings.toggleFailed'));
|
>
|
||||||
}
|
{officialPlugins.map((plugin, index) => renderPluginCard(plugin, index))}
|
||||||
};
|
{officialRecommendations.map((recommendation) => (
|
||||||
|
<PluginRecommendationCard
|
||||||
return (
|
key={recommendation.id}
|
||||||
<PluginCard
|
recommendation={recommendation}
|
||||||
key={plugin.name}
|
onInstall={() => void handleInstallRecommendation(recommendation)}
|
||||||
plugin={plugin}
|
disabled={!!installingRecommendation}
|
||||||
index={index}
|
installing={installingRecommendation === recommendation.id}
|
||||||
onToggle={(enabled) => void handleToggle(enabled)}
|
|
||||||
onUpdate={() => void handleUpdate(plugin.name)}
|
|
||||||
onUninstall={() => void handleUninstall(plugin.name)}
|
|
||||||
updating={updatingPlugins.has(plugin.name)}
|
|
||||||
confirmingUninstall={confirmUninstall === plugin.name}
|
|
||||||
onCancelUninstall={() => setConfirmUninstall(null)}
|
|
||||||
updateError={updateErrors[plugin.name] ?? null}
|
|
||||||
/>
|
/>
|
||||||
);
|
))}
|
||||||
})}
|
</RecommendationSection>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{hasOtherSection && (
|
||||||
|
<RecommendationSection
|
||||||
|
title={t('pluginSettings.sections.unofficialTitle')}
|
||||||
|
description={t('pluginSettings.sections.unofficialDescription')}
|
||||||
|
>
|
||||||
|
{otherPlugins.map((plugin, index) => renderPluginCard(plugin, officialPlugins.length + index))}
|
||||||
|
{unofficialRecommendations.map((recommendation) => (
|
||||||
|
<PluginRecommendationCard
|
||||||
|
key={recommendation.id}
|
||||||
|
recommendation={recommendation}
|
||||||
|
onInstall={() => void handleInstallRecommendation(recommendation)}
|
||||||
|
disabled={!!installingRecommendation}
|
||||||
|
installing={installingRecommendation === recommendation.id}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</RecommendationSection>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|||||||
@@ -472,6 +472,12 @@
|
|||||||
"starterPluginLabel": "Starter Plugin",
|
"starterPluginLabel": "Starter Plugin",
|
||||||
"starter": "Starter",
|
"starter": "Starter",
|
||||||
"docs": "Docs",
|
"docs": "Docs",
|
||||||
|
"sections": {
|
||||||
|
"officialTitle": "Official Plugins",
|
||||||
|
"officialDescription": "Maintained by the CloudCLI team and ready for direct install.",
|
||||||
|
"unofficialTitle": "Other Plugins",
|
||||||
|
"unofficialDescription": "Unofficial plugins and integrations from other users. Review the source before installing."
|
||||||
|
},
|
||||||
"starterPlugin": {
|
"starterPlugin": {
|
||||||
"name": "Project Stats",
|
"name": "Project Stats",
|
||||||
"badge": "starter",
|
"badge": "starter",
|
||||||
@@ -484,6 +490,18 @@
|
|||||||
"description": "Integrated terminal with full shell access directly within the interface.",
|
"description": "Integrated terminal with full shell access directly within the interface.",
|
||||||
"install": "Install"
|
"install": "Install"
|
||||||
},
|
},
|
||||||
|
"scheduledPromptPlugin": {
|
||||||
|
"name": "Scheduled Prompts",
|
||||||
|
"badge": "unofficial",
|
||||||
|
"description": "Schedule workspace prompts, review run history, and manage recurring local tasks.",
|
||||||
|
"install": "Install"
|
||||||
|
},
|
||||||
|
"claudeWatchPlugin": {
|
||||||
|
"name": "Claude Watch",
|
||||||
|
"badge": "unofficial",
|
||||||
|
"description": "Watch long-running Claude Code sessions for hangs and expose process controls.",
|
||||||
|
"install": "Install"
|
||||||
|
},
|
||||||
"morePlugins": "More",
|
"morePlugins": "More",
|
||||||
"enable": "Enable",
|
"enable": "Enable",
|
||||||
"disable": "Disable",
|
"disable": "Disable",
|
||||||
|
|||||||
Reference in New Issue
Block a user