Skip to content

Commit

Permalink
refactor: minor store level changes (#6500)
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekshourya29 authored Jan 28, 2025
1 parent 2f2e662 commit c0b6abc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions web/core/hooks/use-issue-layout-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const IssuesStoreContext = createContext<EIssuesStoreType | undefined>(un

export const useIssueStoreType = () => {
const storeType = useContext(IssuesStoreContext);
const { globalViewId, viewId, projectId, cycleId, moduleId, userId, epicId, teamId } = useParams();
const { globalViewId, viewId, projectId, cycleId, moduleId, userId, epicId, teamspaceId } = useParams();

// If store type exists in context, use that store type
if (storeType) return storeType;
Expand All @@ -27,9 +27,9 @@ export const useIssueStoreType = () => {

if (projectId) return EIssuesStoreType.PROJECT;

if (teamId) return EIssuesStoreType.TEAM;
if (teamspaceId) return EIssuesStoreType.TEAM;

if (teamId && viewId) return EIssuesStoreType.TEAM_VIEW;
if (teamspaceId && viewId) return EIssuesStoreType.TEAM_VIEW;

return EIssuesStoreType.PROJECT;
};
Expand Down
9 changes: 4 additions & 5 deletions web/core/store/issue/root.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {
// root store
import { RootStore } from "@/plane-web/store/root.store";
import { IWorkspaceMembership } from "@/store/member/workspace-member.store";
import { IStateStore, StateStore } from "../state.store";
// issues data store
import { IArchivedIssuesFilter, ArchivedIssuesFilter, IArchivedIssues, ArchivedIssues } from "./archived";
import { ICycleIssuesFilter, CycleIssuesFilter, ICycleIssues, CycleIssues } from "./cycle";
Expand Down Expand Up @@ -44,7 +43,7 @@ import {
export interface IIssueRootStore {
currentUserId: string | undefined;
workspaceSlug: string | undefined;
teamId: string | undefined;
teamspaceId: string | undefined;
projectId: string | undefined;
cycleId: string | undefined;
moduleId: string | undefined;
Expand Down Expand Up @@ -112,7 +111,7 @@ export interface IIssueRootStore {
export class IssueRootStore implements IIssueRootStore {
currentUserId: string | undefined = undefined;
workspaceSlug: string | undefined = undefined;
teamId: string | undefined = undefined;
teamspaceId: string | undefined = undefined;
projectId: string | undefined = undefined;
cycleId: string | undefined = undefined;
moduleId: string | undefined = undefined;
Expand Down Expand Up @@ -179,7 +178,7 @@ export class IssueRootStore implements IIssueRootStore {
constructor(rootStore: RootStore, serviceType: TIssueServiceType = EIssueServiceType.ISSUES) {
makeObservable(this, {
workspaceSlug: observable.ref,
teamId: observable.ref,
teamspaceId: observable.ref,
projectId: observable.ref,
cycleId: observable.ref,
moduleId: observable.ref,
Expand All @@ -203,7 +202,7 @@ export class IssueRootStore implements IIssueRootStore {
autorun(() => {
if (rootStore?.user?.data?.id) this.currentUserId = rootStore?.user?.data?.id;
if (this.workspaceSlug !== rootStore.router.workspaceSlug) this.workspaceSlug = rootStore.router.workspaceSlug;
if (this.teamId !== rootStore.router.teamId) this.teamId = rootStore.router.teamId;
if (this.teamspaceId !== rootStore.router.teamspaceId) this.teamspaceId = rootStore.router.teamspaceId;
if (this.projectId !== rootStore.router.projectId) this.projectId = rootStore.router.projectId;
if (this.cycleId !== rootStore.router.cycleId) this.cycleId = rootStore.router.cycleId;
if (this.moduleId !== rootStore.router.moduleId) this.moduleId = rootStore.router.moduleId;
Expand Down
10 changes: 5 additions & 5 deletions web/core/store/router.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface IRouterStore {
setQuery: (query: ParsedUrlQuery) => void;
// computed
workspaceSlug: string | undefined;
teamId: string | undefined;
teamspaceId: string | undefined;
projectId: string | undefined;
cycleId: string | undefined;
moduleId: string | undefined;
Expand All @@ -36,7 +36,7 @@ export class RouterStore implements IRouterStore {
setQuery: action.bound,
//computed
workspaceSlug: computed,
teamId: computed,
teamspaceId: computed,
projectId: computed,
cycleId: computed,
moduleId: computed,
Expand Down Expand Up @@ -71,11 +71,11 @@ export class RouterStore implements IRouterStore {
}

/**
* Returns the team id from the query
* Returns the teamspace id from the query
* @returns string|undefined
*/
get teamId() {
return this.query?.teamId?.toString();
get teamspaceId() {
return this.query?.teamspaceId?.toString();
}

/**
Expand Down

0 comments on commit c0b6abc

Please sign in to comment.