mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4416419c9b
* fix: page transaction model * fix: page transaction model * feat: updated ui for page route * chore: initailized `document-editor` package for plane * fix: format persistence while pasting markdown in editor * feat: Inititalized Document-Editor and Editor with Ref * feat: added tooltip component and slash command for editor * feat: added `document-editor` extensions * feat: added custom search component for embedding labels * feat: added top bar menu component * feat: created document-editor exposed components * feat: integrated `document-editor` in `pages` route * chore: updated dependencies * feat: merge conflict resolution * chore: modified configuration for document editor * feat: added content browser menu for document editor summary * feat: added fixed menu and editor instances * feat: added document edittor instances and summary table * feat: implemented document-editor in PageDetail * chore: css and export fixes * fix: migration and optimisation * fix: added `on_create` hook in the core editor * feat: added conditional menu bar action in document-editor * feat: added menu actions from single page view * feat: added services for archiving, unarchiving and retriving archived pages * feat: added services for page archives * feat: implemented page archives in page list view * feat: implemented page archives in document-editor * feat: added editor marking hook * chore: seperated editor header from the main content * chore: seperated editor summary utilities from the main editor * chore: refactored necessary components from the document editor * chore: removed summary sidebar component from the main content editor * chore: removed scrollSummaryDependency from Header and Sidebar * feat: seperated page renderer as a seperate component * chore: seperated page_renderer and sidebar as component from index * feat: added locked property to IPage type * feat: added lock/unlock services in page service * chore: seperated DocumentDetails as exported interface from index * feat: seperated document editor configs as seperate interfaces * chore: seperated menu options from the editor header component * fix: fixed page_lock performing lock/unlock operation on queryset instead of single instance * fix: css positioning changes * feat: added archive/lock alert labels * feat: added boolean props in menu-actions/options * feat: added lock/unlock & archive/unarchive services * feat: added on update mutations for archived pages in page-view * feat: added archive/lock on_update mutations in single page vieq * feat: exported readonly editor for locked pages * chore: seperated kanban menu props and saved over passing redundant data * fix: readonly editor not generating markings on first render * fix: cheveron overflowing from editor-header * chore: removed unused utility actions * fix: enabled sidebar view by default * feat: removed locking on pages in archived state * feat: added indentation in heading component * fix: button classnames in vertical dropdowns * feat: added `last_archived_at` and `last_edited_at` details in editor-header * feat: changed types for archived updates and document last updates * feat: updated editor and header props * feat: updated queryset according to new page query format * feat: added parameters in page view for shared / private pages * feat: updated other-page-view to shared page view && same with private pages * feat: added page-view as shared / private * fix: replaced deleting to archiving for pages * feat: handle restoring of page from archived section from list view * feat: made previledge based option render for pages * feat: removed layout view for page list view * feat: linting changes * fix: adding mobx changes to pages * fix: removed uneccessary migrations * fix: mobx store changes * fix: adding date-fns pacakge * fix: updating yarn lock * fix: removing unneccessary method params * chore: added access specifier to the create/update page modal * fix: tab view layout changes * chore: delete endpoint for page * fix: page actions, including- archive, favorite, access control, delete * chore: remove archive page modal * fix: build errors --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
137 lines
5.4 KiB
TypeScript
137 lines
5.4 KiB
TypeScript
import React, { useState } from "react";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { PencilIcon, StarIcon, TrashIcon } from "lucide-react";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { CreateUpdateProjectViewModal, DeleteProjectViewModal } from "components/views";
|
|
// ui
|
|
import { CustomMenu, PhotoFilterIcon } from "@plane/ui";
|
|
// helpers
|
|
import { calculateTotalFilters } from "helpers/filter.helper";
|
|
// types
|
|
import { IProjectView } from "types";
|
|
|
|
type Props = {
|
|
view: IProjectView;
|
|
};
|
|
|
|
export const ProjectViewListItem: React.FC<Props> = observer((props) => {
|
|
const { view } = props;
|
|
|
|
const [createUpdateViewModal, setCreateUpdateViewModal] = useState(false);
|
|
const [deleteViewModal, setDeleteViewModal] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { projectViews: projectViewsStore } = useMobxStore();
|
|
|
|
const handleAddToFavorites = () => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
projectViewsStore.addViewToFavorites(workspaceSlug.toString(), projectId.toString(), view.id);
|
|
};
|
|
|
|
const handleRemoveFromFavorites = () => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
projectViewsStore.removeViewFromFavorites(workspaceSlug.toString(), projectId.toString(), view.id);
|
|
};
|
|
|
|
const totalFilters = calculateTotalFilters(view.query_data ?? {});
|
|
|
|
return (
|
|
<>
|
|
{workspaceSlug && projectId && view && (
|
|
<CreateUpdateProjectViewModal
|
|
isOpen={createUpdateViewModal}
|
|
onClose={() => setCreateUpdateViewModal(false)}
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
data={view}
|
|
/>
|
|
)}
|
|
<DeleteProjectViewModal data={view} isOpen={deleteViewModal} onClose={() => setDeleteViewModal(false)} />
|
|
<div className="group hover:bg-custom-background-90 border-b border-custom-border-200">
|
|
<Link href={`/${workspaceSlug}/projects/${projectId}/views/${view.id}`}>
|
|
<a className="flex items-center justify-between relative rounded p-4 w-full">
|
|
<div className="flex items-center justify-between w-full">
|
|
<div className="flex items-center gap-4 overflow-hidden">
|
|
<div className="grid place-items-center flex-shrink-0 h-10 w-10 rounded bg-custom-background-90 group-hover:bg-custom-background-100">
|
|
<PhotoFilterIcon className="h-3.5 w-3.5" />
|
|
</div>
|
|
<div className="flex flex-col overflow-hidden ">
|
|
<p className="text-sm leading-4 font-medium truncate break-all">{view.name}</p>
|
|
{view?.description && <p className="text-xs text-custom-text-200 break-all">{view.description}</p>}
|
|
</div>
|
|
</div>
|
|
<div className="ml-2 flex flex-shrink-0">
|
|
<div className="flex items-center gap-4">
|
|
<p className="rounded bg-custom-background-80 py-1 px-2 text-xs text-custom-text-200 hidden group-hover:block">
|
|
{totalFilters} {totalFilters === 1 ? "filter" : "filters"}
|
|
</p>
|
|
|
|
{view.is_favorite ? (
|
|
<button
|
|
type="button"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
handleRemoveFromFavorites();
|
|
}}
|
|
className="grid place-items-center"
|
|
>
|
|
<StarIcon className="h-3.5 w-3.5 text-orange-400 fill-orange-400" strokeWidth={2} />
|
|
</button>
|
|
) : (
|
|
<button
|
|
type="button"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
handleAddToFavorites();
|
|
}}
|
|
className="grid place-items-center"
|
|
>
|
|
<StarIcon size={14} strokeWidth={2} />
|
|
</button>
|
|
)}
|
|
<CustomMenu width="auto" ellipsis>
|
|
<CustomMenu.MenuItem
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setCreateUpdateViewModal(true);
|
|
}}
|
|
>
|
|
<span className="flex items-center justify-start gap-2">
|
|
<PencilIcon size={14} strokeWidth={2} />
|
|
<span>Edit View</span>
|
|
</span>
|
|
</CustomMenu.MenuItem>
|
|
<CustomMenu.MenuItem
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setDeleteViewModal(true);
|
|
}}
|
|
>
|
|
<span className="flex items-center justify-start gap-2">
|
|
<TrashIcon size={14} strokeWidth={2} />
|
|
<span>Delete View</span>
|
|
</span>
|
|
</CustomMenu.MenuItem>
|
|
</CustomMenu>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|