feat: dashboard v2, esm, upgrades (#211)
* esm * wip * wip * wip * wip * wip * wip * subscription notice * wip * wip * wip * fix envs * fix: update docker build * fix * esm/types * delete dashboard :D * add patches to dockerfiles * update packages + catalogs + ts * wip * remove native libs * ts * improvements * fix redirects and fetching session * try fix favicon * fixes * fix * order and resize reportds within a dashboard * improvements * wip * added userjot to dashboard * fix * add op * wip * different cache key * improve date picker * fix table * event details loading * redo onboarding completely * fix login * fix * fix * extend session, billing and improve bars * fix * reduce price on 10M
This commit is contained in:
committed by
GitHub
parent
436e81ecc9
commit
81a7e5d62e
223
apps/start/src/components/ui/combobox-events.tsx
Normal file
223
apps/start/src/components/ui/combobox-events.tsx
Normal file
@@ -0,0 +1,223 @@
|
||||
import type { ButtonProps } from '@/components/ui/button';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import {
|
||||
Command,
|
||||
CommandEmpty,
|
||||
CommandInput,
|
||||
CommandItem,
|
||||
} from '@/components/ui/command';
|
||||
import {
|
||||
Popover,
|
||||
PopoverContent,
|
||||
PopoverTrigger,
|
||||
} from '@/components/ui/popover';
|
||||
import { useNumber } from '@/hooks/use-numer-formatter';
|
||||
import type { RouterOutputs } from '@/trpc/client';
|
||||
import { cn } from '@/utils/cn';
|
||||
import { PopoverPortal } from '@radix-ui/react-popover';
|
||||
import { CheckIcon, ChevronsUpDown, GanttChartIcon } from 'lucide-react';
|
||||
import VirtualList from 'rc-virtual-list';
|
||||
import * as React from 'react';
|
||||
import { EventIcon } from '../events/event-icon';
|
||||
|
||||
/**
|
||||
* Type-safe ComboboxEvents component that supports both single and multiple selection.
|
||||
*
|
||||
* @example
|
||||
* // Single selection mode (default)
|
||||
* <ComboboxEvents<string>
|
||||
* items={events}
|
||||
* value={selectedEvent}
|
||||
* onChange={(event: string) => setSelectedEvent(event)}
|
||||
* placeholder="Select an event"
|
||||
* />
|
||||
*
|
||||
* @example
|
||||
* // Multiple selection mode
|
||||
* <ComboboxEvents<string, true>
|
||||
* items={events}
|
||||
* value={selectedEvents}
|
||||
* onChange={(events: string[]) => setSelectedEvents(events)}
|
||||
* placeholder="Select events"
|
||||
* multiple={true}
|
||||
* />
|
||||
*/
|
||||
export interface ComboboxProps<T, TMultiple extends boolean = false> {
|
||||
placeholder: string;
|
||||
items: RouterOutputs['chart']['events'];
|
||||
value: TMultiple extends true ? T[] : T | null | undefined;
|
||||
onChange: TMultiple extends true ? (value: T[]) => void : (value: T) => void;
|
||||
className?: string;
|
||||
searchable?: boolean;
|
||||
size?: ButtonProps['size'];
|
||||
label?: string;
|
||||
align?: 'start' | 'end' | 'center';
|
||||
portal?: boolean;
|
||||
error?: string;
|
||||
disabled?: boolean;
|
||||
multiple?: TMultiple;
|
||||
maxDisplayItems?: number;
|
||||
}
|
||||
|
||||
export function ComboboxEvents<
|
||||
T extends string,
|
||||
TMultiple extends boolean = false,
|
||||
>({
|
||||
placeholder,
|
||||
value,
|
||||
onChange,
|
||||
className,
|
||||
searchable,
|
||||
size,
|
||||
align = 'start',
|
||||
portal,
|
||||
error,
|
||||
disabled,
|
||||
items,
|
||||
multiple = false as TMultiple,
|
||||
maxDisplayItems = 2,
|
||||
}: ComboboxProps<T, TMultiple>) {
|
||||
const number = useNumber();
|
||||
const [open, setOpen] = React.useState(false);
|
||||
const [search, setSearch] = React.useState('');
|
||||
|
||||
const selectedValues = React.useMemo((): T[] => {
|
||||
if (multiple) {
|
||||
return Array.isArray(value) ? (value as T[]) : value ? [value as T] : [];
|
||||
}
|
||||
return value ? [value as T] : [];
|
||||
}, [value, multiple]);
|
||||
|
||||
function find(value: string) {
|
||||
return items.find(
|
||||
(item) => item.name.toLowerCase() === value.toLowerCase(),
|
||||
);
|
||||
}
|
||||
|
||||
const current =
|
||||
selectedValues.length > 0 && selectedValues[0]
|
||||
? find(selectedValues[0])
|
||||
: null;
|
||||
|
||||
const handleSelection = (selectedValue: string) => {
|
||||
if (multiple) {
|
||||
const currentValues = selectedValues;
|
||||
const newValues = currentValues.includes(selectedValue as T)
|
||||
? currentValues.filter((v) => v !== selectedValue)
|
||||
: [...currentValues, selectedValue as T];
|
||||
onChange(newValues as any);
|
||||
} else {
|
||||
onChange(selectedValue as any);
|
||||
setOpen(false);
|
||||
}
|
||||
};
|
||||
|
||||
const renderTriggerContent = () => {
|
||||
if (selectedValues.length === 0) {
|
||||
return placeholder;
|
||||
}
|
||||
|
||||
const firstValue = selectedValues[0];
|
||||
const item = firstValue ? find(firstValue) : null;
|
||||
let label = item?.name || firstValue;
|
||||
|
||||
if (multiple && selectedValues.length > 1) {
|
||||
label += ` +${selectedValues.length - 1}`;
|
||||
}
|
||||
|
||||
return label;
|
||||
};
|
||||
|
||||
return (
|
||||
<Popover open={open} onOpenChange={setOpen}>
|
||||
<PopoverTrigger asChild>
|
||||
<Button
|
||||
disabled={disabled}
|
||||
size={size}
|
||||
variant="outline"
|
||||
role="combobox"
|
||||
aria-expanded={open}
|
||||
className={cn(
|
||||
'justify-between',
|
||||
!!error && 'border-destructive',
|
||||
className,
|
||||
)}
|
||||
>
|
||||
<div className="flex min-w-0 items-center">
|
||||
{current?.meta ? (
|
||||
<EventIcon
|
||||
name={current.name}
|
||||
meta={current.meta}
|
||||
size="xs"
|
||||
className="mr-2 shrink-0"
|
||||
/>
|
||||
) : (
|
||||
<GanttChartIcon size={16} className="mr-2 shrink-0" />
|
||||
)}
|
||||
<span className="overflow-hidden text-ellipsis whitespace-nowrap">
|
||||
{renderTriggerContent()}
|
||||
</span>
|
||||
</div>
|
||||
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
||||
</Button>
|
||||
</PopoverTrigger>
|
||||
<PopoverPortal>
|
||||
<PopoverContent
|
||||
className="w-full max-w-[33em] max-sm:max-w-[100vw] p-0"
|
||||
align={align}
|
||||
portal={portal}
|
||||
>
|
||||
<Command shouldFilter={false}>
|
||||
{searchable === true && (
|
||||
<CommandInput
|
||||
placeholder="Search event..."
|
||||
value={search}
|
||||
onValueChange={setSearch}
|
||||
/>
|
||||
)}
|
||||
|
||||
<CommandEmpty>Nothing selected</CommandEmpty>
|
||||
<VirtualList
|
||||
height={400}
|
||||
data={items.filter((item) => {
|
||||
if (search === '') return true;
|
||||
return item.name.toLowerCase().includes(search.toLowerCase());
|
||||
})}
|
||||
itemHeight={32}
|
||||
itemKey="value"
|
||||
className="w-[33em] max-sm:max-w-[100vw]"
|
||||
>
|
||||
{(item) => {
|
||||
return (
|
||||
<CommandItem
|
||||
className={cn(
|
||||
'p-4 py-2.5 gap-4',
|
||||
selectedValues.includes(item.name as T) && 'bg-accent',
|
||||
)}
|
||||
key={item.name}
|
||||
value={item.name}
|
||||
onSelect={(currentValue) => {
|
||||
handleSelection(item.name);
|
||||
}}
|
||||
>
|
||||
{selectedValues.includes(item.name as T) ? (
|
||||
<CheckIcon className="h-4 w-4 flex-shrink-0" />
|
||||
) : (
|
||||
<EventIcon name={item.name} meta={item.meta} size="sm" />
|
||||
)}
|
||||
<span className="font-medium flex-1 truncate">
|
||||
{item.name === '*' ? 'Any events' : item.name}
|
||||
</span>
|
||||
<span className="text-muted-foreground font-mono font-medium">
|
||||
{number.short(item.count)}
|
||||
</span>
|
||||
</CommandItem>
|
||||
);
|
||||
}}
|
||||
</VirtualList>
|
||||
</Command>
|
||||
</PopoverContent>
|
||||
</PopoverPortal>
|
||||
</Popover>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user