import { FC, PropsWithChildren, useEffect, memo } from 'react'; import { useStore } from './store'; export interface ButtonProps extends React.ButtonHTMLAttributes { keyname?: string; /** Can be shown or hidden with controls */ visible?: boolean; /** "index" refers to the use of indexes to control the order of controls, which can provide more flexible API encapsulation. */ index?: number; } export const Button: FC> = memo((props) => { const { buttons = {}, dispatch } = useStore(); useEffect(() => { const { keyname, visible = true, ...elmProps } = props; if (keyname || elmProps.name) { const key = (keyname || elmProps.name) as string; delete buttons[key]; dispatch({ buttons: { ...buttons, [key]: visible ?