forked from crowetic/commerce
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import clsx from 'clsx';
|
|
import { Suspense } from 'react';
|
|
|
|
import { getCollections } from 'lib/shopify';
|
|
import FilterList from './filter';
|
|
|
|
async function CollectionList() {
|
|
const collections = await getCollections();
|
|
return <FilterList list={collections} title="Collections" />;
|
|
}
|
|
|
|
const skeleton = 'mb-3 h-4 w-5/6 animate-pulse rounded';
|
|
const activeAndTitles = 'bg-neutral-800 dark:bg-neutral-300';
|
|
const items = 'bg-neutral-400 dark:bg-neutral-700';
|
|
|
|
export default function Collections() {
|
|
return (
|
|
<Suspense
|
|
fallback={
|
|
<div className="col-span-2 hidden h-[400px] w-full flex-none py-4 lg:block">
|
|
<div className={clsx(skeleton, activeAndTitles)} />
|
|
<div className={clsx(skeleton, activeAndTitles)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
<div className={clsx(skeleton, items)} />
|
|
</div>
|
|
}
|
|
>
|
|
<CollectionList />
|
|
</Suspense>
|
|
);
|
|
}
|