+1








22339b9786
* chore: init tailwind v4 * chore: update all configs * chore: add source to parse monorepo packages * chore: combine all css files * feat: added extended colors * chore: update typography * chore: update extended color var names * refactor: remove initial spacing variable and update dark mode selector * chore: update css files * chore: update animations * chore: remove spacing tokens * fix: external css files * chore: update tailwind-merge version * chore: update font family * chore: added brief agents.md and story for new design system * chore: enhance design system documentation with rare exceptions for visual separation * chore: add fontsource package for typography * chore: material symbols font added * chore: update shadow default * chore: add stroke and outline theme vars * chore: update ring and fill colors * chore: overwrite tailwind typography tokens * chore: add high contrast mode tokens * chore: update scrollbar colors * chore: backward compatibility for buttons and placeholders * chore: add priority colors * chore: update urgent priority color * chore: update plan colors * chore: add missing utility class * chore: update height and padding classes * chore: update label colors * chore: add missing utlity * chore: add typography plugin to space app * chore: replace existing classNames with new design system tokens #8244 (#8278) * chore: update border colors * chore: update all borders * chore: update text colors * chore: update css variables * chore: update font sizes and weights * chore: update bg colors * chore: sync changes * fix: uncomment spacing-1200 variable in variables.css * chore: update primary colors * refactor: updated border to border-subtle * refactor: update various components and improve UI consistency across the application * updated classnames * updated classnames * refactor: update color-related class names to use new design system variables for consistency * chore: default automations * chore: update text sizes * chore: home and power k * chore: home and power k * chore: replace ui package button components * chore: update text sizes * chore: updated issue identifier (#8275) * refactor: top navigation and sidebar design token (#8276) * chore: update all button components (#8277) * chore: new button component * chore: update existing buttons * chore: overwrite tailwind typography tokens * fix: twMerge config + fixed cn instances * refactor: toast design token updated (#8279) * chore: update existing buttons * chore: tooltip design token updatged (#8280) * chore: moved cn utility to propel (#8281) * chore: update space app UI (#8285) * chore; update space app filters component * fix: button whitespace wrap * chore: space app votes * chore: update dropdown components * refactor: auth, onboarding, sidebar, and common component design token migration (#8291) * chore: checkbox component design token updated * chore: indicator and oauth component design token updated * chore: sidebar design token updated * chore: auth and onboarding design token updated * chore: update divider color * style: update background colors and hover effects across list components * fix: tailwind merge * refactor: toggle switch design token migration and header utility classname added (#8295) * chore: toggle component design token updated * chore: h-header utility class added * chore: updated color tokens for work item detail page (#8296) * chore: update react-day-picker UI * refactor: update button sizes and styles in filters components * refactor: breadcrumbs design token updated (#8297) * chore: update priority icon colors * refactor: updated layout variables * chore: update plan card primary CTA * Chore update editor design system (#8299) * refactor: update styles for callout, color selector, logo selector, and image uploader * refactor:fix image * chore: update settings UI * chore: updated notifications color and size tokens (#8302) * chore: update sm button border radius * fix: logo renderer * chore: icon button component * chore: remove deprecated classes * chore: remove deprecated classes * chore: update editor list spacing * fix: icon button size * chore: improvements (#8309) * chore: update cycles and modules pages * refactor: update background styles across various components to use new design system colors * fix: button type errors * chore: update modals design system (#8310) * refactor: callout bg * refactor: code bg * refactor: modal size and variant --------- Co-authored-by: Aaryan Khandelwal <[email protected]> * chore: update next-themes * design: update billing and plans component styles and remove unused utility functions (#8313) * refactor: empty state design token migration and improvements (#8315) * fix: profile page * refactor: tabs design token updated (#8316) * chore: updated buttons and tokens for work items (#8317) * fix: adjust trial button spacing in checkout modal * chore: update add button hover state * fix: type error (#8318) * fix: type error * chore: code refactor * refactor: update button sizes and background styles in rich filters components * refactor: update editor bg * refactor: enhance Gantt chart sidebar functionality and styling - Removed unused prop from . - Updated to include new props for better block management and scrolling behavior. - Improved auto-scroll functionality for Gantt chart items. - Adjusted styles in component for consistent design. * regression: gantt design * chore: new badge component * fix: favorite star * chore: update backgroung, typography and button sizes across workspace settings general and members pages * fix: header button sizes * fix: emoji icon logo (#8323) * more fixes * chore: update settings sidebar * refactor: avatar component * chore: updated work item detail sidebar (#8327) * refactor: update link preview * fix: work item property dropdowns * fix: dropdown buttons border radius * chore: update power k translation * chore: updated profile activity design (#8328) * chore: update settings pages * chore: update work item sidebar alignments (#8330) * refactor: admin design system * chore: update page header --------- Co-authored-by: Jayash Tripathy <[email protected]> Co-authored-by: VipinDevelops <[email protected]> Co-authored-by: Vamsi Krishna <[email protected]> Co-authored-by: Anmol Singh Bhatia <[email protected]> Co-authored-by: gakshita <[email protected]> Co-authored-by: Palanikannan M <[email protected]> Co-authored-by: Prateek Shourya <[email protected]> Co-authored-by: b-saikrishnakanth <[email protected]> Co-authored-by: M. Palanikannan <[email protected]> * fix: formatting * reexport types * fix: lint error --------- Co-authored-by: Jayash Tripathy <[email protected]> Co-authored-by: VipinDevelops <[email protected]> Co-authored-by: Vamsi Krishna <[email protected]> Co-authored-by: Anmol Singh Bhatia <[email protected]> Co-authored-by: gakshita <[email protected]> Co-authored-by: Palanikannan M <[email protected]> Co-authored-by: Prateek Shourya <[email protected]> Co-authored-by: b-saikrishnakanth <[email protected]> Co-authored-by: M. Palanikannan <[email protected]>
193 lines
6.4 KiB
TypeScript
193 lines
6.4 KiB
TypeScript
import type { FC } from "react";
|
|
import React, { useCallback, useEffect, useRef, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useParams } from "next/navigation";
|
|
import { ListFilter, Search } from "lucide-react";
|
|
// plane helpers
|
|
import { MODULE_VIEW_LAYOUTS } from "@plane/constants";
|
|
import { useOutsideClickDetector } from "@plane/hooks";
|
|
// types
|
|
import { useTranslation } from "@plane/i18n";
|
|
import { CloseIcon } from "@plane/propel/icons";
|
|
import { Tooltip } from "@plane/propel/tooltip";
|
|
import type { TModuleFilters } from "@plane/types";
|
|
// ui
|
|
import { cn, calculateTotalFilters } from "@plane/utils";
|
|
// plane utils
|
|
// components
|
|
import { FiltersDropdown } from "@/components/issues/issue-layouts/filters";
|
|
import { ModuleFiltersSelection, ModuleOrderByDropdown } from "@/components/modules/dropdowns";
|
|
// constants
|
|
// helpers
|
|
// hooks
|
|
import { useMember } from "@/hooks/store/use-member";
|
|
import { useModuleFilter } from "@/hooks/store/use-module-filter";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
import { ModuleLayoutIcon } from "./module-layout-icon";
|
|
import { IconButton } from "@plane/propel/icon-button";
|
|
// i18n
|
|
|
|
export const ModuleViewHeader = observer(function ModuleViewHeader() {
|
|
// refs
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
// router
|
|
const { projectId } = useParams();
|
|
// hooks
|
|
const { isMobile } = usePlatformOS();
|
|
// store hooks
|
|
const {
|
|
workspace: { workspaceMemberIds },
|
|
} = useMember();
|
|
const {
|
|
currentProjectDisplayFilters: displayFilters,
|
|
currentProjectFilters: filters,
|
|
searchQuery,
|
|
updateDisplayFilters,
|
|
updateFilters,
|
|
updateSearchQuery,
|
|
} = useModuleFilter();
|
|
const { t } = useTranslation();
|
|
|
|
// states
|
|
const [isSearchOpen, setIsSearchOpen] = useState(searchQuery !== "" ? true : false);
|
|
|
|
// handlers
|
|
const handleFilters = useCallback(
|
|
(key: keyof TModuleFilters, value: string | string[]) => {
|
|
if (!projectId) return;
|
|
const newValues = filters?.[key] ?? [];
|
|
|
|
if (Array.isArray(value))
|
|
value.forEach((val) => {
|
|
if (!newValues.includes(val)) newValues.push(val);
|
|
else newValues.splice(newValues.indexOf(val), 1);
|
|
});
|
|
else {
|
|
if (filters?.[key]?.includes(value)) newValues.splice(newValues.indexOf(value), 1);
|
|
else newValues.push(value);
|
|
}
|
|
|
|
updateFilters(projectId.toString(), { [key]: newValues });
|
|
},
|
|
[filters, projectId, updateFilters]
|
|
);
|
|
|
|
const handleInputKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
if (e.key === "Escape") {
|
|
if (searchQuery && searchQuery.trim() !== "") updateSearchQuery("");
|
|
else {
|
|
setIsSearchOpen(false);
|
|
inputRef.current?.blur();
|
|
}
|
|
}
|
|
};
|
|
|
|
// outside click detector hook
|
|
useOutsideClickDetector(inputRef, () => {
|
|
if (isSearchOpen && searchQuery.trim() === "") setIsSearchOpen(false);
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (searchQuery.trim() !== "") setIsSearchOpen(true);
|
|
}, [searchQuery]);
|
|
|
|
const isFiltersApplied = calculateTotalFilters(filters ?? {}) !== 0 || displayFilters?.favorites;
|
|
|
|
return (
|
|
<div className="hidden h-full sm:flex items-center gap-3 self-end">
|
|
<div className="flex items-center">
|
|
{!isSearchOpen && (
|
|
<IconButton
|
|
variant="ghost"
|
|
size="lg"
|
|
className="-mr-1 p-"
|
|
onClick={() => {
|
|
setIsSearchOpen(true);
|
|
inputRef.current?.focus();
|
|
}}
|
|
icon={Search}
|
|
/>
|
|
)}
|
|
<div
|
|
className={cn(
|
|
"ml-auto flex items-center justify-start gap-1 rounded-md border border-transparent bg-surface-1 text-placeholder w-0 transition-[width] ease-linear overflow-hidden opacity-0",
|
|
{
|
|
"w-64 px-2.5 py-1.5 border-subtle opacity-100": isSearchOpen,
|
|
}
|
|
)}
|
|
>
|
|
<Search className="h-3.5 w-3.5" />
|
|
<input
|
|
ref={inputRef}
|
|
className="w-full max-w-[234px] border-none bg-transparent text-13 text-primary placeholder:text-placeholder focus:outline-none"
|
|
placeholder="Search"
|
|
value={searchQuery}
|
|
onChange={(e) => updateSearchQuery(e.target.value)}
|
|
onKeyDown={handleInputKeyDown}
|
|
/>
|
|
{isSearchOpen && (
|
|
<button
|
|
type="button"
|
|
className="grid place-items-center"
|
|
onClick={() => {
|
|
// updateSearchQuery("");
|
|
setIsSearchOpen(false);
|
|
}}
|
|
>
|
|
<CloseIcon className="h-3 w-3" />
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<ModuleOrderByDropdown
|
|
value={displayFilters?.order_by}
|
|
onChange={(val) => {
|
|
if (!projectId || val === displayFilters?.order_by) return;
|
|
updateDisplayFilters(projectId.toString(), {
|
|
order_by: val,
|
|
});
|
|
}}
|
|
/>
|
|
<FiltersDropdown
|
|
icon={<ListFilter className="h-3 w-3" />}
|
|
title="Filters"
|
|
placement="bottom-end"
|
|
isFiltersApplied={isFiltersApplied}
|
|
>
|
|
<ModuleFiltersSelection
|
|
displayFilters={displayFilters ?? {}}
|
|
filters={filters ?? {}}
|
|
handleDisplayFiltersUpdate={(val) => {
|
|
if (!projectId) return;
|
|
updateDisplayFilters(projectId.toString(), val);
|
|
}}
|
|
handleFiltersUpdate={handleFilters}
|
|
memberIds={workspaceMemberIds ?? undefined}
|
|
/>
|
|
</FiltersDropdown>
|
|
<div className="hidden md:flex items-center gap-1 rounded-sm bg-layer-3 p-1">
|
|
{MODULE_VIEW_LAYOUTS.map((layout) => (
|
|
<Tooltip key={layout.key} tooltipContent={t(layout.i18n_title)} isMobile={isMobile}>
|
|
<button
|
|
type="button"
|
|
className={cn(
|
|
"group grid h-5.5 w-7 place-items-center overflow-hidden rounded-sm transition-all hover:bg-layer-transparent-hover",
|
|
{
|
|
"bg-layer-transparent-active hover:bg-layer-transparent-active":
|
|
displayFilters?.layout === layout.key,
|
|
}
|
|
)}
|
|
onClick={() => {
|
|
if (!projectId) return;
|
|
updateDisplayFilters(projectId.toString(), { layout: layout.key });
|
|
}}
|
|
>
|
|
<ModuleLayoutIcon layoutType={layout.key} />
|
|
</button>
|
|
</Tooltip>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|