All components mostly created and basic UI initialized

This commit is contained in:
Ceferino Patino 2024-11-24 21:05:09 -06:00
commit ba98783058
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
22 changed files with 1662 additions and 158 deletions

21
components.json Normal file
View file

@ -0,0 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/styles/globals.css",
"baseColor": "zinc",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "~/components",
"utils": "~/lib/utils",
"ui": "~/components/ui",
"lib": "~/lib",
"hooks": "~/hooks"
},
"iconLibrary": "lucide"
}

View file

@ -20,31 +20,40 @@
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@t3-oss/env-nextjs": "^0.10.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.33.0",
"geist": "^1.3.0",
"next": "^15.0.1",
"postgres": "^3.4.4",
"geist": "^1.3.1",
"lucide-react": "^0.460.0",
"next": "^15.0.3",
"postgres": "^3.4.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.3"
"server-only": "^0.0.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"drizzle-kit": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.1",
"@types/eslint": "^8.56.12",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"drizzle-kit": "^0.24.2",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.3",
"eslint-plugin-drizzle": "^0.2.3",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.3"
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2"
},
"ct3aMetadata": {
"initVersion": "7.38.1"

811
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,24 @@
"use client";
import { Dialog, DialogContent, DialogTitle } from "~/components/ui/dialog";
import { useRouter } from "next/navigation";
export default function Modal({ children }: { children: React.ReactNode }) {
const router = useRouter();
const handleOpenChange = (open: boolean) => {
if (!open) {
router.back();
}
};
return (
<Dialog defaultOpen onOpenChange={handleOpenChange}>
<div className="w-screen">
<DialogContent className="h-2/3 max-w-6xl">
<DialogTitle hidden>{}</DialogTitle>
{children}
</DialogContent>
</div>
</Dialog>
);
}

View file

@ -0,0 +1,17 @@
import FullPageTimer from "~/app/_components/full-page-timer";
import { getTimer } from "~/server/queries";
import Modal from "./modal";
export default async function TimerModal({
params,
}: {
params: Promise<{ id: string }>;
}) {
const timer = await getTimer((await params).id);
return (
<Modal>
<FullPageTimer eventTime={timer.updatedAt} caption={timer.caption} />
</Modal>
);
}

View file

@ -0,0 +1,3 @@
export default function DefaultModal() {
return null;
}

View file

@ -0,0 +1,75 @@
"use client";
import { useEffect, useState } from "react";
const formatTime = (elapsed: number): [number, number, number, number] => {
const seconds = Math.floor(elapsed / 1000);
const minutes = Math.floor(seconds / 60);
const hours = Math.floor(minutes / 60);
const days = Math.floor(hours / 24);
const remainingSeconds = seconds % 60;
const remainingMinutes = minutes % 60;
const remainingHours = hours % 24;
return [days, remainingHours, remainingMinutes, remainingSeconds];
};
const calculateTimeSince = (start: Date) => {
const now = new Date();
return now.getTime() - start.getTime();
};
export default function Timer(props: { eventTime: Date; caption: string }) {
const [timeSince, setTimeSince] = useState(
calculateTimeSince(props.eventTime),
);
useEffect(() => {
const interval = setInterval(() => {
const elapsed = calculateTimeSince(props.eventTime);
setTimeSince(elapsed);
}, 1000);
return () => clearInterval(interval);
}, [props.eventTime]);
const [days, hours, mins, secs] = formatTime(timeSince);
return (
<div className="flex h-full w-full flex-col justify-center">
<div className="text-center text-2xl text-gray-300">
<p>It has been</p>
</div>
<div className="flex justify-center gap-20 py-12">
<div className="text-center">
<div className="text-8xl font-semibold">
{days.toString().padStart(2, "0")}
</div>
<div className="text-md px-1 text-gray-400">DAYS</div>
</div>
<div className="text-center">
<div className="text-8xl font-semibold">
{hours.toString().padStart(2, "0")}
</div>
<div className="text-md px-1 text-gray-400">HOURS</div>
</div>
<div className="text-center">
<div className="text-8xl font-semibold">
{mins.toString().padStart(2, "0")}
</div>
<div className="text-md px-1 text-gray-400">MINUTES</div>
</div>
<div className="text-center">
<div className="text-8xl font-semibold" suppressHydrationWarning>
{secs.toString().padStart(2, "0")}
</div>
<div className="text-md px-1 text-gray-400">SECONDS</div>
</div>
</div>
<div className="text-center text-2xl text-gray-300">
<p>{props.caption}</p>
</div>
</div>
);
}

View file

@ -0,0 +1,25 @@
import Link from "next/link";
import {
NavigationMenu,
NavigationMenuLink,
NavigationMenuList,
navigationMenuTriggerStyle,
} from "~/components/ui/navigation-menu";
export function TopNav() {
return (
<nav className="flex w-full items-center justify-between border-b p-4 text-xl font-semibold">
<div>Days Since</div>
<NavigationMenu>
<NavigationMenuList>
<Link href="/" legacyBehavior passHref>
<NavigationMenuLink className={navigationMenuTriggerStyle()}>
Log In
</NavigationMenuLink>
</Link>
</NavigationMenuList>
</NavigationMenu>
</nav>
);
}

View file

@ -0,0 +1,93 @@
"use client";
import { useEffect, useState } from "react";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "~/components/ui/card";
import { Avatar, AvatarFallback, AvatarImage } from "~/components/ui/avatar";
const formatTime = (elapsed: number): [number, number, number, number] => {
const seconds = Math.floor(elapsed / 1000);
const minutes = Math.floor(seconds / 60);
const hours = Math.floor(minutes / 60);
const days = Math.floor(hours / 24);
const remainingSeconds = seconds % 60;
const remainingMinutes = minutes % 60;
const remainingHours = hours % 24;
return [days, remainingHours, remainingMinutes, remainingSeconds];
};
const calculateTimeSince = (start: Date) => {
const now = new Date();
return now.getTime() - start.getTime();
};
export default function Timer(props: {
eventTime: Date;
caption?: string;
email?: string;
emailHash?: string;
}) {
const [timeSince, setTimeSince] = useState(
calculateTimeSince(props.eventTime),
);
useEffect(() => {
const interval = setInterval(() => {
const elapsed = calculateTimeSince(props.eventTime);
setTimeSince(elapsed);
}, 1000);
return () => clearInterval(interval);
}, [props.eventTime]);
const [days, hours, mins, secs] = formatTime(timeSince);
return (
<Card className={"flex h-full w-full flex-col justify-center"}>
<CardHeader className="flex-row items-center gap-4">
<Avatar className="flex h-8">
<AvatarImage src={`https://gravatar.com/avatar/${props.emailHash}`} />
</Avatar>
<div className="flex flex-col justify-center">
<CardTitle>{props.caption}</CardTitle>
<CardDescription>{props.email}</CardDescription>
</div>
</CardHeader>
<CardContent>
<div className="flex justify-center gap-8 py-10">
<div className="text-center">
<div className="text-6xl font-semibold">
{days.toString().padStart(2, "0")}
</div>
<div className="text-sm text-gray-400">DAYS</div>
</div>
<div className="text-center">
<div className="text-6xl font-semibold">
{hours.toString().padStart(2, "0")}
</div>
<div className="text-sm text-gray-400">HOURS</div>
</div>
<div className="text-center">
<div className="text-6xl font-semibold">
{mins.toString().padStart(2, "0")}
</div>
<div className="text-sm text-gray-400">MINUTES</div>
</div>
<div className="text-center">
<div className="text-6xl font-semibold" suppressHydrationWarning>
{secs.toString().padStart(2, "0")}
</div>
<div className="text-sm text-gray-400">SECONDS</div>
</div>
</div>
</CardContent>
</Card>
);
}

View file

@ -0,0 +1,22 @@
import { updateTimerTime } from "~/server/queries";
export async function POST(
_: Request,
{ params }: { params: Promise<{ id: string }> },
) {
const idAsNumber = parseInt((await params).id);
try {
const updated = await updateTimerTime(idAsNumber);
return Response.json({}, { status: 200 });
} catch (error: any) {
const typedError = error as Error;
if (error.message === "Timer not found") {
return Response.json({}, { status: 404 });
} else {
return Response.json({}, { status: 500 });
}
}
}

View file

@ -1,20 +1,34 @@
import "~/styles/globals.css";
import { GeistSans } from "geist/font/sans";
import { Inter } from "next/font/google";
import { type Metadata } from "next";
import { TopNav } from "./_components/navigation";
export const metadata: Metadata = {
title: "Create T3 App",
description: "Generated by create-t3-app",
title: "Days Since",
description: "A simple app to track the number of days since an event",
icons: [{ rel: "icon", url: "/favicon.ico" }],
};
const inter = Inter({
subsets: ["latin"],
variable: "--font-sans",
});
export default function RootLayout({
modal,
children,
}: Readonly<{ children: React.ReactNode }>) {
}: Readonly<{ children: React.ReactNode; modal: React.ReactNode }>) {
return (
<html lang="en" className={`${GeistSans.variable}`}>
<body>{children}</body>
<html lang="en">
<body className={`font-sans ${inter.variable} dark`}>
<div className="grid h-screen grid-rows-[auto,1fr]">
<TopNav />
<main className="grid items-start overflow-y-auto">{children}</main>
{modal}
<div id="modal-root" />
</div>
</body>
</html>
);
}

