feat: init
This commit is contained in:
10
apps/web/ce/components/pages/header/collaborators-list.tsx
Normal file
10
apps/web/ce/components/pages/header/collaborators-list.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
"use client";
|
||||
|
||||
// store
|
||||
import type { TPageInstance } from "@/store/pages/base-page";
|
||||
|
||||
export type TPageCollaboratorsListProps = {
|
||||
page: TPageInstance;
|
||||
};
|
||||
|
||||
export const PageCollaboratorsList = ({}: TPageCollaboratorsListProps) => null;
|
||||
121
apps/web/ce/components/pages/header/lock-control.tsx
Normal file
121
apps/web/ce/components/pages/header/lock-control.tsx
Normal file
@@ -0,0 +1,121 @@
|
||||
"use client";
|
||||
|
||||
import { useState, useEffect, useRef } from "react";
|
||||
import { observer } from "mobx-react";
|
||||
import { LockKeyhole, LockKeyholeOpen } from "lucide-react";
|
||||
// plane imports
|
||||
import { PROJECT_PAGE_TRACKER_ELEMENTS } from "@plane/constants";
|
||||
import { Tooltip } from "@plane/propel/tooltip";
|
||||
// helpers
|
||||
import { captureClick } from "@/helpers/event-tracker.helper";
|
||||
// hooks
|
||||
import { usePageOperations } from "@/hooks/use-page-operations";
|
||||
// store
|
||||
import type { TPageInstance } from "@/store/pages/base-page";
|
||||
|
||||
// Define our lock display states, renaming "icon-only" to "neutral"
|
||||
type LockDisplayState = "neutral" | "locked" | "unlocked";
|
||||
|
||||
type Props = {
|
||||
page: TPageInstance;
|
||||
};
|
||||
|
||||
export const PageLockControl = observer(({ page }: Props) => {
|
||||
// Initial state: if locked, then "locked", otherwise default to "neutral"
|
||||
const [displayState, setDisplayState] = useState<LockDisplayState>(page.is_locked ? "locked" : "neutral");
|
||||
// derived values
|
||||
const { canCurrentUserLockPage, is_locked } = page;
|
||||
// Ref for the transition timer
|
||||
const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);
|
||||
// Ref to store the previous value of isLocked for detecting transitions
|
||||
const prevLockedRef = useRef(is_locked);
|
||||
// page operations
|
||||
const {
|
||||
pageOperations: { toggleLock },
|
||||
} = usePageOperations({
|
||||
page,
|
||||
});
|
||||
|
||||
// Cleanup any running timer on unmount
|
||||
useEffect(
|
||||
() => () => {
|
||||
if (timerRef.current) clearTimeout(timerRef.current);
|
||||
},
|
||||
[]
|
||||
);
|
||||
|
||||
// Update display state when isLocked changes
|
||||
useEffect(() => {
|
||||
// Clear any previous timer to avoid overlapping transitions
|
||||
if (timerRef.current) {
|
||||
clearTimeout(timerRef.current);
|
||||
timerRef.current = null;
|
||||
}
|
||||
|
||||
// Transition logic:
|
||||
// If locked, ensure the display state is "locked"
|
||||
// If unlocked after being locked, show "unlocked" briefly then revert to "neutral"
|
||||
if (is_locked) {
|
||||
setDisplayState("locked");
|
||||
} else if (prevLockedRef.current === true) {
|
||||
setDisplayState("unlocked");
|
||||
timerRef.current = setTimeout(() => {
|
||||
setDisplayState("neutral");
|
||||
timerRef.current = null;
|
||||
}, 600);
|
||||
} else {
|
||||
setDisplayState("neutral");
|
||||
}
|
||||
|
||||
// Update the previous locked state
|
||||
prevLockedRef.current = is_locked;
|
||||
}, [is_locked]);
|
||||
|
||||
if (!canCurrentUserLockPage) return null;
|
||||
|
||||
// Render different UI based on the current display state
|
||||
return (
|
||||
<>
|
||||
{displayState === "neutral" && (
|
||||
<Tooltip tooltipContent="Lock" position="bottom">
|
||||
<button
|
||||
type="button"
|
||||
onClick={toggleLock}
|
||||
data-ph-element={PROJECT_PAGE_TRACKER_ELEMENTS.LOCK_BUTTON}
|
||||
className="flex-shrink-0 size-6 grid place-items-center rounded text-custom-text-200 hover:text-custom-text-100 hover:bg-custom-background-80 transition-colors"
|
||||
aria-label="Lock"
|
||||
>
|
||||
<LockKeyhole className="size-3.5" />
|
||||
</button>
|
||||
</Tooltip>
|
||||
)}
|
||||
|
||||
{displayState === "locked" && (
|
||||
<button
|
||||
type="button"
|
||||
onClick={toggleLock}
|
||||
data-ph-element={PROJECT_PAGE_TRACKER_ELEMENTS.LOCK_BUTTON}
|
||||
className="h-6 flex items-center gap-1 px-2 rounded text-custom-primary-100 bg-custom-primary-100/20 hover:bg-custom-primary-100/30 transition-colors"
|
||||
aria-label="Locked"
|
||||
>
|
||||
<LockKeyhole className="flex-shrink-0 size-3.5 animate-lock-icon" />
|
||||
<span className="text-xs font-medium whitespace-nowrap overflow-hidden transition-all duration-500 ease-out animate-text-slide-in">
|
||||
Locked
|
||||
</span>
|
||||
</button>
|
||||
)}
|
||||
|
||||
{displayState === "unlocked" && (
|
||||
<div
|
||||
className="h-6 flex items-center gap-1 px-2 rounded text-custom-text-200 animate-fade-out"
|
||||
aria-label="Unlocked"
|
||||
>
|
||||
<LockKeyholeOpen className="flex-shrink-0 size-3.5 animate-unlock-icon" />
|
||||
<span className="text-xs font-medium whitespace-nowrap overflow-hidden transition-all duration-500 ease-out animate-text-slide-in animate-text-fade-out">
|
||||
Unlocked
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
});
|
||||
10
apps/web/ce/components/pages/header/move-control.tsx
Normal file
10
apps/web/ce/components/pages/header/move-control.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
"use client";
|
||||
|
||||
// store
|
||||
import type { TPageInstance } from "@/store/pages/base-page";
|
||||
|
||||
export type TPageMoveControlProps = {
|
||||
page: TPageInstance;
|
||||
};
|
||||
|
||||
export const PageMoveControl = ({}: TPageMoveControlProps) => null;
|
||||
12
apps/web/ce/components/pages/header/share-control.tsx
Normal file
12
apps/web/ce/components/pages/header/share-control.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
"use client";
|
||||
|
||||
import type { EPageStoreType } from "@/plane-web/hooks/store";
|
||||
// store
|
||||
import type { TPageInstance } from "@/store/pages/base-page";
|
||||
|
||||
export type TPageShareControlProps = {
|
||||
page: TPageInstance;
|
||||
storeType: EPageStoreType;
|
||||
};
|
||||
|
||||
export const PageShareControl = ({}: TPageShareControlProps) => null;
|
||||
Reference in New Issue
Block a user