mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 05:43:58 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
274 lines
10 KiB
TypeScript
274 lines
10 KiB
TypeScript
import { ChevronDown, Plus, X } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
|
|
import { useParams } from 'common'
|
|
import { useApiKeysVisibility } from 'components/interfaces/APIKeys/hooks/useApiKeysVisibility'
|
|
import { ButtonTooltip } from 'components/ui/ButtonTooltip'
|
|
import { FormSection, FormSectionContent, FormSectionLabel } from 'components/ui/Forms/FormSection'
|
|
import { getKeys, useAPIKeysQuery } from 'data/api-keys/api-keys-query'
|
|
import { useEdgeFunctionsQuery } from 'data/edge-functions/edge-functions-query'
|
|
import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject'
|
|
import { uuidv4 } from 'lib/helpers'
|
|
import {
|
|
Button,
|
|
cn,
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
Input,
|
|
Listbox,
|
|
SidePanel,
|
|
} from 'ui'
|
|
import { HTTPArgument } from './EditHookPanel'
|
|
|
|
interface HTTPRequestFieldsProps {
|
|
type: 'http_request' | 'supabase_function'
|
|
errors: any
|
|
httpHeaders: HTTPArgument[]
|
|
httpParameters: HTTPArgument[]
|
|
onAddHeaders: (headers?: any[]) => void
|
|
onUpdateHeader: (idx: number, property: string, value: string) => void
|
|
onRemoveHeader: (idx: number) => void
|
|
onAddParameter: () => void
|
|
onUpdateParameter: (idx: number, property: string, value: string) => void
|
|
onRemoveParameter: (idx: number) => void
|
|
}
|
|
|
|
const HTTPRequestFields = ({
|
|
type,
|
|
errors,
|
|
httpHeaders = [],
|
|
httpParameters = [],
|
|
onAddHeaders,
|
|
onUpdateHeader,
|
|
onRemoveHeader,
|
|
onAddParameter,
|
|
onUpdateParameter,
|
|
onRemoveParameter,
|
|
}: HTTPRequestFieldsProps) => {
|
|
const { ref } = useParams()
|
|
const { data: selectedProject } = useSelectedProjectQuery()
|
|
|
|
const { data: functions } = useEdgeFunctionsQuery({ projectRef: ref })
|
|
const { canReadAPIKeys } = useApiKeysVisibility()
|
|
const { data: apiKeys } = useAPIKeysQuery(
|
|
{ projectRef: ref, reveal: true },
|
|
{ enabled: canReadAPIKeys }
|
|
)
|
|
|
|
const edgeFunctions = functions ?? []
|
|
const { serviceKey, secretKey } = getKeys(apiKeys)
|
|
const apiKey = secretKey?.api_key ?? serviceKey?.api_key ?? '[YOUR API KEY]'
|
|
|
|
return (
|
|
<>
|
|
<FormSection
|
|
header={
|
|
<FormSectionLabel className="lg:!col-span-4">
|
|
{type === 'http_request'
|
|
? 'HTTP Request'
|
|
: type === 'supabase_function'
|
|
? 'Edge Function'
|
|
: ''}
|
|
</FormSectionLabel>
|
|
}
|
|
>
|
|
<FormSectionContent loading={false} className="lg:!col-span-8">
|
|
<Listbox id="http_method" name="http_method" size="medium" label="Method">
|
|
<Listbox.Option id="GET" value="GET" label="GET">
|
|
GET
|
|
</Listbox.Option>
|
|
<Listbox.Option id="POST" value="POST" label="POST">
|
|
POST
|
|
</Listbox.Option>
|
|
</Listbox>
|
|
{type === 'http_request' ? (
|
|
<Input
|
|
id="http_url"
|
|
name="http_url"
|
|
label="URL"
|
|
placeholder="http://api.com/path/resource"
|
|
descriptionText="URL of the HTTP request. Must include HTTP/HTTPS"
|
|
/>
|
|
) : type === 'supabase_function' && edgeFunctions.length === 0 ? (
|
|
<div className="space-y-1">
|
|
<p className="text-sm text-foreground-light">Select which edge function to trigger</p>
|
|
<div className="px-4 py-4 border rounded bg-surface-300 border-strong flex items-center justify-between space-x-4">
|
|
<p className="text-sm">No edge functions created yet</p>
|
|
<Button asChild>
|
|
<Link href={`/project/${ref}/functions`}>Create an edge function</Link>
|
|
</Button>
|
|
</div>
|
|
{errors.http_url && <p className="text-sm text-red-900">{errors.http_url}</p>}
|
|
</div>
|
|
) : type === 'supabase_function' && edgeFunctions.length > 0 ? (
|
|
<Listbox id="http_url" name="http_url" label="Select which edge function to trigger">
|
|
{edgeFunctions.map((fn) => {
|
|
const restUrl = selectedProject?.restUrl
|
|
const restUrlTld = restUrl ? new URL(restUrl).hostname.split('.').pop() : 'co'
|
|
const functionUrl = `https://${ref}.supabase.${restUrlTld}/functions/v1/${fn.slug}`
|
|
|
|
return (
|
|
<Listbox.Option key={fn.id} id={functionUrl} value={functionUrl} label={fn.name}>
|
|
{fn.name}
|
|
</Listbox.Option>
|
|
)
|
|
})}
|
|
</Listbox>
|
|
) : null}
|
|
<Input
|
|
id="timeout_ms"
|
|
name="timeout_ms"
|
|
label="Timeout"
|
|
labelOptional="Between 1000ms to 10,000ms"
|
|
type="number"
|
|
actions={<p className="text-foreground-light pr-2">ms</p>}
|
|
/>
|
|
</FormSectionContent>
|
|
</FormSection>
|
|
<SidePanel.Separator />
|
|
<FormSection
|
|
header={<FormSectionLabel className="lg:!col-span-4">HTTP Headers</FormSectionLabel>}
|
|
>
|
|
<FormSectionContent loading={false} className="lg:!col-span-8">
|
|
<div className="space-y-2">
|
|
{httpHeaders.map((header, idx: number) => (
|
|
<div key={header.id} className="flex items-center space-x-2">
|
|
<Input
|
|
value={header.name}
|
|
size="small"
|
|
className="w-full"
|
|
placeholder="Header name"
|
|
onChange={(event: any) => onUpdateHeader(idx, 'name', event.target.value)}
|
|
/>
|
|
<Input
|
|
value={header.value}
|
|
size="small"
|
|
className="w-full"
|
|
placeholder="Header value"
|
|
onChange={(event: any) => onUpdateHeader(idx, 'value', event.target.value)}
|
|
/>
|
|
<ButtonTooltip
|
|
type="text"
|
|
icon={<X />}
|
|
className="py-4"
|
|
onClick={() => onRemoveHeader(idx)}
|
|
tooltip={{ content: { side: 'bottom', text: 'Remove header' } }}
|
|
/>
|
|
</div>
|
|
))}
|
|
<div className="flex items-center">
|
|
<Button
|
|
type="default"
|
|
size="tiny"
|
|
icon={<Plus />}
|
|
className={cn(type === 'supabase_function' && 'rounded-r-none px-3')}
|
|
onClick={() => onAddHeaders()}
|
|
>
|
|
Add a new header
|
|
</Button>
|
|
{type === 'supabase_function' && (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
type="default"
|
|
icon={<ChevronDown />}
|
|
className="rounded-l-none px-[4px] py-[5px]"
|
|
/>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" side="bottom">
|
|
<DropdownMenuItem
|
|
key="add-auth-header"
|
|
onClick={() => {
|
|
onAddHeaders([
|
|
{
|
|
id: uuidv4(),
|
|
name: 'Authorization',
|
|
value: `Bearer ${apiKey}`,
|
|
},
|
|
...(serviceKey?.type === 'secret'
|
|
? [{ id: uuidv4(), name: 'apikey', value: apiKey }]
|
|
: []),
|
|
])
|
|
}}
|
|
>
|
|
<div className="space-y-1">
|
|
<p className="block text-foreground">Add auth header with secret key</p>
|
|
<p className="text-foreground-light">
|
|
Required if your edge function enforces JWT verification
|
|
</p>
|
|
</div>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem
|
|
key="add-source-header"
|
|
onClick={() =>
|
|
onAddHeaders([
|
|
{
|
|
id: uuidv4(),
|
|
name: 'x-supabase-webhook-source',
|
|
value: `[Use a secret value]`,
|
|
},
|
|
])
|
|
}
|
|
>
|
|
<div className="space-y-1">
|
|
<p className="block text-foreground">Add custom source header</p>
|
|
<p className="text-foreground-light">
|
|
Useful to verify that the edge function was triggered from this webhook
|
|
</p>
|
|
</div>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</FormSectionContent>
|
|
</FormSection>
|
|
<SidePanel.Separator />
|
|
<FormSection
|
|
header={<FormSectionLabel className="lg:!col-span-4">HTTP Parameters</FormSectionLabel>}
|
|
>
|
|
<FormSectionContent loading={false} className="lg:!col-span-8">
|
|
<div className="space-y-2">
|
|
{httpParameters.map((parameter, idx: number) => (
|
|
<div key={parameter.id} className="flex items-center space-x-2">
|
|
<Input
|
|
size="small"
|
|
value={parameter.name}
|
|
className="w-full"
|
|
placeholder="Parameter name"
|
|
onChange={(event: any) => onUpdateParameter(idx, 'name', event.target.value)}
|
|
/>
|
|
<Input
|
|
size="small"
|
|
value={parameter.value}
|
|
className="w-full"
|
|
placeholder="Parameter value"
|
|
onChange={(event: any) => onUpdateParameter(idx, 'value', event.target.value)}
|
|
/>
|
|
<ButtonTooltip
|
|
type="text"
|
|
className="py-4"
|
|
icon={<X />}
|
|
onClick={() => onRemoveParameter(idx)}
|
|
tooltip={{ content: { side: 'bottom', text: 'Remove parameter' } }}
|
|
/>
|
|
</div>
|
|
))}
|
|
<div>
|
|
<Button type="default" size="tiny" icon={<Plus />} onClick={onAddParameter}>
|
|
Add a new parameter
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</FormSectionContent>
|
|
</FormSection>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default HTTPRequestFields
|