
* Heavy WIP * More WIP * Playing with backwards compat * Moar wip * wip * Email changes for group feature * Committing in redundant migrations for reference * Combine all WIP migrations into a single feature migration * Make backup of current version of radio area pending refactor * Improved accessibility through keyboard * Cleanup in seperate commit so I can cherrypick later * Added RadioArea component * wip * Ignore .yarn file * Kinda stable * Getting closer... * Hide header when there are only personal events * Added uid to event create, updated EventTypeDescription * Delete redundant migration * Committing new team related migrations * Optimising & implemented backwards compatibility * Removed now redundant pages * Undid prototyping to calendarClient I did not end up using * Properly typed Select & fixed lint throughout * How'd that get here, removed. * TODO: investigate why userData is not compatible with passed type * This likely matches the event type that is created for a user * Few bugfixes * Adding datepicker optimisations * Fixed new event type spacing, initial profile should always be there * Gave NEXT_PUBLIC_BASE_URL a try but I think it's not the right solution * Updated EventTypeDescription to account for long titles, added logo to team page. * Added logo to team query * Added cancel Cypress test because an upcoming merge contains changes * Fix for when the event type description is long * Turned Theme into the useTheme hook, and made it fully compatible with teams pages * Built AvatarGroup ui component + moved Avatar to ui * Give the avatar some space fom the description * Fixed timeZone selector * Disabled tooltip +1-... Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
56 lines
1.9 KiB
TypeScript
56 lines
1.9 KiB
TypeScript
import React from "react";
|
|
import Avatar from "@components/ui/Avatar";
|
|
import classNames from "@lib/classNames";
|
|
// import * as Tooltip from "@radix-ui/react-tooltip";
|
|
|
|
export type AvatarGroupProps = {
|
|
size: number;
|
|
truncateAfter?: number;
|
|
items: {
|
|
image: string;
|
|
title?: string;
|
|
alt: string;
|
|
}[];
|
|
className?: string;
|
|
};
|
|
|
|
export const AvatarGroup = function AvatarGroup(props: AvatarGroupProps) {
|
|
/* const truncatedAvatars: string[] =
|
|
props.items.length > props.truncateAfter
|
|
? props.items
|
|
.slice(props.truncateAfter)
|
|
.map((item) => item.title)
|
|
.filter(Boolean)
|
|
: [];*/
|
|
|
|
return (
|
|
<ul className={classNames("flex -space-x-2 overflow-hidden", props.className)}>
|
|
{props.items.slice(0, props.truncateAfter).map((item, idx) => (
|
|
<li key={idx} className="inline-block">
|
|
<Avatar imageSrc={item.image} title={item.title} alt={item.alt} size={props.size} />
|
|
</li>
|
|
))}
|
|
{/*props.items.length > props.truncateAfter && (
|
|
<li className="inline-block relative">
|
|
<Tooltip.Tooltip delayDuration="300">
|
|
<Tooltip.TooltipTrigger className="cursor-default">
|
|
<span className="w-16 absolute bottom-1.5 border-2 border-gray-300 flex-inline items-center text-white pt-4 text-2xl top-0 rounded-full block bg-neutral-600">+1</span>
|
|
</Tooltip.TooltipTrigger>
|
|
{truncatedAvatars.length !== 0 && (
|
|
<Tooltip.Content className="p-2 rounded-sm text-sm bg-black text-white shadow-sm">
|
|
<Tooltip.Arrow />
|
|
<ul>
|
|
{truncatedAvatars.map((title) => (
|
|
<li key={title}>{title}</li>
|
|
))}
|
|
</ul>
|
|
</Tooltip.Content>
|
|
)}
|
|
</Tooltip.Tooltip>
|
|
</li>
|
|
)*/}
|
|
</ul>
|
|
);
|
|
};
|
|
|
|
export default AvatarGroup;
|