View file

@ -1,37 +1,46 @@
import Timer from "~/app/_components/timer";
import { createHash } from "crypto";
import { getAllTimers } from "~/server/queries";
import Link from "next/link";
export default function HomePage() {
const hashEmail = (email: string) => {
const hash = createHash("sha256")
.update(email.trim().toLowerCase())
.digest("hex");
return hash;
};
export default async function HomePage() {
const timers = await getAllTimers();
return (
<main className="flex min-h-screen flex-col items-center justify-center bg-gradient-to-b from-[#2e026d] to-[#15162c] text-white">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16">
<h1 className="text-5xl font-extrabold tracking-tight text-white sm:text-[5rem]">
Create <span className="text-[hsl(280,100%,70%)]">T3</span> App
</h1>
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:gap-8">
<Link
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 text-white hover:bg-white/20"
href="https://create.t3.gg/en/usage/first-steps"
target="_blank"
>
<h3 className="text-2xl font-bold">First Steps </h3>
<div className="text-lg">
Just the basics - Everything you need to know to set up your
database and authentication.
</div>
<div className={"m-4 grid grid-cols-4 gap-4"}>
{timers.map((timer, idx) =>
idx % 4 == 0 ? (
<div key={idx} className="row-span-2">
<Link href={`/timer/${timer.id}`}>
<Timer
eventTime={timer.updatedAt}
caption={timer.caption}
email={timer.userEmail}
emailHash={hashEmail(timer.userEmail)}
/>
</Link>
</div>
) : (
<Link href={`/timer/${timer.id}`}>
<Timer
key={idx}
eventTime={timer.updatedAt}
caption={timer.caption}
email={timer.userEmail}
emailHash={hashEmail(timer.userEmail)}
/>
</Link>
<Link
className="flex max-w-xs flex-col gap-4 rounded-xl bg-white/10 p-4 text-white hover:bg-white/20"
href="https://create.t3.gg/en/introduction"
target="_blank"
>
<h3 className="text-2xl font-bold">Documentation </h3>
<div className="text-lg">
Learn more about Create T3 App, the libraries it uses, and how to
deploy it.
</div>
</Link>
</div>
</div>
</main>
),
)}
</div>
);
}

View file

@ -0,0 +1,12 @@
import FullPageTimer from "~/app/_components/full-page-timer";
import { getTimer } from "~/server/queries";
export default async function TimerPage({
params,
}: {
params: Promise<{ id: string }>;
}) {
const timer = await getTimer((await params).id);
return <FullPageTimer eventTime={timer.updatedAt} caption={timer.caption} />;
}

View file

@ -0,0 +1,50 @@
"use client"
import * as React from "react"
import * as AvatarPrimitive from "@radix-ui/react-avatar"
import { cn } from "~/lib/utils"
const Avatar = React.forwardRef<
React.ElementRef<typeof AvatarPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>
>(({ className, ...props }, ref) => (
<AvatarPrimitive.Root
ref={ref}
className={cn(
"relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
className
)}
{...props}
/>
))
Avatar.displayName = AvatarPrimitive.Root.displayName
const AvatarImage = React.forwardRef<
React.ElementRef<typeof AvatarPrimitive.Image>,
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Image>
>(({ className, ...props }, ref) => (
<AvatarPrimitive.Image
ref={ref}
className={cn("aspect-square h-full w-full", className)}
{...props}
/>
))
AvatarImage.displayName = AvatarPrimitive.Image.displayName
const AvatarFallback = React.forwardRef<
React.ElementRef<typeof AvatarPrimitive.Fallback>,
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Fallback>
>(({ className, ...props }, ref) => (
<AvatarPrimitive.Fallback
ref={ref}
className={cn(
"flex h-full w-full items-center justify-center rounded-full bg-muted",
className
)}
{...props}
/>
))
AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName
export { Avatar, AvatarImage, AvatarFallback }

View file

@ -0,0 +1,76 @@
import * as React from "react"
import { cn } from "~/lib/utils"
const Card = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"rounded-xl border bg-card text-card-foreground shadow",
className
)}
{...props}
/>
))
Card.displayName = "Card"
const CardHeader = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("flex flex-col space-y-1.5 p-6", className)}
{...props}
/>
))
CardHeader.displayName = "CardHeader"
const CardTitle = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("font-semibold leading-none tracking-tight", className)}
{...props}
/>
))
CardTitle.displayName = "CardTitle"
const CardDescription = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("text-sm text-muted-foreground", className)}
{...props}
/>
))
CardDescription.displayName = "CardDescription"
const CardContent = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
))
CardContent.displayName = "CardContent"
const CardFooter = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("flex items-center p-6 pt-0", className)}
{...props}
/>
))
CardFooter.displayName = "CardFooter"
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }

