parent
523d91f920
commit
dee60943d0
@ -0,0 +1,274 @@
|
||||
import clsx from 'clsx';
|
||||
import Link from 'next/link';
|
||||
import { signIn, signOut, useSession } from 'next-auth/react';
|
||||
import type { ReactNode } from 'react';
|
||||
import { Fragment, useState } from 'react';
|
||||
import { Dialog, Menu, Transition } from '@headlessui/react';
|
||||
import {
|
||||
Bars3BottomLeftIcon,
|
||||
BriefcaseIcon,
|
||||
CurrencyDollarIcon,
|
||||
DocumentTextIcon,
|
||||
HomeIcon,
|
||||
XMarkIcon,
|
||||
} from '@heroicons/react/24/outline';
|
||||
|
||||
const sidebarNavigation = [
|
||||
{ current: false, href: '/', icon: HomeIcon, name: 'Home' },
|
||||
{ current: false, href: '/resumes', icon: DocumentTextIcon, name: 'Resumes' },
|
||||
{
|
||||
current: false,
|
||||
href: '/questions',
|
||||
icon: BriefcaseIcon,
|
||||
name: 'Questions',
|
||||
},
|
||||
{ current: false, href: '/offers', icon: CurrencyDollarIcon, name: 'Offers' },
|
||||
];
|
||||
|
||||
type Props = Readonly<{
|
||||
children: ReactNode;
|
||||
}>;
|
||||
|
||||
function ProfileJewel() {
|
||||
const { data: session, status } = useSession();
|
||||
const isSessionLoading = status === 'loading';
|
||||
|
||||
if (isSessionLoading) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (session == null) {
|
||||
return (
|
||||
<a
|
||||
href="/api/auth/signin"
|
||||
onClick={(event) => {
|
||||
event.preventDefault();
|
||||
signIn();
|
||||
}}>
|
||||
Sign in
|
||||
</a>
|
||||
);
|
||||
}
|
||||
|
||||
const userNavigation = [
|
||||
{ href: '/profile', name: 'Profile' },
|
||||
{
|
||||
href: '/api/auth/signout',
|
||||
name: 'Sign out',
|
||||
onClick: (event: MouseEvent) => {
|
||||
event.preventDefault();
|
||||
signOut();
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<Menu as="div" className="relative flex-shrink-0">
|
||||
<div>
|
||||
<Menu.Button className="flex rounded-full bg-white text-sm focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2">
|
||||
<span className="sr-only">Open user menu</span>
|
||||
{session?.user?.image == null ? (
|
||||
<span>Render some icon</span>
|
||||
) : (
|
||||
<img
|
||||
alt={session?.user?.email ?? session?.user?.name ?? ''}
|
||||
className="h-8 w-8 rounded-full"
|
||||
src={session?.user.image}
|
||||
/>
|
||||
)}
|
||||
</Menu.Button>
|
||||
</div>
|
||||
<Transition
|
||||
as={Fragment}
|
||||
enter="transition ease-out duration-100"
|
||||
enterFrom="transform opacity-0 scale-95"
|
||||
enterTo="transform opacity-100 scale-100"
|
||||
leave="transition ease-in duration-75"
|
||||
leaveFrom="transform opacity-100 scale-100"
|
||||
leaveTo="transform opacity-0 scale-95">
|
||||
<Menu.Items className="absolute right-0 z-10 mt-2 w-48 origin-top-right rounded-md bg-white py-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none">
|
||||
{userNavigation.map((item) => (
|
||||
<Menu.Item key={item.name}>
|
||||
{({ active }) => (
|
||||
<Link
|
||||
className={clsx(
|
||||
active ? 'bg-gray-100' : '',
|
||||
'block px-4 py-2 text-sm text-gray-700',
|
||||
)}
|
||||
href={item.href}
|
||||
onClick={item.onClick}>
|
||||
{item.name}
|
||||
</Link>
|
||||
)}
|
||||
</Menu.Item>
|
||||
))}
|
||||
</Menu.Items>
|
||||
</Transition>
|
||||
</Menu>
|
||||
);
|
||||
}
|
||||
|
||||
export default function AppShell({ children }: Props) {
|
||||
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
|
||||
|
||||
return (
|
||||
<div className="flex min-h-screen h-full">
|
||||
{/* Narrow sidebar */}
|
||||
<div className="hidden w-28 overflow-y-auto bg-indigo-700 md:block">
|
||||
<div className="flex w-full flex-col items-center py-6">
|
||||
<div className="flex flex-shrink-0 items-center">
|
||||
<img
|
||||
alt="Your Company"
|
||||
className="h-8 w-auto"
|
||||
src="https://tailwindui.com/img/logos/mark.svg?color=white"
|
||||
/>
|
||||
</div>
|
||||
<div className="mt-6 w-full flex-1 space-y-1 px-2">
|
||||
{sidebarNavigation.map((item) => (
|
||||
<Link
|
||||
key={item.name}
|
||||
aria-current={item.current ? 'page' : undefined}
|
||||
className={clsx(
|
||||
item.current
|
||||
? 'bg-indigo-800 text-white'
|
||||
: 'text-indigo-100 hover:bg-indigo-800 hover:text-white',
|
||||
'group w-full p-3 rounded-md flex flex-col items-center text-xs font-medium',
|
||||
)}
|
||||
href={item.href}>
|
||||
<item.icon
|
||||
aria-hidden="true"
|
||||
className={clsx(
|
||||
item.current
|
||||
? 'text-white'
|
||||
: 'text-indigo-300 group-hover:text-white',
|
||||
'h-6 w-6',
|
||||
)}
|
||||
/>
|
||||
<span className="mt-2">{item.name}</span>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Mobile menu */}
|
||||
<Transition.Root as={Fragment} show={mobileMenuOpen}>
|
||||
<Dialog
|
||||
as="div"
|
||||
className="relative z-20 md:hidden"
|
||||
onClose={setMobileMenuOpen}>
|
||||
<Transition.Child
|
||||
as={Fragment}
|
||||
enter="transition-opacity ease-linear duration-300"
|
||||
enterFrom="opacity-0"
|
||||
enterTo="opacity-100"
|
||||
leave="transition-opacity ease-linear duration-300"
|
||||
leaveFrom="opacity-100"
|
||||
leaveTo="opacity-0">
|
||||
<div className="fixed inset-0 bg-gray-600 bg-opacity-75" />
|
||||
</Transition.Child>
|
||||
|
||||
<div className="fixed inset-0 z-40 flex">
|
||||
<Transition.Child
|
||||
as={Fragment}
|
||||
enter="transition ease-in-out duration-300 transform"
|
||||
enterFrom="-translate-x-full"
|
||||
enterTo="translate-x-0"
|
||||
leave="transition ease-in-out duration-300 transform"
|
||||
leaveFrom="translate-x-0"
|
||||
leaveTo="-translate-x-full">
|
||||
<Dialog.Panel className="relative flex w-full max-w-xs flex-1 flex-col bg-indigo-700 pt-5 pb-4">
|
||||
<Transition.Child
|
||||
as={Fragment}
|
||||
enter="ease-in-out duration-300"
|
||||
enterFrom="opacity-0"
|
||||
enterTo="opacity-100"
|
||||
leave="ease-in-out duration-300"
|
||||
leaveFrom="opacity-100"
|
||||
leaveTo="opacity-0">
|
||||
<div className="absolute top-1 right-0 -mr-14 p-1">
|
||||
<button
|
||||
className="flex h-12 w-12 items-center justify-center rounded-full focus:outline-none focus:ring-2 focus:ring-white"
|
||||
type="button"
|
||||
onClick={() => setMobileMenuOpen(false)}>
|
||||
<XMarkIcon
|
||||
aria-hidden="true"
|
||||
className="h-6 w-6 text-white"
|
||||
/>
|
||||
<span className="sr-only">Close sidebar</span>
|
||||
</button>
|
||||
</div>
|
||||
</Transition.Child>
|
||||
<div className="flex flex-shrink-0 items-center px-4">
|
||||
<img
|
||||
alt="Your Company"
|
||||
className="h-8 w-auto"
|
||||
src="https://tailwindui.com/img/logos/mark.svg?color=white"
|
||||
/>
|
||||
</div>
|
||||
<div className="mt-5 h-0 flex-1 overflow-y-auto px-2">
|
||||
<nav className="flex h-full flex-col">
|
||||
<div className="space-y-1">
|
||||
{sidebarNavigation.map((item) => (
|
||||
<a
|
||||
key={item.name}
|
||||
aria-current={item.current ? 'page' : undefined}
|
||||
className={clsx(
|
||||
item.current
|
||||
? 'bg-indigo-800 text-white'
|
||||
: 'text-indigo-100 hover:bg-indigo-800 hover:text-white',
|
||||
'group py-2 px-3 rounded-md flex items-center text-sm font-medium',
|
||||
)}
|
||||
href={item.href}>
|
||||
<item.icon
|
||||
aria-hidden="true"
|
||||
className={clsx(
|
||||
item.current
|
||||
? 'text-white'
|
||||
: 'text-indigo-300 group-hover:text-white',
|
||||
'mr-3 h-6 w-6',
|
||||
)}
|
||||
/>
|
||||
<span>{item.name}</span>
|
||||
</a>
|
||||
))}
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</Dialog.Panel>
|
||||
</Transition.Child>
|
||||
<div aria-hidden="true" className="w-14 flex-shrink-0">
|
||||
{/* Dummy element to force sidebar to shrink to fit close icon */}
|
||||
</div>
|
||||
</div>
|
||||
</Dialog>
|
||||
</Transition.Root>
|
||||
|
||||
{/* Content area */}
|
||||
<div className="flex flex-1 flex-col overflow-hidden">
|
||||
<header className="w-full">
|
||||
<div className="relative z-10 flex h-16 flex-shrink-0 border-b border-gray-200 bg-white shadow-sm">
|
||||
<button
|
||||
className="border-r border-gray-200 px-4 text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500 md:hidden"
|
||||
type="button"
|
||||
onClick={() => setMobileMenuOpen(true)}>
|
||||
<span className="sr-only">Open sidebar</span>
|
||||
<Bars3BottomLeftIcon aria-hidden="true" className="h-6 w-6" />
|
||||
</button>
|
||||
<div className="flex flex-1 justify-between px-4 sm:px-6">
|
||||
<div className="flex flex-1 items-center">Some menu items</div>
|
||||
<div className="ml-2 flex items-center space-x-4 sm:ml-6 sm:space-x-6">
|
||||
<ProfileJewel />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{/* Main content */}
|
||||
<div className="flex flex-1 items-stretch overflow-hidden">
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
import { Head, Html, Main, NextScript } from 'next/document';
|
||||
|
||||
export default function Document() {
|
||||
return (
|
||||
<Html className="h-full bg-gray-50">
|
||||
<Head />
|
||||
<body className="h-full overflow-hidden">
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
);
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
import { trpc } from '~/utils/trpc';
|
||||
|
||||
export default function Example() {
|
||||
const hello = trpc.useQuery(['example.hello', { text: 'from tRPC!' }]);
|
||||
const getAll = trpc.useQuery(['example.getAll']);
|
||||
|
||||
return (
|
||||
<>
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
{/* Primary column */}
|
||||
<section
|
||||
aria-labelledby="primary-heading"
|
||||
className="flex h-full min-w-0 flex-1 flex-col lg:order-last">
|
||||
<h1 className="sr-only" id="primary-heading">
|
||||
Photos
|
||||
</h1>
|
||||
<div className="pt-6 text-2xl text-blue-500 flex justify-center items-center w-full">
|
||||
{hello.data ? <p>{hello.data.greeting}</p> : <p>Loading..</p>}
|
||||
</div>
|
||||
<pre className="w-1/2">{JSON.stringify(getAll.data, null, 2)}</pre>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
{/* Secondary column (hidden on smaller screens) */}
|
||||
<aside className="hidden w-96 overflow-y-auto border-l border-gray-200 bg-white lg:block">
|
||||
{/* Your content */}
|
||||
</aside>
|
||||
</>
|
||||
);
|
||||
}
|
@ -1,91 +1,9 @@
|
||||
import type { NextPage } from 'next';
|
||||
import Head from 'next/head';
|
||||
import { CounterButton } from '@tih/ui';
|
||||
|
||||
import { trpc } from '~/utils/trpc';
|
||||
|
||||
const Home: NextPage = () => {
|
||||
const hello = trpc.useQuery(['example.hello', { text: 'from tRPC!' }]);
|
||||
const getAll = trpc.useQuery(['example.getAll']);
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Create T3 App</title>
|
||||
<meta content="Generated by create-t3-app" name="description" />
|
||||
<link href="/favicon.ico" rel="icon" />
|
||||
</Head>
|
||||
<main className="container mx-auto flex flex-col items-center justify-center min-h-screen p-4">
|
||||
<h1 className="text-5xl md:text-[5rem] leading-normal font-extrabold text-gray-700">
|
||||
Create <span className="text-purple-300">T3</span> App
|
||||
</h1>
|
||||
<CounterButton />
|
||||
<p className="text-2xl text-gray-700">This stack uses:</p>
|
||||
<div className="grid gap-3 pt-3 mt-3 text-center md:grid-cols-2 lg:w-2/3">
|
||||
<TechnologyCard
|
||||
description="The React framework for production"
|
||||
documentation="https://nextjs.org/"
|
||||
name="NextJS"
|
||||
/>
|
||||
<TechnologyCard
|
||||
description="Strongly typed programming language that builds on JavaScript, giving you better tooling at any scale"
|
||||
documentation="https://www.typescriptlang.org/"
|
||||
name="TypeScript"
|
||||
/>
|
||||
<TechnologyCard
|
||||
description="Rapidly build modern websites without ever leaving your HTML"
|
||||
documentation="https://tailwindcss.com/"
|
||||
name="TailwindCSS"
|
||||
/>
|
||||
<TechnologyCard
|
||||
description="End-to-end typesafe APIs made easy"
|
||||
documentation="https://trpc.io/"
|
||||
name="tRPC"
|
||||
/>
|
||||
<TechnologyCard
|
||||
description="Authentication for Next.js"
|
||||
documentation="https://next-auth.js.org/"
|
||||
name="Next-Auth"
|
||||
/>
|
||||
<TechnologyCard
|
||||
description="Build data-driven JavaScript & TypeScript apps in less time"
|
||||
documentation="https://www.prisma.io/docs/"
|
||||
name="Prisma"
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-6 text-2xl text-blue-500 flex justify-center items-center w-full">
|
||||
{hello.data ? <p>{hello.data.greeting}</p> : <p>Loading..</p>}
|
||||
</div>
|
||||
<pre className="w-1/2">{JSON.stringify(getAll.data, null, 2)}</pre>
|
||||
</main>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
|
||||
type TechnologyCardProps = {
|
||||
description: string;
|
||||
documentation: string;
|
||||
name: string;
|
||||
};
|
||||
|
||||
function TechnologyCard({
|
||||
name,
|
||||
description,
|
||||
documentation,
|
||||
}: TechnologyCardProps) {
|
||||
return (
|
||||
<section className="flex flex-col justify-center p-6 duration-500 border-2 border-gray-500 rounded shadow-xl motion-safe:hover:scale-105">
|
||||
<h2 className="text-lg text-gray-700">{name}</h2>
|
||||
<p className="text-sm text-gray-600">{description}</p>
|
||||
<a
|
||||
className="mt-3 text-sm underline text-violet-500 decoration-dotted underline-offset-2"
|
||||
href={documentation}
|
||||
rel="noreferrer"
|
||||
target="_blank">
|
||||
Documentation
|
||||
</a>
|
||||
</section>
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
<div className="flex h-full items-center justify-center">
|
||||
<h1 className="text-center font-bold text-4xl">Homepage</h1>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
export default function OffersHomePage() {
|
||||
return (
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
<div className="flex h-full items-center justify-center">
|
||||
<h1 className="text-center font-bold text-4xl">Offers Research</h1>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
import { useSession } from 'next-auth/react';
|
||||
|
||||
export default function ProfilePage() {
|
||||
const { data: session, status } = useSession();
|
||||
const isSessionLoading = status === 'loading';
|
||||
|
||||
if (isSessionLoading) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<main className="flex-1 overflow-y-auto p-6 space-y-6">
|
||||
<h1 className="font-bold text-4xl">Profile</h1>
|
||||
{session?.user?.image && (
|
||||
<img
|
||||
alt={session?.user?.email ?? session?.user?.name ?? ''}
|
||||
className="h-24 w-24 rounded-full"
|
||||
src={session?.user.image}
|
||||
/>
|
||||
)}
|
||||
{session?.user?.email && <p>{session?.user?.email}</p>}
|
||||
{session?.user?.name && <p>{session?.user?.name}</p>}
|
||||
</main>
|
||||
);
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
export default function QuestionsHomePage() {
|
||||
return (
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
<div className="flex h-full items-center justify-center">
|
||||
<h1 className="text-center font-bold text-4xl">Interview Questions</h1>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
export default function ResumeHomePage() {
|
||||
return (
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
<div className="flex h-full items-center justify-center">
|
||||
<h1 className="text-center font-bold text-4xl">Resume Reviews</h1>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
@ -1,8 +1,23 @@
|
||||
const defaultTheme = require('tailwindcss/defaultTheme');
|
||||
const colors = require('tailwindcss/colors');
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ['./src/**/*.{js,ts,jsx,tsx}'],
|
||||
content: ['./src/**/*.{js,jsx,ts,tsx,md,mdx}'],
|
||||
theme: {
|
||||
extend: {},
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
||||
},
|
||||
colors: {
|
||||
primary: colors.purple,
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
plugins: [
|
||||
require('@tailwindcss/aspect-ratio'),
|
||||
require('@tailwindcss/forms'),
|
||||
require('@tailwindcss/line-clamp'),
|
||||
require('@tailwindcss/typography'),
|
||||
],
|
||||
};
|
||||
|
Loading…
Reference in new issue