sendou.ink/pages/plus/index.tsx
2021-02-22 13:45:55 +02:00

41 lines
1.0 KiB
TypeScript

import PlusHomePage from "components/plus/PlusHomePage";
// export const getStaticProps: GetStaticProps<PlusVotingHistoryPageProps> = async ({
// params,
// }) => {
// const getSlug = async () => {
// const slug = Array.isArray(params!.slug) ? params!.slug : [];
// if (slug.length === 3) {
// return slug;
// }
// if (slug.length > 0) {
// return [];
// }
// const mostRecent = await plusService.getMostRecentVotingWithResultsMonth();
// return ["1", mostRecent.year, mostRecent.month];
// };
// const [tier, year, month] = (await getSlug()).map((param) => Number(param));
// if (!tier) return { notFound: true };
// const [summaries, monthsWithData] = await Promise.all([
// plusService.getVotingSummariesByMonthAndTier({
// tier: tier as any,
// year,
// month,
// }),
// plusService.getDistinctSummaryMonths(),
// ]);
// if (!summaries.length) return { notFound: true };
// return {
// props: { summaries, monthsWithData },
// };
// };
export default PlusHomePage;