Compare commits

..

No commits in common. "ddaf7638ace7b5512f730c306f41a6bf2f3584f1" and "289ff78b60a61eba9285be10e66182cfec6fba43" have entirely different histories.

10 changed files with 199 additions and 230 deletions

View file

@ -1,14 +1,11 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
// Define the available model options const Models: React.FC = () => {
const offlineModels = [ const modelOptions = [
'Offline Fast', 'Offline Fast',
'Offline Fast (FOSS)', 'Offline Fast (FOSS)',
'Offline Slow', 'Offline Slow',
'Offline Slow (FOSS)', 'Offline Slow (FOSS)',
];
const onlineModels = [
'Online (La Plateforme)', 'Online (La Plateforme)',
'Online (FOSS) (La Plateforme)', 'Online (FOSS) (La Plateforme)',
'Online Cheap (OpenAI)', 'Online Cheap (OpenAI)',
@ -19,19 +16,8 @@ const onlineModels = [
'Online Expensive (Google)', 'Online Expensive (Google)',
]; ];
const fossModels = [
'Offline Fast (FOSS)',
'Offline Slow (FOSS)',
'Online (FOSS) (La Plateforme)',
];
// Define the properties passed to the Models component
interface ModelsProps {
selectedOption: string; // Privacy setting: "Offline", "AI Online", "None"
}
const Models: React.FC<ModelsProps> = ({ selectedOption }) => {
const [selectedModel, setSelectedModel] = useState<string>(() => { const [selectedModel, setSelectedModel] = useState<string>(() => {
// Load the selected model from localStorage on initial render
return localStorage.getItem('selectedModel') || 'Offline Fast'; return localStorage.getItem('selectedModel') || 'Offline Fast';
}); });
@ -40,45 +26,31 @@ const Models: React.FC<ModelsProps> = ({ selectedOption }) => {
setSelectedModel(newModel); setSelectedModel(newModel);
}; };
const isOfflineModel = (model: string) => offlineModels.includes(model); const isOfflineModel = (model: string) => {
const isOnlineModel = (model: string) => onlineModels.includes(model); return model.includes('Offline');
const isFossModel = (model: string) => fossModels.includes(model); };
// Save selected model to localStorage whenever it changes
useEffect(() => { useEffect(() => {
localStorage.setItem('selectedModel', selectedModel); localStorage.setItem('selectedModel', selectedModel);
}, [selectedModel]); }, [selectedModel]);
const filteredModels = (() => {
switch (selectedOption) {
case 'Offline':
return offlineModels; // Show only offline models
case 'AI Online':
return onlineModels; // Show only online models
default:
return [...offlineModels, ...onlineModels]; // Show all models
}
})();
return ( return (
<div className="model-background"> <div className="model-background">
<div className="models"> <div className="models">
<div className="title"> <div className="titel">
<h3>Different AI models</h3> <h1>Different AI models</h1>
</div> </div>
{/* Model Selection Dropdown */}
<div className="model-dropdown"> <div className="model-dropdown">
<label htmlFor="model-select">Select AI Model:</label> <label htmlFor="model-select">Select AI Model:</label>
<select id="model-select" value={selectedModel} onChange={handleModelChange}> <select id="model-select" value={selectedModel} onChange={handleModelChange}>
{filteredModels.map((model) => ( {modelOptions.map((model) => (
<option key={model} value={model}> <option key={model} value={model}>
{model} {model}
</option> </option>
))} ))}
</select> </select>
</div> </div>
{/* Model Grid with Cards */}
<div className="grid"> <div className="grid">
<button className="code-model model-box"> <button className="code-model model-box">
<div className="overlay"> <div className="overlay">

View file

@ -6,17 +6,7 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
const getItemFromLocalStorage = (key: string) => { const getItemFromLocalStorage = (key: string) => {
const item = localStorage.getItem(key); const item = localStorage.getItem(key);
return item ? JSON.parse(item) : false; // Default to false if item is null
if (item) {
try {
return JSON.parse(item); // Attempt to parse the item
} catch (e) {
console.error(`Error parsing JSON for key "${key}":`, e);
return false; // Return false if parsing fails
}
}
return false; // Default to false if item is null or empty
}; };
// Active section // Active section
@ -34,7 +24,8 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
const [timeZone, setTimeZone] = useState(() => localStorage.getItem('timeZone') || 'GMT'); const [timeZone, setTimeZone] = useState(() => localStorage.getItem('timeZone') || 'GMT');
// Online AI and chat history settings // Online AI and chat history settings
const [selectedOption, setSelectedOption] = useState('Offline'); // Default to 'Offline' // State declarations
const [disableOnlineAI, setDisableOnlineAI] = useState(() => getItemFromLocalStorage('disableOnlineAI'));
const [disableChatHistory, setDisableChatHistory] = useState(() => getItemFromLocalStorage('disableChatHistory')); const [disableChatHistory, setDisableChatHistory] = useState(() => getItemFromLocalStorage('disableChatHistory'));
const [disableAIMemory, setDisableAIMemory] = useState(() => getItemFromLocalStorage('disableAIMemory')); const [disableAIMemory, setDisableAIMemory] = useState(() => getItemFromLocalStorage('disableAIMemory'));
const [openSourceMode, setOpenSourceMode] = useState(() => getItemFromLocalStorage('openSourceMode')); const [openSourceMode, setOpenSourceMode] = useState(() => getItemFromLocalStorage('openSourceMode'));
@ -67,7 +58,7 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
const [inputBorderColor, setInputBorderColor] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--input-border-color').trim()); const [inputBorderColor, setInputBorderColor] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--input-border-color').trim());
const [fontFamily, setFontFamily] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--font-family').trim()); const [fontFamily, setFontFamily] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--font-family').trim());
const [fontSize, setFontSize] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--font-size').trim()); const [fontSize, setFontSize] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--font-size').trim());
const [burgerMenu, setBurgerMenu] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--burger-menu-background-color').trim()); const [burgerMenu, setBurgerMenu] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--burger-menu-background-color:').trim());
// Theme selection // Theme selection
const [selectedTheme, setSelectedTheme] = useState(() => localStorage.getItem('selectedTheme') || 'default'); const [selectedTheme, setSelectedTheme] = useState(() => localStorage.getItem('selectedTheme') || 'default');
@ -78,112 +69,162 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
const [anthropic, setAnthropic] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--online-cheap-anthropic').trim()); const [anthropic, setAnthropic] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--online-cheap-anthropic').trim());
const [google, setGoogle] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--online-cheap-google').trim()); const [google, setGoogle] = useState(() => getComputedStyle(document.documentElement).getPropertyValue('--online-cheap-google').trim());
// Effect hooks to update localStorage whenever any state changes // Effect hooks to update localStorage whenever any state changes
useEffect(() => { useEffect(() => {
const settings = { localStorage.setItem('activeSection', activeSection);
activeSection, }, [activeSection]);
preferredLanguage,
preferredCurrency,
dateFormat,
timeFormat,
timeZone,
selectedOption,
disableChatHistory,
disableAIMemory,
openSourceMode,
newName,
newEmail,
newPassword,
preferredMeasurement,
backgroundColor,
textColor,
inputBackgroundColor,
inputButtonColor,
inputButtonHoverColor,
userMessageBackgroundColor,
userMessageTextColor,
aiMessageBackgroundColor,
aiMessageTextColor,
buttonBackgroundColor,
buttonHoverBackgroundColor,
modelsBackgroundColor,
historyBackgroundColor,
leftPanelBackgroundColor,
conversationBackgroundColor,
popUpTextColor,
inputBorderColor,
fontFamily,
fontSize,
burgerMenu,
selectedTheme,
laPlateforme,
openAI,
anthropic,
google,
};
// Update local storage
for (const [key, value] of Object.entries(settings)) {
if (typeof value === 'boolean') {
localStorage.setItem(key, JSON.stringify(value));
} else {
localStorage.setItem(key, value);
}
}
}, [
activeSection,
preferredLanguage,
preferredCurrency,
dateFormat,
timeFormat,
timeZone,
selectedOption,
disableChatHistory,
disableAIMemory,
openSourceMode,
newName,
newEmail,
newPassword,
preferredMeasurement,
backgroundColor,
textColor,
inputBackgroundColor,
inputButtonColor,
inputButtonHoverColor,
userMessageBackgroundColor,
userMessageTextColor,
aiMessageBackgroundColor,
aiMessageTextColor,
buttonBackgroundColor,
buttonHoverBackgroundColor,
modelsBackgroundColor,
historyBackgroundColor,
leftPanelBackgroundColor,
conversationBackgroundColor,
popUpTextColor,
inputBorderColor,
fontFamily,
fontSize,
burgerMenu,
selectedTheme,
laPlateforme,
openAI,
anthropic,
google,
]);
useEffect(() => { useEffect(() => {
const savedOption = localStorage.getItem('radioSelection'); localStorage.setItem('preferredLanguage', preferredLanguage);
if (savedOption) { }, [preferredLanguage]);
setSelectedOption(savedOption); // Set saved selection
}
}, []);
const handleRadioChange = (newValue: string) => { useEffect(() => {
setSelectedOption(newValue); // Update the state with the selected option localStorage.setItem('preferredCurrency', preferredCurrency);
localStorage.setItem('radioSelection', newValue); // Save the selection for persistence }, [preferredCurrency]);
};
useEffect(() => {
localStorage.setItem('dateFormat', dateFormat);
}, [dateFormat]);
useEffect(() => {
localStorage.setItem('timeFormat', timeFormat);
}, [timeFormat]);
useEffect(() => {
localStorage.setItem('timeZone', timeZone);
}, [timeZone]);
useEffect(() => {
localStorage.setItem('disableOnlineAI', JSON.stringify(disableOnlineAI));
}, [disableOnlineAI]);
useEffect(() => {
localStorage.setItem('disableChatHistory', JSON.stringify(disableChatHistory));
}, [disableChatHistory]);
useEffect(() => {
localStorage.setItem('disableAIMemory', JSON.stringify(disableAIMemory));
}, [disableAIMemory]);
useEffect(() => {
localStorage.setItem('openSourceMode', JSON.stringify(openSourceMode));
}, [openSourceMode]);
useEffect(() => {
localStorage.setItem('newName', newName);
}, [newName]);
useEffect(() => {
localStorage.setItem('newEmail', newEmail);
}, [newEmail]);
useEffect(() => {
localStorage.setItem('newPassword', newPassword);
}, [newPassword]);
useEffect(() => {
localStorage.setItem('preferredMeasurement', preferredMeasurement);
}, [preferredMeasurement]);
useEffect(() => {
localStorage.setItem('backgroundColor', backgroundColor);
}, [backgroundColor]);
useEffect(() => {
localStorage.setItem('textColor', textColor);
}, [textColor]);
useEffect(() => {
localStorage.setItem('inputBackgroundColor', inputBackgroundColor);
}, [inputBackgroundColor]);
useEffect(() => {
localStorage.setItem('inputButtonColor', inputButtonColor);
}, [inputButtonColor]);
useEffect(() => {
localStorage.setItem('inputButtonHoverColor', inputButtonHoverColor);
}, [inputButtonHoverColor]);
useEffect(() => {
localStorage.setItem('userMessageBackgroundColor', userMessageBackgroundColor);
}, [userMessageBackgroundColor]);
useEffect(() => {
localStorage.setItem('userMessageTextColor', userMessageTextColor);
}, [userMessageTextColor]);
useEffect(() => {
localStorage.setItem('aiMessageBackgroundColor', aiMessageBackgroundColor);
}, [aiMessageBackgroundColor]);
useEffect(() => {
localStorage.setItem('aiMessageTextColor', aiMessageTextColor);
}, [aiMessageTextColor]);
useEffect(() => {
localStorage.setItem('buttonBackgroundColor', buttonBackgroundColor);
}, [buttonBackgroundColor]);
useEffect(() => {
localStorage.setItem('buttonHoverBackgroundColor', buttonHoverBackgroundColor);
}, [buttonHoverBackgroundColor]);
useEffect(() => {
localStorage.setItem('modelsBackgroundColor', modelsBackgroundColor);
}, [modelsBackgroundColor]);
useEffect(() => {
localStorage.setItem('historyBackgroundColor', historyBackgroundColor);
}, [historyBackgroundColor]);
useEffect(() => {
localStorage.setItem('leftPanelBackgroundColor', leftPanelBackgroundColor);
}, [leftPanelBackgroundColor]);
useEffect(() => {
localStorage.setItem('conversationBackgroundColor', conversationBackgroundColor);
}, [conversationBackgroundColor]);
useEffect(() => {
localStorage.setItem('popUpTextColor', popUpTextColor);
}, [popUpTextColor]);
useEffect(() => {
localStorage.setItem('inputBorderColor', inputBorderColor);
}, [inputBorderColor]);
useEffect(() => {
localStorage.setItem('fontFamily', fontFamily);
}, [fontFamily]);
useEffect(() => {
localStorage.setItem('fontSize', fontSize);
}, [fontSize]);
useEffect(() => {
localStorage.setItem('burgerMenu', burgerMenu);
}, [fontSize]);
useEffect(() => {
localStorage.setItem('selectedTheme', selectedTheme);
}, [selectedTheme]);
useEffect(() => {
localStorage.setItem('laPlateforme', laPlateforme);
}, [laPlateforme]);
useEffect(() => {
localStorage.setItem('openAI', openAI);
}, [openAI]);
useEffect(() => {
localStorage.setItem('anthropic', anthropic);
}, [anthropic]);
useEffect(() => {
localStorage.setItem('google', google);
}, [google]);
// Apply imported settings to the CSS variables // Apply imported settings to the CSS variables
const applySettings = (settings: any) => { const applySettings = (settings: any) => {
@ -398,33 +439,16 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
return ( return (
<div className="settings-section"> <div className="settings-section">
<h2>Privacy Settings</h2> <h2>Privacy Settings</h2>
{/* AI Mode Radio Options */}
<div className="settings-option"> <div className="settings-option">
<p>Disable Options:</p> <label>
<div className="slider"> <input
<div type="checkbox"
className={`slider-option ${selectedOption === 'Offline' ? 'active' : ''}`} checked={disableOnlineAI}
onClick={() => handleRadioChange('Offline')} // Handle selection onChange={() => setDisableOnlineAI(!disableOnlineAI)}
> />
Offline tools Disable Online AI
</label>
</div> </div>
<div
className={`slider-option ${selectedOption === 'AI Online' ? 'active' : ''}`}
onClick={() => handleRadioChange('AI Online')}
>
Online tools
</div>
<div
className={`slider-option ${selectedOption === 'None' ? 'active' : ''}`}
onClick={() => handleRadioChange('None')}
>
None
</div>
</div>
</div>
{/* Disable Chat History Checkbox */}
<div className="settings-option"> <div className="settings-option">
<label> <label>
<input <input
@ -435,8 +459,6 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
Disable Chat History Disable Chat History
</label> </label>
</div> </div>
{/* Disable AI Memory Checkbox */}
<div className="settings-option"> <div className="settings-option">
<label> <label>
<input <input
@ -919,7 +941,7 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
dateFormat, dateFormat,
timeFormat, timeFormat,
timeZone, timeZone,
selectedOption, disableOnlineAI,
disableChatHistory, disableChatHistory,
disableAIMemory, disableAIMemory,
openSourceMode, openSourceMode,

View file

@ -160,28 +160,3 @@
padding: 10px; padding: 10px;
margin: 10px; margin: 10px;
} }
.slider {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.slider-option {
cursor: pointer;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
transition: background-color 0.3s;
}
.slider-option.active {
background-color: #007bff; /* Change to your active color */
color: white;
border-color: #007bff;
}
input[type="radio"] {
display: none; /* Hide the default radio buttons */
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 392 KiB

After

Width:  |  Height:  |  Size: 555 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB