1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

added buttons

This commit is contained in:
muerwre 2019-07-30 12:14:37 +07:00
parent 578b37716b
commit 3ba862ee5e
3 changed files with 176 additions and 30 deletions

View file

@ -1,20 +1,63 @@
import * as React from 'react';
import classnames from 'classnames';
import * as styles from './styles.scss';
import React, { ButtonHTMLAttributes, DetailedHTMLProps, FC } from 'react';
import { Icon } from '~/components/input/Icon';
import { IIcon } from "~/redux/types";
const style = require('./style.scss');
type IButtonProps = DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & {
size?: 'mini' | 'normal' | 'big' | 'giant' | 'micro';
iconLeft?: IIcon;
iconRight?: IIcon;
seamless?: boolean;
transparent?: boolean;
title?: string;
red?: boolean,
grey?: boolean,
non_submitting?: boolean;
is_loading?: boolean;
};
interface IButtonProps {
children?: string,
label?: string,
onClick?: React.MouseEventHandler,
}
export const Button: React.FunctionComponent<IButtonProps> = ({
export const Button: FC<IButtonProps> = ({
className = '',
size = 'normal',
iconLeft,
iconRight,
children,
label,
onClick = () => {},
seamless = false,
transparent = false,
non_submitting = false,
red = false,
grey = false,
is_loading,
title,
...props
}) => (
<div className={style.container} onClick={onClick}>
{label || children || ''}
</div>
React.createElement(
(seamless || non_submitting) ? 'div' : 'button',
{
className: classnames(
styles.button,
className,
styles[size],
{
red,
grey,
seamless,
transparent,
disabled: props.disabled,
icon: (iconLeft || iconRight) && !title && !children,
is_loading,
}),
children: [
iconLeft && <Icon icon={iconLeft} size={20} key={0} />,
(
title
? <span key={1}>{title}</span>
: (children && <span key={1}>{children}</span>) || null
),
iconRight && <Icon icon={iconRight} size={20} key={2} />,
],
...props,
},
)
);