mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 18:00:15 +01:00
* inital Tooltip implementation and test * style(tooltip): L/R sidePanel and Nav * style(tooltip): unarchive button; refactor: `useArchiveHandler` and `ArchiveButton` * style(tooltip): Delete button * refactor: remove unused className prop in DeleteButton component * style(tooltip): finish final tooltip and fix bookmark edit and delete button * refactor(ui): remove TooltipTest and DropDownMenu component and unused imports * style: update mobile UI * fix: sidePanel icon not showing * feat(AttachFile): add tooltip * fix(NavToggle): remove button without this button, kb users don't have to manually press 2 times to change the focus Also, tooltips with buttons focus don't trigger * fix: right side panel issue with double button * fix: merge issues * fix: sharedLink table issue * chore: update ariakit and framer-motion version * a11y: kb toggle for sidebar * feat: tooltip for some buttons
115 lines
4.8 KiB
TypeScript
115 lines
4.8 KiB
TypeScript
import { useMemo } from 'react';
|
|
import { EModelEndpoint, isAssistantsEndpoint, Constants } from 'librechat-data-provider';
|
|
import { useGetEndpointsQuery, useGetStartupConfig } from 'librechat-data-provider/react-query';
|
|
import type { ReactNode } from 'react';
|
|
import { useChatContext, useAssistantsMapContext } from '~/Providers';
|
|
import { useGetAssistantDocsQuery } from '~/data-provider';
|
|
import ConvoIcon from '~/components/Endpoints/ConvoIcon';
|
|
import { useLocalize, useSubmitMessage } from '~/hooks';
|
|
import { TooltipAnchor } from '~/components/ui';
|
|
import { BirthdayIcon } from '~/components/svg';
|
|
import { getIconEndpoint, cn } from '~/utils';
|
|
import ConvoStarter from './ConvoStarter';
|
|
|
|
export default function Landing({ Header }: { Header?: ReactNode }) {
|
|
const { conversation } = useChatContext();
|
|
const assistantMap = useAssistantsMapContext();
|
|
const { data: startupConfig } = useGetStartupConfig();
|
|
const { data: endpointsConfig } = useGetEndpointsQuery();
|
|
|
|
const localize = useLocalize();
|
|
|
|
let { endpoint = '' } = conversation ?? {};
|
|
const { assistant_id = null } = conversation ?? {};
|
|
|
|
if (
|
|
endpoint === EModelEndpoint.chatGPTBrowser ||
|
|
endpoint === EModelEndpoint.azureOpenAI ||
|
|
endpoint === EModelEndpoint.gptPlugins
|
|
) {
|
|
endpoint = EModelEndpoint.openAI;
|
|
}
|
|
|
|
const iconURL = conversation?.iconURL;
|
|
endpoint = getIconEndpoint({ endpointsConfig, iconURL, endpoint });
|
|
const { data: documentsMap = new Map() } = useGetAssistantDocsQuery(endpoint, {
|
|
select: (data) => new Map(data.map((dbA) => [dbA.assistant_id, dbA])),
|
|
});
|
|
|
|
const isAssistant = isAssistantsEndpoint(endpoint);
|
|
const assistant = isAssistant ? assistantMap?.[endpoint][assistant_id ?? ''] : undefined;
|
|
const assistantName = assistant?.name ?? '';
|
|
const assistantDesc = assistant?.description ?? '';
|
|
const avatar = assistant?.metadata?.avatar ?? '';
|
|
const conversation_starters = useMemo(() => {
|
|
/* The user made updates, use client-side cache, */
|
|
if (assistant?.conversation_starters) {
|
|
return assistant.conversation_starters;
|
|
}
|
|
/* If none in cache, we use the latest assistant docs */
|
|
const assistantDocs = documentsMap.get(assistant_id ?? '');
|
|
return assistantDocs?.conversation_starters ?? [];
|
|
}, [documentsMap, assistant_id, assistant?.conversation_starters]);
|
|
|
|
const containerClassName =
|
|
'shadow-stroke relative flex h-full items-center justify-center rounded-full bg-white text-black';
|
|
|
|
const { submitMessage } = useSubmitMessage();
|
|
const sendConversationStarter = (text: string) => submitMessage({ text });
|
|
|
|
return (
|
|
<div className="relative h-full">
|
|
<div className="absolute left-0 right-0">{Header != null ? Header : null}</div>
|
|
<div className="flex h-full flex-col items-center justify-center">
|
|
<div className={cn('relative h-12 w-12', assistantName && avatar ? 'mb-0' : 'mb-3')}>
|
|
<ConvoIcon
|
|
conversation={conversation}
|
|
assistantMap={assistantMap}
|
|
endpointsConfig={endpointsConfig}
|
|
containerClassName={containerClassName}
|
|
context="landing"
|
|
className="h-2/3 w-2/3"
|
|
size={41}
|
|
/>
|
|
{startupConfig?.showBirthdayIcon === true ? (
|
|
<TooltipAnchor
|
|
className="absolute bottom-8 right-2.5"
|
|
description={localize('com_ui_happy_birthday')}
|
|
>
|
|
<BirthdayIcon />
|
|
</TooltipAnchor>
|
|
) : null}
|
|
</div>
|
|
{assistantName ? (
|
|
<div className="flex flex-col items-center gap-0 p-2">
|
|
<div className="text-center text-2xl font-medium dark:text-white">{assistantName}</div>
|
|
<div className="max-w-md text-center text-sm font-normal text-text-primary ">
|
|
{assistantDesc ? assistantDesc : localize('com_nav_welcome_message')}
|
|
</div>
|
|
{/* <div className="mt-1 flex items-center gap-1 text-token-text-tertiary">
|
|
<div className="text-sm text-token-text-tertiary">By Daniel Avila</div>
|
|
</div> */}
|
|
</div>
|
|
) : (
|
|
<h2 className="mb-5 max-w-[75vh] px-12 text-center text-lg font-medium dark:text-white md:px-0 md:text-2xl">
|
|
{isAssistant
|
|
? conversation?.greeting ?? localize('com_nav_welcome_assistant')
|
|
: conversation?.greeting ?? localize('com_nav_welcome_message')}
|
|
</h2>
|
|
)}
|
|
<div className="mt-8 flex flex-wrap justify-center gap-3 px-4">
|
|
{conversation_starters.length > 0 &&
|
|
conversation_starters
|
|
.slice(0, Constants.MAX_CONVO_STARTERS)
|
|
.map((text, index) => (
|
|
<ConvoStarter
|
|
key={index}
|
|
text={text}
|
|
onClick={() => sendConversationStarter(text)}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|