Spaces:
Sleeping
Sleeping
File size: 13,761 Bytes
942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 4ece098 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 4ece098 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 039e1ea 942fc42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | import React, { useState } from 'react';
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
import {
Package,
Download,
Trash2,
Search,
Filter,
CheckCircle,
AlertCircle,
Loader2,
Plug,
Wrench,
Database,
Sparkles,
} from 'lucide-react';
import { Badge } from '@/components/ui/Badge';
import { classNames } from '@/utils/helpers';
interface Plugin {
id: string;
name: string;
category: string;
description: string;
version: string;
size: string;
installed: boolean;
requires_key: boolean;
}
interface PluginsResponse {
plugins: Record<string, Plugin[]>;
categories: string[];
stats: {
total: number;
installed: number;
available: number;
};
}
interface PluginsPageProps {
className?: string;
}
const getCategoryIcon = (category: string) => {
switch (category) {
case 'apis':
return <Plug className="w-5 h-5 text-cyan-400" />;
case 'mcps':
return <Wrench className="w-5 h-5 text-amber-400" />;
case 'processors':
return <Database className="w-5 h-5 text-pink-400" />;
default:
return <Package className="w-5 h-5 text-gray-400" />;
}
};
const getCategoryLabel = (category: string) => {
const labels: Record<string, string> = {
apis: 'API Providers',
mcps: 'MCP Tools',
processors: 'Data Processors',
};
return labels[category] || category;
};
const getCategoryColor = (category: string) => {
const colors: Record<string, string> = {
apis: 'from-cyan-500/20 to-blue-500/10 border-cyan-500/30',
mcps: 'from-amber-500/20 to-orange-500/10 border-amber-500/30',
processors: 'from-pink-500/20 to-rose-500/10 border-pink-500/30',
};
return colors[category] || 'from-gray-500/20 to-gray-500/10 border-gray-500/30';
};
export const PluginsPage: React.FC<PluginsPageProps> = ({ className }) => {
const queryClient = useQueryClient();
const [searchQuery, setSearchQuery] = useState('');
const [selectedCategory, setSelectedCategory] = useState<string | null>(null);
const [showInstalled, setShowInstalled] = useState(false);
// Fetch plugins
const { data: pluginsData, isLoading } = useQuery<PluginsResponse>({
queryKey: ['plugins'],
queryFn: async () => {
const res = await fetch('/api/plugins/');
return res.json();
},
});
// Install plugin mutation
const installMutation = useMutation({
mutationFn: async (pluginId: string) => {
const res = await fetch('/api/plugins/install', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ plugin_id: pluginId }),
});
return res.json();
},
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['plugins'] });
},
});
// Uninstall plugin mutation
const uninstallMutation = useMutation({
mutationFn: async (pluginId: string) => {
const res = await fetch('/api/plugins/uninstall', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ plugin_id: pluginId }),
});
if (!res.ok) {
const error = await res.json();
throw new Error(error.detail);
}
return res.json();
},
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['plugins'] });
},
});
// Filter plugins
const getFilteredPlugins = () => {
if (!pluginsData?.plugins) return {};
const result: Record<string, Plugin[]> = {};
for (const [category, plugins] of Object.entries(pluginsData.plugins)) {
if (selectedCategory && category !== selectedCategory) continue;
const filtered = plugins.filter((plugin) => {
const matchesSearch =
!searchQuery ||
plugin.name.toLowerCase().includes(searchQuery.toLowerCase()) ||
plugin.description.toLowerCase().includes(searchQuery.toLowerCase());
const matchesInstalled = !showInstalled || plugin.installed;
return matchesSearch && matchesInstalled;
});
if (filtered.length > 0) {
result[category] = filtered;
}
}
return result;
};
const filteredPlugins = getFilteredPlugins();
return (
<div className={classNames('space-y-6', className)}>
{/* Header */}
<div className="flex flex-col lg:flex-row lg:items-center lg:justify-between gap-4">
<div>
<h1 className="text-2xl font-bold text-white flex items-center gap-3">
<div className="p-2 bg-gradient-to-br from-cyan-500/20 to-blue-500/20 rounded-lg">
<Package className="w-6 h-6 text-cyan-400" />
</div>
Plugins
</h1>
<p className="text-gray-400 mt-1">
Extend ScrapeRL with APIs, MCP tools, and processors
</p>
</div>
{/* Stats */}
{pluginsData?.stats && (
<div className="flex gap-4">
<div className="px-4 py-2 bg-emerald-500/10 border border-emerald-500/30 rounded-xl text-center">
<div className="text-xl font-bold text-emerald-400">
{pluginsData.stats.installed}
</div>
<div className="text-xs text-emerald-400/70">Installed</div>
</div>
<div className="px-4 py-2 bg-gray-700/30 border border-gray-600/30 rounded-xl text-center">
<div className="text-xl font-bold text-gray-300">
{pluginsData.stats.available}
</div>
<div className="text-xs text-gray-500">Available</div>
</div>
<div className="px-4 py-2 bg-purple-500/10 border border-purple-500/30 rounded-xl text-center">
<div className="text-xl font-bold text-purple-400">
{pluginsData.stats.total}
</div>
<div className="text-xs text-purple-400/70">Total</div>
</div>
</div>
)}
</div>
{/* Filters */}
<div className="bg-gray-800/50 backdrop-blur-sm border border-gray-700/50 rounded-xl p-4">
<div className="flex flex-wrap gap-4 items-center">
{/* Search */}
<div className="flex-1 min-w-[200px]">
<div className="relative">
<Search className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500" />
<input
type="text"
placeholder="Search plugins..."
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
className="w-full pl-10 pr-4 py-2.5 bg-gray-900/50 border border-gray-700/50 rounded-lg text-gray-200 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-cyan-500/50 focus:border-cyan-500/50 transition-all"
/>
</div>
</div>
{/* Category Filter */}
<div className="flex gap-2 flex-wrap">
<button
onClick={() => setSelectedCategory(null)}
className={classNames(
'px-4 py-2 rounded-lg text-sm font-medium transition-all',
selectedCategory === null
? 'bg-emerald-500 text-white shadow-lg shadow-emerald-500/20'
: 'bg-gray-700/50 text-gray-400 hover:text-gray-200 hover:bg-gray-700'
)}
>
All
</button>
{(pluginsData?.categories || ['apis', 'mcps', 'processors']).map((cat) => (
<button
key={cat}
onClick={() => setSelectedCategory(cat)}
className={classNames(
'flex items-center gap-2 px-4 py-2 rounded-lg text-sm font-medium transition-all',
selectedCategory === cat
? 'bg-emerald-500 text-white shadow-lg shadow-emerald-500/20'
: 'bg-gray-700/50 text-gray-400 hover:text-gray-200 hover:bg-gray-700'
)}
>
{getCategoryIcon(cat)}
{getCategoryLabel(cat)}
</button>
))}
</div>
{/* Show Installed Toggle */}
<button
onClick={() => setShowInstalled(!showInstalled)}
className={classNames(
'flex items-center gap-2 px-4 py-2 rounded-lg text-sm font-medium transition-all',
showInstalled
? 'bg-purple-500 text-white shadow-lg shadow-purple-500/20'
: 'bg-gray-700/50 text-gray-400 hover:text-gray-200 hover:bg-gray-700'
)}
>
<Filter className="w-4 h-4" />
Installed Only
</button>
</div>
</div>
{/* Plugin List */}
{isLoading ? (
<div className="flex flex-col items-center justify-center py-16">
<Loader2 className="w-10 h-10 text-cyan-400 animate-spin mb-4" />
<p className="text-gray-400">Loading plugins...</p>
</div>
) : (
<div className="space-y-8">
{Object.entries(filteredPlugins).map(([category, plugins]) => (
<div key={category}>
<div className="flex items-center gap-3 mb-4">
<div className={`p-2 rounded-lg bg-gradient-to-br ${getCategoryColor(category)}`}>
{getCategoryIcon(category)}
</div>
<h2 className="text-lg font-semibold text-white">
{getCategoryLabel(category)}
</h2>
<Badge variant="neutral" size="sm">
{plugins.length}
</Badge>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
{plugins.map((plugin) => (
<div
key={plugin.id}
className={`relative bg-gradient-to-br ${getCategoryColor(category)} border rounded-xl p-5 backdrop-blur-sm transition-all hover:scale-[1.02] hover:shadow-xl`}
>
<div className="flex items-start justify-between mb-3">
<div className="flex items-center gap-2">
<h3 className="font-semibold text-white">{plugin.name}</h3>
{plugin.installed && (
<CheckCircle className="w-4 h-4 text-emerald-400" />
)}
</div>
<Badge
variant={plugin.installed ? 'success' : 'neutral'}
size="sm"
>
{plugin.installed ? 'Installed' : 'Available'}
</Badge>
</div>
<p className="text-sm text-gray-400 mb-4 line-clamp-2">
{plugin.description}
</p>
<div className="flex items-center gap-3 text-xs text-gray-500 mb-4">
<span className="px-2 py-0.5 bg-gray-800/50 rounded">v{plugin.version}</span>
<span>{plugin.size}</span>
{plugin.requires_key && (
<span className="flex items-center gap-1 text-amber-400">
<Sparkles className="w-3 h-3" />
API Key
</span>
)}
</div>
{plugin.installed ? (
<button
onClick={() => uninstallMutation.mutate(plugin.id)}
disabled={uninstallMutation.isPending}
className="w-full flex items-center justify-center gap-2 px-4 py-2.5 bg-red-500/10 hover:bg-red-500/20 border border-red-500/30 text-red-400 rounded-lg font-medium transition-all disabled:opacity-50"
>
<Trash2 className="w-4 h-4" />
Uninstall
</button>
) : (
<button
onClick={() => installMutation.mutate(plugin.id)}
disabled={installMutation.isPending}
className="w-full flex items-center justify-center gap-2 px-4 py-2.5 bg-emerald-500 hover:bg-emerald-600 text-white rounded-lg font-medium transition-all shadow-lg shadow-emerald-500/20 disabled:opacity-50"
>
<Download className="w-4 h-4" />
Install
</button>
)}
</div>
))}
</div>
</div>
))}
{Object.keys(filteredPlugins).length === 0 && (
<div className="text-center py-16">
<div className="w-16 h-16 bg-gray-800/50 rounded-full flex items-center justify-center mx-auto mb-4">
<Package className="w-8 h-8 text-gray-500" />
</div>
<h3 className="text-lg font-medium text-gray-300">No plugins found</h3>
<p className="text-gray-500 mt-1">
Try adjusting your search or filter criteria
</p>
</div>
)}
</div>
)}
{/* Error Messages */}
{uninstallMutation.isError && (
<div className="fixed bottom-4 right-4 flex items-center gap-3 p-4 bg-red-500/10 border border-red-500/30 rounded-xl backdrop-blur-sm shadow-xl">
<AlertCircle className="w-5 h-5 text-red-400" />
<span className="text-sm text-red-400">
{(uninstallMutation.error as Error).message}
</span>
</div>
)}
</div>
);
};
export default PluginsPage;
|