84 lines
3.2 KiB
JavaScript
84 lines
3.2 KiB
JavaScript
import { useState } from 'react'
|
|
import Link from 'next/link'
|
|
import tinytime from 'tinytime'
|
|
import Tag from '@/components/Tag'
|
|
|
|
const postDateTemplate = tinytime('{MMMM} {DD}, {YYYY}')
|
|
|
|
export default function ListLayout({ posts, title }) {
|
|
const [searchValue, setSearchValue] = useState('')
|
|
const filteredBlogPosts = posts.filter((frontMatter) =>
|
|
frontMatter.title.toLowerCase().includes(searchValue.toLowerCase())
|
|
)
|
|
|
|
return (
|
|
<>
|
|
<div className="divide-y">
|
|
<div className="pt-6 pb-8 space-y-2 md:space-y-5">
|
|
<h1 className="text-3xl leading-9 font-extrabold text-gray-900 dark:text-gray-100 tracking-tight sm:text-4xl sm:leading-10 md:text-6xl md:leading-14">
|
|
{title}
|
|
</h1>
|
|
<div className="relative max-w-lg">
|
|
<input
|
|
aria-label="Search articles"
|
|
type="text"
|
|
onChange={(e) => setSearchValue(e.target.value)}
|
|
placeholder="Search articles"
|
|
className="px-4 py-2 border border-gray-300 dark:border-gray-900 focus:ring-blue-500 focus:border-blue-500 block w-full rounded-md bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100"
|
|
/>
|
|
<svg
|
|
className="absolute right-3 top-3 h-5 w-5 text-gray-400 dark:text-gray-300"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<ul>
|
|
{!filteredBlogPosts.length && 'No posts found.'}
|
|
{filteredBlogPosts.map((frontMatter) => {
|
|
const { slug, date, title, summary, tags } = frontMatter
|
|
return (
|
|
<li key={slug} className="py-4">
|
|
<article className="space-y-2 xl:grid xl:grid-cols-4 xl:space-y-0 xl:items-baseline">
|
|
<dl>
|
|
<dt className="sr-only">Published on</dt>
|
|
<dd className="text-base leading-6 font-medium text-gray-500 dark:text-gray-400">
|
|
<time dateTime={date}>{postDateTemplate.render(new Date(date))}</time>
|
|
</dd>
|
|
</dl>
|
|
<div className="space-y-3 xl:col-span-3">
|
|
<div>
|
|
<h3 className="text-2xl leading-8 font-bold tracking-tight">
|
|
<Link href={`/blog/${slug}`}>
|
|
<a className="text-gray-900 dark:text-gray-100">{title}</a>
|
|
</Link>
|
|
</h3>
|
|
<div className="space-x-2">
|
|
{tags.map((tag) => (
|
|
<Tag key={tag} text={tag} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
<div className="prose max-w-none text-gray-500 dark:text-gray-400">
|
|
{summary}
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</li>
|
|
)
|
|
})}
|
|
</ul>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|