mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
69e110f4a8
* style: project card UI updated * dev: initialize project filter store and types * chore: implemented filtering logic * chore: implemented ordering * chore: my projects filter added * chore: update created at date filter options * refactor: order by dropdown * style: revert project card UI * fix: project card z-index * fix: members filtering * fix: build errors
75 lines
2.4 KiB
TypeScript
75 lines
2.4 KiB
TypeScript
import { ArrowDownWideNarrow, Check, ChevronDown } from "lucide-react";
|
|
// ui
|
|
import { CustomMenu, getButtonStyling } from "@plane/ui";
|
|
// helpers
|
|
import { cn } from "helpers/common.helper";
|
|
// types
|
|
import { TProjectOrderByOptions } from "@plane/types";
|
|
// constants
|
|
import { PROJECT_ORDER_BY_OPTIONS } from "constants/project";
|
|
|
|
type Props = {
|
|
onChange: (value: TProjectOrderByOptions) => void;
|
|
value: TProjectOrderByOptions | undefined;
|
|
};
|
|
|
|
const DISABLED_ORDERING_OPTIONS = ["sort_order"];
|
|
|
|
export const ProjectOrderByDropdown: React.FC<Props> = (props) => {
|
|
const { onChange, value } = props;
|
|
|
|
const orderByDetails = PROJECT_ORDER_BY_OPTIONS.find((option) => value?.includes(option.key));
|
|
|
|
const isDescending = value?.[0] === "-";
|
|
const isOrderingDisabled = !!value && DISABLED_ORDERING_OPTIONS.includes(value);
|
|
|
|
return (
|
|
<CustomMenu
|
|
customButton={
|
|
<div className={cn(getButtonStyling("neutral-primary", "sm"), "px-2 text-custom-text-300")}>
|
|
<ArrowDownWideNarrow className="h-3 w-3" />
|
|
{orderByDetails?.label}
|
|
<ChevronDown className="h-3 w-3" strokeWidth={2} />
|
|
</div>
|
|
}
|
|
placement="bottom-end"
|
|
closeOnSelect
|
|
>
|
|
{PROJECT_ORDER_BY_OPTIONS.map((option) => (
|
|
<CustomMenu.MenuItem
|
|
key={option.key}
|
|
className="flex items-center justify-between gap-2"
|
|
onClick={() => {
|
|
if (isDescending) onChange(`-${option.key}` as TProjectOrderByOptions);
|
|
else onChange(option.key);
|
|
}}
|
|
>
|
|
{option.label}
|
|
{value?.includes(option.key) && <Check className="h-3 w-3" />}
|
|
</CustomMenu.MenuItem>
|
|
))}
|
|
<hr className="my-2" />
|
|
<CustomMenu.MenuItem
|
|
className="flex items-center justify-between gap-2"
|
|
onClick={() => {
|
|
if (isDescending) onChange(value.slice(1) as TProjectOrderByOptions);
|
|
}}
|
|
disabled={isOrderingDisabled}
|
|
>
|
|
Ascending
|
|
{!isOrderingDisabled && !isDescending && <Check className="h-3 w-3" />}
|
|
</CustomMenu.MenuItem>
|
|
<CustomMenu.MenuItem
|
|
className="flex items-center justify-between gap-2"
|
|
onClick={() => {
|
|
if (!isDescending) onChange(`-${value}` as TProjectOrderByOptions);
|
|
}}
|
|
disabled={isOrderingDisabled}
|
|
>
|
|
Descending
|
|
{!isOrderingDisabled && isDescending && <Check className="h-3 w-3" />}
|
|
</CustomMenu.MenuItem>
|
|
</CustomMenu>
|
|
);
|
|
};
|