fix(chat): smooth draft session transition
This commit is contained in:
@@ -65,8 +65,8 @@ const EMPTY_MESSAGES: Array<{ info: Message; parts: Part[] }> = [];
|
||||
const IDLE_SESSION_STATUS = { type: 'idle' as const };
|
||||
const CHAT_FORCE_SCROLL_BOTTOM_EVENT = 'openchamber:chat-force-scroll-bottom';
|
||||
const DEFAULT_RETRY_MESSAGE = 'Quota limit reached. Retrying automatically.';
|
||||
const DRAFT_EXIT_DURATION_MS = 100;
|
||||
const COMPOSER_MOVE_DURATION_MS = 120;
|
||||
const DRAFT_EXIT_DURATION_MS = 120;
|
||||
const COMPOSER_MOVE_DURATION_MS = 180;
|
||||
const CHAT_SCROLL_STYLE = {
|
||||
overflowAnchor: 'none',
|
||||
overscrollBehavior: 'contain',
|
||||
@@ -519,7 +519,7 @@ const DraftWelcome: React.FC<{ exiting?: boolean }> = ({ exiting = false }) => {
|
||||
|
||||
return (
|
||||
<div className={cn(
|
||||
'oc-draft-center flex min-h-0 flex-1 flex-col items-center justify-center px-6 text-center transition-opacity duration-100 ease-out motion-reduce:transition-none',
|
||||
'oc-draft-center flex min-h-0 flex-1 flex-col items-center justify-center px-6 text-center transition-opacity duration-[120ms] ease-out motion-reduce:transition-none',
|
||||
exiting && 'pointer-events-none opacity-0',
|
||||
)}>
|
||||
<h1 className="text-balance text-3xl font-normal tracking-tight text-foreground">
|
||||
|
||||
Reference in New Issue
Block a user