mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* feat: Minor design changes to mimic OpenAI's latest login page * fix: Optimize ThemeSelector for mobile * fix: Use a svg for the logo for transperency in dark mode * feat: Update styles for Registration * feat: Update error colors for login & registration * fix: remove medium font * wip: Dropdown menu * feat: Update dropdown to match ChatGPT * feat: Improve rounding and padding * feat: Add UI Updates to RequestPasswordReset, PasswordRest and increase width for theme dropdown * fix: Modify the My Files modal's width to not touch the screen * feat: fix scrolling for dropdown, and make border width lighter * feat: Match popup menu design to OpenAI (p1/2) * fix+feat: fix dark mode, add user email, add lighter borders * fix: Add border color on focus of chat input. * feat: Move Export Conversation to a seperate button (testing) * fix: Properly center Login, Registration, Reset Password Flow * fix: Border colors on dark mode for settings modal * feat: Improve wording for settings menu * fix: Optimize settings modal for mobile and fix height for modal * feat: Optimize for desktop * fix: make TooltipTrigger asChild of button, improve settings mobile responsiveness * feat: Handle dropdowns properly TODO: Make height dynamic, fix dark mode colors * fix: input styles fix: make endpoint icon smaller * feat: Update UI to Match ChatGPT Style - Updated the dropdown styles to match the aesthetic of ChatGPT. - Decreased spacing within the conversation area for cleanliness. - Replaced the current archive icon with the ChatGPT's icon. * fix: fix colors for EditMenuButton & ArchiveButton for dark mode and light mode * fix: ui fixes * fix: Fix Conversation UI Bugs * fix: transparency of HoverToggle to make buttons not visible * fix: dark mode HoverToggle & compress menu item spacing * fix: responsiveness of export icon * fix: first mentionitem is set to always be highlighted * fix: improve hover state to text instead of bg * feat: Update icons to ChatGPT Style * fix: dark mode hover for PanelFileCell * fix: change navlinks z-index to 100 * fix: hover states for DataTable * feat: Move ExportButton to seperate component * chore: remove unused imports
91 lines
2.9 KiB
TypeScript
91 lines
2.9 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { useCreatePresetMutation } from 'librechat-data-provider/react-query';
|
|
import type { TEditPresetProps } from '~/common';
|
|
import {
|
|
cn,
|
|
defaultTextPropsLabel,
|
|
removeFocusOutlines,
|
|
cleanupPreset,
|
|
defaultTextProps,
|
|
} from '~/utils/';
|
|
import DialogTemplate from '~/components/ui/DialogTemplate';
|
|
import { Dialog, Input, Label } from '~/components/ui/';
|
|
import { NotificationSeverity } from '~/common';
|
|
import { useToastContext } from '~/Providers';
|
|
import { useLocalize } from '~/hooks';
|
|
|
|
const SaveAsPresetDialog = ({ open, onOpenChange, preset }: TEditPresetProps) => {
|
|
const [title, setTitle] = useState<string>(preset?.title || 'My Preset');
|
|
const createPresetMutation = useCreatePresetMutation();
|
|
const { showToast } = useToastContext();
|
|
const localize = useLocalize();
|
|
|
|
const submitPreset = () => {
|
|
const _preset = cleanupPreset({
|
|
preset: {
|
|
...preset,
|
|
title,
|
|
},
|
|
});
|
|
|
|
const toastTitle = _preset.title
|
|
? `\`${_preset.title}\``
|
|
: localize('com_endpoint_preset_title');
|
|
|
|
createPresetMutation.mutate(_preset, {
|
|
onSuccess: () => {
|
|
showToast({
|
|
message: `${toastTitle} ${localize('com_endpoint_preset_saved')}`,
|
|
});
|
|
},
|
|
onError: () => {
|
|
showToast({
|
|
message: localize('com_endpoint_preset_save_error'),
|
|
severity: NotificationSeverity.ERROR,
|
|
});
|
|
},
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
setTitle(preset?.title || localize('com_endpoint_my_preset'));
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [open]);
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogTemplate
|
|
title={localize('com_endpoint_save_as_preset')}
|
|
className="w-11/12 sm:w-1/4"
|
|
showCloseButton={false}
|
|
main={
|
|
<div className="flex w-full flex-col items-center gap-2">
|
|
<div className="grid w-full items-center gap-2">
|
|
<Label htmlFor="chatGptLabel" className="text-left text-sm font-medium">
|
|
{localize('com_endpoint_preset_name')}
|
|
</Label>
|
|
<Input
|
|
id="chatGpt"
|
|
value={title || ''}
|
|
onChange={(e) => setTitle(e.target.value || '')}
|
|
placeholder="Set a custom name for this preset"
|
|
className={cn(
|
|
defaultTextProps,
|
|
'flex h-10 max-h-10 w-full resize-none border-gray-100 px-3 py-2 dark:border-gray-600',
|
|
removeFocusOutlines,
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
}
|
|
selection={{
|
|
selectHandler: submitPreset,
|
|
selectClasses: 'bg-green-500 hover:bg-green-600 dark:hover:bg-green-600 text-white',
|
|
selectText: localize('com_ui_save'),
|
|
}}
|
|
/>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default SaveAsPresetDialog;
|