-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add utilities page with state and time conversion tools
- Loading branch information
1 parent
f87f9c5
commit 2795dc2
Showing
31 changed files
with
1,603 additions
and
445 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import * as React from "react" | ||
import * as TabsPrimitive from "@radix-ui/react-tabs" | ||
|
||
import { cn } from "@/lib/utils" | ||
|
||
const Tabs = TabsPrimitive.Root | ||
|
||
const TabsList = React.forwardRef< | ||
React.ElementRef<typeof TabsPrimitive.List>, | ||
React.ComponentPropsWithoutRef<typeof TabsPrimitive.List> | ||
>(({ className, ...props }, ref) => ( | ||
<TabsPrimitive.List | ||
ref={ref} | ||
className={cn( | ||
"inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground", | ||
className | ||
)} | ||
{...props} | ||
/> | ||
)) | ||
TabsList.displayName = TabsPrimitive.List.displayName | ||
|
||
const TabsTrigger = React.forwardRef< | ||
React.ElementRef<typeof TabsPrimitive.Trigger>, | ||
React.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger> | ||
>(({ className, ...props }, ref) => ( | ||
<TabsPrimitive.Trigger | ||
ref={ref} | ||
className={cn( | ||
"inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow", | ||
className | ||
)} | ||
{...props} | ||
/> | ||
)) | ||
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName | ||
|
||
const TabsContent = React.forwardRef< | ||
React.ElementRef<typeof TabsPrimitive.Content>, | ||
React.ComponentPropsWithoutRef<typeof TabsPrimitive.Content> | ||
>(({ className, ...props }, ref) => ( | ||
<TabsPrimitive.Content | ||
ref={ref} | ||
className={cn( | ||
"mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2", | ||
className | ||
)} | ||
{...props} | ||
/> | ||
)) | ||
TabsContent.displayName = TabsPrimitive.Content.displayName | ||
|
||
export { Tabs, TabsList, TabsTrigger, TabsContent } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { z } from "zod"; | ||
import { convertState } from "@/services/state-conversion"; | ||
import { StateType } from "@/types/state-conversion"; | ||
|
||
const formSchema = z.object({ | ||
fromState: z.enum(["Cart", "Kep", "Circ"] as const), | ||
toState: z.enum(["Cart", "Kep", "Circ"] as const), | ||
stateValues: z.array(z.number()).length(6), | ||
}); | ||
|
||
const StateConversionForm = () => { | ||
const onSubmit = async (data: z.infer<typeof formSchema>) => { | ||
try { | ||
const result = await convertState({ | ||
fromState: data.fromState, | ||
toState: data.toState, | ||
state: data.stateValues, | ||
}); | ||
setResult(result.state); | ||
toast.success("State converted successfully"); | ||
} catch (error) { | ||
console.error("Conversion error:", error); | ||
toast.error(error instanceof Error ? error.message : "Failed to convert state"); | ||
} | ||
}; | ||
|
||
return ( | ||
// ... rest of the component ... | ||
); | ||
}; | ||
|
||
export default StateConversionForm; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import MainLayout from "@/layouts/MainLayout"; | ||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; | ||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; | ||
import { StateConversionForm } from "./components/state-conversion-form"; | ||
import { TimeConversionForm } from "./components/time-conversion-form"; | ||
|
||
export default function UtilitiesPage() { | ||
return ( | ||
<MainLayout | ||
title="Utilities" | ||
description="Various orbital mechanics and mission analysis tools" | ||
keywords="Utilities, Tools, State Conversion, Time Conversion" | ||
> | ||
<div className="container mx-auto py-8 space-y-8"> | ||
<div className="flex justify-between items-center"> | ||
<h1 className="text-2xl font-bold">Utilities</h1> | ||
</div> | ||
|
||
<Tabs defaultValue="state-conversion" className="w-full"> | ||
<TabsList> | ||
<TabsTrigger value="state-conversion">State Conversion</TabsTrigger> | ||
<TabsTrigger value="time-conversion">Time Conversion</TabsTrigger> | ||
{/* Add more TabsTriggers for future utilities */} | ||
</TabsList> | ||
|
||
<TabsContent value="state-conversion"> | ||
<Card> | ||
<CardHeader> | ||
<CardTitle>State Conversion</CardTitle> | ||
</CardHeader> | ||
<CardContent> | ||
<StateConversionForm /> | ||
</CardContent> | ||
</Card> | ||
</TabsContent> | ||
|
||
<TabsContent value="time-conversion"> | ||
<Card> | ||
<CardHeader> | ||
<CardTitle>Time Conversion</CardTitle> | ||
</CardHeader> | ||
<CardContent> | ||
<TimeConversionForm /> | ||
</CardContent> | ||
</Card> | ||
</TabsContent> | ||
|
||
{/* Add more TabsContent sections for future utilities */} | ||
</Tabs> | ||
</div> | ||
</MainLayout> | ||
); | ||
} |
Oops, something went wrong.