klg-asutk-app/components/DocumentViewModal.tsx
Yuriy aa052763f6 Безопасность и качество: 8 исправлений + обновления
- .env.example: полный шаблон, защита секретов
- .gitignore: явное исключение .env.* и секретов
- layout.tsx: XSS — заменён dangerouslySetInnerHTML на next/script для SW
- ESLint: no-console error (allow warn/error), ignore scripts/
- scripts/remove-console-logs.js: очистка console.log без glob
- backend/routes/modules: README с планом рефакторинга крупных файлов
- SECURITY.md: гид по секретам, XSS, CORS, auth, линту
- .husky/pre-commit: запуск npm run lint

+ прочие правки приложения и бэкенда

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-14 21:29:16 +03:00

24 lines
1002 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client';
import { Modal } from '@/components/ui';
interface Doc { id: string; name: string; type: string; aircraft: string; date: string; status: string; size: string; }
interface Props { isOpen: boolean; onClose: () => void; document: Doc | null; }
export default function DocumentViewModal({ isOpen, onClose, document: doc }: Props) {
if (!doc) return null;
return (
<Modal isOpen={isOpen} onClose={onClose} title={doc.name} size="md">
<div className="space-y-3">
<Info label="Тип" value={doc.type} />
<Info label="ВС" value={doc.aircraft} />
<Info label="Дата" value={doc.date} />
<Info label="Статус" value={doc.status} />
<Info label="Размер" value={doc.size} />
</div>
</Modal>
);
}
function Info({ label, value }: { label: string; value: string }) {
return <div className="flex"><span className="text-sm font-bold text-gray-600 w-24">{label}:</span><span className="text-sm">{value}</span></div>;
}