From 363c5c8ec4ede8bd04fc3bb42255d455c9c091e0 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Mon, 17 Apr 2023 10:27:20 +0530 Subject: [PATCH 01/23] fix: join project mutation (#835) * fix: join project mutation * chore: remove imports --- .../auth-screens/project/join-project.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/apps/app/components/auth-screens/project/join-project.tsx b/apps/app/components/auth-screens/project/join-project.tsx index 1c2018db0..402fff42b 100644 --- a/apps/app/components/auth-screens/project/join-project.tsx +++ b/apps/app/components/auth-screens/project/join-project.tsx @@ -5,15 +5,16 @@ import { useRouter } from "next/router"; import { mutate } from "swr"; +// services +import projectService from "services/project.service"; // ui import { PrimaryButton } from "components/ui"; -// icon +// icons import { AssignmentClipboardIcon } from "components/icons"; -// img +// images import JoinProjectImg from "public/auth/project-not-authorized.svg"; -import projectService from "services/project.service"; // fetch-keys -import { PROJECT_MEMBERS } from "constants/fetch-keys"; +import { USER_PROJECT_VIEW } from "constants/fetch-keys"; export const JoinProject: React.FC = () => { const [isJoiningProject, setIsJoiningProject] = useState(false); @@ -22,13 +23,16 @@ export const JoinProject: React.FC = () => { const { workspaceSlug, projectId } = router.query; const handleJoin = () => { + if (!workspaceSlug || !projectId) return; + setIsJoiningProject(true); projectService .joinProject(workspaceSlug as string, { project_ids: [projectId as string], }) - .then(() => { - mutate(PROJECT_MEMBERS(projectId as string)); + .then(async () => { + await mutate(USER_PROJECT_VIEW(workspaceSlug.toString())); + setIsJoiningProject(false); }) .catch((err) => { console.error(err); From 5a36a7931f9d36d01c254f43be1d548305bb3ac3 Mon Sep 17 00:00:00 2001 From: Kunal Vishwakarma <116634168+kunalv17@users.noreply.github.com> Date: Mon, 17 Apr 2023 11:15:06 +0530 Subject: [PATCH 02/23] fix: removed extra spaces form estimate points brackets (#837) --- .../components/estimates/single-estimate.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/apps/app/components/estimates/single-estimate.tsx b/apps/app/components/estimates/single-estimate.tsx index 005acb25d..ea41ae6b7 100644 --- a/apps/app/components/estimates/single-estimate.tsx +++ b/apps/app/components/estimates/single-estimate.tsx @@ -152,14 +152,16 @@ export const SingleEstimate: React.FC = ({ {estimatePoints && estimatePoints.length > 0 ? ( -
- Estimate points( - {estimatePoints.map((point, index) => ( -
- {point.value} - {index !== estimatePoints.length - 1 && ","}{" "} -
- ))} +
+ Estimate points ( + + {estimatePoints.map((point, index) => ( +
+ {point.value} + {index !== estimatePoints.length - 1 && ","}{" "} +
+ ))} +
)
) : ( From 61761fedc5ffdf435f66b3fc5ce8ba331f5175bc Mon Sep 17 00:00:00 2001 From: pablohashescobar <118773738+pablohashescobar@users.noreply.github.com> Date: Mon, 17 Apr 2023 11:15:38 +0530 Subject: [PATCH 03/23] chore: remove view filter validation while creating or updating view (#836) --- apiserver/plane/api/serializers/view.py | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/apiserver/plane/api/serializers/view.py b/apiserver/plane/api/serializers/view.py index 021bcfb72..076228ae0 100644 --- a/apiserver/plane/api/serializers/view.py +++ b/apiserver/plane/api/serializers/view.py @@ -25,22 +25,18 @@ class IssueViewSerializer(BaseSerializer): def create(self, validated_data): query_params = validated_data.get("query_data", {}) - - if not bool(query_params): - raise serializers.ValidationError( - {"query_data": ["Query data field cannot be empty"]} - ) - - validated_data["query"] = issue_filters(query_params, "POST") + if bool(query_params): + validated_data["query"] = issue_filters(query_params, "POST") + else: + validated_data["query"] = dict() return IssueView.objects.create(**validated_data) def update(self, instance, validated_data): query_params = validated_data.get("query_data", {}) - if not bool(query_params): - raise serializers.ValidationError( - {"query_data": ["Query data field cannot be empty"]} - ) - + if bool(query_params): + validated_data["query"] = issue_filters(query_params, "POST") + else: + validated_data["query"] = dict() validated_data["query"] = issue_filters(query_params, "PATCH") return super().update(instance, validated_data) From e23075b7b91debd57ccc0a1f14b5bea747a78548 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Mon, 17 Apr 2023 11:30:48 +0530 Subject: [PATCH 04/23] chore: no estimates option, estimates activity (#838) --- apps/app/components/core/feeds.tsx | 12 +++-- apps/app/components/core/issues-view.tsx | 51 +++++++++---------- apps/app/components/issues/activity.tsx | 17 ++++++- apps/app/components/issues/form.tsx | 2 +- .../app/components/issues/select/estimate.tsx | 18 +++++-- .../issues/sidebar-select/estimate.tsx | 22 +++++--- apps/app/components/issues/sidebar.tsx | 2 +- .../issues/view-select/estimate.tsx | 21 ++++++-- apps/app/hooks/use-estimate-option.tsx | 2 +- .../projects/[projectId]/issues/[issueId].tsx | 1 + apps/app/types/issues.d.ts | 2 +- 11 files changed, 97 insertions(+), 53 deletions(-) diff --git a/apps/app/components/core/feeds.tsx b/apps/app/components/core/feeds.tsx index 1a8e6ca24..c16fcd10f 100644 --- a/apps/app/components/core/feeds.tsx +++ b/apps/app/components/core/feeds.tsx @@ -73,6 +73,10 @@ const activityDetails: { message: "updated the description.", icon: