mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 13:49:45 +08:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import type { FC, MouseEventHandler } from 'react'
|
|
import React from 'react'
|
|
import Spinner from '../spinner'
|
|
|
|
export type IButtonProps = {
|
|
/**
|
|
* The style of the button
|
|
*/
|
|
type?: 'primary' | 'warning' | (string & {})
|
|
className?: string
|
|
disabled?: boolean
|
|
loading?: boolean
|
|
tabIndex?: number
|
|
children: React.ReactNode
|
|
onClick?: MouseEventHandler<HTMLButtonElement>
|
|
}
|
|
|
|
const Button: FC<IButtonProps> = ({
|
|
type,
|
|
disabled,
|
|
children,
|
|
className,
|
|
onClick,
|
|
loading = false,
|
|
tabIndex,
|
|
}) => {
|
|
let style = 'cursor-pointer'
|
|
switch (type) {
|
|
case 'primary':
|
|
style = (disabled || loading) ? 'btn-primary-disabled' : 'btn-primary'
|
|
break
|
|
case 'warning':
|
|
style = (disabled || loading) ? 'btn-warning-disabled' : 'btn-warning'
|
|
break
|
|
default:
|
|
style = disabled ? 'btn-default-disabled' : 'btn-default'
|
|
break
|
|
}
|
|
|
|
return (
|
|
<button
|
|
className={`btn ${style} ${className && className}`}
|
|
tabIndex={tabIndex}
|
|
disabled={disabled}
|
|
onClick={onClick}
|
|
>
|
|
{children}
|
|
{/* Spinner is hidden when loading is false */}
|
|
<Spinner loading={loading} className='!text-white !h-3 !w-3 !border-2 !ml-1' />
|
|
</button>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Button)
|