-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WEB-1890] fix: issue creation by using appropriate stores (#5072)
* fix issue creation by using appropriate stores * add comments * change useIssuesStore hook to use useIssueStoreType
- Loading branch information
1 parent
fb586c5
commit a623456
Showing
6 changed files
with
33 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,36 @@ | ||
import { createContext, useContext } from "react"; | ||
import { useParams } from "next/navigation"; | ||
import { EIssuesStoreType } from "@/constants/issue"; | ||
import { useIssues } from "./store"; | ||
|
||
export const IssuesStoreContext = createContext<EIssuesStoreType>(EIssuesStoreType.PROJECT); | ||
export const IssuesStoreContext = createContext<EIssuesStoreType | undefined>(undefined); | ||
|
||
export const useIssueStoreType = () => { | ||
const storeType = useContext(IssuesStoreContext); | ||
|
||
return storeType; | ||
const { globalViewId, viewId, projectId, cycleId, moduleId, userId } = useParams(); | ||
|
||
// If store type exists in context, use that store type | ||
if (storeType) return storeType; | ||
|
||
// else check the router params to determine the issue store | ||
if (globalViewId) return EIssuesStoreType.GLOBAL; | ||
|
||
if (userId) return EIssuesStoreType.PROFILE; | ||
|
||
if (viewId) return EIssuesStoreType.PROJECT_VIEW; | ||
|
||
if (cycleId) return EIssuesStoreType.CYCLE; | ||
|
||
if (moduleId) return EIssuesStoreType.MODULE; | ||
|
||
if (projectId) return EIssuesStoreType.PROJECT; | ||
|
||
return EIssuesStoreType.PROJECT; | ||
}; | ||
|
||
export const useIssuesStore = () => { | ||
const storeType = useContext(IssuesStoreContext); | ||
const storeType = useIssueStoreType(); | ||
|
||
return useIssues(storeType); | ||
}; |