1
0
Fork 0
freesewing/sites/org/pages/showcase/page/[page].mjs

123 lines
3.4 KiB
JavaScript
Raw Normal View History

2023-04-09 15:57:25 +02:00
// Dependencies
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
2023-06-24 13:56:22 -05:00
import { sanitySiteImage, numPerPage, sanityLoader } from 'site/components/sanity/utils.mjs'
// Hooks
import { useTranslation } from 'next-i18next'
2023-04-09 15:57:25 +02:00
// Components
import { PageWrapper, ns as pageNs } from 'shared/components/wrappers/page.mjs'
import Link from 'next/link'
import { Pagination } from 'shared/components/navigation/pagination.mjs'
2023-06-24 13:56:22 -05:00
import { siteConfig } from 'site/site.config.mjs'
2023-04-09 15:57:25 +02:00
// Translation namespaces used on this page
const namespaces = [...new Set(['common', 'designs', ...pageNs])]
export const PreviewTile = ({ img, slug, title }) => (
<Link href={`/showcase/${slug}`} className="text-center">
<span
style={{ backgroundImage: `url(${img})`, backgroundSize: 'cover' }}
className={`
rounded-full inline-block border-base-100
w-40 h-40
md:w-56 md:h-56
`}
></span>
<p>{title}</p>
</Link>
)
// const DesignPosts = ({ design, posts }) => {
// const { t } = useTranslation(['patterns'])
// return (
// <div className='py-2'>
// <h2>
// <Link href={`/showcase/designs/${design}`}>
// <a className="hover:text-secondary-focus hover:underline">{t(`${design}.t`)}</a>
// </Link>
// </h2>
// </div>
// )
// }
2023-06-22 11:04:38 -05:00
const Posts = ({ posts }) => {
const previews = []
posts.forEach((post) => {
// for (const design of post.designs) {
// if (typeof designs[design] === 'undefined') designs[design] = []
// designs[design].push(post)
// }
previews.push(
<PreviewTile
2023-06-24 13:56:22 -05:00
img={sanitySiteImage(post.image[0]) + '?fit=clip&w=400'}
slug={post.slug.current}
title={post.title}
key={post.slug.current}
/>
)
})
return (
<div className="grid grid-cols-1 gap-4 xl:gap-8 lg:grid-cols-2 xl:grid-cols-3 lg:pr-4 xl:pr-8">
{previews}
</div>
)
}
2023-04-09 15:57:25 +02:00
2023-06-22 16:32:49 -05:00
const ShowcaseIndexPage = ({ posts, page, current, total }) => {
const { t } = useTranslation()
// const designKeys = useMemo(() => Object.keys(designs).sort(), [designs])
return (
2023-06-22 16:32:49 -05:00
<PageWrapper title={t('showcase')} {...page}>
<div className="text-center">
2023-06-22 16:32:49 -05:00
<Posts locale={page.locale} posts={posts} />
<Pagination {...{ current, total }} />
</div>
</PageWrapper>
)
}
export default ShowcaseIndexPage
2023-04-09 15:57:25 +02:00
2023-06-22 16:32:49 -05:00
export async function getStaticProps({ locale, params }) {
const allPosts = await sanityLoader({
language: locale,
type: 'showcase',
order: 'date desc',
filters: '{_id, date, slug, title, maker, image}',
})
const pageNum = parseInt(params.page)
2023-04-09 15:57:25 +02:00
return {
props: {
// designs,
2023-06-22 16:32:49 -05:00
posts: allPosts.slice(numPerPage * (pageNum - 1), numPerPage * pageNum),
current: pageNum,
total: allPosts.length,
2023-04-09 15:57:25 +02:00
...(await serverSideTranslations(locale, namespaces)),
page: {
locale,
// title: 'Freesewing Blog',
2023-06-22 16:32:49 -05:00
path: ['showcase', 'page', params.page],
2023-04-09 15:57:25 +02:00
},
},
}
}
2023-06-22 16:32:49 -05:00
export const getStaticPaths = async () => {
const numPosts = await sanityLoader({ query: `count(*[_type == "showcaseen"])` })
const numPages = Math.ceil(numPosts / numPerPage)
const paths = []
2023-06-22 16:48:46 -05:00
for (let i = 0; i < numPages; i++) {
2023-06-22 16:32:49 -05:00
const pathName = `/showcase/page/${i + 1}`
2023-06-24 13:56:22 -05:00
siteConfig.languages.forEach((l) => paths.push(`${l.length ? '/' : ''}${l}${pathName}`))
2023-06-22 16:32:49 -05:00
}
return {
paths,
fallback: false,
}
}