View file

@ -0,0 +1,122 @@
"use client"
import * as React from "react"
import * as DialogPrimitive from "@radix-ui/react-dialog"
import { X } from "lucide-react"
import { cn } from "~/lib/utils"
const Dialog = DialogPrimitive.Root
const DialogTrigger = DialogPrimitive.Trigger
const DialogPortal = DialogPrimitive.Portal
const DialogClose = DialogPrimitive.Close
const DialogOverlay = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Overlay>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Overlay
ref={ref}
className={cn(
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
className
)}
{...props}
/>
))
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName
const DialogContent = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
>(({ className, children, ...props }, ref) => (
<DialogPortal>
<DialogOverlay />
<DialogPrimitive.Content
ref={ref}
className={cn(
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
className
)}
{...props}
>
{children}
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
<X className="h-4 w-4" />
<span className="sr-only">Close</span>
</DialogPrimitive.Close>
</DialogPrimitive.Content>
</DialogPortal>
))
DialogContent.displayName = DialogPrimitive.Content.displayName
const DialogHeader = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
className={cn(
"flex flex-col space-y-1.5 text-center sm:text-left",
className
)}
{...props}
/>
)
DialogHeader.displayName = "DialogHeader"
const DialogFooter = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
className={cn(
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
className
)}
{...props}
/>
)
DialogFooter.displayName = "DialogFooter"
const DialogTitle = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Title>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Title
ref={ref}
className={cn(
"text-lg font-semibold leading-none tracking-tight",
className
)}
{...props}
/>
))
DialogTitle.displayName = DialogPrimitive.Title.displayName
const DialogDescription = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Description>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Description
ref={ref}
className={cn("text-sm text-muted-foreground", className)}
{...props}
/>
))
DialogDescription.displayName = DialogPrimitive.Description.displayName
export {
Dialog,
DialogPortal,
DialogOverlay,
DialogTrigger,
DialogClose,
DialogContent,
DialogHeader,
DialogFooter,
DialogTitle,
DialogDescription,
}

