149 lines
9.1 KiB
TypeScript
149 lines
9.1 KiB
TypeScript
import Link from 'next/link';
|
|
import { getDataSource, Customer } from '@/lib/database';
|
|
import DeleteButton from './DeleteButton';
|
|
|
|
export default async function AdminCustomers() {
|
|
// Fetch customers from the database
|
|
const dataSource = await getDataSource();
|
|
const customerRepository = dataSource.getRepository(Customer);
|
|
|
|
const customers = await customerRepository.find({
|
|
order: { createdAt: 'DESC' }
|
|
});
|
|
|
|
return (
|
|
<div>
|
|
<div className="flex justify-between items-center">
|
|
<h1 className="text-2xl font-semibold text-gray-900">Customers</h1>
|
|
<Link
|
|
href="/admin/customers/new"
|
|
className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"
|
|
>
|
|
Add New Customer
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="mt-8 flex flex-col">
|
|
<div className="-my-2 -mx-4 overflow-x-auto sm:-mx-6 lg:-mx-8">
|
|
<div className="inline-block min-w-full py-2 align-middle md:px-6 lg:px-8">
|
|
<div className="overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg">
|
|
<table className="min-w-full divide-y divide-gray-300">
|
|
<thead className="bg-gray-50">
|
|
<tr>
|
|
<th
|
|
scope="col"
|
|
className="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6"
|
|
>
|
|
ID
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Name
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
URL
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Email
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Created
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Modified
|
|
</th>
|
|
<th scope="col" className="relative py-3.5 pl-3 pr-4 sm:pr-6">
|
|
<span className="sr-only">Actions</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y divide-gray-200 bg-white">
|
|
{customers.length > 0 ? (
|
|
customers.map((customer) => (
|
|
<tr key={customer.id}>
|
|
<td className="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6">
|
|
<Link
|
|
href={`/admin/customers/detail/${customer.id}`}
|
|
className="text-indigo-600 hover:text-indigo-900"
|
|
>
|
|
{customer.id.substring(0, 8)}...
|
|
</Link>
|
|
</td>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
<Link
|
|
href={`/admin/customers/detail/${customer.id}`}
|
|
className="text-indigo-600 hover:text-indigo-900"
|
|
>
|
|
{customer.name}
|
|
</Link>
|
|
</td>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
{customer.url ? (
|
|
<a
|
|
href={customer.url.startsWith('http') ? customer.url : `https://${customer.url}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-indigo-600 hover:text-indigo-900"
|
|
>
|
|
{customer.url}
|
|
</a>
|
|
) : (
|
|
<span className="text-gray-400">-</span>
|
|
)}
|
|
</td>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
<a
|
|
href={`mailto:${customer.email}`}
|
|
className="text-indigo-600 hover:text-indigo-900"
|
|
>
|
|
{customer.email}
|
|
</a>
|
|
</td>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
{new Date(customer.createdAt).toLocaleDateString()}
|
|
</td>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
{new Date(customer.modifiedAt).toLocaleDateString()}
|
|
</td>
|
|
<td className="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-6">
|
|
<Link
|
|
href={`/admin/customers/edit/${customer.id}`}
|
|
className="text-indigo-600 hover:text-indigo-900 mr-4"
|
|
>
|
|
Edit
|
|
</Link>
|
|
<DeleteButton customerId={customer.id} customerName={customer.name} />
|
|
</td>
|
|
</tr>
|
|
))
|
|
) : (
|
|
<tr>
|
|
<td colSpan={7} className="py-4 pl-4 pr-3 text-sm text-gray-500 text-center">
|
|
No customers found. Create your first customer!
|
|
</td>
|
|
</tr>
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|