ruvector/studio/components/interfaces/Support/MessageField.tsx
rUv 814f595995 feat(studio): Add complete RuVector Studio application
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>
2025-12-06 23:04:48 +00:00

53 lines
1.8 KiB
TypeScript

import type { UseFormReturn } from 'react-hook-form'
// End of third-party imports
import { FormControl_Shadcn_, FormField_Shadcn_, TextArea_Shadcn_ } from 'ui'
import { Admonition } from 'ui-patterns/admonition'
import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
import { IPV4SuggestionAlert } from './IPV4SuggestionAlert'
import { IPV4_MIGRATION_STRINGS } from './Support.constants'
import type { SupportFormValues } from './SupportForm.schema'
interface MessageFieldProps {
form: UseFormReturn<SupportFormValues>
originalError: string | null | undefined
}
export function MessageField({ form, originalError }: MessageFieldProps) {
return (
<FormField_Shadcn_
name="message"
control={form.control}
render={({ field }) => (
<FormItemLayout
layout="vertical"
label="Message"
labelOptional="5000 character limit"
description={
IPV4_MIGRATION_STRINGS.some((str) => field.value.includes(str)) && (
<IPV4SuggestionAlert />
)
}
>
<FormControl_Shadcn_>
<TextArea_Shadcn_
{...field}
rows={4}
maxLength={5000}
placeholder="Describe the issue you're facing, along with any relevant information. Please be as detailed and specific as possible."
/>
</FormControl_Shadcn_>
{originalError && (
<Admonition
showIcon={false}
type="default"
className="mt-2 max-h-[150px] overflow-y-auto"
title="The error that you ran into will be included in your message for reference"
description={`Error: ${originalError}`}
/>
)}
</FormItemLayout>
)}
/>
)
}