feat(ui): use CodeMirror editor for Import Inbound and Inbound JSON

This commit is contained in:
MHSanaei
2026-06-12 12:38:18 +02:00
parent 0766e16684
commit 0cefadd166
3 changed files with 34 additions and 14 deletions
@@ -3,6 +3,8 @@ import { Input, Modal } from 'antd';
import type { InputRef } from 'antd';
import { useTranslation } from 'react-i18next';
import JsonEditor from '@/components/form/JsonEditor';
interface PromptModalProps {
open: boolean;
onClose: () => void;
@@ -11,6 +13,7 @@ interface PromptModalProps {
type?: 'input' | 'textarea';
initialValue?: string;
loading?: boolean;
json?: boolean;
onConfirm: (value: string) => void;
}
@@ -22,6 +25,7 @@ export default function PromptModal({
type = 'input',
initialValue = '',
loading = false,
json = false,
onConfirm,
}: PromptModalProps) {
const { t } = useTranslation();
@@ -63,7 +67,9 @@ export default function PromptModal({
onCancel={onClose}
destroyOnHidden
>
{type === 'textarea' ? (
{json ? (
<JsonEditor value={value} onChange={setValue} minHeight="240px" maxHeight="60vh" />
) : type === 'textarea' ? (
<Input.TextArea
ref={(el) => { textareaRef.current = (el as unknown as { resizableTextArea?: { textArea: HTMLTextAreaElement } })?.resizableTextArea?.textArea ?? null; }}
value={value}
+17 -11
View File
@@ -2,6 +2,7 @@ import { Button, Input, Modal, message } from 'antd';
import { CopyOutlined, DownloadOutlined } from '@ant-design/icons';
import { useTranslation } from 'react-i18next';
import JsonEditor from '@/components/form/JsonEditor';
import { ClipboardManager, FileManager } from '@/utils';
interface TextModalProps {
@@ -10,9 +11,10 @@ interface TextModalProps {
title: string;
content: string;
fileName?: string;
json?: boolean;
}
export default function TextModal({ open, onClose, title, content, fileName = '' }: TextModalProps) {
export default function TextModal({ open, onClose, title, content, fileName = '', json = false }: TextModalProps) {
const { t } = useTranslation();
const [messageApi, messageContextHolder] = message.useMessage();
async function copy() {
@@ -45,16 +47,20 @@ export default function TextModal({ open, onClose, title, content, fileName = ''
</>
)}
>
<Input.TextArea
value={content}
readOnly
autoSize={{ minRows: 10, maxRows: 20 }}
style={{
fontFamily: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace',
fontSize: 12,
overflowY: 'auto',
}}
/>
{json ? (
<JsonEditor value={content} readOnly minHeight="240px" maxHeight="60vh" />
) : (
<Input.TextArea
value={content}
readOnly
autoSize={{ minRows: 10, maxRows: 20 }}
style={{
fontFamily: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace',
fontSize: 12,
overflowY: 'auto',
}}
/>
)}
</Modal>
</>
);