65 lines
2.2 KiB
JavaScript
65 lines
2.2 KiB
JavaScript
import { useState, useEffect } from 'react';
|
|
import { X, Save } from 'lucide-react';
|
|
|
|
export default function FileEditorModal({ file, onClose, onSave }) {
|
|
const [content, setContent] = useState(file.content);
|
|
const [saving, setSaving] = useState(false);
|
|
|
|
const handleSave = async () => {
|
|
setSaving(true);
|
|
await onSave(file.path, content);
|
|
setSaving(false);
|
|
};
|
|
|
|
useEffect(() => {
|
|
const handleKeyDown = (e) => {
|
|
if (e.ctrlKey && e.key === 's') {
|
|
e.preventDefault();
|
|
handleSave();
|
|
}
|
|
};
|
|
|
|
window.addEventListener('keydown', handleKeyDown);
|
|
return () => window.removeEventListener('keydown', handleKeyDown);
|
|
}, [content]);
|
|
|
|
return (
|
|
<div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
|
<div className="bg-gray-800 rounded-lg w-full max-w-4xl h-[80vh] flex flex-col">
|
|
<div className="flex items-center justify-between p-4 border-b border-gray-700">
|
|
<h2 className="text-xl font-bold">Редактирование: {file.name}</h2>
|
|
<div className="flex gap-2">
|
|
<button
|
|
onClick={handleSave}
|
|
disabled={saving}
|
|
className="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded flex items-center gap-2 disabled:opacity-50"
|
|
>
|
|
<Save className="w-4 h-4" />
|
|
{saving ? 'Сохранение...' : 'Сохранить'}
|
|
</button>
|
|
<button
|
|
onClick={onClose}
|
|
className="text-gray-400 hover:text-white"
|
|
>
|
|
<X className="w-6 h-6" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex-1 overflow-hidden p-4 bg-gray-900">
|
|
<textarea
|
|
value={content}
|
|
onChange={(e) => setContent(e.target.value)}
|
|
className="w-full h-full bg-black text-gray-300 font-mono text-sm p-4 rounded border border-gray-700 focus:outline-none focus:border-blue-500 resize-none"
|
|
spellCheck={false}
|
|
/>
|
|
</div>
|
|
|
|
<div className="p-4 border-t border-gray-700 text-sm text-gray-400">
|
|
Используйте Ctrl+S для быстрого сохранения
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|