-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: merge conflicts resolved from preview
- Loading branch information
Showing
158 changed files
with
1,917 additions
and
587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
web/app/[workspaceSlug]/(projects)/projects/(detail)/layout.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./modal"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
"use client"; | ||
import React, { FC } from "react"; | ||
import { TIssue } from "@plane/types"; | ||
|
||
export interface EpicModalProps { | ||
data?: Partial<TIssue>; | ||
isOpen: boolean; | ||
onClose: () => void; | ||
beforeFormSubmit?: () => Promise<void>; | ||
onSubmit?: (res: TIssue) => Promise<void>; | ||
fetchIssueDetails?: boolean; | ||
primaryButtonText?: { | ||
default: string; | ||
loading: string; | ||
}; | ||
isProjectSelectionDisabled?: boolean; | ||
} | ||
|
||
export const CreateUpdateEpicModal: FC<EpicModalProps> = (props) => <></>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./epic-modal"; |
10 changes: 9 additions & 1 deletion
10
web/ce/components/gantt-chart/dependency/dependency-paths.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
export const TimelineDependencyPaths = () => <></>; | ||
import { FC } from "react"; | ||
|
||
type Props = { | ||
isEpic?: boolean; | ||
}; | ||
export const TimelineDependencyPaths: FC<Props> = (props) => { | ||
const { isEpic = false } = props; | ||
return <></>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
import { TIssueServiceType } from "@plane/types"; | ||
|
||
export type TIssueAdditionalPropertyValuesUpdateProps = { | ||
issueId: string; | ||
issueTypeId: string; | ||
projectId: string; | ||
workspaceSlug: string; | ||
isDisabled: boolean; | ||
issueServiceType?: TIssueServiceType; | ||
}; | ||
|
||
export const IssueAdditionalPropertyValuesUpdate: React.FC<TIssueAdditionalPropertyValuesUpdateProps> = () => <></>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { FC } from "react"; | ||
import { observer } from "mobx-react"; | ||
// layouts | ||
import { ProjectAuthWrapper as CoreProjectAuthWrapper } from "@/layouts/auth-layout"; | ||
|
||
export type IProjectAuthWrapper = { | ||
children: React.ReactNode; | ||
}; | ||
|
||
export const ProjectAuthWrapper: FC<IProjectAuthWrapper> = observer((props) => { | ||
// props | ||
const { children } = props; | ||
|
||
return <CoreProjectAuthWrapper>{children}</CoreProjectAuthWrapper>; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { FC } from "react"; | ||
import { observer } from "mobx-react"; | ||
// layouts | ||
import { WorkspaceAuthWrapper as CoreWorkspaceAuthWrapper } from "@/layouts/auth-layout"; | ||
|
||
export type IWorkspaceAuthWrapper = { | ||
children: React.ReactNode; | ||
}; | ||
|
||
export const WorkspaceAuthWrapper: FC<IWorkspaceAuthWrapper> = observer((props) => { | ||
// props | ||
const { children } = props; | ||
|
||
return <CoreWorkspaceAuthWrapper>{children}</CoreWorkspaceAuthWrapper>; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { IProjectIssuesFilter, ProjectIssuesFilter } from "@/store/issue/project"; | ||
import { IIssueRootStore } from "@/store/issue/root.store"; | ||
|
||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors | ||
export type IProjectEpicsFilter = IProjectIssuesFilter; | ||
|
||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors | ||
export class ProjectEpicsFilter extends ProjectIssuesFilter implements IProjectEpicsFilter { | ||
constructor(_rootStore: IIssueRootStore) { | ||
super(_rootStore); | ||
|
||
// root store | ||
this.rootIssueStore = _rootStore; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from "./filter.store"; | ||
export * from "./issue.store"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { IProjectIssues, ProjectIssues } from "@/store/issue/project"; | ||
import { IIssueRootStore } from "@/store/issue/root.store"; | ||
import { IProjectEpicsFilter } from "./filter.store"; | ||
|
||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors | ||
|
||
export type IProjectEpics = IProjectIssues; | ||
|
||
// @ts-nocheck - This class will never be used, extending similar class to avoid type errors | ||
export class ProjectEpics extends ProjectIssues implements IProjectEpics { | ||
constructor(_rootStore: IIssueRootStore, issueFilterStore: IProjectEpicsFilter) { | ||
super(_rootStore, issueFilterStore); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
"use client"; | ||
|
||
import { FC, ReactNode } from "react"; | ||
import { Network } from "lucide-react"; | ||
// hooks | ||
import { Tooltip } from "@plane/ui"; | ||
import { renderFormattedTime, renderFormattedDate, calculateTimeAgo } from "@/helpers/date-time.helper"; | ||
import { usePlatformOS } from "@/hooks/use-platform-os"; | ||
import { TProjectActivity } from "@/plane-web/types"; | ||
import { User } from "./user"; | ||
|
||
type TActivityBlockComponent = { | ||
icon?: ReactNode; | ||
activity: TProjectActivity; | ||
ends: "top" | "bottom" | undefined; | ||
children: ReactNode; | ||
customUserName?: string; | ||
}; | ||
|
||
export const ActivityBlockComponent: FC<TActivityBlockComponent> = (props) => { | ||
const { icon, activity, ends, children, customUserName } = props; | ||
// hooks | ||
const { isMobile } = usePlatformOS(); | ||
|
||
if (!activity) return <></>; | ||
return ( | ||
<div | ||
className={`relative flex items-center gap-3 text-xs ${ | ||
ends === "top" ? `pb-2` : ends === "bottom" ? `pt-2` : `py-2` | ||
}`} | ||
> | ||
<div className="absolute left-[13px] top-0 bottom-0 w-0.5 bg-custom-background-80" aria-hidden /> | ||
<div className="flex-shrink-0 ring-6 w-7 h-7 rounded-full overflow-hidden flex justify-center items-center z-[4] bg-custom-background-80 text-custom-text-200"> | ||
{icon ? icon : <Network className="w-3.5 h-3.5" />} | ||
</div> | ||
<div className="w-full truncate text-custom-text-200"> | ||
<User activity={activity} customUserName={customUserName} /> {children} | ||
<div className="mt-1"> | ||
<Tooltip | ||
isMobile={isMobile} | ||
tooltipContent={`${renderFormattedDate(activity.created_at)}, ${renderFormattedTime(activity.created_at)}`} | ||
> | ||
<span className="whitespace-nowrap text-custom-text-350 font-medium"> | ||
{calculateTimeAgo(activity.created_at)} | ||
</span> | ||
</Tooltip> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"use client"; | ||
|
||
import { FC } from "react"; | ||
import { observer } from "mobx-react"; | ||
|
||
import { TProjectActivity } from "@/plane-web/types"; | ||
import { ActivityBlockComponent } from "./activity-block"; | ||
import { iconsMap, messages } from "./helper"; | ||
|
||
type TActivityItem = { | ||
activity: TProjectActivity; | ||
showProject?: boolean; | ||
ends?: "top" | "bottom" | undefined; | ||
}; | ||
|
||
export const ActivityItem: FC<TActivityItem> = observer((props) => { | ||
const { activity, showProject = true, ends } = props; | ||
|
||
if (!activity) return null; | ||
|
||
const activityType = activity.field; | ||
const { message, customUserName } = messages(activity); | ||
const icon = iconsMap[activityType] || iconsMap.default; | ||
|
||
return ( | ||
<ActivityBlockComponent icon={icon} activity={activity} ends={ends} customUserName={customUserName}> | ||
<>{message}</> | ||
</ActivityBlockComponent> | ||
); | ||
}); |
Oops, something went wrong.