-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
code refactor and improvement #6203
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
1480ab2
chore: package code refactoring
anmolsinghbhatia d73dc1a
chore: component restructuring and refactor
anmolsinghbhatia e87c855
Merge branch 'preview' of github.com:makeplane/plane into code-refact…
anmolsinghbhatia 6bfbde6
chore: comment create improvement
anmolsinghbhatia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?