View file

@ -0,0 +1,128 @@
import * as React from "react";
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
import { cva } from "class-variance-authority";
import { ChevronDown } from "lucide-react";
import { cn } from "~/lib/utils";
const NavigationMenu = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Root>
>(({ className, children, ...props }, ref) => (
<NavigationMenuPrimitive.Root
ref={ref}
className={cn(
"relative z-10 flex max-w-max flex-1 items-center justify-center",
className,
)}
{...props}
>
{children}
<NavigationMenuViewport />
</NavigationMenuPrimitive.Root>
));
NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
const NavigationMenuList = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.List>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.List>
>(({ className, ...props }, ref) => (
<NavigationMenuPrimitive.List
ref={ref}
className={cn(
"group flex flex-1 list-none items-center justify-center space-x-1",
className,
)}
{...props}
/>
));
NavigationMenuList.displayName = NavigationMenuPrimitive.List.displayName;
const NavigationMenuItem = NavigationMenuPrimitive.Item;
const navigationMenuTriggerStyle = cva(
"group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50",
);
const NavigationMenuTrigger = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Trigger>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Trigger>
>(({ className, children, ...props }, ref) => (
<NavigationMenuPrimitive.Trigger
ref={ref}
className={cn(navigationMenuTriggerStyle(), "group", className)}
{...props}
>
{children}{" "}
<ChevronDown
className="relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180"
aria-hidden="true"
/>
</NavigationMenuPrimitive.Trigger>
));
NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
const NavigationMenuContent = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Content>
>(({ className, ...props }, ref) => (
<NavigationMenuPrimitive.Content
ref={ref}
className={cn(
"left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto",
className,
)}
{...props}
/>
));
NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
const NavigationMenuLink = NavigationMenuPrimitive.Link;
const NavigationMenuViewport = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Viewport>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport>
>(({ className, ...props }, ref) => (
<div className={cn("absolute left-0 top-full flex justify-center")}>
<NavigationMenuPrimitive.Viewport
className={cn(
"origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",
className,
)}
ref={ref}
{...props}
/>
</div>
));
NavigationMenuViewport.displayName =
NavigationMenuPrimitive.Viewport.displayName;
const NavigationMenuIndicator = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Indicator>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Indicator>
>(({ className, ...props }, ref) => (
<NavigationMenuPrimitive.Indicator
ref={ref}
className={cn(
"top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",
className,
)}
{...props}
>
<div className="relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" />
</NavigationMenuPrimitive.Indicator>
));
NavigationMenuIndicator.displayName =
NavigationMenuPrimitive.Indicator.displayName;
export {
navigationMenuTriggerStyle,
NavigationMenu,
NavigationMenuList,
NavigationMenuItem,
NavigationMenuContent,
NavigationMenuTrigger,
NavigationMenuLink,
NavigationMenuIndicator,
NavigationMenuViewport,
};

