forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
144 lines
4.0 KiB
TypeScript
144 lines
4.0 KiB
TypeScript
import { useContext, useEffect, useMemo } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import userService from "services/user.service";
|
|
// contexts
|
|
import { profileIssuesContext } from "contexts/profile-issues-context";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// fetch-keys
|
|
import { USER_PROFILE_ISSUES } from "constants/fetch-keys";
|
|
import { useWorkspaceMyMembership } from "contexts/workspace-member.context";
|
|
|
|
const useProfileIssues = (workspaceSlug: string | undefined, userId: string | undefined) => {
|
|
const {
|
|
issueView,
|
|
setIssueView,
|
|
groupByProperty,
|
|
setGroupByProperty,
|
|
orderBy,
|
|
setOrderBy,
|
|
showEmptyGroups,
|
|
setShowEmptyGroups,
|
|
showSubIssues,
|
|
setShowSubIssues,
|
|
filters,
|
|
setFilters,
|
|
properties,
|
|
setProperties,
|
|
} = useContext(profileIssuesContext);
|
|
|
|
const router = useRouter();
|
|
|
|
const { memberRole } = useWorkspaceMyMembership();
|
|
|
|
const params: any = {
|
|
assignees: filters?.assignees ? filters?.assignees.join(",") : undefined,
|
|
created_by: filters?.created_by ? filters?.created_by.join(",") : undefined,
|
|
group_by: groupByProperty,
|
|
labels: filters?.labels ? filters?.labels.join(",") : undefined,
|
|
order_by: orderBy,
|
|
priority: filters?.priority ? filters?.priority.join(",") : undefined,
|
|
state_group: filters?.state_group ? filters?.state_group.join(",") : undefined,
|
|
start_date: filters?.start_date ? filters?.start_date.join(",") : undefined,
|
|
target_date: filters?.target_date ? filters?.target_date.join(",") : undefined,
|
|
type: filters?.type ? filters?.type : undefined,
|
|
subscriber: filters?.subscriber ? filters?.subscriber.join(",") : undefined,
|
|
};
|
|
|
|
const { data: userProfileIssues, mutate: mutateProfileIssues } = useSWR(
|
|
workspaceSlug && userId && (memberRole.isOwner || memberRole.isMember || memberRole.isViewer)
|
|
? USER_PROFILE_ISSUES(workspaceSlug.toString(), userId.toString(), params)
|
|
: null,
|
|
workspaceSlug && userId && (memberRole.isOwner || memberRole.isMember || memberRole.isViewer)
|
|
? () => userService.getUserProfileIssues(workspaceSlug.toString(), userId.toString(), params)
|
|
: null
|
|
);
|
|
|
|
const groupedIssues:
|
|
| {
|
|
[key: string]: IIssue[];
|
|
}
|
|
| undefined = useMemo(() => {
|
|
if (!userProfileIssues) return undefined;
|
|
|
|
if (Array.isArray(userProfileIssues))
|
|
return {
|
|
allIssues: userProfileIssues,
|
|
};
|
|
|
|
if (groupByProperty === "state_detail.group") {
|
|
return userProfileIssues
|
|
? Object.assign(
|
|
{
|
|
backlog: [],
|
|
unstarted: [],
|
|
started: [],
|
|
completed: [],
|
|
cancelled: [],
|
|
},
|
|
userProfileIssues
|
|
)
|
|
: undefined;
|
|
}
|
|
|
|
return userProfileIssues;
|
|
}, [groupByProperty, userProfileIssues]);
|
|
|
|
useEffect(() => {
|
|
if (!userId || !filters) return;
|
|
|
|
if (
|
|
router.pathname.includes("assigned") &&
|
|
(!filters.assignees || !filters.assignees.includes(userId))
|
|
) {
|
|
setFilters({ assignees: [...(filters.assignees ?? []), userId] });
|
|
return;
|
|
}
|
|
|
|
if (
|
|
router.pathname.includes("created") &&
|
|
(!filters.created_by || !filters.created_by.includes(userId))
|
|
) {
|
|
setFilters({ created_by: [...(filters.created_by ?? []), userId] });
|
|
return;
|
|
}
|
|
|
|
if (router.pathname.includes("subscribed") && filters.subscriber === null) {
|
|
setFilters({ subscriber: [userId] });
|
|
return;
|
|
}
|
|
}, [filters, router, setFilters, userId]);
|
|
|
|
const isEmpty =
|
|
Object.values(groupedIssues ?? {}).every((group) => group.length === 0) ||
|
|
Object.keys(groupedIssues ?? {}).length === 0;
|
|
|
|
return {
|
|
groupedIssues,
|
|
issueView,
|
|
setIssueView,
|
|
groupByProperty,
|
|
setGroupByProperty,
|
|
orderBy,
|
|
setOrderBy,
|
|
showEmptyGroups,
|
|
setShowEmptyGroups,
|
|
showSubIssues,
|
|
setShowSubIssues,
|
|
filters,
|
|
setFilters,
|
|
properties,
|
|
setProperties,
|
|
isEmpty,
|
|
mutateProfileIssues,
|
|
params,
|
|
};
|
|
};
|
|
|
|
export default useProfileIssues;
|