-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2deb633
commit 522835a
Showing
13 changed files
with
102 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import { Dispatch, memo, SetStateAction } from 'react'; | ||
import { UIBlock } from './block'; | ||
import { PreviewMessage } from './message'; | ||
import { useScrollToBottom } from './use-scroll-to-bottom'; | ||
import { Vote } from '@/lib/db/schema'; | ||
import { Message } from 'ai'; | ||
|
||
interface BlockMessagesProps { | ||
chatId: string; | ||
block: UIBlock; | ||
setBlock: Dispatch<SetStateAction<UIBlock>>; | ||
isLoading: boolean; | ||
votes: Array<Vote> | undefined; | ||
messages: Array<Message>; | ||
} | ||
|
||
function PureBlockMessages({ | ||
chatId, | ||
block, | ||
setBlock, | ||
isLoading, | ||
votes, | ||
messages, | ||
}: BlockMessagesProps) { | ||
const [messagesContainerRef, messagesEndRef] = | ||
useScrollToBottom<HTMLDivElement>(); | ||
|
||
return ( | ||
<div | ||
ref={messagesContainerRef} | ||
className="flex flex-col gap-4 h-full items-center overflow-y-scroll px-4 pt-20" | ||
> | ||
{messages.map((message, index) => ( | ||
<PreviewMessage | ||
chatId={chatId} | ||
key={message.id} | ||
message={message} | ||
block={block} | ||
setBlock={setBlock} | ||
isLoading={isLoading && index === messages.length - 1} | ||
vote={ | ||
votes | ||
? votes.find((vote) => vote.messageId === message.id) | ||
: undefined | ||
} | ||
/> | ||
))} | ||
|
||
<div | ||
ref={messagesEndRef} | ||
className="shrink-0 min-w-[24px] min-h-[24px]" | ||
/> | ||
</div> | ||
); | ||
} | ||
|
||
function areEqual( | ||
prevProps: BlockMessagesProps, | ||
nextProps: BlockMessagesProps, | ||
) { | ||
if ( | ||
prevProps.block.status === 'streaming' && | ||
nextProps.block.status === 'streaming' | ||
) { | ||
return true; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
export const BlockMessages = memo(PureBlockMessages, areEqual); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters