mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
9b7b23f5a2
* dev: magic link login and email password disable * dev: user account deactivation * dev: change nginx conf routes * feat: changemod space * fix: space app dir fixes * dev: invalidate cache for instances when creating workspace * dev: update email templates for test email * dev: fix build errors * fix: auth fixes and improvement (#4452) * chore: change password api updated and missing password error code added * chore: auth helper updated * chore: disable send code input suggestion * chore: change password function updated * fix: application error on sign in page * chore: change password validation added and enhancement * dev: space base path in web * dev: admin user deactivated * dev: user and instance admin session endpoint * fix: last_workspace_id endpoint updated * fix: magic sign in and email password check added --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
150 lines
5.4 KiB
TypeScript
150 lines
5.4 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import Link from "next/link";
|
|
import { useRouter, useParams, useSearchParams, usePathname } from "next/navigation";
|
|
import { Briefcase } from "lucide-react";
|
|
import { Avatar, Button } from "@plane/ui";
|
|
// components
|
|
import { ProjectLogo } from "@/components/common";
|
|
import { IssueFiltersDropdown } from "@/components/issues/filters";
|
|
// hooks
|
|
import { useProject, useUser, useIssueFilter } from "@/hooks/store";
|
|
// types
|
|
import { TIssueBoardKeys } from "@/types/issue";
|
|
// components
|
|
import { NavbarIssueBoardView } from "./issue-board-view";
|
|
import { NavbarTheme } from "./theme";
|
|
|
|
type IssueNavbarProps = {
|
|
projectSettings: any;
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
const IssueNavbar: FC<IssueNavbarProps> = observer((props) => {
|
|
const { projectSettings, workspaceSlug, projectId } = props;
|
|
const { project_details, views } = projectSettings;
|
|
const { board, labels, states, priorities, peekId } = useParams<any>();
|
|
const searchParams = useSearchParams();
|
|
const pathName = usePathname();
|
|
// hooks
|
|
const router = useRouter();
|
|
// store
|
|
const { settings, activeLayout, hydrate, setActiveLayout } = useProject();
|
|
const { data: user } = useUser();
|
|
const { updateFilters } = useIssueFilter();
|
|
hydrate(projectSettings);
|
|
|
|
useEffect(() => {
|
|
if (workspaceSlug && projectId && settings) {
|
|
const viewsAcceptable: string[] = [];
|
|
const currentBoard: TIssueBoardKeys | null = null;
|
|
|
|
if (settings?.views?.list) viewsAcceptable.push("list");
|
|
if (settings?.views?.kanban) viewsAcceptable.push("kanban");
|
|
if (settings?.views?.calendar) viewsAcceptable.push("calendar");
|
|
if (settings?.views?.gantt) viewsAcceptable.push("gantt");
|
|
if (settings?.views?.spreadsheet) viewsAcceptable.push("spreadsheet");
|
|
|
|
// if (board) {
|
|
// if (viewsAcceptable.includes(board.toString())) {
|
|
// currentBoard = board.toString() as TIssueBoardKeys;
|
|
// } else {
|
|
// if (viewsAcceptable && viewsAcceptable.length > 0) {
|
|
// currentBoard = viewsAcceptable[0] as TIssueBoardKeys;
|
|
// }
|
|
// }
|
|
// } else {
|
|
// if (viewsAcceptable && viewsAcceptable.length > 0) {
|
|
// currentBoard = viewsAcceptable[0] as TIssueBoardKeys;
|
|
// }
|
|
// }
|
|
|
|
if (currentBoard) {
|
|
if (activeLayout === null || activeLayout !== currentBoard) {
|
|
let params: any = { board: currentBoard };
|
|
if (peekId && peekId.length > 0) params = { ...params, peekId: peekId };
|
|
if (priorities && priorities.length > 0) params = { ...params, priorities: priorities };
|
|
if (states && states.length > 0) params = { ...params, states: states };
|
|
if (labels && labels.length > 0) params = { ...params, labels: labels };
|
|
console.log("params", params);
|
|
let storeParams: any = {};
|
|
if (priorities && priorities.length > 0) storeParams = { ...storeParams, priority: priorities.split(",") };
|
|
if (states && states.length > 0) storeParams = { ...storeParams, state: states.split(",") };
|
|
if (labels && labels.length > 0) storeParams = { ...storeParams, labels: labels.split(",") };
|
|
|
|
if (storeParams) updateFilters(projectId, storeParams);
|
|
setActiveLayout(currentBoard);
|
|
router.push(`/${workspaceSlug}/${projectId}?${searchParams}`);
|
|
}
|
|
}
|
|
}
|
|
}, [
|
|
board,
|
|
workspaceSlug,
|
|
projectId,
|
|
router,
|
|
updateFilters,
|
|
labels,
|
|
states,
|
|
priorities,
|
|
peekId,
|
|
settings,
|
|
activeLayout,
|
|
setActiveLayout,
|
|
searchParams,
|
|
]);
|
|
|
|
return (
|
|
<div className="relative flex w-full items-center gap-4 px-5">
|
|
{/* project detail */}
|
|
<div className="flex flex-shrink-0 items-center gap-2">
|
|
{project_details ? (
|
|
<span className="h-7 w-7 flex-shrink-0 grid place-items-center">
|
|
<ProjectLogo logo={project_details.logo_props} className="text-lg" />
|
|
</span>
|
|
) : (
|
|
<span className="grid h-7 w-7 flex-shrink-0 place-items-center rounded uppercase">
|
|
<Briefcase className="h-4 w-4" />
|
|
</span>
|
|
)}
|
|
<div className="line-clamp-1 max-w-[300px] overflow-hidden text-lg font-medium">
|
|
{project_details?.name || `...`}
|
|
</div>
|
|
</div>
|
|
|
|
{/* issue views */}
|
|
<div className="relative flex flex-shrink-0 items-center gap-1 transition-all delay-150 ease-in-out">
|
|
<NavbarIssueBoardView layouts={views} />
|
|
</div>
|
|
|
|
{/* issue filters */}
|
|
<div className="relative flex flex-shrink-0 items-center gap-1 transition-all delay-150 ease-in-out">
|
|
<IssueFiltersDropdown workspaceSlug={workspaceSlug} projectId={projectId} />
|
|
</div>
|
|
|
|
{/* theming */}
|
|
<div className="relative flex-shrink-0">
|
|
<NavbarTheme />
|
|
</div>
|
|
|
|
{user?.id ? (
|
|
<div className="flex items-center gap-2 rounded border border-custom-border-200 p-2">
|
|
<Avatar name={user?.display_name} src={user?.avatar ?? undefined} shape="square" size="sm" />
|
|
<h6 className="text-xs font-medium">{user.display_name}</h6>
|
|
</div>
|
|
) : (
|
|
<div className="flex-shrink-0">
|
|
<Link href={`/?next_path=${pathName}`}>
|
|
<Button variant="outline-primary">Sign in</Button>
|
|
</Link>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
export default IssueNavbar;
|