[catalog/dataset page][m]: implement dataset page using tailwindui assets.
This commit is contained in:
@@ -6,22 +6,36 @@ interface TableProps {
|
|||||||
|
|
||||||
const Table: React.FC<TableProps> = ({ columns, data, className }) => {
|
const Table: React.FC<TableProps> = ({ columns, data, className }) => {
|
||||||
return (
|
return (
|
||||||
<table className={`table-auto w-full text-sm text-left my-6 ${className}`}>
|
<div className="-my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
|
||||||
<thead>
|
<div className="py-2 align-middle inline-block min-w-full sm:px-6 lg:px-8">
|
||||||
|
<div className="shadow overflow-hidden border-b border-gray-200 sm:rounded-lg">
|
||||||
|
<table
|
||||||
|
className={`min-w-full divide-y divide-gray-200 ${className}`}
|
||||||
|
>
|
||||||
|
<thead className="bg-gray-50">
|
||||||
<tr>
|
<tr>
|
||||||
{columns.map(({ key, name }) => (
|
{columns.map(({ key, name }) => (
|
||||||
<th key={key} className="px-4 py-2">
|
<th
|
||||||
|
key={key}
|
||||||
|
scope="col"
|
||||||
|
className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
|
||||||
|
>
|
||||||
{name}
|
{name}
|
||||||
</th>
|
</th>
|
||||||
))}
|
))}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody className="bg-white divide-y divide-gray-200">
|
||||||
{data.map((item) => (
|
{data.map((item) => (
|
||||||
<tr key={item.id}>
|
<tr key={item.id}>
|
||||||
{columns.map(({ key, render }) => (
|
{columns.map(({ key, render }) => (
|
||||||
<td key={key} className="px-4 py-2">
|
<td
|
||||||
{(render && typeof render === 'function' && render(item)) ||
|
key={key}
|
||||||
|
className="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900"
|
||||||
|
>
|
||||||
|
{(render &&
|
||||||
|
typeof render === 'function' &&
|
||||||
|
render(item)) ||
|
||||||
item[key] ||
|
item[key] ||
|
||||||
''}
|
''}
|
||||||
</td>
|
</td>
|
||||||
@@ -30,6 +44,9 @@ const Table: React.FC<TableProps> = ({ columns, data, className }) => {
|
|||||||
))}
|
))}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { useQuery } from '@apollo/react-hooks';
|
import { useQuery } from '@apollo/react-hooks';
|
||||||
|
import * as timeago from 'timeago.js';
|
||||||
import { ErrorMessage } from '../_shared';
|
import { ErrorMessage } from '../_shared';
|
||||||
import { GET_DATASET_QUERY } from '../../graphql/queries';
|
import { GET_DATASET_QUERY } from '../../graphql/queries';
|
||||||
import { KeyInfo } from 'portal';
|
|
||||||
|
|
||||||
const About: React.FC<{ variables: any }> = ({ variables }) => {
|
const About: React.FC<{ variables: any }> = ({ variables }) => {
|
||||||
const { loading, error, data } = useQuery(GET_DATASET_QUERY, {
|
const { loading, error, data } = useQuery(GET_DATASET_QUERY, {
|
||||||
@@ -16,7 +16,68 @@ const About: React.FC<{ variables: any }> = ({ variables }) => {
|
|||||||
if (loading) return <div>Loading</div>;
|
if (loading) return <div>Loading</div>;
|
||||||
|
|
||||||
const { result } = data.dataset;
|
const { result } = data.dataset;
|
||||||
return <KeyInfo descriptor={result} resources={result.resources} />;
|
|
||||||
|
const stats = [
|
||||||
|
{ name: 'Files', stat: result.resources.length },
|
||||||
|
{ name: 'Size', stat: result.size || 'N/A' },
|
||||||
|
{
|
||||||
|
name: 'Formats',
|
||||||
|
stat: result.resources.map((item) => item.format).join(', '),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Created',
|
||||||
|
stat: result.created && timeago.format(result.created),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Updated',
|
||||||
|
stat: result.updated && timeago.format(result.updated),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Licenses',
|
||||||
|
stat: result.licenses?.length
|
||||||
|
? result.licenses.map((item, index) => (
|
||||||
|
<a
|
||||||
|
className="text-yellow-600"
|
||||||
|
href={item.path || '#'}
|
||||||
|
title={item.title || ''}
|
||||||
|
key={index}
|
||||||
|
>
|
||||||
|
{item.name}
|
||||||
|
</a>
|
||||||
|
))
|
||||||
|
: 'N/A',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="pb-5 border-b border-gray-200">
|
||||||
|
<h1 className="text-3xl leading-6 font-medium text-gray-900">
|
||||||
|
{result.title || result.name}
|
||||||
|
</h1>
|
||||||
|
<p className="mt-2 max-w-4xl text-sm text-gray-500">
|
||||||
|
{result.description || 'This dataset does not have a description.'}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div className="mb-5">
|
||||||
|
<dl className="mt-5 grid grid-cols-1 gap-5 sm:grid-cols-3">
|
||||||
|
{stats.map((item) => (
|
||||||
|
<div
|
||||||
|
key={item.name}
|
||||||
|
className="px-4 py-5 bg-white shadow rounded-lg overflow-hidden sm:p-6"
|
||||||
|
>
|
||||||
|
<dt className="text-sm font-medium text-gray-500 truncate">
|
||||||
|
{item.name}
|
||||||
|
</dt>
|
||||||
|
<dd className="mt-1 text-3xl font-semibold text-gray-900">
|
||||||
|
{item.stat}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default About;
|
export default About;
|
||||||
|
|||||||
@@ -56,8 +56,12 @@ const Resources: React.FC<{ variables: any }> = ({ variables }) => {
|
|||||||
const { result } = data.dataset;
|
const { result } = data.dataset;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="mt-12">
|
||||||
<h3 className="text-xl font-semibold">Data Files</h3>
|
<div className="pb-5 border-b border-gray-200">
|
||||||
|
<h1 className="text-2xl leading-6 font-medium text-gray-900">
|
||||||
|
Data files
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
<Table
|
<Table
|
||||||
columns={columns}
|
columns={columns}
|
||||||
data={result.resources.map((resource) => ({
|
data={result.resources.map((resource) => ({
|
||||||
@@ -65,7 +69,7 @@ const Resources: React.FC<{ variables: any }> = ({ variables }) => {
|
|||||||
parentName: result.name,
|
parentName: result.name,
|
||||||
}))}
|
}))}
|
||||||
/>
|
/>
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import Nav from '../../../components/home/Nav';
|
|||||||
import About from '../../../components/dataset/About';
|
import About from '../../../components/dataset/About';
|
||||||
import Org from '../../../components/dataset/Org';
|
import Org from '../../../components/dataset/Org';
|
||||||
import Resources from '../../../components/dataset/Resources';
|
import Resources from '../../../components/dataset/Resources';
|
||||||
|
import Footer from '../../../components/home/Footer';
|
||||||
import { GET_DATASET_QUERY } from '../../../graphql/queries';
|
import { GET_DATASET_QUERY } from '../../../graphql/queries';
|
||||||
|
|
||||||
const Dataset: React.FC<{ variables: any }> = ({ variables }) => {
|
const Dataset: React.FC<{ variables: any }> = ({ variables }) => {
|
||||||
@@ -21,13 +22,10 @@ const Dataset: React.FC<{ variables: any }> = ({ variables }) => {
|
|||||||
<link rel="icon" href="/favicon.ico" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
</Head>
|
</Head>
|
||||||
<Nav />
|
<Nav />
|
||||||
<main className="p-6">
|
<main className="p-8">
|
||||||
<h1 className="text-3xl font-semibold text-primary mb-2">
|
|
||||||
{result.title || result.name}
|
|
||||||
</h1>
|
|
||||||
<Org variables={variables} />
|
|
||||||
<About variables={variables} />
|
<About variables={variables} />
|
||||||
<Resources variables={variables} />
|
<Resources variables={variables} />
|
||||||
|
<Footer />
|
||||||
</main>
|
</main>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user