Feat: Recipe Library (#2946)
This commit is contained in:
@@ -20,6 +20,7 @@ import SharedSessionView from './components/sessions/SharedSessionView';
|
|||||||
import SchedulesView from './components/schedule/SchedulesView';
|
import SchedulesView from './components/schedule/SchedulesView';
|
||||||
import ProviderSettings from './components/settings/providers/ProviderSettingsPage';
|
import ProviderSettings from './components/settings/providers/ProviderSettingsPage';
|
||||||
import RecipeEditor from './components/RecipeEditor';
|
import RecipeEditor from './components/RecipeEditor';
|
||||||
|
import RecipesView from './components/RecipesView';
|
||||||
import { useChat } from './hooks/useChat';
|
import { useChat } from './hooks/useChat';
|
||||||
|
|
||||||
import 'react-toastify/dist/ReactToastify.css';
|
import 'react-toastify/dist/ReactToastify.css';
|
||||||
@@ -45,6 +46,7 @@ export type View =
|
|||||||
| 'sharedSession'
|
| 'sharedSession'
|
||||||
| 'loading'
|
| 'loading'
|
||||||
| 'recipeEditor'
|
| 'recipeEditor'
|
||||||
|
| 'recipes'
|
||||||
| 'permission';
|
| 'permission';
|
||||||
|
|
||||||
export type ViewOptions = {
|
export type ViewOptions = {
|
||||||
@@ -550,6 +552,7 @@ export default function App() {
|
|||||||
config={(viewOptions?.config as Recipe) || window.electron.getConfig().recipeConfig}
|
config={(viewOptions?.config as Recipe) || window.electron.getConfig().recipeConfig}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
{view === 'recipes' && <RecipesView onBack={() => setView('chat')} />}
|
||||||
{view === 'permission' && (
|
{view === 'permission' && (
|
||||||
<PermissionSettingsView
|
<PermissionSettingsView
|
||||||
onClose={() => setView((viewOptions as { parentView: View }).parentView)}
|
onClose={() => setView((viewOptions as { parentView: View }).parentView)}
|
||||||
|
|||||||
@@ -247,7 +247,8 @@ function ChatContent({
|
|||||||
console.log('Opening recipe editor with config:', response.recipe);
|
console.log('Opening recipe editor with config:', response.recipe);
|
||||||
const recipeConfig = {
|
const recipeConfig = {
|
||||||
id: response.recipe.title || 'untitled',
|
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 || '',
|
description: response.recipe.description || '',
|
||||||
instructions: response.recipe.instructions || '',
|
instructions: response.recipe.instructions || '',
|
||||||
activities: response.recipe.activities || [],
|
activities: response.recipe.activities || [],
|
||||||
|
|||||||
@@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,18 +1,14 @@
|
|||||||
import { Popover, PopoverContent, PopoverPortal, PopoverTrigger } from '../ui/popover';
|
import { Popover, PopoverContent, PopoverPortal, PopoverTrigger } from '../ui/popover';
|
||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
import { ChatSmart, Idea, Refresh, Time, Send, Settings } from '../icons';
|
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 { useConfig } from '../ConfigContext';
|
||||||
import { ViewOptions, View } from '../../App';
|
import { ViewOptions, View } from '../../App';
|
||||||
|
import { saveRecipe, generateRecipeFilename } from '../../recipe/recipeStorage';
|
||||||
|
import { Recipe } from '../../recipe';
|
||||||
|
|
||||||
interface RecipeConfig {
|
// RecipeConfig is used for window creation and should match Recipe interface
|
||||||
id: string;
|
type RecipeConfig = Recipe;
|
||||||
name: string;
|
|
||||||
description: string;
|
|
||||||
instructions?: string;
|
|
||||||
activities?: string[];
|
|
||||||
[key: string]: unknown;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface MenuButtonProps {
|
interface MenuButtonProps {
|
||||||
onClick: () => void;
|
onClick: () => void;
|
||||||
@@ -113,6 +109,10 @@ export default function MoreMenu({
|
|||||||
setIsGoosehintsModalOpen: (isOpen: boolean) => void;
|
setIsGoosehintsModalOpen: (isOpen: boolean) => void;
|
||||||
}) {
|
}) {
|
||||||
const [open, setOpen] = useState(false);
|
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 { remove } = useConfig();
|
||||||
const [themeMode, setThemeMode] = useState<'light' | 'dark' | 'system'>(() => {
|
const [themeMode, setThemeMode] = useState<'light' | 'dark' | 'system'>(() => {
|
||||||
const savedUseSystemTheme = localStorage.getItem('use_system_theme') === 'true';
|
const savedUseSystemTheme = localStorage.getItem('use_system_theme') === 'true';
|
||||||
@@ -167,6 +167,72 @@ export default function MoreMenu({
|
|||||||
const handleThemeChange = (newTheme: 'light' | 'dark' | 'system') => {
|
const handleThemeChange = (newTheme: 'light' | 'dark' | 'system') => {
|
||||||
setThemeMode(newTheme);
|
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');
|
const recipeConfig = window.appConfig.get('recipeConfig');
|
||||||
return (
|
return (
|
||||||
<Popover open={open} onOpenChange={setOpen}>
|
<Popover open={open} onOpenChange={setOpen}>
|
||||||
@@ -245,23 +311,33 @@ export default function MoreMenu({
|
|||||||
</MenuButton>
|
</MenuButton>
|
||||||
|
|
||||||
{recipeConfig ? (
|
{recipeConfig ? (
|
||||||
<MenuButton
|
<>
|
||||||
onClick={() => {
|
<MenuButton
|
||||||
setOpen(false);
|
onClick={() => {
|
||||||
window.electron.createChatWindow(
|
setOpen(false);
|
||||||
undefined, // query
|
window.electron.createChatWindow(
|
||||||
undefined, // dir
|
undefined, // query
|
||||||
undefined, // version
|
undefined, // dir
|
||||||
undefined, // resumeSessionId
|
undefined, // version
|
||||||
recipeConfig as RecipeConfig, // recipe config
|
undefined, // resumeSessionId
|
||||||
'recipeEditor' // view type
|
recipeConfig as RecipeConfig, // recipe config
|
||||||
);
|
'recipeEditor' // view type
|
||||||
}}
|
);
|
||||||
subtitle="View the recipe you're using"
|
}}
|
||||||
icon={<Send className="w-4 h-4" />}
|
subtitle="View the recipe you're using"
|
||||||
>
|
icon={<Send className="w-4 h-4" />}
|
||||||
View recipe
|
>
|
||||||
</MenuButton>
|
View recipe
|
||||||
|
</MenuButton>
|
||||||
|
|
||||||
|
<MenuButton
|
||||||
|
onClick={handleSaveRecipeClick}
|
||||||
|
subtitle="Save this recipe for reuse"
|
||||||
|
icon={<Save className="w-4 h-4" />}
|
||||||
|
>
|
||||||
|
Save recipe
|
||||||
|
</MenuButton>
|
||||||
|
</>
|
||||||
) : (
|
) : (
|
||||||
<MenuButton
|
<MenuButton
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@@ -276,6 +352,16 @@ export default function MoreMenu({
|
|||||||
Make Agent from this session
|
Make Agent from this session
|
||||||
</MenuButton>
|
</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
|
<MenuButton
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setOpen(false);
|
setOpen(false);
|
||||||
@@ -310,6 +396,87 @@ export default function MoreMenu({
|
|||||||
</PopoverContent>
|
</PopoverContent>
|
||||||
</>
|
</>
|
||||||
</PopoverPortal>
|
</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>
|
</Popover>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -138,6 +138,7 @@ export function DeepLinkModal({ recipeConfig: initialRecipeConfig, onClose }: De
|
|||||||
const currentConfig = {
|
const currentConfig = {
|
||||||
id: 'deeplink-recipe',
|
id: 'deeplink-recipe',
|
||||||
name: 'DeepLink Recipe',
|
name: 'DeepLink Recipe',
|
||||||
|
title: 'DeepLink Recipe',
|
||||||
description: 'Recipe from deep link',
|
description: 'Recipe from deep link',
|
||||||
...recipeConfig,
|
...recipeConfig,
|
||||||
instructions,
|
instructions,
|
||||||
|
|||||||
+55
-5
@@ -1168,7 +1168,12 @@ ipcMain.handle('get-binary-path', (_event, binaryName) => {
|
|||||||
|
|
||||||
ipcMain.handle('read-file', (_event, filePath) => {
|
ipcMain.handle('read-file', (_event, filePath) => {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
const cat = spawn('cat', [filePath]);
|
// Expand tilde to home directory
|
||||||
|
const expandedPath = filePath.startsWith('~')
|
||||||
|
? path.join(app.getPath('home'), filePath.slice(1))
|
||||||
|
: filePath;
|
||||||
|
|
||||||
|
const cat = spawn('cat', [expandedPath]);
|
||||||
let output = '';
|
let output = '';
|
||||||
let errorOutput = '';
|
let errorOutput = '';
|
||||||
|
|
||||||
@@ -1183,26 +1188,31 @@ ipcMain.handle('read-file', (_event, filePath) => {
|
|||||||
cat.on('close', (code) => {
|
cat.on('close', (code) => {
|
||||||
if (code !== 0) {
|
if (code !== 0) {
|
||||||
// File not found or error
|
// File not found or error
|
||||||
resolve({ file: '', filePath, error: errorOutput || null, found: false });
|
resolve({ file: '', filePath: expandedPath, error: errorOutput || null, found: false });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
resolve({ file: output, filePath, error: null, found: true });
|
resolve({ file: output, filePath: expandedPath, error: null, found: true });
|
||||||
});
|
});
|
||||||
|
|
||||||
cat.on('error', (error) => {
|
cat.on('error', (error) => {
|
||||||
console.error('Error reading file:', error);
|
console.error('Error reading file:', error);
|
||||||
resolve({ file: '', filePath, error, found: false });
|
resolve({ file: '', filePath: expandedPath, error, found: false });
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.handle('write-file', (_event, filePath, content) => {
|
ipcMain.handle('write-file', (_event, filePath, content) => {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
|
// Expand tilde to home directory
|
||||||
|
const expandedPath = filePath.startsWith('~')
|
||||||
|
? path.join(app.getPath('home'), filePath.slice(1))
|
||||||
|
: filePath;
|
||||||
|
|
||||||
// Create a write stream to the file
|
// Create a write stream to the file
|
||||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||||
const fsNode = require('fs'); // Using require for fs in this specific handler from original
|
const fsNode = require('fs'); // Using require for fs in this specific handler from original
|
||||||
try {
|
try {
|
||||||
fsNode.writeFileSync(filePath, content, { encoding: 'utf8' });
|
fsNode.writeFileSync(expandedPath, content, { encoding: 'utf8' });
|
||||||
resolve(true);
|
resolve(true);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error writing to file:', error);
|
console.error('Error writing to file:', error);
|
||||||
@@ -1211,6 +1221,46 @@ ipcMain.handle('write-file', (_event, filePath, content) => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Enhanced file operations
|
||||||
|
ipcMain.handle('ensure-directory', async (_event, dirPath) => {
|
||||||
|
try {
|
||||||
|
// Expand tilde to home directory
|
||||||
|
const expandedPath = dirPath.startsWith('~')
|
||||||
|
? path.join(app.getPath('home'), dirPath.slice(1))
|
||||||
|
: dirPath;
|
||||||
|
|
||||||
|
await fs.mkdir(expandedPath, { recursive: true });
|
||||||
|
return true;
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error creating directory:', error);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('list-files', async (_event, dirPath, extension) => {
|
||||||
|
try {
|
||||||
|
// Expand tilde to home directory
|
||||||
|
const expandedPath = dirPath.startsWith('~')
|
||||||
|
? path.join(app.getPath('home'), dirPath.slice(1))
|
||||||
|
: dirPath;
|
||||||
|
|
||||||
|
const files = await fs.readdir(expandedPath);
|
||||||
|
if (extension) {
|
||||||
|
return files.filter((file) => file.endsWith(extension));
|
||||||
|
}
|
||||||
|
return files;
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error listing files:', error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Handle message box dialogs
|
||||||
|
ipcMain.handle('show-message-box', async (_event, options) => {
|
||||||
|
const result = await dialog.showMessageBox(options);
|
||||||
|
return result;
|
||||||
|
});
|
||||||
|
|
||||||
// Handle allowed extensions list fetching
|
// Handle allowed extensions list fetching
|
||||||
ipcMain.handle('get-allowed-extensions', async () => {
|
ipcMain.handle('get-allowed-extensions', async () => {
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -1,19 +1,28 @@
|
|||||||
import Electron, { contextBridge, ipcRenderer, webUtils } from 'electron';
|
import Electron, { contextBridge, ipcRenderer, webUtils } from 'electron';
|
||||||
|
import { Recipe } from './recipe';
|
||||||
|
|
||||||
interface RecipeConfig {
|
// RecipeConfig is used for window creation and should match Recipe interface
|
||||||
id: string;
|
type RecipeConfig = Recipe;
|
||||||
name: string;
|
|
||||||
description: string;
|
|
||||||
instructions?: string;
|
|
||||||
activities?: string[];
|
|
||||||
[key: string]: unknown;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface NotificationData {
|
interface NotificationData {
|
||||||
title: string;
|
title: string;
|
||||||
body: string;
|
body: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface MessageBoxOptions {
|
||||||
|
type?: 'none' | 'info' | 'error' | 'question' | 'warning';
|
||||||
|
buttons?: string[];
|
||||||
|
defaultId?: number;
|
||||||
|
title?: string;
|
||||||
|
message: string;
|
||||||
|
detail?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface MessageBoxResponse {
|
||||||
|
response: number;
|
||||||
|
checkboxChecked?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
interface FileResponse {
|
interface FileResponse {
|
||||||
file: string;
|
file: string;
|
||||||
filePath: string;
|
filePath: string;
|
||||||
@@ -51,6 +60,7 @@ type ElectronAPI = {
|
|||||||
) => void;
|
) => void;
|
||||||
logInfo: (txt: string) => void;
|
logInfo: (txt: string) => void;
|
||||||
showNotification: (data: NotificationData) => void;
|
showNotification: (data: NotificationData) => void;
|
||||||
|
showMessageBox: (options: MessageBoxOptions) => Promise<MessageBoxResponse>;
|
||||||
openInChrome: (url: string) => void;
|
openInChrome: (url: string) => void;
|
||||||
fetchMetadata: (url: string) => Promise<string>;
|
fetchMetadata: (url: string) => Promise<string>;
|
||||||
reloadApp: () => void;
|
reloadApp: () => void;
|
||||||
@@ -61,6 +71,8 @@ type ElectronAPI = {
|
|||||||
getBinaryPath: (binaryName: string) => Promise<string>;
|
getBinaryPath: (binaryName: string) => Promise<string>;
|
||||||
readFile: (directory: string) => Promise<FileResponse>;
|
readFile: (directory: string) => Promise<FileResponse>;
|
||||||
writeFile: (directory: string, content: string) => Promise<boolean>;
|
writeFile: (directory: string, content: string) => Promise<boolean>;
|
||||||
|
ensureDirectory: (dirPath: string) => Promise<boolean>;
|
||||||
|
listFiles: (dirPath: string, extension?: string) => Promise<string[]>;
|
||||||
getAllowedExtensions: () => Promise<string[]>;
|
getAllowedExtensions: () => Promise<string[]>;
|
||||||
getPathForFile: (file: File) => string;
|
getPathForFile: (file: File) => string;
|
||||||
setMenuBarIcon: (show: boolean) => Promise<boolean>;
|
setMenuBarIcon: (show: boolean) => Promise<boolean>;
|
||||||
@@ -124,6 +136,7 @@ const electronAPI: ElectronAPI = {
|
|||||||
),
|
),
|
||||||
logInfo: (txt: string) => ipcRenderer.send('logInfo', txt),
|
logInfo: (txt: string) => ipcRenderer.send('logInfo', txt),
|
||||||
showNotification: (data: NotificationData) => ipcRenderer.send('notify', data),
|
showNotification: (data: NotificationData) => ipcRenderer.send('notify', data),
|
||||||
|
showMessageBox: (options: MessageBoxOptions) => ipcRenderer.invoke('show-message-box', options),
|
||||||
openInChrome: (url: string) => ipcRenderer.send('open-in-chrome', url),
|
openInChrome: (url: string) => ipcRenderer.send('open-in-chrome', url),
|
||||||
fetchMetadata: (url: string) => ipcRenderer.invoke('fetch-metadata', url),
|
fetchMetadata: (url: string) => ipcRenderer.invoke('fetch-metadata', url),
|
||||||
reloadApp: () => ipcRenderer.send('reload-app'),
|
reloadApp: () => ipcRenderer.send('reload-app'),
|
||||||
@@ -135,6 +148,9 @@ const electronAPI: ElectronAPI = {
|
|||||||
readFile: (filePath: string) => ipcRenderer.invoke('read-file', filePath),
|
readFile: (filePath: string) => ipcRenderer.invoke('read-file', filePath),
|
||||||
writeFile: (filePath: string, content: string) =>
|
writeFile: (filePath: string, content: string) =>
|
||||||
ipcRenderer.invoke('write-file', filePath, content),
|
ipcRenderer.invoke('write-file', filePath, content),
|
||||||
|
ensureDirectory: (dirPath: string) => ipcRenderer.invoke('ensure-directory', dirPath),
|
||||||
|
listFiles: (dirPath: string, extension?: string) =>
|
||||||
|
ipcRenderer.invoke('list-files', dirPath, extension),
|
||||||
getPathForFile: (file: File) => webUtils.getPathForFile(file),
|
getPathForFile: (file: File) => webUtils.getPathForFile(file),
|
||||||
getAllowedExtensions: () => ipcRenderer.invoke('get-allowed-extensions'),
|
getAllowedExtensions: () => ipcRenderer.invoke('get-allowed-extensions'),
|
||||||
setMenuBarIcon: (show: boolean) => ipcRenderer.invoke('set-menu-bar-icon', show),
|
setMenuBarIcon: (show: boolean) => ipcRenderer.invoke('set-menu-bar-icon', show),
|
||||||
|
|||||||
@@ -0,0 +1,339 @@
|
|||||||
|
import { Recipe } from './index';
|
||||||
|
import * as yaml from 'yaml';
|
||||||
|
|
||||||
|
export interface SaveRecipeOptions {
|
||||||
|
name: string;
|
||||||
|
global?: boolean; // true for global (~/.config/goose/recipes/), false for project-specific (.goose/recipes/)
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SavedRecipe {
|
||||||
|
name: string;
|
||||||
|
recipe: Recipe;
|
||||||
|
isGlobal: boolean;
|
||||||
|
lastModified: Date;
|
||||||
|
isArchived?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sanitize a recipe name to be safe for use as a filename
|
||||||
|
*/
|
||||||
|
function sanitizeRecipeName(name: string): string {
|
||||||
|
return name.replace(/[^a-zA-Z0-9-_\s]/g, '').trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a lastModified value that could be a string or Date
|
||||||
|
*/
|
||||||
|
function parseLastModified(val: string | Date): Date {
|
||||||
|
return val instanceof Date ? val : new Date(val);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the storage directory path for recipes
|
||||||
|
*/
|
||||||
|
function getStorageDirectory(isGlobal: boolean): string {
|
||||||
|
return isGlobal ? '~/.config/goose/recipes' : '.goose/recipes';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the file path for a recipe based on its name
|
||||||
|
*/
|
||||||
|
function getRecipeFilePath(recipeName: string, isGlobal: boolean): string {
|
||||||
|
const dir = getStorageDirectory(isGlobal);
|
||||||
|
return `${dir}/${recipeName}.yaml`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load recipe from file
|
||||||
|
*/
|
||||||
|
async function loadRecipeFromFile(
|
||||||
|
recipeName: string,
|
||||||
|
isGlobal: boolean
|
||||||
|
): Promise<SavedRecipe | null> {
|
||||||
|
const filePath = getRecipeFilePath(recipeName, isGlobal);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result = await window.electron.readFile(filePath);
|
||||||
|
if (!result.found || result.error) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const recipeData = yaml.parse(result.file) as SavedRecipe;
|
||||||
|
|
||||||
|
// Convert lastModified string to Date if needed
|
||||||
|
recipeData.lastModified = parseLastModified(recipeData.lastModified);
|
||||||
|
|
||||||
|
return {
|
||||||
|
...recipeData,
|
||||||
|
isGlobal: isGlobal,
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
console.warn(`Failed to load recipe from ${filePath}:`, error);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Save recipe to file
|
||||||
|
*/
|
||||||
|
async function saveRecipeToFile(recipe: SavedRecipe): Promise<boolean> {
|
||||||
|
const filePath = getRecipeFilePath(recipe.name, recipe.isGlobal);
|
||||||
|
|
||||||
|
// Ensure directory exists
|
||||||
|
const dirPath = getStorageDirectory(recipe.isGlobal);
|
||||||
|
await window.electron.ensureDirectory(dirPath);
|
||||||
|
|
||||||
|
// Convert to YAML and save
|
||||||
|
const yamlContent = yaml.stringify(recipe);
|
||||||
|
return await window.electron.writeFile(filePath, yamlContent);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Save a recipe to a file using IPC.
|
||||||
|
*/
|
||||||
|
export async function saveRecipe(recipe: Recipe, options: SaveRecipeOptions): Promise<string> {
|
||||||
|
const { name, global = true } = options;
|
||||||
|
|
||||||
|
// Sanitize name
|
||||||
|
const sanitizedName = sanitizeRecipeName(name);
|
||||||
|
if (!sanitizedName) {
|
||||||
|
throw new Error('Invalid recipe name');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate recipe has required fields
|
||||||
|
if (!recipe.title || !recipe.description || !recipe.instructions) {
|
||||||
|
throw new Error('Recipe is missing required fields (title, description, instructions)');
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Create saved recipe object
|
||||||
|
const savedRecipe: SavedRecipe = {
|
||||||
|
name: sanitizedName,
|
||||||
|
recipe: recipe,
|
||||||
|
isGlobal: global,
|
||||||
|
lastModified: new Date(),
|
||||||
|
isArchived: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Save to file
|
||||||
|
const success = await saveRecipeToFile(savedRecipe);
|
||||||
|
|
||||||
|
if (!success) {
|
||||||
|
throw new Error('Failed to save recipe file');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return identifier for the saved recipe
|
||||||
|
return `${global ? 'global' : 'local'}:${sanitizedName}`;
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to save recipe: ${error instanceof Error ? error.message : 'Unknown error'}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a recipe by name from file.
|
||||||
|
*/
|
||||||
|
export async function loadRecipe(recipeName: string, isGlobal: boolean): Promise<Recipe> {
|
||||||
|
try {
|
||||||
|
const savedRecipe = await loadRecipeFromFile(recipeName, isGlobal);
|
||||||
|
|
||||||
|
if (!savedRecipe) {
|
||||||
|
throw new Error('Recipe not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate the loaded recipe has required fields
|
||||||
|
if (
|
||||||
|
!savedRecipe.recipe.title ||
|
||||||
|
!savedRecipe.recipe.description ||
|
||||||
|
!savedRecipe.recipe.instructions
|
||||||
|
) {
|
||||||
|
throw new Error('Loaded recipe is missing required fields');
|
||||||
|
}
|
||||||
|
|
||||||
|
return savedRecipe.recipe;
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to load recipe: ${error instanceof Error ? error.message : 'Unknown error'}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List all saved recipes from the recipes directories.
|
||||||
|
*
|
||||||
|
* Uses the listFiles API to find available recipe files.
|
||||||
|
*/
|
||||||
|
export async function listSavedRecipes(includeArchived: boolean = false): Promise<SavedRecipe[]> {
|
||||||
|
const recipes: SavedRecipe[] = [];
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Check for global and local recipe directories
|
||||||
|
const globalDir = getStorageDirectory(true);
|
||||||
|
const localDir = getStorageDirectory(false);
|
||||||
|
|
||||||
|
// Ensure directories exist
|
||||||
|
await window.electron.ensureDirectory(globalDir);
|
||||||
|
await window.electron.ensureDirectory(localDir);
|
||||||
|
|
||||||
|
// Get list of recipe files with .yaml extension
|
||||||
|
const globalFiles = await window.electron.listFiles(globalDir, 'yaml');
|
||||||
|
const localFiles = await window.electron.listFiles(localDir, 'yaml');
|
||||||
|
|
||||||
|
// Process global recipes
|
||||||
|
for (const file of globalFiles) {
|
||||||
|
const recipeName = file.replace(/\.yaml$/, '');
|
||||||
|
const recipe = await loadRecipeFromFile(recipeName, true);
|
||||||
|
if (recipe && (includeArchived || !recipe.isArchived)) {
|
||||||
|
recipes.push(recipe);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process local recipes
|
||||||
|
for (const file of localFiles) {
|
||||||
|
const recipeName = file.replace(/\.yaml$/, '');
|
||||||
|
const recipe = await loadRecipeFromFile(recipeName, false);
|
||||||
|
if (recipe && (includeArchived || !recipe.isArchived)) {
|
||||||
|
recipes.push(recipe);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sort by last modified (newest first)
|
||||||
|
return recipes.sort((a, b) => b.lastModified.getTime() - a.lastModified.getTime());
|
||||||
|
} catch (error) {
|
||||||
|
console.warn('Failed to list saved recipes:', error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Restore an archived recipe.
|
||||||
|
*
|
||||||
|
* @param recipeName The name of the recipe to restore
|
||||||
|
* @param isGlobal Whether the recipe is in global or local storage
|
||||||
|
*/
|
||||||
|
export async function restoreRecipe(recipeName: string, isGlobal: boolean): Promise<void> {
|
||||||
|
try {
|
||||||
|
const savedRecipe = await loadRecipeFromFile(recipeName, isGlobal);
|
||||||
|
|
||||||
|
if (!savedRecipe) {
|
||||||
|
throw new Error('Archived recipe not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!savedRecipe.isArchived) {
|
||||||
|
throw new Error('Recipe is not archived');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mark as not archived
|
||||||
|
savedRecipe.isArchived = false;
|
||||||
|
savedRecipe.lastModified = new Date();
|
||||||
|
|
||||||
|
// Save back to file
|
||||||
|
const success = await saveRecipeToFile(savedRecipe);
|
||||||
|
|
||||||
|
if (!success) {
|
||||||
|
throw new Error('Failed to save updated recipe');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to restore recipe: ${error instanceof Error ? error.message : 'Unknown error'}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Archive a recipe.
|
||||||
|
*
|
||||||
|
* @param recipeName The name of the recipe to archive
|
||||||
|
* @param isGlobal Whether the recipe is in global or local storage
|
||||||
|
*/
|
||||||
|
export async function archiveRecipe(recipeName: string, isGlobal: boolean): Promise<void> {
|
||||||
|
try {
|
||||||
|
const savedRecipe = await loadRecipeFromFile(recipeName, isGlobal);
|
||||||
|
|
||||||
|
if (!savedRecipe) {
|
||||||
|
throw new Error('Recipe not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (savedRecipe.isArchived) {
|
||||||
|
throw new Error('Recipe is already archived');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mark as archived
|
||||||
|
savedRecipe.isArchived = true;
|
||||||
|
savedRecipe.lastModified = new Date();
|
||||||
|
|
||||||
|
// Save back to file
|
||||||
|
const success = await saveRecipeToFile(savedRecipe);
|
||||||
|
|
||||||
|
if (!success) {
|
||||||
|
throw new Error('Failed to save updated recipe');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to archive recipe: ${error instanceof Error ? error.message : 'Unknown error'}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Permanently delete a recipe file.
|
||||||
|
*
|
||||||
|
* @param recipeName The name of the recipe to permanently delete
|
||||||
|
* @param isGlobal Whether the recipe is in global or local storage
|
||||||
|
*/
|
||||||
|
export async function permanentlyDeleteRecipe(
|
||||||
|
recipeName: string,
|
||||||
|
isGlobal: boolean
|
||||||
|
): Promise<void> {
|
||||||
|
try {
|
||||||
|
// TODO: Implement file deletion when available in the API
|
||||||
|
// For now, we'll just mark it as archived as a fallback
|
||||||
|
const savedRecipe = await loadRecipeFromFile(recipeName, isGlobal);
|
||||||
|
|
||||||
|
if (!savedRecipe) {
|
||||||
|
throw new Error('Recipe not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mark as archived with special flag
|
||||||
|
savedRecipe.isArchived = true;
|
||||||
|
savedRecipe.lastModified = new Date();
|
||||||
|
|
||||||
|
// Save back to file
|
||||||
|
const success = await saveRecipeToFile(savedRecipe);
|
||||||
|
|
||||||
|
if (!success) {
|
||||||
|
throw new Error('Failed to mark recipe as deleted');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to delete recipe: ${error instanceof Error ? error.message : 'Unknown error'}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete a recipe (archives it by default for backward compatibility).
|
||||||
|
*
|
||||||
|
* @deprecated Use archiveRecipe instead
|
||||||
|
* @param recipeName The name of the recipe to delete/archive
|
||||||
|
* @param isGlobal Whether the recipe is in global or local storage
|
||||||
|
*/
|
||||||
|
export async function deleteRecipe(recipeName: string, isGlobal: boolean): Promise<void> {
|
||||||
|
return archiveRecipe(recipeName, isGlobal);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generate a suggested filename for a recipe based on its title.
|
||||||
|
*
|
||||||
|
* @param recipe The recipe to generate a filename for
|
||||||
|
* @returns A sanitized filename suitable for use as a recipe name
|
||||||
|
*/
|
||||||
|
export function generateRecipeFilename(recipe: Recipe): string {
|
||||||
|
const baseName = recipe.title
|
||||||
|
.toLowerCase()
|
||||||
|
.replace(/[^a-zA-Z0-9\s-]/g, '')
|
||||||
|
.replace(/\s+/g, '-')
|
||||||
|
.trim();
|
||||||
|
|
||||||
|
return baseName || 'untitled-recipe';
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user