mirror of https://github.com/buster-so/buster.git
more animated button for submit
This commit is contained in:
parent
678178961d
commit
ebec5d45fa
|
@ -19,7 +19,14 @@ const meta: Meta<typeof InputTextAreaButton> = {
|
||||||
className: {
|
className: {
|
||||||
control: 'text'
|
control: 'text'
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
decorators: [
|
||||||
|
(Story) => (
|
||||||
|
<div className="p-4">
|
||||||
|
<Story />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
export default meta;
|
export default meta;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { useMemo, useRef } from 'react';
|
import React, { useMemo, useRef, forwardRef } from 'react';
|
||||||
import { InputTextArea, InputTextAreaProps } from './InputTextArea';
|
import { InputTextArea, InputTextAreaProps } from './InputTextArea';
|
||||||
import { cn } from '@/lib/classMerge';
|
import { cn } from '@/lib/classMerge';
|
||||||
import { cva } from 'class-variance-authority';
|
import { cva } from 'class-variance-authority';
|
||||||
|
@ -9,7 +9,7 @@ import { useMemoizedFn } from 'ahooks';
|
||||||
import { Tooltip } from '../tooltip';
|
import { Tooltip } from '../tooltip';
|
||||||
|
|
||||||
const inputTextAreaButtonVariants = cva(
|
const inputTextAreaButtonVariants = cva(
|
||||||
'relative flex w-full items-center overflow-hidden rounded-xl border border-border transition-all duration-200',
|
'relative flex w-full items-center overflow-visible rounded-xl border border-border transition-all duration-200',
|
||||||
{
|
{
|
||||||
variants: {
|
variants: {
|
||||||
variant: {
|
variant: {
|
||||||
|
@ -30,7 +30,9 @@ export interface InputTextAreaButtonProps extends Omit<InputTextAreaProps, 'vari
|
||||||
disabledSubmit?: boolean;
|
disabledSubmit?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const InputTextAreaButton: React.FC<InputTextAreaButtonProps> = ({
|
export const InputTextAreaButton = forwardRef<HTMLTextAreaElement, InputTextAreaButtonProps>(
|
||||||
|
(
|
||||||
|
{
|
||||||
className,
|
className,
|
||||||
disabled,
|
disabled,
|
||||||
autoResize,
|
autoResize,
|
||||||
|
@ -42,13 +44,12 @@ export const InputTextAreaButton: React.FC<InputTextAreaButtonProps> = ({
|
||||||
variant = 'default',
|
variant = 'default',
|
||||||
disabledSubmit,
|
disabledSubmit,
|
||||||
...props
|
...props
|
||||||
}) => {
|
},
|
||||||
const textRef = useRef<HTMLTextAreaElement>(null);
|
textRef
|
||||||
|
) => {
|
||||||
const onSubmitPreflight = useMemoizedFn(() => {
|
const onSubmitPreflight = useMemoizedFn(() => {
|
||||||
if (disabled) return;
|
if (disabled) return;
|
||||||
const text = textRef.current?.value || '';
|
const text = (textRef as React.RefObject<HTMLTextAreaElement>).current?.value || '';
|
||||||
if (text.trim() === '') return;
|
|
||||||
onSubmit(text);
|
onSubmit(text);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -68,8 +69,8 @@ export const InputTextAreaButton: React.FC<InputTextAreaButtonProps> = ({
|
||||||
disabled={disabled || loading}
|
disabled={disabled || loading}
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
className={cn(
|
className={cn(
|
||||||
'leading-1.3 w-full px-5! py-4! pr-10 align-middle transition-all duration-400',
|
'leading-1.3 w-full px-5! py-4! pr-10 align-middle transition-all duration-500',
|
||||||
loading && 'cursor-default! opacity-60'
|
loading && 'cursor-not-allowed! opacity-70'
|
||||||
)}
|
)}
|
||||||
autoResize={autoResize}
|
autoResize={autoResize}
|
||||||
rounding="xl"
|
rounding="xl"
|
||||||
|
@ -89,7 +90,8 @@ export const InputTextAreaButton: React.FC<InputTextAreaButtonProps> = ({
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
);
|
||||||
|
|
||||||
const SubmitButton: React.FC<{
|
const SubmitButton: React.FC<{
|
||||||
loading: boolean;
|
loading: boolean;
|
||||||
|
@ -101,18 +103,19 @@ const SubmitButton: React.FC<{
|
||||||
}> = ({ disabled, sendIcon, loading, loadingIcon, onSubmitPreflight, onStop }) => {
|
}> = ({ disabled, sendIcon, loading, loadingIcon, onSubmitPreflight, onStop }) => {
|
||||||
const memoizedPrefix = useMemo(() => {
|
const memoizedPrefix = useMemo(() => {
|
||||||
return (
|
return (
|
||||||
<Tooltip sideOffset={7} title={loading ? 'Stop' : 'Send'}>
|
|
||||||
<div className={cn('relative h-4 w-4 transition-all duration-200')}>
|
|
||||||
<div
|
<div
|
||||||
className={`absolute inset-0 transition-all duration-300 ${loading ? 'scale-95 opacity-0' : 'scale-100 opacity-100'}`}>
|
className={cn(
|
||||||
|
'relative h-4 w-4 transition-all duration-300 ease-out will-change-transform'
|
||||||
|
)}>
|
||||||
|
<div
|
||||||
|
className={`absolute inset-0 transition-all duration-300 ease-out ${loading ? 'scale-80 opacity-0' : 'scale-100 opacity-100'}`}>
|
||||||
{sendIcon}
|
{sendIcon}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
className={`absolute inset-0 flex items-center justify-center text-sm transition-all duration-300 ${loading ? 'scale-100 opacity-100' : 'scale-95 opacity-0'}`}>
|
className={`absolute inset-0 flex items-center justify-center text-sm transition-all duration-300 ease-out ${loading ? 'scale-100 opacity-100' : 'scale-85 opacity-0'}`}>
|
||||||
{loadingIcon}
|
{loadingIcon}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Tooltip>
|
|
||||||
);
|
);
|
||||||
}, [loading, sendIcon, loadingIcon]);
|
}, [loading, sendIcon, loadingIcon]);
|
||||||
|
|
||||||
|
@ -123,6 +126,10 @@ const SubmitButton: React.FC<{
|
||||||
prefix={memoizedPrefix}
|
prefix={memoizedPrefix}
|
||||||
onClick={loading && onStop ? onStop : onSubmitPreflight}
|
onClick={loading && onStop ? onStop : onSubmitPreflight}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
|
className={cn(
|
||||||
|
'origin-center transform-gpu transition-all duration-300 ease-out will-change-transform',
|
||||||
|
!disabled && 'hover:scale-110 active:scale-95'
|
||||||
|
)}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import React from 'react';
|
import React, { useRef } from 'react';
|
||||||
import { InputTextAreaButton } from '@/components/ui/inputs/InputTextAreaButton';
|
import { InputTextAreaButton } from '@/components/ui/inputs/InputTextAreaButton';
|
||||||
import { useBusterChatContextSelector, useBusterNewChatContextSelector } from '@/context/Chats';
|
import { useBusterChatContextSelector, useBusterNewChatContextSelector } from '@/context/Chats';
|
||||||
import { inputHasText } from '@/lib/text';
|
import { inputHasText } from '@/lib/text';
|
||||||
import { useMemoizedFn } from 'ahooks';
|
import { useMemoizedFn, useMount } from 'ahooks';
|
||||||
import { ChangeEvent, useMemo, useState } from 'react';
|
import { ChangeEvent, useMemo, useState } from 'react';
|
||||||
|
|
||||||
const autoResizeConfig = {
|
const autoResizeConfig = {
|
||||||
|
@ -16,6 +16,7 @@ export const NewChatInput: React.FC<{}> = () => {
|
||||||
const onStartNewChat = useBusterNewChatContextSelector((state) => state.onStartNewChat);
|
const onStartNewChat = useBusterNewChatContextSelector((state) => state.onStartNewChat);
|
||||||
const [inputValue, setInputValue] = useState('');
|
const [inputValue, setInputValue] = useState('');
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
|
const textAreaRef = useRef<HTMLTextAreaElement>(null);
|
||||||
|
|
||||||
const disabledSubmit = useMemo(() => {
|
const disabledSubmit = useMemo(() => {
|
||||||
return !inputHasText(inputValue);
|
return !inputHasText(inputValue);
|
||||||
|
@ -33,12 +34,20 @@ export const NewChatInput: React.FC<{}> = () => {
|
||||||
|
|
||||||
const onStop = useMemoizedFn(() => {
|
const onStop = useMemoizedFn(() => {
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
|
textAreaRef.current?.focus();
|
||||||
|
textAreaRef.current?.select();
|
||||||
});
|
});
|
||||||
|
|
||||||
const onChange = useMemoizedFn((e: ChangeEvent<HTMLTextAreaElement>) => {
|
const onChange = useMemoizedFn((e: ChangeEvent<HTMLTextAreaElement>) => {
|
||||||
setInputValue(e.target.value);
|
setInputValue(e.target.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
useMount(() => {
|
||||||
|
if (textAreaRef.current) {
|
||||||
|
textAreaRef.current.focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<InputTextAreaButton
|
<InputTextAreaButton
|
||||||
placeholder="Ask Buster a question..."
|
placeholder="Ask Buster a question..."
|
||||||
|
@ -49,6 +58,7 @@ export const NewChatInput: React.FC<{}> = () => {
|
||||||
loading={loading}
|
loading={loading}
|
||||||
disabledSubmit={disabledSubmit}
|
disabledSubmit={disabledSubmit}
|
||||||
autoFocus
|
autoFocus
|
||||||
|
ref={textAreaRef}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
@import 'react-data-grid/lib/styles.css';
|
@import 'react-data-grid/lib/styles.css';
|
||||||
@import '../components/ui/layouts/AppSplitter/SplitPane/themes/default'; //TODO check if we can remove this
|
@import '../components/ui/layouts/AppSplitter/SplitPane/themes/default'; //TODO check if we can remove this
|
||||||
|
|
||||||
@import 'antd/dist/reset.css';
|
// @import 'antd/dist/reset.css';
|
||||||
|
|
||||||
input {
|
input {
|
||||||
font-family:
|
font-family:
|
||||||
|
|
Loading…
Reference in New Issue