## Description Allows for smaller field sizing in addition to improving our styling when displaying labels on smaller fields. This is the minimum currently supported field size until we perform a more extensive refactor of our current drag and drop system. ## Related Issue Reported via support channels ## Changes Made - Updated our minimum size constraints - Attempted to add a general autosizing component for text and failed - Updated styling in a bunch of places to use the css `clamp()` method for dynamic sizing.
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import { RecipientStatusType } from '@documenso/lib/client-only/recipient-type';
|
|
import { Avatar, AvatarFallback } from '@documenso/ui/primitives/avatar';
|
|
|
|
const ZIndexes: { [key: string]: string } = {
|
|
'10': 'z-10',
|
|
'20': 'z-20',
|
|
'30': 'z-30',
|
|
'40': 'z-40',
|
|
'50': 'z-50',
|
|
};
|
|
|
|
export type StackAvatarProps = {
|
|
first?: boolean;
|
|
zIndex?: string;
|
|
fallbackText?: string;
|
|
type: RecipientStatusType;
|
|
};
|
|
|
|
export const StackAvatar = ({ first, zIndex, fallbackText = '', type }: StackAvatarProps) => {
|
|
let classes = '';
|
|
let zIndexClass = '';
|
|
const firstClass = first ? '' : '-ml-3';
|
|
|
|
if (zIndex) {
|
|
zIndexClass = ZIndexes[zIndex] ?? '';
|
|
}
|
|
|
|
switch (type) {
|
|
case RecipientStatusType.UNSIGNED:
|
|
classes = 'bg-dawn-200 text-dawn-900';
|
|
break;
|
|
case RecipientStatusType.OPENED:
|
|
classes = 'bg-yellow-200 text-yellow-700';
|
|
break;
|
|
case RecipientStatusType.WAITING:
|
|
classes = 'bg-water text-water-700';
|
|
break;
|
|
case RecipientStatusType.COMPLETED:
|
|
classes = 'bg-documenso-200 text-documenso-800';
|
|
break;
|
|
case RecipientStatusType.REJECTED:
|
|
classes = 'bg-red-200 text-red-800';
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return (
|
|
<Avatar
|
|
className={`
|
|
${zIndexClass}
|
|
${firstClass}
|
|
dark:border-border h-10 w-10 border-2 border-solid border-white`}
|
|
>
|
|
<AvatarFallback className={classes}>{fallbackText}</AvatarFallback>
|
|
</Avatar>
|
|
);
|
|
};
|