Split from https://github.com/twentyhq/twenty/pull/4518 Part of https://github.com/twentyhq/twenty/issues/4766
119 lines
3.1 KiB
TypeScript
119 lines
3.1 KiB
TypeScript
import React from 'react';
|
|
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
import { IconComponent } from 'twenty-ui';
|
|
|
|
export type FloatingButtonSize = 'small' | 'medium';
|
|
export type FloatingButtonPosition = 'standalone' | 'left' | 'middle' | 'right';
|
|
|
|
export type FloatingButtonProps = {
|
|
className?: string;
|
|
Icon?: IconComponent;
|
|
title?: string;
|
|
size?: FloatingButtonSize;
|
|
position?: FloatingButtonPosition;
|
|
applyShadow?: boolean;
|
|
applyBlur?: boolean;
|
|
disabled?: boolean;
|
|
focus?: boolean;
|
|
};
|
|
|
|
const StyledButton = styled.button<
|
|
Pick<
|
|
FloatingButtonProps,
|
|
'size' | 'focus' | 'position' | 'applyBlur' | 'applyShadow' | 'position'
|
|
>
|
|
>`
|
|
align-items: center;
|
|
backdrop-filter: ${({ applyBlur }) => (applyBlur ? 'blur(20px)' : 'none')};
|
|
background: ${({ theme }) => theme.background.primary};
|
|
|
|
border: ${({ focus, theme }) =>
|
|
focus ? `1px solid ${theme.color.blue}` : 'none'};
|
|
border-radius: ${({ position, theme }) => {
|
|
switch (position) {
|
|
case 'left':
|
|
return `${theme.border.radius.sm} 0px 0px ${theme.border.radius.sm}`;
|
|
case 'right':
|
|
return `0px ${theme.border.radius.sm} ${theme.border.radius.sm} 0px`;
|
|
case 'middle':
|
|
return '0px';
|
|
case 'standalone':
|
|
return theme.border.radius.sm;
|
|
}
|
|
}};
|
|
box-shadow: ${({ theme, applyShadow, focus }) =>
|
|
applyShadow
|
|
? `0px 2px 4px 0px ${
|
|
theme.background.transparent.light
|
|
}, 0px 0px 4px 0px ${theme.background.transparent.medium}${
|
|
focus ? `,0 0 0 3px ${theme.color.blue10}` : ''
|
|
}`
|
|
: focus
|
|
? `0 0 0 3px ${theme.color.blue10}`
|
|
: 'none'};
|
|
color: ${({ theme, disabled, focus }) => {
|
|
return !disabled
|
|
? focus
|
|
? theme.color.blue
|
|
: theme.font.color.secondary
|
|
: theme.font.color.extraLight;
|
|
}};
|
|
cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')};
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
font-family: ${({ theme }) => theme.font.family};
|
|
font-weight: ${({ theme }) => theme.font.weight.regular};
|
|
gap: ${({ theme }) => theme.spacing(1)};
|
|
height: ${({ size }) => (size === 'small' ? '24px' : '32px')};
|
|
padding: ${({ theme }) => {
|
|
return `0 ${theme.spacing(2)}`;
|
|
}};
|
|
transition: background 0.1s ease;
|
|
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
background: ${({ theme, disabled }) =>
|
|
!disabled ? theme.background.transparent.lighter : 'transparent'};
|
|
}
|
|
|
|
&:active {
|
|
background: ${({ theme, disabled }) =>
|
|
!disabled ? theme.background.transparent.medium : 'transparent'};
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
`;
|
|
|
|
export const FloatingButton = ({
|
|
className,
|
|
Icon,
|
|
title,
|
|
size = 'small',
|
|
position = 'standalone',
|
|
applyBlur = true,
|
|
applyShadow = true,
|
|
disabled = false,
|
|
focus = false,
|
|
}: FloatingButtonProps) => {
|
|
const theme = useTheme();
|
|
return (
|
|
<StyledButton
|
|
disabled={disabled}
|
|
focus={focus && !disabled}
|
|
size={size}
|
|
applyBlur={applyBlur}
|
|
applyShadow={applyShadow}
|
|
position={position}
|
|
className={className}
|
|
>
|
|
{Icon && <Icon size={theme.icon.size.sm} />}
|
|
{title}
|
|
</StyledButton>
|
|
);
|
|
};
|