2024-12-07 15:27:50 +00:00
|
|
|
import * as RadixDialog from '@radix-ui/react-dialog';
|
|
|
|
import { motion } from 'framer-motion';
|
2024-12-07 15:53:33 +00:00
|
|
|
import { useState } from 'react';
|
2024-12-07 15:27:50 +00:00
|
|
|
import { classNames } from '~/utils/classNames';
|
2024-12-08 19:26:18 +00:00
|
|
|
import { DialogTitle, dialogVariants, dialogBackdropVariants } from '~/components/ui/Dialog';
|
|
|
|
import { IconButton } from '~/components/ui/IconButton';
|
2024-12-07 15:27:50 +00:00
|
|
|
import { providersList } from '~/lib/stores/settings';
|
|
|
|
import { db, getAll, deleteById } from '~/lib/persistence';
|
|
|
|
import { toast } from 'react-toastify';
|
|
|
|
import { useNavigate } from '@remix-run/react';
|
2024-12-07 15:53:33 +00:00
|
|
|
import commit from '~/commit.json';
|
2024-12-07 15:27:50 +00:00
|
|
|
import Cookies from 'js-cookie';
|
2024-12-08 19:26:18 +00:00
|
|
|
import styles from './Settings.module.scss';
|
|
|
|
import { Switch } from '~/components/ui/Switch';
|
2024-12-07 15:27:50 +00:00
|
|
|
|
|
|
|
interface SettingsProps {
|
|
|
|
open: boolean;
|
|
|
|
onClose: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
type TabType = 'chat-history' | 'providers' | 'features' | 'debug';
|
|
|
|
|
|
|
|
// Providers that support base URL configuration
|
|
|
|
const URL_CONFIGURABLE_PROVIDERS = ['Ollama', 'LMStudio', 'OpenAILike'];
|
|
|
|
|
2024-12-08 19:26:18 +00:00
|
|
|
export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
|
2024-12-07 15:27:50 +00:00
|
|
|
const navigate = useNavigate();
|
|
|
|
const [activeTab, setActiveTab] = useState<TabType>('chat-history');
|
|
|
|
const [isDebugEnabled, setIsDebugEnabled] = useState(false);
|
|
|
|
const [searchTerm, setSearchTerm] = useState('');
|
|
|
|
const [isDeleting, setIsDeleting] = useState(false);
|
2024-12-08 13:36:03 +00:00
|
|
|
const [isJustSayEnabled, setIsJustSayEnabled] = useState(false);
|
2024-12-07 15:27:50 +00:00
|
|
|
|
|
|
|
// Load base URLs from cookies
|
|
|
|
const [baseUrls, setBaseUrls] = useState(() => {
|
|
|
|
const savedUrls = Cookies.get('providerBaseUrls');
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
if (savedUrls) {
|
|
|
|
try {
|
|
|
|
return JSON.parse(savedUrls);
|
|
|
|
} catch (error) {
|
|
|
|
console.error('Failed to parse base URLs from cookies:', error);
|
|
|
|
return {
|
|
|
|
Ollama: 'http://localhost:11434',
|
|
|
|
LMStudio: 'http://localhost:1234',
|
|
|
|
OpenAILike: '',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
return {
|
|
|
|
Ollama: 'http://localhost:11434',
|
|
|
|
LMStudio: 'http://localhost:1234',
|
|
|
|
OpenAILike: '',
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
const handleBaseUrlChange = (provider: string, url: string) => {
|
2024-12-07 15:53:33 +00:00
|
|
|
setBaseUrls((prev: Record<string, string>) => {
|
2024-12-07 15:27:50 +00:00
|
|
|
const newUrls = { ...prev, [provider]: url };
|
|
|
|
Cookies.set('providerBaseUrls', JSON.stringify(newUrls));
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
return newUrls;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const tabs: { id: TabType; label: string; icon: string }[] = [
|
|
|
|
{ id: 'chat-history', label: 'Chat History', icon: 'i-ph:book' },
|
|
|
|
{ id: 'providers', label: 'Providers', icon: 'i-ph:key' },
|
|
|
|
{ id: 'features', label: 'Features', icon: 'i-ph:star' },
|
2024-12-07 15:53:33 +00:00
|
|
|
...(isDebugEnabled ? [{ id: 'debug' as TabType, label: 'Debug Tab', icon: 'i-ph:bug' }] : []),
|
2024-12-07 15:27:50 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// Load providers from cookies on mount
|
|
|
|
const [providers, setProviders] = useState(() => {
|
|
|
|
const savedProviders = Cookies.get('providers');
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
if (savedProviders) {
|
|
|
|
try {
|
|
|
|
const parsedProviders = JSON.parse(savedProviders);
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
// Merge saved enabled states with the base provider list
|
2024-12-07 15:53:33 +00:00
|
|
|
return providersList.map((provider) => ({
|
2024-12-07 15:27:50 +00:00
|
|
|
...provider,
|
2024-12-07 15:53:33 +00:00
|
|
|
isEnabled: parsedProviders[provider.name] || false,
|
2024-12-07 15:27:50 +00:00
|
|
|
}));
|
|
|
|
} catch (error) {
|
|
|
|
console.error('Failed to parse providers from cookies:', error);
|
|
|
|
}
|
|
|
|
}
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
return providersList;
|
|
|
|
});
|
|
|
|
|
2024-12-08 19:26:18 +00:00
|
|
|
const handleToggleProvider = (providerName: string, enabled: boolean) => {
|
2024-12-07 15:27:50 +00:00
|
|
|
setProviders((prevProviders) => {
|
|
|
|
const newProviders = prevProviders.map((provider) =>
|
2024-12-08 19:26:18 +00:00
|
|
|
provider.name === providerName ? { ...provider, isEnabled: enabled } : provider,
|
2024-12-07 15:27:50 +00:00
|
|
|
);
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
// Save to cookies
|
2024-12-07 15:53:33 +00:00
|
|
|
const enabledStates = newProviders.reduce(
|
|
|
|
(acc, provider) => ({
|
|
|
|
...acc,
|
|
|
|
[provider.name]: provider.isEnabled,
|
|
|
|
}),
|
|
|
|
{},
|
|
|
|
);
|
2024-12-07 15:27:50 +00:00
|
|
|
Cookies.set('providers', JSON.stringify(enabledStates));
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
return newProviders;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const filteredProviders = providers
|
2024-12-07 15:53:33 +00:00
|
|
|
.filter((provider) => provider.name.toLowerCase().includes(searchTerm.toLowerCase()))
|
2024-12-07 15:27:50 +00:00
|
|
|
.sort((a, b) => a.name.localeCompare(b.name));
|
|
|
|
|
|
|
|
const handleCopyToClipboard = () => {
|
|
|
|
const debugInfo = {
|
|
|
|
OS: navigator.platform,
|
|
|
|
Browser: navigator.userAgent,
|
|
|
|
ActiveFeatures: providers.filter((provider) => provider.isEnabled).map((provider) => provider.name),
|
|
|
|
BaseURLs: {
|
|
|
|
Ollama: process.env.REACT_APP_OLLAMA_URL,
|
|
|
|
OpenAI: process.env.REACT_APP_OPENAI_URL,
|
|
|
|
LMStudio: process.env.REACT_APP_LM_STUDIO_URL,
|
|
|
|
},
|
|
|
|
Version: versionHash,
|
|
|
|
};
|
|
|
|
navigator.clipboard.writeText(JSON.stringify(debugInfo, null, 2)).then(() => {
|
|
|
|
alert('Debug information copied to clipboard!');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const downloadAsJson = (data: any, filename: string) => {
|
|
|
|
const blob = new Blob([JSON.stringify(data, null, 2)], { type: 'application/json' });
|
|
|
|
const url = URL.createObjectURL(blob);
|
|
|
|
const link = document.createElement('a');
|
|
|
|
link.href = url;
|
|
|
|
link.download = filename;
|
|
|
|
document.body.appendChild(link);
|
|
|
|
link.click();
|
|
|
|
document.body.removeChild(link);
|
|
|
|
URL.revokeObjectURL(url);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleDeleteAllChats = async () => {
|
|
|
|
if (!db) {
|
|
|
|
toast.error('Database is not available');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
setIsDeleting(true);
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
const allChats = await getAll(db);
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
// Delete all chats one by one
|
2024-12-07 15:53:33 +00:00
|
|
|
await Promise.all(allChats.map((chat) => deleteById(db!, chat.id)));
|
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
toast.success('All chats deleted successfully');
|
|
|
|
navigate('/', { replace: true });
|
|
|
|
} catch (error) {
|
|
|
|
toast.error('Failed to delete chats');
|
|
|
|
console.error(error);
|
|
|
|
} finally {
|
|
|
|
setIsDeleting(false);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleExportAllChats = async () => {
|
|
|
|
if (!db) {
|
|
|
|
toast.error('Database is not available');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const allChats = await getAll(db);
|
|
|
|
const exportData = {
|
|
|
|
chats: allChats,
|
|
|
|
exportDate: new Date().toISOString(),
|
|
|
|
};
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-07 15:27:50 +00:00
|
|
|
downloadAsJson(exportData, `all-chats-${new Date().toISOString()}.json`);
|
|
|
|
toast.success('Chats exported successfully');
|
|
|
|
} catch (error) {
|
|
|
|
toast.error('Failed to export chats');
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const versionHash = commit.commit; // Get the version hash from commit.json
|
|
|
|
|
|
|
|
return (
|
|
|
|
<RadixDialog.Root open={open}>
|
|
|
|
<RadixDialog.Portal>
|
2024-12-08 19:26:18 +00:00
|
|
|
<RadixDialog.Overlay asChild onClick={onClose}>
|
2024-12-07 15:27:50 +00:00
|
|
|
<motion.div
|
2024-12-08 19:30:41 +00:00
|
|
|
className="bg-black/50 fixed inset-0 z-max backdrop-blur-sm"
|
2024-12-07 15:27:50 +00:00
|
|
|
initial="closed"
|
|
|
|
animate="open"
|
|
|
|
exit="closed"
|
|
|
|
variants={dialogBackdropVariants}
|
|
|
|
/>
|
|
|
|
</RadixDialog.Overlay>
|
|
|
|
<RadixDialog.Content asChild>
|
|
|
|
<motion.div
|
2024-12-08 14:18:18 +00:00
|
|
|
className="fixed top-[50%] left-[50%] z-max h-[85vh] w-[90vw] max-w-[900px] translate-x-[-50%] translate-y-[-50%] border border-bolt-elements-borderColor rounded-lg shadow-lg focus:outline-none overflow-hidden"
|
2024-12-07 15:27:50 +00:00
|
|
|
initial="closed"
|
|
|
|
animate="open"
|
|
|
|
exit="closed"
|
|
|
|
variants={dialogVariants}
|
|
|
|
>
|
|
|
|
<div className="flex h-full">
|
2024-12-08 19:26:18 +00:00
|
|
|
<div
|
|
|
|
className={classNames(
|
|
|
|
'w-48 border-r border-bolt-elements-borderColor bg-bolt-elements-background-depth-1 p-4 flex flex-col justify-between',
|
|
|
|
styles['settings-tabs'],
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<DialogTitle className="flex-shrink-0 text-lg font-semibold text-bolt-elements-textPrimary mb-2">
|
|
|
|
Settings
|
|
|
|
</DialogTitle>
|
2024-12-07 15:27:50 +00:00
|
|
|
{tabs.map((tab) => (
|
|
|
|
<button
|
|
|
|
key={tab.id}
|
|
|
|
onClick={() => setActiveTab(tab.id)}
|
2024-12-08 19:26:18 +00:00
|
|
|
className={classNames(activeTab === tab.id ? styles.active : '')}
|
2024-12-07 15:27:50 +00:00
|
|
|
>
|
|
|
|
<div className={tab.icon} />
|
|
|
|
{tab.label}
|
|
|
|
</button>
|
|
|
|
))}
|
|
|
|
<div className="mt-auto flex flex-col gap-2">
|
|
|
|
<a
|
|
|
|
href="https://github.com/coleam00/bolt.new-any-llm"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
2024-12-08 19:26:18 +00:00
|
|
|
className={classNames(styles['settings-button'], 'flex items-center gap-2')}
|
2024-12-07 15:27:50 +00:00
|
|
|
>
|
2024-12-08 13:36:03 +00:00
|
|
|
<div className="i-ph:github-logo" />
|
2024-12-07 15:27:50 +00:00
|
|
|
GitHub
|
|
|
|
</a>
|
|
|
|
<a
|
|
|
|
href="https://coleam00.github.io/bolt.new-any-llm"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
2024-12-08 19:26:18 +00:00
|
|
|
className={classNames(styles['settings-button'], 'flex items-center gap-2')}
|
2024-12-07 15:27:50 +00:00
|
|
|
>
|
2024-12-08 13:36:03 +00:00
|
|
|
<div className="i-ph:book" />
|
2024-12-07 15:27:50 +00:00
|
|
|
Docs
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-12-08 19:27:58 +00:00
|
|
|
<div className="flex-1 flex flex-col p-8 pt-10 bg-bolt-elements-background-depth-2">
|
2024-12-07 15:27:50 +00:00
|
|
|
<div className="flex-1 overflow-y-auto">
|
2024-12-07 15:53:33 +00:00
|
|
|
{activeTab === 'chat-history' && (
|
2024-12-07 15:27:50 +00:00
|
|
|
<div className="p-4">
|
2024-12-08 14:18:18 +00:00
|
|
|
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Chat History</h3>
|
2024-12-07 15:27:50 +00:00
|
|
|
<button
|
|
|
|
onClick={handleExportAllChats}
|
2024-12-08 19:26:18 +00:00
|
|
|
className={classNames(
|
|
|
|
'bg-bolt-elements-button-primary-background',
|
|
|
|
'rounded-lg px-4 py-2 mb-4 transition-colors duration-200',
|
|
|
|
'hover:bg-bolt-elements-button-primary-backgroundHover',
|
|
|
|
'text-bolt-elements-button-primary-text',
|
|
|
|
)}
|
2024-12-07 15:27:50 +00:00
|
|
|
>
|
|
|
|
Export All Chats
|
|
|
|
</button>
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-08 19:26:18 +00:00
|
|
|
<div
|
|
|
|
className={classNames(
|
|
|
|
'text-bolt-elements-textPrimary rounded-lg py-4 mb-4',
|
|
|
|
styles['settings-danger-area'],
|
|
|
|
)}
|
|
|
|
>
|
2024-12-07 15:27:50 +00:00
|
|
|
<h4 className="font-semibold">Danger Area</h4>
|
|
|
|
<p className="mb-2">This action cannot be undone!</p>
|
|
|
|
<button
|
|
|
|
onClick={handleDeleteAllChats}
|
|
|
|
disabled={isDeleting}
|
|
|
|
className={classNames(
|
2024-12-08 19:26:18 +00:00
|
|
|
'bg-bolt-elements-button-danger-background',
|
|
|
|
'rounded-lg px-4 py-2 transition-colors duration-200',
|
|
|
|
isDeleting
|
|
|
|
? 'opacity-50 cursor-not-allowed'
|
|
|
|
: 'hover:bg-bolt-elements-button-danger-backgroundHover',
|
|
|
|
'text-bolt-elements-button-danger-text',
|
2024-12-07 15:27:50 +00:00
|
|
|
)}
|
|
|
|
>
|
|
|
|
{isDeleting ? 'Deleting...' : 'Delete All Chats'}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{activeTab === 'providers' && (
|
|
|
|
<div className="p-4">
|
2024-12-08 19:26:18 +00:00
|
|
|
<div className="flex mb-4">
|
2024-12-07 22:34:50 +00:00
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
placeholder="Search providers..."
|
|
|
|
value={searchTerm}
|
|
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
2024-12-08 19:26:18 +00:00
|
|
|
className="w-full bg-white dark:bg-bolt-elements-background-depth-4 relative px-2 py-1.5 rounded-md focus:outline-none placeholder-bolt-elements-textTertiary text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary border border-bolt-elements-borderColor"
|
2024-12-07 22:34:50 +00:00
|
|
|
/>
|
|
|
|
</div>
|
2024-12-07 15:27:50 +00:00
|
|
|
{filteredProviders.map((provider) => (
|
|
|
|
<div
|
|
|
|
key={provider.name}
|
2024-12-08 19:26:18 +00:00
|
|
|
className="flex flex-col mb-2 provider-item hover:bg-bolt-elements-bg-depth-3 p-4 rounded-lg border border-bolt-elements-borderColor "
|
2024-12-07 15:27:50 +00:00
|
|
|
>
|
|
|
|
<div className="flex items-center justify-between mb-2">
|
2024-12-08 14:18:18 +00:00
|
|
|
<span className="text-bolt-elements-textPrimary">{provider.name}</span>
|
2024-12-08 19:26:18 +00:00
|
|
|
<Switch
|
|
|
|
className="ml-auto"
|
|
|
|
checked={provider.isEnabled}
|
|
|
|
onCheckedChange={(enabled) => handleToggleProvider(provider.name, enabled)}
|
|
|
|
/>
|
2024-12-07 15:27:50 +00:00
|
|
|
</div>
|
|
|
|
{/* Base URL input for configurable providers */}
|
|
|
|
{URL_CONFIGURABLE_PROVIDERS.includes(provider.name) && provider.isEnabled && (
|
|
|
|
<div className="mt-2">
|
2024-12-08 14:18:18 +00:00
|
|
|
<label className="block text-sm text-bolt-elements-textSecondary mb-1">Base URL:</label>
|
2024-12-07 15:27:50 +00:00
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
value={baseUrls[provider.name]}
|
|
|
|
onChange={(e) => handleBaseUrlChange(provider.name, e.target.value)}
|
|
|
|
placeholder={`Enter ${provider.name} base URL`}
|
2024-12-08 19:26:18 +00:00
|
|
|
className="w-full bg-white dark:bg-bolt-elements-background-depth-4 relative px-2 py-1.5 rounded-md focus:outline-none placeholder-bolt-elements-textTertiary text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary border border-bolt-elements-borderColor"
|
2024-12-07 15:27:50 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{activeTab === 'features' && (
|
2024-12-08 14:18:18 +00:00
|
|
|
<div className="p-4 bg-bolt-elements-bg-depth-2 border border-bolt-elements-borderColor rounded-lg mb-4">
|
|
|
|
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Feature Settings</h3>
|
2024-12-07 15:27:50 +00:00
|
|
|
<div className="flex items-center justify-between mb-2">
|
2024-12-08 14:18:18 +00:00
|
|
|
<span className="text-bolt-elements-textPrimary">Debug Info</span>
|
2024-12-07 15:27:50 +00:00
|
|
|
<label className="relative inline-flex items-center cursor-pointer">
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
className="sr-only"
|
|
|
|
checked={isDebugEnabled}
|
|
|
|
onChange={() => setIsDebugEnabled(!isDebugEnabled)}
|
|
|
|
/>
|
2024-12-08 19:26:18 +00:00
|
|
|
<div
|
|
|
|
className={classNames(
|
|
|
|
'settings-toggle__track',
|
|
|
|
isDebugEnabled ? 'settings-toggle__track--enabled' : 'settings-toggle__track--disabled',
|
|
|
|
)}
|
|
|
|
></div>
|
|
|
|
<div
|
|
|
|
className={classNames(
|
|
|
|
'settings-toggle__thumb',
|
|
|
|
isDebugEnabled ? 'settings-toggle__thumb--enabled' : '',
|
|
|
|
)}
|
|
|
|
></div>
|
2024-12-08 13:36:03 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{activeTab === 'features' && (
|
2024-12-08 14:18:18 +00:00
|
|
|
<div className="p-4 bg-bolt-elements-bg-depth-2 border border-bolt-elements-borderColor rounded-lg">
|
|
|
|
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Experimental Area</h3>
|
2024-12-08 13:36:03 +00:00
|
|
|
<div className="flex items-center justify-between mb-2">
|
2024-12-08 14:18:18 +00:00
|
|
|
<span className="text-bolt-elements-textPrimary">Replace with local models</span>
|
2024-12-08 13:36:03 +00:00
|
|
|
<label className="relative inline-flex items-center cursor-pointer">
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
className="sr-only"
|
|
|
|
checked={isJustSayEnabled}
|
|
|
|
onChange={() => setIsJustSayEnabled(!isJustSayEnabled)}
|
|
|
|
/>
|
2024-12-08 19:26:18 +00:00
|
|
|
<div
|
|
|
|
className={classNames(
|
|
|
|
'settings-toggle__track',
|
|
|
|
isJustSayEnabled ? 'settings-toggle__track--enabled' : 'settings-toggle__track--disabled',
|
|
|
|
)}
|
|
|
|
></div>
|
|
|
|
<div
|
|
|
|
className={classNames(
|
|
|
|
'settings-toggle__thumb',
|
|
|
|
isJustSayEnabled ? 'settings-toggle__thumb--enabled' : '',
|
|
|
|
)}
|
|
|
|
></div>
|
2024-12-07 15:27:50 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{activeTab === 'debug' && isDebugEnabled && (
|
|
|
|
<div className="p-4">
|
2024-12-08 14:18:18 +00:00
|
|
|
<h3 className="text-lg font-medium text-bolt-elements-textPrimary mb-4">Debug Tab</h3>
|
2024-12-07 15:27:50 +00:00
|
|
|
<button
|
|
|
|
onClick={handleCopyToClipboard}
|
|
|
|
className="bg-blue-500 text-white rounded-lg px-4 py-2 hover:bg-blue-600 mb-4 transition-colors duration-200"
|
|
|
|
>
|
|
|
|
Copy to Clipboard
|
|
|
|
</button>
|
2024-12-07 15:53:33 +00:00
|
|
|
|
2024-12-08 14:18:18 +00:00
|
|
|
<h4 className="text-md font-medium text-bolt-elements-textPrimary">System Information</h4>
|
|
|
|
<p className="text-bolt-elements-textSecondary">OS: {navigator.platform}</p>
|
|
|
|
<p className="text-bolt-elements-textSecondary">Browser: {navigator.userAgent}</p>
|
2024-12-07 15:27:50 +00:00
|
|
|
|
2024-12-08 14:18:18 +00:00
|
|
|
<h4 className="text-md font-medium text-bolt-elements-textPrimary mt-4">Active Features</h4>
|
2024-12-07 15:27:50 +00:00
|
|
|
<ul>
|
|
|
|
{providers
|
|
|
|
.filter((provider) => provider.isEnabled)
|
|
|
|
.map((provider) => (
|
2024-12-08 14:18:18 +00:00
|
|
|
<li key={provider.name} className="text-bolt-elements-textSecondary">
|
2024-12-07 15:53:33 +00:00
|
|
|
{provider.name}
|
|
|
|
</li>
|
2024-12-07 15:27:50 +00:00
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
|
2024-12-08 14:18:18 +00:00
|
|
|
<h4 className="text-md font-medium text-bolt-elements-textPrimary mt-4">Base URLs</h4>
|
2024-12-07 15:27:50 +00:00
|
|
|
<ul>
|
2024-12-08 14:18:18 +00:00
|
|
|
<li className="text-bolt-elements-textSecondary">Ollama: {process.env.REACT_APP_OLLAMA_URL}</li>
|
|
|
|
<li className="text-bolt-elements-textSecondary">OpenAI: {process.env.REACT_APP_OPENAI_URL}</li>
|
2024-12-08 19:26:18 +00:00
|
|
|
<li className="text-bolt-elements-textSecondary">
|
|
|
|
LM Studio: {process.env.REACT_APP_LM_STUDIO_URL}
|
|
|
|
</li>
|
2024-12-07 15:27:50 +00:00
|
|
|
</ul>
|
|
|
|
|
2024-12-08 14:18:18 +00:00
|
|
|
<h4 className="text-md font-medium text-bolt-elements-textPrimary mt-4">Version Information</h4>
|
|
|
|
<p className="text-bolt-elements-textSecondary">Version Hash: {versionHash}</p>
|
2024-12-07 15:27:50 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<RadixDialog.Close asChild onClick={onClose}>
|
|
|
|
<IconButton icon="i-ph:x" className="absolute top-[10px] right-[10px]" />
|
|
|
|
</RadixDialog.Close>
|
|
|
|
</motion.div>
|
|
|
|
</RadixDialog.Content>
|
|
|
|
</RadixDialog.Portal>
|
|
|
|
</RadixDialog.Root>
|
|
|
|
);
|
2024-12-07 15:53:33 +00:00
|
|
|
};
|