Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor InputBar with Tip Tap Library #2992

Merged
merged 31 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f73e9d7
tmp
flvndvd Dec 18, 2023
c7dc00c
Merge branch 'main' into flav/tip-tap
flvndvd Dec 20, 2023
8389b61
Tmp
flvndvd Dec 20, 2023
318739c
Tmp
flvndvd Dec 20, 2023
1ca9047
Tmp
flvndvd Dec 21, 2023
549265f
Fix each child should have a key warning
flvndvd Dec 21, 2023
6b1fe1d
:scissors:
flvndvd Dec 21, 2023
9591d07
:sparkles:
flvndvd Dec 21, 2023
829062a
Clean up step 1
flvndvd Dec 21, 2023
68e09a2
Final clean up
flvndvd Dec 21, 2023
2bf290d
:scissors:
flvndvd Dec 21, 2023
c0e0692
:art:
flvndvd Dec 21, 2023
be3534b
Rename
flvndvd Dec 21, 2023
b09bef4
:sparkles:
flvndvd Dec 21, 2023
d121f2d
Move files around
flvndvd Dec 21, 2023
aa5eccf
:scissors:
flvndvd Dec 21, 2023
4e6f6f0
Merge branch 'main' into flav/tip-tap
flvndvd Dec 21, 2023
34e44ff
Move files to input_bar folder
flvndvd Dec 21, 2023
88acac5
Fix cursor on placeholder
flvndvd Dec 21, 2023
3508337
:books:
flvndvd Dec 21, 2023
8038b9c
Only accept supported file extensions
flvndvd Dec 22, 2023
f52269b
Support tab to complete with selected assistant
flvndvd Dec 22, 2023
c61fe56
Select item on exact query match, prevent space default
flvndvd Dec 22, 2023
f6f1349
Auto focus the editor
flvndvd Dec 22, 2023
2482350
Hack to patch up the attachment issue
flvndvd Dec 22, 2023
5e1f3bd
Clean timeout on useEffect
flvndvd Dec 22, 2023
4c7ac30
:sparkles:
flvndvd Dec 22, 2023
0ed8056
Focus editor after input file loaded
flvndvd Dec 22, 2023
11622b1
Revert hack
flvndvd Dec 22, 2023
47aba84
Prevent default on enter.
flvndvd Dec 22, 2023
b2f597c
Handle Shift + Enter // Fix autofocus on end
flvndvd Dec 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
994 changes: 0 additions & 994 deletions front/components/assistant/conversation/InputBar.tsx

This file was deleted.

292 changes: 292 additions & 0 deletions front/components/assistant/conversation/input_bar/InputBar.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,292 @@
import { Button, Citation, StopIcon } from "@dust-tt/sparkle";
import { WorkspaceType } from "@dust-tt/types";
import { AgentConfigurationType } from "@dust-tt/types";
import { AgentMention, MentionType } from "@dust-tt/types";
import {
createContext,
Fragment,
useContext,
useEffect,
useState,
} from "react";
import { mutate } from "swr";

import { GenerationContext } from "@app/components/assistant/conversation/GenerationContextProvider";
import InputBarContainer, {
InputBarContainerProps,
} from "@app/components/assistant/conversation/input_bar/InputBarContainer";
import { SendNotificationsContext } from "@app/components/sparkle/Notification";
import { compareAgentsForSort } from "@app/lib/assistant";
import { handleFileUploadToText } from "@app/lib/client/handle_file_upload";
import { useAgentConfigurations } from "@app/lib/swr";
import { classNames } from "@app/lib/utils";

// AGENT MENTION

function AgentMention({
agentConfiguration,
}: {
agentConfiguration: AgentConfigurationType;
}) {
return (
<div
className={classNames("inline-block font-medium text-brand")}
contentEditable={false}
data-agent-configuration-id={agentConfiguration?.sId}
data-agent-name={agentConfiguration?.name}
>
@{agentConfiguration.name}
</div>
);
}

// AGENT LIST

