* Move code from EE to CE repo * chore: folder structure updates * Move sortabla and radio input to packages/ui * chore: updated empty and loading screens * chore: delete an estimate point * chore: estimate point response change * chore: updated create estimate and handled the build error * chore: migration fixes * chore: updated create estimate * chore: create estimate workflow update * chore: editing and deleting the existing estimate updates * chore: updating the new estinates in update modal * chore: ui changed * chore: response changes of get and post * chore: new field added in estimates * chore: individual endpoint for estimate points * chore: typo changes * chore: create estimate point * chore: integrated new endpoints * chore: update key value pair * chore: update sorting in the estimates * Add custom option in the estimate templates * chore: handled current project active estimate * chore: handle estimate update worklfow * chore: handled estimates switch * chore: handled estimate edit * chore: handled close button in estimate edit * chore: updated ceate estimare workflow * chore: updated switch estimate * chore: UI and typos * chore: resolved build error * chore: updated delete dropdown and handled the repeated values while creating and updating the estimate point * chore: handled inline errors in the estimate switch * chore: handled active and availability vadilation * chore: handled create and update components in projecr estimates * chore: added migration * Add category specific values for custom template * chore: estimate dropdown handled in issues * chore: estimate alerts * chore: updated alerts * Extract the list row actions * fix: updated and handled the estimate points * fix: upgrader ee banner * Fix issues with sortable * Fix sortable spacing issue in create estimate modal * fix: updated the issue create sorting * chore: removed radio button from ui and updated in the estimates * chore: resolved import error in packaged ui * chore: handled props in create modal * chore: removed ee files * chore: changed default analytics * chore: removed the migration file * chore: estimate point value in graph * chore: estimate point key change * chore: squashed migration (#4634) * chore: squashed migration * chore: removed instance migraion * chore: key changes * chore: issue activity back migration * dev: replaced estimate key with estimate id and replaced estimate type from number to string in issue * chore: estimate point value field * chore: estimate point activity * chore: removed the unused function * chore: resolved merge conflicts * chore: deploy board keys changed * chore: yarn lock file change * chore: resolved frontend build --------- Co-authored-by: guru_sainath <gurusainath007@gmail.com> * [WEB-1516] refactor: space app routing and layouts (#4705) * dev: change layout * chore: replace workspace slug and project id with anchor * chore: migration fixes * chore: update filtering logic * chore: endpoint changes * chore: update endpoint * chore: changed url pratterns * chore: use client side for layout and page * chore: issue vote changes * chore: project deploy board response change * refactor: publish project store and components * fix: update layout options after fetching settings * chore: remove unnecessary types * style: peek overview * refactor: components folder structure * fix: redirect from old path * chore: make the whole issue block clickable * chore: removed the migration file * chore: add server side redirection for old routes * chore: is enabled key change * chore: update types * chore: removed the migration file --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> * Merge develop into revamp-estimates-ce * chore: removed migration file and updated the estimate system order and removed ee banner * chore: initial radio select in create estimate * chore: space key changes * Fix sortable component as the sort order was broken. * [WEB-1516] refactor: publish project modal and types (#4716) * refacotr: project publish * chore: rename service names * chore: is_deployed changed to anchor * chore: update is_deployed key --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> * [WEB-412] chore: estimates analytics (#4730) * chore: estimate points in modules and cycle * chore: burn down chart analytics * chore: module serializer change * dev: handled y-axis estimates in analytics, implemented estimate points on modules * chore: burn down analytics * chore: state estimate point analytics * chore: updated the burn down values * Remove check mark from estimate point edit field in create estimate flow --------- Co-authored-by: guru_sainath <gurusainath007@gmail.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com> --------- Co-authored-by: Satish Gandham <satish.iitg@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Bavisetti Narayan <72156168+NarayanBavisetti@users.noreply.github.com> Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Co-authored-by: pushya22 <130810100+pushya22@users.noreply.github.com>
265 lines
9.1 KiB
Python
265 lines
9.1 KiB
Python
import random
|
|
import string
|
|
|
|
# Third party imports
|
|
from rest_framework.response import Response
|
|
from rest_framework import status
|
|
|
|
# Module imports
|
|
from ..base import BaseViewSet, BaseAPIView
|
|
from plane.app.permissions import ProjectEntityPermission
|
|
from plane.db.models import Project, Estimate, EstimatePoint, Issue
|
|
from plane.app.serializers import (
|
|
EstimateSerializer,
|
|
EstimatePointSerializer,
|
|
EstimateReadSerializer,
|
|
)
|
|
from plane.utils.cache import invalidate_cache
|
|
|
|
|
|
def generate_random_name(length=10):
|
|
letters = string.ascii_lowercase
|
|
return "".join(random.choice(letters) for i in range(length))
|
|
|
|
|
|
class ProjectEstimatePointEndpoint(BaseAPIView):
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
|
|
def get(self, request, slug, project_id):
|
|
project = Project.objects.get(workspace__slug=slug, pk=project_id)
|
|
if project.estimate_id is not None:
|
|
estimate_points = EstimatePoint.objects.filter(
|
|
estimate_id=project.estimate_id,
|
|
project_id=project_id,
|
|
workspace__slug=slug,
|
|
)
|
|
serializer = EstimatePointSerializer(estimate_points, many=True)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
return Response([], status=status.HTTP_200_OK)
|
|
|
|
|
|
class BulkEstimatePointEndpoint(BaseViewSet):
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
model = Estimate
|
|
serializer_class = EstimateSerializer
|
|
|
|
def list(self, request, slug, project_id):
|
|
estimates = (
|
|
Estimate.objects.filter(
|
|
workspace__slug=slug, project_id=project_id
|
|
)
|
|
.prefetch_related("points")
|
|
.select_related("workspace", "project")
|
|
)
|
|
serializer = EstimateReadSerializer(estimates, many=True)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
|
|
@invalidate_cache(
|
|
path="/api/workspaces/:slug/estimates/", url_params=True, user=False
|
|
)
|
|
def create(self, request, slug, project_id):
|
|
estimate = request.data.get('estimate')
|
|
estimate_name = estimate.get("name", generate_random_name())
|
|
estimate_type = estimate.get("type", 'categories')
|
|
last_used = estimate.get("last_used", False)
|
|
estimate = Estimate.objects.create(
|
|
name=estimate_name, project_id=project_id, last_used=last_used, type=estimate_type
|
|
)
|
|
|
|
estimate_points = request.data.get("estimate_points", [])
|
|
|
|
serializer = EstimatePointSerializer(
|
|
data=request.data.get("estimate_points"), many=True
|
|
)
|
|
if not serializer.is_valid():
|
|
return Response(
|
|
serializer.errors, status=status.HTTP_400_BAD_REQUEST
|
|
)
|
|
|
|
estimate_points = EstimatePoint.objects.bulk_create(
|
|
[
|
|
EstimatePoint(
|
|
estimate=estimate,
|
|
key=estimate_point.get("key", 0),
|
|
value=estimate_point.get("value", ""),
|
|
description=estimate_point.get("description", ""),
|
|
project_id=project_id,
|
|
workspace_id=estimate.workspace_id,
|
|
created_by=request.user,
|
|
updated_by=request.user,
|
|
)
|
|
for estimate_point in estimate_points
|
|
],
|
|
batch_size=10,
|
|
ignore_conflicts=True,
|
|
)
|
|
|
|
serializer = EstimateReadSerializer(estimate)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
|
|
def retrieve(self, request, slug, project_id, estimate_id):
|
|
estimate = Estimate.objects.get(
|
|
pk=estimate_id, workspace__slug=slug, project_id=project_id
|
|
)
|
|
serializer = EstimateReadSerializer(estimate)
|
|
return Response(
|
|
serializer.data,
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
@invalidate_cache(
|
|
path="/api/workspaces/:slug/estimates/", url_params=True, user=False
|
|
)
|
|
def partial_update(self, request, slug, project_id, estimate_id):
|
|
|
|
if not len(request.data.get("estimate_points", [])):
|
|
return Response(
|
|
{"error": "Estimate points are required"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
estimate = Estimate.objects.get(pk=estimate_id)
|
|
|
|
if request.data.get("estimate"):
|
|
estimate.name = request.data.get("estimate").get("name", estimate.name)
|
|
estimate.type = request.data.get("estimate").get("type", estimate.type)
|
|
estimate.save()
|
|
|
|
estimate_points_data = request.data.get("estimate_points", [])
|
|
|
|
estimate_points = EstimatePoint.objects.filter(
|
|
pk__in=[
|
|
estimate_point.get("id")
|
|
for estimate_point in estimate_points_data
|
|
],
|
|
workspace__slug=slug,
|
|
project_id=project_id,
|
|
estimate_id=estimate_id,
|
|
)
|
|
|
|
updated_estimate_points = []
|
|
for estimate_point in estimate_points:
|
|
# Find the data for that estimate point
|
|
estimate_point_data = [
|
|
point
|
|
for point in estimate_points_data
|
|
if point.get("id") == str(estimate_point.id)
|
|
]
|
|
if len(estimate_point_data):
|
|
estimate_point.value = estimate_point_data[0].get(
|
|
"value", estimate_point.value
|
|
)
|
|
estimate_point.key = estimate_point_data[0].get(
|
|
"key", estimate_point.key
|
|
)
|
|
updated_estimate_points.append(estimate_point)
|
|
|
|
EstimatePoint.objects.bulk_update(
|
|
updated_estimate_points,
|
|
["key", "value"],
|
|
batch_size=10,
|
|
)
|
|
|
|
estimate_serializer = EstimateReadSerializer(estimate)
|
|
return Response(
|
|
estimate_serializer.data,
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
@invalidate_cache(
|
|
path="/api/workspaces/:slug/estimates/", url_params=True, user=False
|
|
)
|
|
def destroy(self, request, slug, project_id, estimate_id):
|
|
estimate = Estimate.objects.get(
|
|
pk=estimate_id, workspace__slug=slug, project_id=project_id
|
|
)
|
|
estimate.delete()
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
|
|
class EstimatePointEndpoint(BaseViewSet):
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
|
|
def create(self, request, slug, project_id, estimate_id):
|
|
# TODO: add a key validation if the same key already exists
|
|
if not request.data.get("key") or not request.data.get("value"):
|
|
return Response(
|
|
{"error": "Key and value are required"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
key = request.data.get("key", 0)
|
|
value = request.data.get("value", "")
|
|
estimate_point = EstimatePoint.objects.create(
|
|
estimate_id=estimate_id,
|
|
project_id=project_id,
|
|
key=key,
|
|
value=value,
|
|
)
|
|
serializer = EstimatePointSerializer(estimate_point).data
|
|
return Response(serializer, status=status.HTTP_200_OK)
|
|
|
|
def partial_update(self, request, slug, project_id, estimate_id, estimate_point_id):
|
|
# TODO: add a key validation if the same key already exists
|
|
estimate_point = EstimatePoint.objects.get(
|
|
pk=estimate_point_id,
|
|
estimate_id=estimate_id,
|
|
project_id=project_id,
|
|
workspace__slug=slug,
|
|
)
|
|
serializer = EstimatePointSerializer(
|
|
estimate_point, data=request.data, partial=True
|
|
)
|
|
if not serializer.is_valid():
|
|
return Response(
|
|
serializer.errors, status=status.HTTP_400_BAD_REQUEST
|
|
)
|
|
serializer.save()
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
|
|
def destroy(
|
|
self, request, slug, project_id, estimate_id, estimate_point_id
|
|
):
|
|
new_estimate_id = request.GET.get("new_estimate_id", None)
|
|
estimate_points = EstimatePoint.objects.filter(
|
|
estimate_id=estimate_id,
|
|
project_id=project_id,
|
|
workspace__slug=slug,
|
|
)
|
|
# update all the issues with the new estimate
|
|
if new_estimate_id:
|
|
_ = Issue.objects.filter(
|
|
project_id=project_id,
|
|
workspace__slug=slug,
|
|
estimate_id=estimate_point_id,
|
|
).update(estimate_id=new_estimate_id)
|
|
|
|
# delete the estimate point
|
|
old_estimate_point = EstimatePoint.objects.filter(
|
|
pk=estimate_point_id
|
|
).first()
|
|
|
|
# rearrange the estimate points
|
|
updated_estimate_points = []
|
|
for estimate_point in estimate_points:
|
|
if estimate_point.key > old_estimate_point.key:
|
|
estimate_point.key -= 1
|
|
updated_estimate_points.append(estimate_point)
|
|
|
|
EstimatePoint.objects.bulk_update(
|
|
updated_estimate_points,
|
|
["key"],
|
|
batch_size=10,
|
|
)
|
|
|
|
old_estimate_point.delete()
|
|
|
|
return Response(
|
|
EstimatePointSerializer(updated_estimate_points, many=True).data,
|
|
status=status.HTTP_200_OK,
|
|
)
|