6
src/lib/utils.ts Normal file
View file

@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}

View file

@ -3,11 +3,11 @@
import { sql } from "drizzle-orm";
import {
index,
integer,
pgTableCreator,
timestamp,
varchar,
boolean,
uuid,
} from "drizzle-orm/pg-core";
/**
@ -18,19 +18,19 @@ import {
*/
export const createTable = pgTableCreator((name) => `days-since_${name}`);
export const posts = createTable(
"post",
{
id: integer("id").primaryKey().generatedByDefaultAsIdentity(),
name: varchar("name", { length: 256 }),
createdAt: timestamp("created_at", { withTimezone: true })
.default(sql`CURRENT_TIMESTAMP`)
.notNull(),
updatedAt: timestamp("updated_at", { withTimezone: true }).$onUpdate(
() => new Date()
),
},
(example) => ({
nameIndex: index("name_idx").on(example.name),
})
);
export const timers = createTable("timer", {
id: varchar("timerId")
.default(sql`gen_random_uuid()`)
.primaryKey(),
userId: varchar("userId", { length: 256 }).notNull(),
userEmail: varchar("userEmail", { length: 256 }).notNull(),
caption: varchar("caption", { length: 256 }).notNull(),
createdAt: timestamp("created_at", { withTimezone: true })
.default(sql`CURRENT_TIMESTAMP`)
.notNull(),
updatedAt: timestamp("updated_at", { withTimezone: true })
.$onUpdate(() => new Date())
.default(sql`CURRENT_TIMESTAMP`)
.notNull(),
public: boolean("public").default(false).notNull(),
});

39
src/server/queries.ts Normal file
View file

@ -0,0 +1,39 @@
import "server-only";
import { eq } from "drizzle-orm";
import { db } from "./db";
import { timers } from "./db/schema";
import { notFound } from "next/navigation";
export async function getTimer(id: string) {
const timer = await db.query.timers.findFirst({
where: (model, { and, eq }) =>
and(eq(model.id, id), eq(model.public, true)),
});
if (!timer) notFound();
if (!timer.public) notFound();
return timer;
}
export async function getAllTimers() {
const timers = db.query.timers
.findMany({
where: (model, { eq }) => eq(model.public, true),
})
.execute();
return timers;
}
export async function updateTimerTime(id: string) {
const updated = await db
.update(timers)
.set({ updatedAt: new Date() })
.where(eq(timers.id, id))
.returning({ id: timers.id });
if (updated.length === 0) throw new Error("Timer not found");
}

View file

@ -1,3 +1,71 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 240 5.9% 10%;
--primary-foreground: 0 0% 98%;
--secondary: 240 4.8% 95.9%;
--secondary-foreground: 240 5.9% 10%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 240 4.8% 95.9%;
--accent-foreground: 240 5.9% 10%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 240 10% 3.9%;
--chart-1: 12 76% 61%;
--chart-2: 173 58% 39%;
--chart-3: 197 37% 24%;
--chart-4: 43 74% 66%;
--chart-5: 27 87% 67%;
--radius: 0.5rem
}
.dark {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 0 0% 98%;
--primary-foreground: 240 5.9% 10%;
--secondary: 240 3.7% 15.9%;
--secondary-foreground: 0 0% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 3.7% 15.9%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}
.div[role="dialog"] {
max-width: 100vw;
max-height: 100vh;
}

View file

@ -2,13 +2,61 @@ import { type Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
darkMode: ["class"],
content: ["./src/**/*.tsx"],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-geist-sans)", ...fontFamily.sans],
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
chart: {
"1": "hsl(var(--chart-1))",
"2": "hsl(var(--chart-2))",
"3": "hsl(var(--chart-3))",
"4": "hsl(var(--chart-4))",
"5": "hsl(var(--chart-5))",
},
},
},
},
plugins: [],
plugins: [require("tailwindcss-animate")],
} satisfies Config;