2022-11-25 20:25:03 +00:00
|
|
|
import * as React from 'react';
|
|
|
|
import styled, { css } from 'styled-components';
|
2020-07-03 22:37:26 +00:00
|
|
|
import tw from 'twin.macro';
|
2020-07-04 21:34:43 +00:00
|
|
|
import Spinner from '@/components/elements/Spinner';
|
2019-07-27 22:17:50 +00:00
|
|
|
|
2020-07-03 22:37:26 +00:00
|
|
|
interface Props {
|
|
|
|
isLoading?: boolean;
|
|
|
|
size?: 'xsmall' | 'small' | 'large' | 'xlarge';
|
|
|
|
color?: 'green' | 'red' | 'primary' | 'grey';
|
|
|
|
isSecondary?: boolean;
|
|
|
|
}
|
2019-07-27 22:17:50 +00:00
|
|
|
|
2020-07-04 22:58:14 +00:00
|
|
|
const ButtonStyle = styled.button<Omit<Props, 'isLoading'>>`
|
|
|
|
${tw`relative inline-block rounded p-2 uppercase tracking-wide text-sm transition-all duration-150 border`};
|
2022-06-26 19:13:52 +00:00
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props =>
|
2022-06-26 19:13:52 +00:00
|
|
|
((!props.isSecondary && !props.color) || props.color === 'primary') &&
|
|
|
|
css<Props>`
|
2022-11-25 20:25:03 +00:00
|
|
|
${props => !props.isSecondary && tw`bg-primary-500 border-primary-600 border text-primary-50`};
|
2022-06-26 19:13:52 +00:00
|
|
|
|
|
|
|
&:hover:not(:disabled) {
|
|
|
|
${tw`bg-primary-600 border-primary-700`};
|
|
|
|
}
|
|
|
|
`};
|
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props =>
|
2022-06-26 19:13:52 +00:00
|
|
|
props.color === 'grey' &&
|
|
|
|
css`
|
|
|
|
${tw`border-neutral-600 bg-neutral-500 text-neutral-50`};
|
|
|
|
|
|
|
|
&:hover:not(:disabled) {
|
|
|
|
${tw`bg-neutral-600 border-neutral-700`};
|
|
|
|
}
|
|
|
|
`};
|
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props =>
|
2022-06-26 19:13:52 +00:00
|
|
|
props.color === 'green' &&
|
|
|
|
css<Props>`
|
|
|
|
${tw`border-green-600 bg-green-500 text-green-50`};
|
|
|
|
|
|
|
|
&:hover:not(:disabled) {
|
2020-07-03 22:37:26 +00:00
|
|
|
${tw`bg-green-600 border-green-700`};
|
|
|
|
}
|
2022-06-26 19:13:52 +00:00
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props =>
|
2022-06-26 19:13:52 +00:00
|
|
|
props.isSecondary &&
|
|
|
|
css`
|
|
|
|
&:active:not(:disabled) {
|
|
|
|
${tw`bg-green-600 border-green-700`};
|
|
|
|
}
|
|
|
|
`};
|
2020-07-03 22:37:26 +00:00
|
|
|
`};
|
2022-06-26 19:13:52 +00:00
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props =>
|
2022-06-26 19:13:52 +00:00
|
|
|
props.color === 'red' &&
|
|
|
|
css<Props>`
|
|
|
|
${tw`border-red-600 bg-red-500 text-red-50`};
|
|
|
|
|
|
|
|
&:hover:not(:disabled) {
|
2020-07-03 22:37:26 +00:00
|
|
|
${tw`bg-red-600 border-red-700`};
|
|
|
|
}
|
2022-06-26 19:13:52 +00:00
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props =>
|
2022-06-26 19:13:52 +00:00
|
|
|
props.isSecondary &&
|
|
|
|
css`
|
|
|
|
&:active:not(:disabled) {
|
|
|
|
${tw`bg-red-600 border-red-700`};
|
|
|
|
}
|
|
|
|
`};
|
|
|
|
`};
|
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props => props.size === 'xsmall' && tw`px-2 py-1 text-xs`};
|
|
|
|
${props => (!props.size || props.size === 'small') && tw`px-4 py-2`};
|
|
|
|
${props => props.size === 'large' && tw`p-4 text-sm`};
|
|
|
|
${props => props.size === 'xlarge' && tw`p-4 w-full`};
|
2022-06-26 19:13:52 +00:00
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
${props =>
|
2022-06-26 19:13:52 +00:00
|
|
|
props.isSecondary &&
|
|
|
|
css<Props>`
|
|
|
|
${tw`border-neutral-600 bg-transparent text-neutral-200`};
|
|
|
|
|
|
|
|
&:hover:not(:disabled) {
|
|
|
|
${tw`border-neutral-500 text-neutral-100`};
|
2022-11-25 20:25:03 +00:00
|
|
|
${props => props.color === 'red' && tw`bg-red-500 border-red-600 text-red-50`};
|
|
|
|
${props => props.color === 'primary' && tw`bg-primary-500 border-primary-600 text-primary-50`};
|
|
|
|
${props => props.color === 'green' && tw`bg-green-500 border-green-600 text-green-50`};
|
2022-06-26 19:13:52 +00:00
|
|
|
}
|
2020-07-03 22:37:26 +00:00
|
|
|
`};
|
2022-06-26 19:13:52 +00:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.55;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2020-07-03 22:37:26 +00:00
|
|
|
`;
|
|
|
|
|
2020-07-04 20:31:00 +00:00
|
|
|
type ComponentProps = Omit<JSX.IntrinsicElements['button'], 'ref' | keyof Props> & Props;
|
2020-07-03 22:37:26 +00:00
|
|
|
|
|
|
|
const Button: React.FC<ComponentProps> = ({ children, isLoading, ...props }) => (
|
2020-07-04 22:58:14 +00:00
|
|
|
<ButtonStyle {...props}>
|
2022-06-26 19:13:52 +00:00
|
|
|
{isLoading && (
|
|
|
|
<div css={tw`flex absolute justify-center items-center w-full h-full left-0 top-0`}>
|
|
|
|
<Spinner size={'small'} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<span css={isLoading ? tw`text-transparent` : undefined}>{children}</span>
|
2020-07-04 22:58:14 +00:00
|
|
|
</ButtonStyle>
|
2019-07-27 22:17:50 +00:00
|
|
|
);
|
2020-07-03 22:37:26 +00:00
|
|
|
|
2020-07-04 22:58:14 +00:00
|
|
|
type LinkProps = Omit<JSX.IntrinsicElements['a'], 'ref' | keyof Props> & Props;
|
|
|
|
|
2022-11-25 20:25:03 +00:00
|
|
|
const LinkButton: React.FC<LinkProps> = props => <ButtonStyle as={'a'} {...props} />;
|
2020-07-04 22:58:14 +00:00
|
|
|
|
|
|
|
export { LinkButton, ButtonStyle };
|
2020-07-03 22:37:26 +00:00
|
|
|
export default Button;
|