mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import { Resume } from '@reactive-resume/schema';
|
|
import clsx from 'clsx';
|
|
import get from 'lodash/get';
|
|
import isEmpty from 'lodash/isEmpty';
|
|
import { GetServerSideProps, NextPage } from 'next';
|
|
import dynamic from 'next/dynamic';
|
|
import { useEffect } from 'react';
|
|
|
|
import { fetchResumeByIdentifier } from '@/services/resume';
|
|
import { useAppDispatch, useAppSelector } from '@/store/hooks';
|
|
import { setResume } from '@/store/resume/resumeSlice';
|
|
import styles from '@/styles/pages/Printer.module.scss';
|
|
|
|
const Page = dynamic(() => import('@/components/build/Center/Page'));
|
|
|
|
type QueryParams = {
|
|
slug?: string;
|
|
username?: string;
|
|
secretKey?: string;
|
|
};
|
|
|
|
type Props = {
|
|
slug?: string;
|
|
resume?: Resume;
|
|
username?: string;
|
|
};
|
|
|
|
export const getServerSideProps: GetServerSideProps<Props> = async ({ query }) => {
|
|
const { username, slug, secretKey } = query as QueryParams;
|
|
|
|
try {
|
|
if (isEmpty(secretKey)) throw new Error('There is no secret key!');
|
|
|
|
const resume = await fetchResumeByIdentifier({ username, slug, options: { secretKey } });
|
|
|
|
return { props: { resume } };
|
|
} catch (error) {
|
|
return {
|
|
redirect: {
|
|
permanent: false,
|
|
destination: '/',
|
|
},
|
|
};
|
|
}
|
|
};
|
|
|
|
const Printer: NextPage<Props> = ({ resume: initialData }) => {
|
|
const dispatch = useAppDispatch();
|
|
|
|
const resume = useAppSelector((state) => state.resume);
|
|
|
|
useEffect(() => {
|
|
if (initialData) dispatch(setResume(initialData));
|
|
}, [dispatch, initialData]);
|
|
|
|
if (isEmpty(resume)) return null;
|
|
|
|
const layout: string[][][] = get(resume, 'metadata.layout', []);
|
|
|
|
return (
|
|
<div className={clsx('printer-mode', styles.container)}>
|
|
{layout.map((_, pageIndex) => (
|
|
<Page key={pageIndex} page={pageIndex} />
|
|
))}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Printer;
|