Spaces:
Sleeping
Sleeping
File size: 5,924 Bytes
01d5a5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
'use client';
import { useState } from 'react';
import { Modal } from 'antd';
import ReactMarkdown from 'react-markdown';
import remarkGfm from 'remark-gfm';
import 'github-markdown-css/github-markdown.css';
interface Memory {
id: string;
type: 'text' | 'file' | 'folder';
name: string;
content?: string;
size: string;
uploadedAt: string;
isTrained?: boolean;
}
interface MemoryListProps {
memories: Memory[];
onDelete: (id: string, name: string) => void;
}
export default function MemoryList({ memories, onDelete }: MemoryListProps) {
const [selectedMemory, setSelectedMemory] = useState<Memory | null>(null);
const [isModalVisible, setIsModalVisible] = useState(false);
const showDetails = (record: Memory) => {
setSelectedMemory(record);
setIsModalVisible(true);
};
const getIcon = (type: string) => {
switch (type) {
case 'text':
return (
<svg
className="w-5 h-5 text-gray-500"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
</svg>
);
case 'folder':
return (
<svg
className="w-5 h-5 text-gray-500"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
</svg>
);
default:
return (
<svg
className="w-5 h-5 text-gray-500"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
d="M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
</svg>
);
}
};
return (
<div>
<div className="border rounded-lg overflow-hidden bg-gray-50 bg-opacity-30">
<table className="min-w-full divide-y divide-gray-200 table-fixed">
<thead className="bg-gray-100">
<tr>
<th className="w-[12%] px-6 py-3 text-left text-xs font-medium text-gray-600 uppercase tracking-wider">
Type
</th>
<th className="w-[25%] px-6 py-3 text-left text-xs font-medium text-gray-600 uppercase tracking-wider">
Name
</th>
<th className="w-[12%] px-6 py-3 text-left text-xs font-medium text-gray-600 uppercase tracking-wider">
Size
</th>
<th className="w-[20%] px-6 py-3 text-left text-xs font-medium text-gray-600 uppercase tracking-wider">
Uploaded
</th>
<th className="w-[10%] px-6 py-3 text-left text-xs font-medium text-gray-600 uppercase tracking-wider">
Actions
</th>
<th className="w-[9%] px-6 py-3 text-left text-xs font-medium text-gray-600 uppercase tracking-wider">
Details
</th>
</tr>
</thead>
<tbody className="bg-white divide-y divide-gray-200">
{memories.map((memory) => (
<tr key={memory.id} className="hover:bg-gray-50 transition-colors duration-150">
<td className="px-6 py-4 whitespace-nowrap">
<div className="flex items-center truncate">{getIcon(memory.type)}</div>
</td>
<td className="px-6 py-4 whitespace-nowrap max-w-0">
<div className="text-sm text-gray-900 truncate" title={memory.name}>
{memory.name}
</div>
{/* {memory.content && (
<div className="text-sm text-gray-500 truncate" title={memory.content}>
{memory.content}
</div>
)} */}
</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500 truncate">
{memory.size}
</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500 truncate">
{memory.uploadedAt}
</td>
<td className="px-6 py-4 whitespace-nowrap text-right text-sm font-medium truncate">
<button
className="text-red-600 hover:text-red-900 hover:underline focus:outline-none"
onClick={() => onDelete(memory.id, memory.name)}
>
Delete
</button>
</td>
<td className="px-6 py-4 whitespace-nowrap text-right text-sm font-medium truncate">
<button
className="text-blue-600 hover:text-blue-900 hover:underline focus:outline-none"
onClick={() => showDetails(memory)}
>
Details
</button>
</td>
</tr>
))}
</tbody>
</table>
</div>
<Modal
footer={null}
onCancel={() => setIsModalVisible(false)}
open={isModalVisible}
title={selectedMemory?.name}
width={800}
>
<div className="markdown-body p-6">
<ReactMarkdown remarkPlugins={[remarkGfm]}>{selectedMemory?.content || ''}</ReactMarkdown>
</div>
</Modal>
</div>
);
}
|