-
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.
Memoize components and improve performance
- Loading branch information
1 parent
318927e
commit 2deb633
Showing
12 changed files
with
3,703 additions
and
4,254 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
import { cn } from '@/lib/utils'; | ||
import { CopyIcon, DeltaIcon, RedoIcon, UndoIcon } from './icons'; | ||
import { Button } from './ui/button'; | ||
import { Tooltip, TooltipContent, TooltipTrigger } from './ui/tooltip'; | ||
import { useCopyToClipboard } from 'usehooks-ts'; | ||
import { toast } from 'sonner'; | ||
import { UIBlock } from './block'; | ||
import { memo } from 'react'; | ||
|
||
interface BlockActionsProps { | ||
block: UIBlock; | ||
handleVersionChange: (type: 'next' | 'prev' | 'toggle' | 'latest') => void; | ||
currentVersionIndex: number; | ||
isCurrentVersion: boolean; | ||
mode: 'read-only' | 'edit' | 'diff'; | ||
} | ||
|
||
export function PureBlockActions({ | ||
block, | ||
handleVersionChange, | ||
currentVersionIndex, | ||
isCurrentVersion, | ||
mode, | ||
}: BlockActionsProps) { | ||
const [_, copyToClipboard] = useCopyToClipboard(); | ||
|
||
return ( | ||
<div className="flex flex-row gap-1"> | ||
<Tooltip> | ||
<TooltipTrigger asChild> | ||
<Button | ||
variant="outline" | ||
className="p-2 h-fit dark:hover:bg-zinc-700" | ||
onClick={() => { | ||
copyToClipboard(block.content); | ||
toast.success('Copied to clipboard!'); | ||
}} | ||
disabled={block.status === 'streaming'} | ||
> | ||
<CopyIcon size={18} /> | ||
</Button> | ||
</TooltipTrigger> | ||
<TooltipContent>Copy to clipboard</TooltipContent> | ||
</Tooltip> | ||
<Tooltip> | ||
<TooltipTrigger asChild> | ||
<Button | ||
variant="outline" | ||
className="p-2 h-fit dark:hover:bg-zinc-700 !pointer-events-auto" | ||
onClick={() => { | ||
handleVersionChange('prev'); | ||
}} | ||
disabled={currentVersionIndex === 0 || block.status === 'streaming'} | ||
> | ||
<UndoIcon size={18} /> | ||
</Button> | ||
</TooltipTrigger> | ||
<TooltipContent>View Previous version</TooltipContent> | ||
</Tooltip> | ||
<Tooltip> | ||
<TooltipTrigger asChild> | ||
<Button | ||
variant="outline" | ||
className="p-2 h-fit dark:hover:bg-zinc-700 !pointer-events-auto" | ||
onClick={() => { | ||
handleVersionChange('next'); | ||
}} | ||
disabled={isCurrentVersion || block.status === 'streaming'} | ||
> | ||
<RedoIcon size={18} /> | ||
</Button> | ||
</TooltipTrigger> | ||
<TooltipContent>View Next version</TooltipContent> | ||
</Tooltip> | ||
<Tooltip> | ||
<TooltipTrigger asChild> | ||
<Button | ||
variant="outline" | ||
className={cn( | ||
'p-2 h-fit !pointer-events-auto dark:hover:bg-zinc-700', | ||
{ | ||
'bg-muted': mode === 'diff', | ||
}, | ||
)} | ||
onClick={() => { | ||
handleVersionChange('toggle'); | ||
}} | ||
disabled={block.status === 'streaming' || currentVersionIndex === 0} | ||
> | ||
<DeltaIcon size={18} /> | ||
</Button> | ||
</TooltipTrigger> | ||
<TooltipContent>View changes</TooltipContent> | ||
</Tooltip> | ||
</div> | ||
); | ||
} | ||
|
||
export const BlockActions = memo(PureBlockActions, (prevProps, nextProps) => { | ||
if ( | ||
prevProps.block.status === 'streaming' && | ||
nextProps.block.status === 'streaming' | ||
) { | ||
return true; | ||
} | ||
|
||
return false; | ||
}); |
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,28 @@ | ||
import { memo, SetStateAction } from 'react'; | ||
import { CrossIcon } from './icons'; | ||
import { Button } from './ui/button'; | ||
import { UIBlock } from './block'; | ||
import equal from 'fast-deep-equal'; | ||
|
||
interface BlockCloseButtonProps { | ||
setBlock: (value: SetStateAction<UIBlock>) => void; | ||
} | ||
|
||
export function PureBlockCloseButton({ setBlock }: BlockCloseButtonProps) { | ||
return ( | ||
<Button | ||
variant="outline" | ||
className="h-fit p-2 dark:hover:bg-zinc-700" | ||
onClick={() => { | ||
setBlock((currentBlock) => ({ | ||
...currentBlock, | ||
isVisible: false, | ||
})); | ||
}} | ||
> | ||
<CrossIcon size={18} /> | ||
</Button> | ||
); | ||
} | ||
|
||
export const BlockCloseButton = memo(PureBlockCloseButton, () => true); |
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
Oops, something went wrong.