* dev: initialize inbox * dev: inbox and inbox issues models, views and serializers * dev: issue object filter for inbox * dev: filter for search issues * dev: inbox snooze and duplicates * dev: set duplicate to null by default * feat: inbox ui and services * feat: project detail in inbox * style: layout, popover, icons, sidebar * dev: default inbox for project and pending issues count * dev: fix exception when creating default inbox * fix: empty state for inbox * dev: auto issue state updation when rejected or marked duplicate * fix: inbox update status * fix: hydrating chose with old values filters workflow * feat: inbox issue filtering * fix: issue inbox filtering * feat: filter inbox issues * refactor: analytics, border colors * dev: filters and views for inbox * dev: source for inboxissue and update list inbox issue * dev: update list endpoint to house filters and additional data * dev: bridge id for list * dev: remove print logs * dev: update inbox issue workflow * dev: add description_html in issue details * fix: inbox track event auth, chore: inbox issue action authorization * fix: removed unnecessary api calls * style: viewed issues * fix: priority validation * dev: remove print logs * dev: update issue inbox update workflow * chore: added inbox view context * fix: type errors * fix: build errors and warnings * dev: update issue inbox workflow and log all the changes * fix: filters logic, sidebar fields to show * dev: update issue filtering status * chore: update create inbox issue modal, fix: mutation issues * dev: update issue accept workflow * chore: add comment to inbox issues * chore: remove inboxIssueId from url after deleting * dev: update the issue triage workflow * fix: mutation after issue status change * chore: issue details sidebar divider * fix: issue activity for inbox issues * dev: update inbox perrmissions * dev: create new permission layer * chore: auth layer for inbox * chore: show accepting status * chore: show issue status at the top of issue details --------- Co-authored-by: Dakshesh Jain <dakshesh.jain14@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
105 lines
3.5 KiB
Python
105 lines
3.5 KiB
Python
# Python imports
|
|
from itertools import groupby
|
|
|
|
# Django imports
|
|
from django.db import IntegrityError
|
|
|
|
# Third party imports
|
|
from rest_framework.response import Response
|
|
from rest_framework import status
|
|
from sentry_sdk import capture_exception
|
|
|
|
|
|
# Module imports
|
|
from . import BaseViewSet, BaseAPIView
|
|
from plane.api.serializers import StateSerializer
|
|
from plane.api.permissions import ProjectEntityPermission
|
|
from plane.db.models import State, Issue
|
|
|
|
|
|
class StateViewSet(BaseViewSet):
|
|
serializer_class = StateSerializer
|
|
model = State
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
|
|
def perform_create(self, serializer):
|
|
serializer.save(project_id=self.kwargs.get("project_id"))
|
|
|
|
def get_queryset(self):
|
|
return self.filter_queryset(
|
|
super()
|
|
.get_queryset()
|
|
.filter(workspace__slug=self.kwargs.get("slug"))
|
|
.filter(project_id=self.kwargs.get("project_id"))
|
|
.filter(project__project_projectmember__member=self.request.user)
|
|
.select_related("project")
|
|
.select_related("workspace")
|
|
.distinct()
|
|
)
|
|
|
|
def create(self, request, slug, project_id):
|
|
try:
|
|
serializer = StateSerializer(data=request.data)
|
|
if serializer.is_valid():
|
|
serializer.save(project_id=project_id)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
except IntegrityError:
|
|
return Response(
|
|
{"error": "State with the name already exists"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def list(self, request, slug, project_id):
|
|
try:
|
|
state_dict = dict()
|
|
states = StateSerializer(self.get_queryset(), many=True).data
|
|
|
|
for key, value in groupby(
|
|
sorted(states, key=lambda state: state["group"]),
|
|
lambda state: state.get("group"),
|
|
):
|
|
state_dict[str(key)] = list(value)
|
|
|
|
return Response(state_dict, status=status.HTTP_200_OK)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def destroy(self, request, slug, project_id, pk):
|
|
try:
|
|
state = State.objects.get(
|
|
pk=pk, project_id=project_id, workspace__slug=slug
|
|
)
|
|
|
|
if state.default:
|
|
return Response(
|
|
{"error": "Default state cannot be deleted"}, status=False
|
|
)
|
|
|
|
# Check for any issues in the state
|
|
issue_exist = Issue.issue_objects.filter(state=pk).exists()
|
|
|
|
if issue_exist:
|
|
return Response(
|
|
{
|
|
"error": "The state is not empty, only empty states can be deleted"
|
|
},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
state.delete()
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
except State.DoesNotExist:
|
|
return Response({"error": "State does not exists"}, status=status.HTTP_404)
|