mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 03:10:15 +01:00
105 lines
4.3 KiB
TypeScript
105 lines
4.3 KiB
TypeScript
import { Save } from 'lucide-react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { TPlugin, TPluginAuthConfig, TPluginAction } from 'librechat-data-provider';
|
|
import { HoverCard, HoverCardTrigger } from '~/components/ui';
|
|
import PluginTooltip from './PluginTooltip';
|
|
import { useLocalize } from '~/hooks';
|
|
|
|
type TPluginAuthFormProps = {
|
|
plugin: TPlugin | undefined;
|
|
onSubmit: (installActionData: TPluginAction) => void;
|
|
isEntityTool?: boolean;
|
|
};
|
|
|
|
function PluginAuthForm({ plugin, onSubmit, isEntityTool }: TPluginAuthFormProps) {
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors, isDirty, isValid, isSubmitting },
|
|
} = useForm();
|
|
|
|
const localize = useLocalize();
|
|
const authConfig = plugin?.authConfig ?? [];
|
|
|
|
return (
|
|
<div className="flex w-full flex-col items-center gap-2">
|
|
<div className="grid w-full gap-6 sm:grid-cols-2">
|
|
<form
|
|
className="col-span-1 flex w-full flex-col items-start justify-start gap-2"
|
|
method="POST"
|
|
onSubmit={handleSubmit((auth) =>
|
|
onSubmit({
|
|
pluginKey: plugin?.pluginKey ?? '',
|
|
action: 'install',
|
|
auth,
|
|
isEntityTool,
|
|
}),
|
|
)}
|
|
>
|
|
{authConfig.map((config: TPluginAuthConfig, i: number) => {
|
|
const authField = config.authField.split('||')[0];
|
|
return (
|
|
<div key={`${authField}-${i}`} className="flex w-full flex-col gap-1">
|
|
<label
|
|
htmlFor={authField}
|
|
className="mb-1 text-left text-sm font-medium text-gray-700/70 dark:text-gray-50/70"
|
|
>
|
|
{config.label}
|
|
</label>
|
|
<HoverCard openDelay={300}>
|
|
<HoverCardTrigger className="grid w-full items-center gap-2">
|
|
<input
|
|
type="text"
|
|
autoComplete="off"
|
|
id={authField}
|
|
aria-invalid={!!errors[authField]}
|
|
aria-describedby={`${authField}-error`}
|
|
aria-label={config.label}
|
|
aria-required="true"
|
|
{...register(authField, {
|
|
required: `${config.label} is required.`,
|
|
minLength: {
|
|
value: 10,
|
|
message: `${config.label} must be at least 10 characters long`,
|
|
},
|
|
})}
|
|
className="flex h-10 max-h-10 w-full resize-none rounded-md border border-gray-200 bg-transparent px-3 py-2 text-sm text-gray-700 shadow-[0_0_10px_rgba(0,0,0,0.05)] outline-hidden placeholder:text-gray-400 focus:border-gray-400 focus:bg-gray-50 focus:outline-hidden focus:ring-0 focus:ring-gray-400 focus:ring-opacity-0 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 dark:border-gray-500 dark:bg-gray-700 dark:text-gray-50 dark:shadow-[0_0_15px_rgba(0,0,0,0.10)] dark:focus:border-gray-400 dark:focus:bg-gray-600 dark:focus:outline-hidden dark:focus:ring-0 dark:focus:ring-gray-400 dark:focus:ring-offset-0"
|
|
/>
|
|
</HoverCardTrigger>
|
|
<PluginTooltip content={config.description} position="right" />
|
|
</HoverCard>
|
|
{errors[authField] && (
|
|
<span role="alert" className="mt-1 text-sm text-red-400">
|
|
{errors[authField].message as string}
|
|
</span>
|
|
)}
|
|
</div>
|
|
);
|
|
})}
|
|
<button
|
|
disabled={!isDirty || !isValid || isSubmitting}
|
|
type="button"
|
|
className="btn btn-primary relative"
|
|
onClick={() => {
|
|
handleSubmit((auth) =>
|
|
onSubmit({
|
|
pluginKey: plugin?.pluginKey ?? '',
|
|
action: 'install',
|
|
auth,
|
|
isEntityTool,
|
|
}),
|
|
)();
|
|
}}
|
|
>
|
|
<div className="flex items-center justify-center gap-2">
|
|
{localize('com_ui_save')}
|
|
<Save className="flex h-4 w-4 items-center stroke-2" />
|
|
</div>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default PluginAuthForm;
|