refactor: Component hierarchy and code cleanup (#1319)

This commit is contained in:
Alex Hancock
2025-02-21 11:29:07 -05:00
committed by GitHub
parent bfe23765b5
commit 81a0334aa1
28 changed files with 475 additions and 823 deletions

View File

@@ -0,0 +1,87 @@
import React from 'react';
import { ProviderGrid } from './ProviderGrid';
import { ScrollArea } from './ui/scroll-area';
import { Button } from './ui/button';
import WelcomeGooseLogo from './WelcomeGooseLogo';
// Extending React CSSProperties to include custom webkit property
declare module 'react' {
interface CSSProperties {
WebkitAppRegion?: string;
}
}
interface WelcomeScreenProps {
onSubmit?: () => void;
}
export default function WelcomeScreen({ onSubmit }: WelcomeScreenProps) {
return (
<div className="h-screen w-full select-none bg-white dark:bg-black">
{/* Draggable title bar region */}
<div
className="relative flex items-center h-[36px] w-full bg-bgSubtle"
style={{ WebkitAppRegion: 'drag' }}
></div>
{/* Content area - explicitly set as non-draggable */}
<div
className="h-[calc(100vh-36px)] w-full overflow-hidden"
style={{ WebkitAppRegion: 'no-drag' }}
>
<ScrollArea className="h-full w-full">
<div className="flex min-h-full flex-col justify-center px-8 py-8 md:px-16 max-w-4xl mx-auto">
{/* Header Section */}
<div className="mb-8 mt-4">
<div className="flex items-center gap-4 mb-4">
<div className="group/logo">
<WelcomeGooseLogo className="h-16 w-16 md:h-20 md:w-20 text-black dark:text-white" />
</div>
<div>
<h1 className="text-4xl font-medium text-textStandard tracking-tight md:text-5xl">
Welcome to goose
</h1>
<p className="text-lg text-textSubtle max-w-2xl">
Your intelligent AI assistant for seamless productivity and creativity.
</p>
</div>
</div>
</div>
{/* ProviderGrid */}
<div className="w-full">
<h2 className="text-3xl font-medium text-textStandard tracking-tight mb-2">
Choose a Provider
</h2>
<p className="text-xl text-textStandard mb-4">
Select an AI model provider to get started with goose.
</p>
<p className="text-sm text-textSubtle mb-8">
Click on a provider to configure its API keys and start using goose. Your keys are
stored securely and encrypted locally. You can change your provider and select
specific models in the settings.
</p>
<ProviderGrid onSubmit={onSubmit} />
</div>
{/* Get started (now less prominent) */}
<div className="mt-12">
<p className="text-sm text-textSubtle">
Not sure where to start?{' '}
<Button
variant="link"
className="text-blue-500 hover:text-blue-600 p-0 h-auto"
onClick={() =>
window.open('https://block.github.io/goose/docs/quickstart', '_blank')
}
>
Quick Start Guide
</Button>
</p>
</div>
</div>
</ScrollArea>
</div>
</div>
);
}