forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins-panel.tsx
165 lines (153 loc) · 6.08 KB
/
plugins-panel.tsx
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
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@/components/ui/dialog';
import { Input } from '@/components/ui/input';
import { usePlugins } from '@/hooks/use-plugins';
import type { Agent } from '@elizaos/core';
import { useMemo, useState, useEffect } from 'react';
import { Button } from './ui/button';
interface PluginsPanelProps {
characterValue: Agent;
setCharacterValue: {
addPlugin?: (pluginId: string) => void;
removePlugin?: (index: number) => void;
setPlugins?: (plugins: string[]) => void;
updateField?: <T>(path: string, value: T) => void;
[key: string]: any;
};
}
export default function PluginsPanel({ characterValue, setCharacterValue }: PluginsPanelProps) {
const { data: plugins, error } = usePlugins();
const [searchQuery, setSearchQuery] = useState('');
const [isDialogOpen, setIsDialogOpen] = useState(false);
const [hasChanged, setHasChanged] = useState(false);
// Ensure we always have arrays and normalize plugin names
const safeCharacterPlugins = useMemo(() => {
if (!Array.isArray(characterValue?.plugins)) return [];
return characterValue.plugins;
}, [characterValue?.plugins]);
// Get plugin names from available plugins
const pluginNames = useMemo(() => {
if (!plugins) return [];
return Object.keys(plugins).map((name) => name.replace(/^@elizaos-plugins\//, '@elizaos/'));
}, [plugins]);
// Reset change tracking when character changes
useEffect(() => {
setHasChanged(false);
}, [characterValue.id]);
const filteredPlugins = useMemo(() => {
return pluginNames
.filter((plugin) => !safeCharacterPlugins.includes(plugin))
.filter((plugin) => plugin.toLowerCase().includes(searchQuery.toLowerCase()));
}, [pluginNames, safeCharacterPlugins, searchQuery]);
const handlePluginAdd = (plugin: string) => {
if (safeCharacterPlugins.includes(plugin)) return;
setHasChanged(true);
if (setCharacterValue.addPlugin) {
setCharacterValue.addPlugin(plugin);
} else if (setCharacterValue.updateField) {
const currentPlugins = Array.isArray(characterValue.plugins)
? [...characterValue.plugins]
: [];
setCharacterValue.updateField('plugins', [...currentPlugins, plugin]);
}
};
const handlePluginRemove = (plugin: string) => {
const index = safeCharacterPlugins.indexOf(plugin);
if (index !== -1) {
setHasChanged(true);
if (setCharacterValue.removePlugin) {
setCharacterValue.removePlugin(index);
} else if (setCharacterValue.updateField) {
const newPlugins = [...safeCharacterPlugins];
newPlugins.splice(index, 1);
setCharacterValue.updateField('plugins', newPlugins);
}
}
};
return (
<div className="space-y-6">
<div className="space-y-4">
<div>
<h3 className="text-lg font-semibold mb-4">Plugins</h3>
{error ? (
<p className="text-destructive">Failed to load plugins: {error.message}</p>
) : (
<div className="space-y-4">
{safeCharacterPlugins.length > 0 && (
<div className="rounded-md bg-muted p-4">
<h4 className="text-sm font-medium mb-2">Currently Enabled</h4>
<div className="flex flex-wrap gap-2">
{safeCharacterPlugins.map((plugin) => (
<Button
type="button"
variant="ghost"
size="sm"
key={plugin}
className="inline-flex items-center rounded-full bg-primary/10 px-2.5 py-0.5 text-xs font-medium text-primary hover:bg-primary/20 h-auto"
onClick={() => handlePluginRemove(plugin)}
>
{plugin} ×
</Button>
))}
</div>
</div>
)}
<div className="space-y-2">
<Dialog open={isDialogOpen} onOpenChange={setIsDialogOpen}>
<DialogTrigger asChild>
<Button variant="outline" className="w-full justify-start">
Search and add plugins...
</Button>
</DialogTrigger>
<DialogContent className="max-w-[400px]">
<DialogHeader>
<DialogTitle>Add Plugins</DialogTitle>
</DialogHeader>
<div className="space-y-4 py-4">
<div className="space-y-2">
<Input
type="search"
placeholder="Search plugins..."
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
/>
</div>
<div className="max-h-[300px] overflow-y-auto space-y-2">
{filteredPlugins.length === 0 ? (
<p className="text-sm text-muted-foreground">No plugins found.</p>
) : (
filteredPlugins.map((plugin) => (
<Button
key={plugin}
variant="ghost"
className="w-full justify-start font-normal"
onClick={() => {
handlePluginAdd(plugin);
setSearchQuery('');
setIsDialogOpen(false);
}}
>
{plugin}
</Button>
))
)}
</div>
</div>
</DialogContent>
</Dialog>
</div>
{hasChanged && (
<p className="text-xs text-blue-500">Plugins configuration has been updated</p>
)}
</div>
)}
</div>
</div>
</div>
);
}