-
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.
code refactor and improvement (#6203)
* chore: package code refactoring * chore: component restructuring and refactor * chore: comment create improvement
- Loading branch information
1 parent
442b0fd
commit 438cc33
Showing
134 changed files
with
1,337 additions
and
507 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
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 { 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
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
Oops, something went wrong.