/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React, { FC, ButtonHTMLAttributes, AnchorHTMLAttributes } from "react"; import classNames from "classnames"; import LoadingText from "components/LoadingText"; export type ButtonSize = "lg" | "sm"; export type ButtonType = | "primary" | "default" | "danger" | "link" | "text" | "icon" | "loading"; interface BaseButtonProps { className?: string; /**设置 Button 的禁用 */ disabled?: boolean; /**设置 Button 的尺寸 */ size?: ButtonSize; /**设置 Button 的类型 */ btnType?: ButtonType; loading?: boolean; loadingColor?: string; children: React.ReactNode; href?: string; } type NativeButtonProps = BaseButtonProps & ButtonHTMLAttributes; type AnchorButtonProps = BaseButtonProps & AnchorHTMLAttributes; export type ButtonProps = Partial; /** * 页面中最常用的的按钮元素,适合于完成特定的交互 * ### 引用方法 */ export const Button: FC = (props) => { const { btnType, className, disabled, loading, loadingColor, size, children, href, ...restProps } = props; // btn, btn-lg, btn-primary const classes = classNames("btn", className, { [`btn-${btnType}`]: btnType, [`btn-${size}`]: size, disabled: btnType === "link" && disabled, }); if (loading) { return ( ); } else { if (btnType === "link" && href) { return ( {children} ); } else { return ( ); } } }; Button.defaultProps = { disabled: false, btnType: "default", }; export default Button;