Feat: Recipe Library (#2946)

This commit is contained in:
Aaron Goldsmith
2025-06-18 12:03:44 -07:00
committed by GitHub
parent 59ee39f191
commit 98ac09cda0
8 changed files with 897 additions and 40 deletions
+2 -1
View File
@@ -247,7 +247,8 @@ function ChatContent({
console.log('Opening recipe editor with config:', response.recipe);
const recipeConfig = {
id: response.recipe.title || 'untitled',
name: response.recipe.title || 'Untitled Recipe',
name: response.recipe.title || 'Untitled Recipe', // Does not exist on recipe type
title: response.recipe.title || 'Untitled Recipe',
description: response.recipe.description || '',
instructions: response.recipe.instructions || '',
activities: response.recipe.activities || [],
+280
View File
@@ -0,0 +1,280 @@
import { useState, useEffect } from 'react';
import { listSavedRecipes, archiveRecipe, SavedRecipe } from '../recipe/recipeStorage';
import { FileText, Trash2, Bot, Calendar, Globe, Folder } from 'lucide-react';
import { ScrollArea } from './ui/scroll-area';
import BackButton from './ui/BackButton';
import MoreMenuLayout from './more_menu/MoreMenuLayout';
interface RecipesViewProps {
onBack: () => void;
}
export default function RecipesView({ onBack }: RecipesViewProps) {
const [savedRecipes, setSavedRecipes] = useState<SavedRecipe[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [selectedRecipe, setSelectedRecipe] = useState<SavedRecipe | null>(null);
const [showPreview, setShowPreview] = useState(false);
useEffect(() => {
loadSavedRecipes();
}, []);
const loadSavedRecipes = async () => {
try {
setLoading(true);
setError(null);
const recipes = await listSavedRecipes();
setSavedRecipes(recipes);
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to load recipes');
console.error('Failed to load saved recipes:', err);
} finally {
setLoading(false);
}
};
const handleLoadRecipe = async (savedRecipe: SavedRecipe) => {
try {
// Use the recipe directly - no need for manual mapping
window.electron.createChatWindow(
undefined, // query
undefined, // dir
undefined, // version
undefined, // resumeSessionId
savedRecipe.recipe, // recipe config
undefined // view type
);
} catch (err) {
console.error('Failed to load recipe:', err);
setError(err instanceof Error ? err.message : 'Failed to load recipe');
}
};
const handleDeleteRecipe = async (savedRecipe: SavedRecipe) => {
// TODO: Use Electron's dialog API for confirmation
const result = await window.electron.showMessageBox({
type: 'warning',
buttons: ['Cancel', 'Delete'],
defaultId: 0,
title: 'Delete Recipe',
message: `Are you sure you want to delete "${savedRecipe.name}"?`,
detail: 'Deleted recipes can be restored later.',
});
if (result.response !== 1) {
return;
}
try {
await archiveRecipe(savedRecipe.name, savedRecipe.isGlobal);
// Reload the recipes list
await loadSavedRecipes();
} catch (err) {
console.error('Failed to archive recipe:', err);
setError(err instanceof Error ? err.message : 'Failed to archive recipe');
}
};
const handlePreviewRecipe = (savedRecipe: SavedRecipe) => {
setSelectedRecipe(savedRecipe);
setShowPreview(true);
};
if (loading) {
return (
<div className="h-screen w-full animate-[fadein_200ms_ease-in_forwards]">
<MoreMenuLayout showMenu={false} />
<div className="flex flex-col items-center justify-center h-full">
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-borderProminent"></div>
<p className="mt-4 text-textSubtle">Loading recipes...</p>
</div>
</div>
);
}
if (error) {
return (
<div className="h-screen w-full animate-[fadein_200ms_ease-in_forwards]">
<MoreMenuLayout showMenu={false} />
<div className="flex flex-col items-center justify-center h-full">
<p className="text-red-500 mb-4">{error}</p>
<button
onClick={loadSavedRecipes}
className="px-4 py-2 bg-borderProminent text-white rounded-lg hover:bg-opacity-90"
>
Retry
</button>
</div>
</div>
);
}
return (
<div className="h-screen w-full animate-[fadein_200ms_ease-in_forwards]">
<MoreMenuLayout showMenu={false} />
<ScrollArea className="h-full w-full">
<div className="flex flex-col pb-24">
<div className="px-8 pt-6 pb-4">
<BackButton onClick={onBack} />
<h1 className="text-3xl font-medium text-textStandard mt-1">Saved Recipes</h1>
</div>
{/* Content Area */}
<div className="flex-1 pt-[20px]">
{savedRecipes.length === 0 ? (
<div className="flex flex-col items-center justify-center h-full text-center px-8">
<FileText className="w-16 h-16 text-textSubtle mb-4" />
<h3 className="text-lg font-medium text-textStandard mb-2">No saved recipes</h3>
<p className="text-textSubtle">
Save a recipe from an active session to see it here.
</p>
</div>
) : (
<div className="space-y-8 px-8">
{savedRecipes.map((savedRecipe) => (
<section
key={`${savedRecipe.isGlobal ? 'global' : 'local'}-${savedRecipe.name}`}
className="border-b border-borderSubtle pb-8"
>
<div className="flex justify-between items-start mb-4">
<div className="flex-1">
<div className="flex items-center gap-2 mb-1">
<h3 className="text-xl font-medium text-textStandard">
{savedRecipe.recipe.title}
</h3>
{savedRecipe.isGlobal ? (
<Globe className="w-4 h-4 text-textSubtle" />
) : (
<Folder className="w-4 h-4 text-textSubtle" />
)}
</div>
<p className="text-textSubtle mb-2">{savedRecipe.recipe.description}</p>
<div className="flex items-center text-xs text-textSubtle">
<Calendar className="w-3 h-3 mr-1" />
{savedRecipe.lastModified.toLocaleDateString()}
</div>
</div>
</div>
<div className="flex items-center gap-3">
<button
onClick={() => handleLoadRecipe(savedRecipe)}
className="flex items-center gap-2 px-4 py-2 bg-black dark:bg-white text-white dark:text-black rounded-lg hover:bg-opacity-90 transition-colors text-sm font-medium"
>
<Bot className="w-4 h-4" />
Use Recipe
</button>
<button
onClick={() => handlePreviewRecipe(savedRecipe)}
className="flex items-center gap-2 px-4 py-2 border border-borderSubtle rounded-lg hover:border-borderStandard transition-colors text-sm"
>
<FileText className="w-4 h-4" />
Preview
</button>
<button
onClick={() => handleDeleteRecipe(savedRecipe)}
className="flex items-center gap-2 px-4 py-2 text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20 rounded-lg transition-colors text-sm"
>
<Trash2 className="w-4 h-4" />
Delete
</button>
</div>
</section>
))}
</div>
)}
</div>
</div>
</ScrollArea>
{/* Preview Modal */}
{showPreview && selectedRecipe && (
<div className="fixed inset-0 z-[300] flex items-center justify-center bg-black bg-opacity-50">
<div className="bg-bgApp border border-borderSubtle rounded-lg p-6 w-[600px] max-w-[90vw] max-h-[80vh] overflow-y-auto">
<div className="flex items-start justify-between mb-4">
<div>
<h3 className="text-xl font-medium text-textStandard">
{selectedRecipe.recipe.title}
</h3>
<p className="text-sm text-textSubtle">
{selectedRecipe.isGlobal ? 'Global recipe' : 'Project recipe'}
</p>
</div>
<button
onClick={() => setShowPreview(false)}
className="text-textSubtle hover:text-textStandard text-2xl leading-none"
>
×
</button>
</div>
<div className="space-y-6">
<div>
<h4 className="text-sm font-medium text-textStandard mb-2">Description</h4>
<p className="text-textSubtle">{selectedRecipe.recipe.description}</p>
</div>
{selectedRecipe.recipe.instructions && (
<div>
<h4 className="text-sm font-medium text-textStandard mb-2">Instructions</h4>
<div className="bg-bgSubtle border border-borderSubtle p-3 rounded-lg">
<pre className="text-sm text-textSubtle whitespace-pre-wrap font-mono">
{selectedRecipe.recipe.instructions}
</pre>
</div>
</div>
)}
{selectedRecipe.recipe.prompt && (
<div>
<h4 className="text-sm font-medium text-textStandard mb-2">Initial Prompt</h4>
<div className="bg-bgSubtle border border-borderSubtle p-3 rounded-lg">
<pre className="text-sm text-textSubtle whitespace-pre-wrap font-mono">
{selectedRecipe.recipe.prompt}
</pre>
</div>
</div>
)}
{selectedRecipe.recipe.activities && selectedRecipe.recipe.activities.length > 0 && (
<div>
<h4 className="text-sm font-medium text-textStandard mb-2">Activities</h4>
<div className="flex flex-wrap gap-2">
{selectedRecipe.recipe.activities.map((activity, index) => (
<span
key={index}
className="px-2 py-1 bg-bgSubtle border border-borderSubtle text-textSubtle rounded text-sm"
>
{activity}
</span>
))}
</div>
</div>
)}
</div>
<div className="flex justify-end gap-3 mt-6 pt-4 border-t border-borderSubtle">
<button
onClick={() => setShowPreview(false)}
className="px-4 py-2 text-textSubtle hover:text-textStandard transition-colors"
>
Close
</button>
<button
onClick={() => {
setShowPreview(false);
handleLoadRecipe(selectedRecipe);
}}
className="px-4 py-2 bg-black dark:bg-white text-white dark:text-black rounded-lg hover:bg-opacity-90 transition-colors font-medium"
>
Load Recipe
</button>
</div>
</div>
</div>
)}
</div>
);
}
+193 -26
View File
@@ -1,18 +1,14 @@
import { Popover, PopoverContent, PopoverPortal, PopoverTrigger } from '../ui/popover';
import React, { useEffect, useState } from 'react';
import { ChatSmart, Idea, Refresh, Time, Send, Settings } from '../icons';
import { FolderOpen, Moon, Sliders, Sun } from 'lucide-react';
import { FolderOpen, Moon, Sliders, Sun, Save, FileText } from 'lucide-react';
import { useConfig } from '../ConfigContext';
import { ViewOptions, View } from '../../App';
import { saveRecipe, generateRecipeFilename } from '../../recipe/recipeStorage';
import { Recipe } from '../../recipe';
interface RecipeConfig {
id: string;
name: string;
description: string;
instructions?: string;
activities?: string[];
[key: string]: unknown;
}
// RecipeConfig is used for window creation and should match Recipe interface
type RecipeConfig = Recipe;
interface MenuButtonProps {
onClick: () => void;
@@ -113,6 +109,10 @@ export default function MoreMenu({
setIsGoosehintsModalOpen: (isOpen: boolean) => void;
}) {
const [open, setOpen] = useState(false);
const [showSaveDialog, setShowSaveDialog] = useState(false);
const [saveRecipeName, setSaveRecipeName] = useState('');
const [saveGlobal, setSaveGlobal] = useState(true);
const [saving, setSaving] = useState(false);
const { remove } = useConfig();
const [themeMode, setThemeMode] = useState<'light' | 'dark' | 'system'>(() => {
const savedUseSystemTheme = localStorage.getItem('use_system_theme') === 'true';
@@ -167,6 +167,72 @@ export default function MoreMenu({
const handleThemeChange = (newTheme: 'light' | 'dark' | 'system') => {
setThemeMode(newTheme);
};
const handleSaveRecipe = async () => {
if (!saveRecipeName.trim()) {
return;
}
setSaving(true);
try {
// Get the current recipe config from the window with proper validation
const currentRecipeConfig = window.appConfig.get('recipeConfig');
if (!currentRecipeConfig || typeof currentRecipeConfig !== 'object') {
throw new Error('No recipe configuration found');
}
// Validate that it has the required Recipe properties
const recipe = currentRecipeConfig as Recipe;
if (!recipe.title || !recipe.description || !recipe.instructions) {
throw new Error('Invalid recipe configuration: missing required fields');
}
// Save the recipe
const filePath = await saveRecipe(recipe, {
name: saveRecipeName.trim(),
global: saveGlobal,
});
// Show success message (you might want to use a toast notification instead)
console.log(`Recipe saved to: ${filePath}`);
// Reset dialog state
setShowSaveDialog(false);
setSaveRecipeName('');
setOpen(false);
// Optional: Show a success notification
window.electron.showNotification({
title: 'Recipe Saved',
body: `Recipe "${saveRecipeName}" has been saved successfully.`,
});
} catch (error) {
console.error('Failed to save recipe:', error);
// Show error notification
window.electron.showNotification({
title: 'Save Failed',
body: `Failed to save recipe: ${error instanceof Error ? error.message : 'Unknown error'}`,
});
} finally {
setSaving(false);
}
};
const handleSaveRecipeClick = () => {
const currentRecipeConfig = window.appConfig.get('recipeConfig');
if (currentRecipeConfig && typeof currentRecipeConfig === 'object') {
const recipe = currentRecipeConfig as Recipe;
// Generate a suggested name from the recipe title
const suggestedName = generateRecipeFilename(recipe);
setSaveRecipeName(suggestedName);
setShowSaveDialog(true);
setOpen(false);
}
};
const recipeConfig = window.appConfig.get('recipeConfig');
return (
<Popover open={open} onOpenChange={setOpen}>
@@ -245,23 +311,33 @@ export default function MoreMenu({
</MenuButton>
{recipeConfig ? (
<MenuButton
onClick={() => {
setOpen(false);
window.electron.createChatWindow(
undefined, // query
undefined, // dir
undefined, // version
undefined, // resumeSessionId
recipeConfig as RecipeConfig, // recipe config
'recipeEditor' // view type
);
}}
subtitle="View the recipe you're using"
icon={<Send className="w-4 h-4" />}
>
View recipe
</MenuButton>
<>
<MenuButton
onClick={() => {
setOpen(false);
window.electron.createChatWindow(
undefined, // query
undefined, // dir
undefined, // version
undefined, // resumeSessionId
recipeConfig as RecipeConfig, // recipe config
'recipeEditor' // view type
);
}}
subtitle="View the recipe you're using"
icon={<Send className="w-4 h-4" />}
>
View recipe
</MenuButton>
<MenuButton
onClick={handleSaveRecipeClick}
subtitle="Save this recipe for reuse"
icon={<Save className="w-4 h-4" />}
>
Save recipe
</MenuButton>
</>
) : (
<MenuButton
onClick={() => {
@@ -276,6 +352,16 @@ export default function MoreMenu({
Make Agent from this session
</MenuButton>
)}
<MenuButton
onClick={() => {
setOpen(false);
setView('recipes');
}}
subtitle="Browse your saved recipes"
icon={<FileText className="w-4 h-4" />}
>
Go to Recipe Library
</MenuButton>
<MenuButton
onClick={() => {
setOpen(false);
@@ -310,6 +396,87 @@ export default function MoreMenu({
</PopoverContent>
</>
</PopoverPortal>
{/* Save Recipe Dialog */}
{showSaveDialog && (
<div className="fixed inset-0 z-[300] flex items-center justify-center bg-black bg-opacity-50">
<div className="bg-bgApp border border-borderSubtle rounded-lg p-6 w-96 max-w-[90vw]">
<h3 className="text-lg font-medium text-textProminent mb-4">Save Recipe</h3>
<div className="space-y-4">
<div>
<label
htmlFor="recipe-name"
className="block text-sm font-medium text-textStandard mb-2"
>
Recipe Name
</label>
<input
id="recipe-name"
type="text"
value={saveRecipeName}
onChange={(e) => setSaveRecipeName(e.target.value)}
className="w-full p-3 border border-borderSubtle rounded-lg bg-bgApp text-textStandard focus:outline-none focus:ring-2 focus:ring-borderProminent"
placeholder="Enter recipe name"
autoFocus
/>
</div>
<div>
<label className="block text-sm font-medium text-textStandard mb-2">
Save Location
</label>
<div className="space-y-2">
<label className="flex items-center">
<input
type="radio"
name="save-location"
checked={saveGlobal}
onChange={() => setSaveGlobal(true)}
className="mr-2"
/>
<span className="text-sm text-textStandard">
Global - Available across all Goose sessions
</span>
</label>
<label className="flex items-center">
<input
type="radio"
name="save-location"
checked={!saveGlobal}
onChange={() => setSaveGlobal(false)}
className="mr-2"
/>
<span className="text-sm text-textStandard">
Directory - Available in the working directory
</span>
</label>
</div>
</div>
</div>
<div className="flex justify-end space-x-3 mt-6">
<button
onClick={() => {
setShowSaveDialog(false);
setSaveRecipeName('');
}}
className="px-4 py-2 text-textSubtle hover:text-textStandard transition-colors"
disabled={saving}
>
Cancel
</button>
<button
onClick={handleSaveRecipe}
disabled={!saveRecipeName.trim() || saving}
className="px-4 py-2 bg-borderProminent text-white rounded-lg hover:bg-opacity-90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
>
{saving ? 'Saving...' : 'Save Recipe'}
</button>
</div>
</div>
</div>
)}
</Popover>
);
}
@@ -138,6 +138,7 @@ export function DeepLinkModal({ recipeConfig: initialRecipeConfig, onClose }: De
const currentConfig = {
id: 'deeplink-recipe',
name: 'DeepLink Recipe',
title: 'DeepLink Recipe',
description: 'Recipe from deep link',
...recipeConfig,
instructions,