export function AssistantInputBar({
owner,
onSubmit,
conversationId,
stickyMentions,
}: {
owner: WorkspaceType;
onSubmit: (
input: string,
mentions: MentionType[],
contentFragment?: { title: string; content: string }
) => void;
conversationId: string | null;
stickyMentions?: AgentMention[];
}) {
const [contentFragmentBody, setContentFragmentBody] = useState<
string | undefined
>(undefined);
const [contentFragmentFilename, setContentFragmentFilename] = useState<
string | undefined
>(undefined);
const { agentConfigurations } = useAgentConfigurations({
workspaceId: owner.sId,
agentsGetView: conversationId ? { conversationId } : "list",
});
const sendNotification = useContext(SendNotificationsContext);

const [isAnimating, setIsAnimating] = useState<boolean>(false);
const { animate, selectedAssistant } = useContext(InputBarContext);
useEffect(() => {
if (animate && !isAnimating) {
setIsAnimating(true);
setTimeout(() => setIsAnimating(false), 1500);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are we not missing a timeout clean up here in the return of useEffect()?

}
}, [animate, isAnimating]);

const activeAgents = agentConfigurations.filter((a) => a.status === "active");
activeAgents.sort(compareAgentsForSort);

const handleSubmit: InputBarContainerProps["onEnterKeyDown"] = (
isEmpty,
textAndMentions,
resetEditorText
) => {
if (isEmpty) {
return;
}

const { mentions: rawMentions, text } = textAndMentions;
const mentions: MentionType[] = rawMentions.map((m) => ({
configurationId: m.id,
}));

let contentFragment:
| {
title: string;
content: string;
url: string | null;
contentType: string;
}
| undefined = undefined;
if (contentFragmentBody && contentFragmentFilename) {
contentFragment = {
title: contentFragmentFilename,
content: contentFragmentBody,
url: null,
contentType: "file_attachment",
};
}
onSubmit(text, mentions, contentFragment);
resetEditorText();
setContentFragmentFilename(undefined);
setContentFragmentBody(undefined);
};

const onInputFileChange: InputBarContainerProps["onInputFileChange"] = async (
event
) => {
const file = (event?.target as HTMLInputElement)?.files?.[0];
if (!file) return;
if (file.size > 10_000_000) {
sendNotification({
type: "error",
title: "File too large.",
description:
"PDF uploads are limited to 10Mb per file. Please consider uploading a smaller file.",
});
return;
}
const res = await handleFileUploadToText(file);

if (res.isErr()) {
sendNotification({
type: "error",
title: "Error uploading file.",
description: res.error.message,
});
return;
}
if (res.value.content.length > 1_000_000) {
// This error should pretty much never be triggered but it is a possible case, so here it is.
sendNotification({
type: "error",
title: "File too large.",
description:
"The extracted text from your PDF has more than 1 million characters. This will overflow the assistant context. Please consider uploading a smaller file.",
});
return;
}

setContentFragmentFilename(res.value.title);
setContentFragmentBody(res.value.content);
};

const [isProcessing, setIsProcessing] = useState<boolean>(false);

// GenerationContext: to know if we are generating or not
const generationContext = useContext(GenerationContext);
if (!generationContext) {
throw new Error(
"FixedAssistantInputBar must be used within a GenerationContextProvider"
);
}

const handleStopGeneration = async () => {
if (!conversationId) {
return;
}
setIsProcessing(true); // we don't set it back to false immediately cause it takes a bit of time to cancel
await fetch(
`/api/w/${owner.sId}/assistant/conversations/${conversationId}/cancel`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
action: "cancel",
messageIds: generationContext.generatingMessageIds,
}),
}
);
await mutate(
`/api/w/${owner.sId}/assistant/conversations/${conversationId}`
);
};

useEffect(() => {
if (isProcessing && generationContext.generatingMessageIds.length === 0) {
setIsProcessing(false);
}
}, [isProcessing, generationContext.generatingMessageIds.length]);

return (
<>
{generationContext.generatingMessageIds.length > 0 && (
<div className="flex justify-center px-4 pb-4">
<Button
className="mt-4"
variant="tertiary"
label={isProcessing ? "Stopping generation..." : "Stop generation"}
icon={StopIcon}
onClick={handleStopGeneration}
disabled={isProcessing}
/>
</div>
)}

<div className="flex flex-1 px-0 sm:px-4">
<div className="flex w-full flex-1 flex-col items-end self-stretch sm:flex-row">
<div
className={classNames(
"relative flex w-full flex-1 flex-col items-stretch gap-0 self-stretch pl-4 sm:flex-row",
"border-struture-200 border-t bg-white/80 shadow-[0_0_36px_-15px_rgba(0,0,0,0.3)] backdrop-blur focus-within:border-structure-300 sm:rounded-3xl sm:border-2 sm:border-element-500 sm:shadow-[0_12px_36px_-15px_rgba(0,0,0,0.3)] sm:focus-within:border-element-600",
"transition-all duration-300",
isAnimating
? "animate-shake border-action-500 focus-within:border-action-800"
: ""
)}
>
<div className="relative flex w-full flex-1 flex-col">
{contentFragmentFilename && contentFragmentBody && (
<div className="border-b border-structure-300/50 pb-3 pt-5">
<Citation
title={contentFragmentFilename}
description={contentFragmentBody?.substring(0, 100)}
onClose={() => {
setContentFragmentBody(undefined);
setContentFragmentFilename(undefined);
}}
/>
</div>
)}

<InputBarContainer
allAssistants={activeAgents}
agentConfigurations={agentConfigurations}
owner={owner}
selectedAssistant={selectedAssistant}
onEnterKeyDown={handleSubmit}
stickyMentions={stickyMentions}
onInputFileChange={onInputFileChange}
disableAttachment={!!contentFragmentFilename}
/>
</div>
</div>
</div>
</div>
</>
);
}

export function FixedAssistantInputBar({
owner,
onSubmit,
stickyMentions,
conversationId,
}: {
owner: WorkspaceType;
onSubmit: (
input: string,
mentions: MentionType[],
contentFragment?: { title: string; content: string }
) => void;
stickyMentions?: AgentMention[];
conversationId: string | null;
}) {
return (
<div className="4xl:px-0 fixed bottom-0 left-0 right-0 z-20 flex-initial lg:left-80">
<div className="mx-auto max-h-screen max-w-4xl pb-0 sm:pb-8">
<AssistantInputBar
owner={owner}
onSubmit={onSubmit}
conversationId={conversationId}
stickyMentions={stickyMentions}
/>
</div>
</div>
);
}

export const InputBarContext = createContext<{
animate: boolean;
selectedAssistant: AgentMention | null;
}>({
animate: false,
selectedAssistant: null,
});
Loading