* chore: analytics endpoint * added anlytics v2 * updated status icons * added area chart in workitems and en translations * active projects * chore: created analytics chart * chore: validation errors * improved radar-chart , added empty states , added projects summary * chore: added a new graph in advance analytics * integrated priority chart * chore: added csv exporter * added priority dropdown * integrated created vs resolved chart * custom x and y axis label in bar and area chart * added wrapper styles to legends * added filter components * fixed temp data imports * integrated filters in priority charts * added label to priority chart and updated duration filter * refactor * reverted to void onchange * fixed some contant exports * fixed type issues * fixed some type and build issues * chore: updated the filtering logic for analytics * updated default value to last_30_days * percentage value whole number and added some rules for axis options * fixed some translations * added - custom tick for radar, calc of insight cards, filter labels * chore: opitmised the analytics endpoint * replace old analytics path with new , updated labels of insight card, done some store fixes * chore: updated the export request * Enhanced ProjectSelect to support multi-select, improved state management, and optimized data fetching and component structure. * fix: round completion percentage calculation in ActiveProjectItem * added empty states in project insights * Added loader and empty state in created/resolved chart * added loaders * added icons in filters * added custom colors in customised charts * cleaned up some code * added some responsiveness * updated translations * updated serrchbar for the table * added work item modal in project analytics * fixed some of the layput issues in the peek view * chore: updated the base function for viewsets * synced tab to url * code cleanup * chore: updated the export logic * fixed project_ids filter * added icon in projectdropdown * updated export button position * export csv and emptystates icons * refactor * code refactor * updated loaders, moved color pallete to contants, added nullish collasece operator in neccessary places * removed uneccessary cn * fixed formatting issues * fixed empty project_ids in payload * improved null checks * optimized charts * modified relevant variables to observable.ref * fixed the duration type * optimized some code * updated query key in project-insight * updated query key in project-insight * updated formatting * chore: replaced analytics route with new one and done some optimizations * removed the old analytics --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
411 lines
15 KiB
Python
411 lines
15 KiB
Python
from rest_framework.response import Response
|
|
from rest_framework import status
|
|
from typing import Dict, List, Any
|
|
from datetime import timedelta
|
|
from django.db.models import QuerySet, Q, Count
|
|
from django.http import HttpRequest
|
|
|
|
from plane.app.views.base import BaseAPIView
|
|
from plane.app.permissions import ROLE, allow_permission
|
|
from plane.db.models import (
|
|
WorkspaceMember,
|
|
Project,
|
|
Issue,
|
|
Cycle,
|
|
Module,
|
|
IssueView,
|
|
ProjectPage,
|
|
)
|
|
|
|
from django.db.models import (
|
|
Q,
|
|
Count,
|
|
)
|
|
from plane.utils.build_chart import build_analytics_chart
|
|
from datetime import timedelta
|
|
from plane.bgtasks.analytic_plot_export import export_analytics_to_csv_email
|
|
from plane.utils.date_utils import (
|
|
get_analytics_filters,
|
|
)
|
|
|
|
from plane.utils.build_chart import build_analytics_chart
|
|
from plane.bgtasks.analytic_plot_export import export_analytics_to_csv_email
|
|
from plane.utils.date_utils import get_analytics_filters
|
|
|
|
|
|
class AdvanceAnalyticsBaseView(BaseAPIView):
|
|
def initialize_workspace(self, slug: str, type: str) -> None:
|
|
self._workspace_slug = slug
|
|
self.filters = get_analytics_filters(
|
|
slug=slug,
|
|
type=type,
|
|
user=self.request.user,
|
|
date_filter=self.request.GET.get("date_filter", None),
|
|
project_ids=self.request.GET.get("project_ids", None),
|
|
)
|
|
|
|
|
|
class AdvanceAnalyticsEndpoint(AdvanceAnalyticsBaseView):
|
|
|
|
def get_filtered_counts(self, queryset: QuerySet) -> Dict[str, int]:
|
|
def get_filtered_count() -> int:
|
|
if self.filters["analytics_date_range"]:
|
|
return queryset.filter(
|
|
created_at__gte=self.filters["analytics_date_range"]["current"][
|
|
"gte"
|
|
],
|
|
created_at__lte=self.filters["analytics_date_range"]["current"][
|
|
"lte"
|
|
],
|
|
).count()
|
|
return queryset.count()
|
|
|
|
def get_previous_count() -> int:
|
|
if self.filters["analytics_date_range"] and self.filters[
|
|
"analytics_date_range"
|
|
].get("previous"):
|
|
return queryset.filter(
|
|
created_at__gte=self.filters["analytics_date_range"]["previous"][
|
|
"gte"
|
|
],
|
|
created_at__lte=self.filters["analytics_date_range"]["previous"][
|
|
"lte"
|
|
],
|
|
).count()
|
|
return 0
|
|
|
|
return {
|
|
"count": get_filtered_count(),
|
|
"filter_count": get_previous_count(),
|
|
}
|
|
|
|
def get_overview_data(self) -> Dict[str, Dict[str, int]]:
|
|
return {
|
|
"total_users": self.get_filtered_counts(
|
|
WorkspaceMember.objects.filter(
|
|
workspace__slug=self._workspace_slug, is_active=True
|
|
)
|
|
),
|
|
"total_admins": self.get_filtered_counts(
|
|
WorkspaceMember.objects.filter(
|
|
workspace__slug=self._workspace_slug,
|
|
role=ROLE.ADMIN.value,
|
|
is_active=True,
|
|
)
|
|
),
|
|
"total_members": self.get_filtered_counts(
|
|
WorkspaceMember.objects.filter(
|
|
workspace__slug=self._workspace_slug,
|
|
role=ROLE.MEMBER.value,
|
|
is_active=True,
|
|
)
|
|
),
|
|
"total_guests": self.get_filtered_counts(
|
|
WorkspaceMember.objects.filter(
|
|
workspace__slug=self._workspace_slug,
|
|
role=ROLE.GUEST.value,
|
|
is_active=True,
|
|
)
|
|
),
|
|
"total_projects": self.get_filtered_counts(
|
|
Project.objects.filter(**self.filters["project_filters"])
|
|
),
|
|
"total_work_items": self.get_filtered_counts(
|
|
Issue.issue_objects.filter(**self.filters["base_filters"])
|
|
),
|
|
"total_cycles": self.get_filtered_counts(
|
|
Cycle.objects.filter(**self.filters["base_filters"])
|
|
),
|
|
"total_intake": self.get_filtered_counts(
|
|
Issue.objects.filter(**self.filters["base_filters"]).filter(
|
|
issue_intake__isnull=False
|
|
)
|
|
),
|
|
}
|
|
|
|
|
|
def get_work_items_stats(self) -> Dict[str, Dict[str, int]]:
|
|
base_queryset = Issue.objects.filter(**self.filters["base_filters"])
|
|
|
|
return {
|
|
"total_work_items": self.get_filtered_counts(base_queryset),
|
|
"started_work_items": self.get_filtered_counts(
|
|
base_queryset.filter(state__group="started")
|
|
),
|
|
"backlog_work_items": self.get_filtered_counts(
|
|
base_queryset.filter(state__group="backlog")
|
|
),
|
|
"un_started_work_items": self.get_filtered_counts(
|
|
base_queryset.filter(state__group="unstarted")
|
|
),
|
|
"completed_work_items": self.get_filtered_counts(
|
|
base_queryset.filter(state__group="completed")
|
|
),
|
|
}
|
|
|
|
@allow_permission([ROLE.ADMIN, ROLE.MEMBER], level="WORKSPACE")
|
|
def get(self, request: HttpRequest, slug: str) -> Response:
|
|
self.initialize_workspace(slug, type="analytics")
|
|
tab = request.GET.get("tab", "overview")
|
|
|
|
if tab == "overview":
|
|
return Response(
|
|
self.get_overview_data(),
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
elif tab == "work-items":
|
|
return Response(
|
|
self.get_work_items_stats(),
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
return Response({"message": "Invalid tab"}, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
class AdvanceAnalyticsStatsEndpoint(AdvanceAnalyticsBaseView):
|
|
def get_project_issues_stats(self) -> QuerySet:
|
|
# Get the base queryset with workspace and project filters
|
|
base_queryset = Issue.issue_objects.filter(**self.filters["base_filters"])
|
|
|
|
# Apply date range filter if available
|
|
if self.filters["chart_period_range"]:
|
|
start_date, end_date = self.filters["chart_period_range"]
|
|
base_queryset = base_queryset.filter(
|
|
created_at__date__gte=start_date, created_at__date__lte=end_date
|
|
)
|
|
|
|
return (
|
|
base_queryset.values("project_id", "project__name")
|
|
.annotate(
|
|
cancelled_work_items=Count("id", filter=Q(state__group="cancelled")),
|
|
completed_work_items=Count("id", filter=Q(state__group="completed")),
|
|
backlog_work_items=Count("id", filter=Q(state__group="backlog")),
|
|
un_started_work_items=Count("id", filter=Q(state__group="unstarted")),
|
|
started_work_items=Count("id", filter=Q(state__group="started")),
|
|
)
|
|
.order_by("project_id")
|
|
)
|
|
|
|
@allow_permission([ROLE.ADMIN, ROLE.MEMBER], level="WORKSPACE")
|
|
def get(self, request: HttpRequest, slug: str) -> Response:
|
|
self.initialize_workspace(slug, type="chart")
|
|
type = request.GET.get("type", "work-items")
|
|
|
|
if type == "work-items":
|
|
return Response(
|
|
self.get_project_issues_stats(),
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
return Response({"message": "Invalid type"}, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
class AdvanceAnalyticsChartEndpoint(AdvanceAnalyticsBaseView):
|
|
def project_chart(self) -> List[Dict[str, Any]]:
|
|
# Get the base queryset with workspace and project filters
|
|
base_queryset = Issue.issue_objects.filter(**self.filters["base_filters"])
|
|
date_filter = {}
|
|
|
|
# Apply date range filter if available
|
|
if self.filters["chart_period_range"]:
|
|
start_date, end_date = self.filters["chart_period_range"]
|
|
date_filter = {
|
|
"created_at__date__gte": start_date,
|
|
"created_at__date__lte": end_date,
|
|
}
|
|
|
|
total_work_items = base_queryset.filter(**date_filter).count()
|
|
total_cycles = Cycle.objects.filter(
|
|
**self.filters["base_filters"], **date_filter
|
|
).count()
|
|
total_modules = Module.objects.filter(
|
|
**self.filters["base_filters"], **date_filter
|
|
).count()
|
|
total_intake = Issue.objects.filter(
|
|
issue_intake__isnull=False, **self.filters["base_filters"], **date_filter
|
|
).count()
|
|
total_members = WorkspaceMember.objects.filter(
|
|
workspace__slug=self._workspace_slug, is_active=True, **date_filter
|
|
).count()
|
|
total_pages = ProjectPage.objects.filter(
|
|
**self.filters["base_filters"], **date_filter
|
|
).count()
|
|
total_views = IssueView.objects.filter(
|
|
**self.filters["base_filters"], **date_filter
|
|
).count()
|
|
|
|
data = {
|
|
"work_items": total_work_items,
|
|
"cycles": total_cycles,
|
|
"modules": total_modules,
|
|
"intake": total_intake,
|
|
"members": total_members,
|
|
"pages": total_pages,
|
|
"views": total_views,
|
|
}
|
|
|
|
return [
|
|
{
|
|
"key": key,
|
|
"name": key.replace("_", " ").title(),
|
|
"count": value or 0,
|
|
}
|
|
for key, value in data.items()
|
|
]
|
|
|
|
def work_item_completion_chart(self) -> Dict[str, Any]:
|
|
# Get the base queryset
|
|
queryset = (
|
|
Issue.issue_objects.filter(**self.filters["base_filters"])
|
|
.select_related("workspace", "state", "parent")
|
|
.prefetch_related(
|
|
"assignees", "labels", "issue_module__module", "issue_cycle__cycle"
|
|
)
|
|
)
|
|
# Apply date range filter if available
|
|
if self.filters["chart_period_range"]:
|
|
start_date, end_date = self.filters["chart_period_range"]
|
|
queryset = queryset.filter(
|
|
created_at__date__gte=start_date, created_at__date__lte=end_date
|
|
)
|
|
|
|
# Get daily stats with optimized query
|
|
daily_stats = (
|
|
queryset.values("created_at__date")
|
|
.annotate(
|
|
created_count=Count("id"),
|
|
completed_count=Count("id", filter=Q(completed_at__isnull=False)),
|
|
)
|
|
.order_by("created_at__date")
|
|
)
|
|
|
|
# Create a dictionary of existing stats with summed counts
|
|
stats_dict = {
|
|
stat["created_at__date"].strftime("%Y-%m-%d"): {
|
|
"created_count": stat["created_count"],
|
|
"completed_count": stat["completed_count"],
|
|
}
|
|
for stat in daily_stats
|
|
}
|
|
|
|
# Generate data for all days in the range
|
|
data = []
|
|
current_date = start_date
|
|
while current_date <= end_date:
|
|
date_str = current_date.strftime("%Y-%m-%d")
|
|
stats = stats_dict.get(date_str, {"created_count": 0, "completed_count": 0})
|
|
data.append(
|
|
{
|
|
"key": date_str,
|
|
"name": date_str,
|
|
"count": stats["created_count"] + stats["completed_count"],
|
|
"completed_issues": stats["completed_count"],
|
|
"created_issues": stats["created_count"],
|
|
}
|
|
)
|
|
current_date += timedelta(days=1)
|
|
|
|
schema = {
|
|
"completed_issues": "completed_issues",
|
|
"created_issues": "created_issues",
|
|
}
|
|
|
|
return {"data": data, "schema": schema}
|
|
|
|
@allow_permission([ROLE.ADMIN, ROLE.MEMBER], level="WORKSPACE")
|
|
def get(self, request: HttpRequest, slug: str) -> Response:
|
|
self.initialize_workspace(slug, type="chart")
|
|
type = request.GET.get("type", "projects")
|
|
group_by = request.GET.get("group_by", None)
|
|
x_axis = request.GET.get("x_axis", "PRIORITY")
|
|
|
|
if type == "projects":
|
|
return Response(self.project_chart(), status=status.HTTP_200_OK)
|
|
|
|
elif type == "custom-work-items":
|
|
# Get the base queryset
|
|
queryset = (
|
|
Issue.issue_objects.filter(**self.filters["base_filters"])
|
|
.select_related("workspace", "state", "parent")
|
|
.prefetch_related(
|
|
"assignees", "labels", "issue_module__module", "issue_cycle__cycle"
|
|
)
|
|
)
|
|
|
|
# Apply date range filter if available
|
|
if self.filters["chart_period_range"]:
|
|
start_date, end_date = self.filters["chart_period_range"]
|
|
queryset = queryset.filter(
|
|
created_at__date__gte=start_date, created_at__date__lte=end_date
|
|
)
|
|
|
|
return Response(
|
|
build_analytics_chart(queryset, x_axis, group_by),
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
elif type == "work-items":
|
|
return Response(
|
|
self.work_item_completion_chart(),
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
return Response({"message": "Invalid type"}, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
class AdvanceAnalyticsExportEndpoint(AdvanceAnalyticsBaseView):
|
|
@allow_permission([ROLE.ADMIN, ROLE.MEMBER], level="WORKSPACE")
|
|
def post(self, request: HttpRequest, slug: str) -> Response:
|
|
self.initialize_workspace(slug, type="chart")
|
|
queryset = Issue.issue_objects.filter(**self.filters["base_filters"])
|
|
|
|
# Apply date range filter if available
|
|
if self.filters["chart_period_range"]:
|
|
start_date, end_date = self.filters["chart_period_range"]
|
|
queryset = queryset.filter(
|
|
created_at__date__gte=start_date, created_at__date__lte=end_date
|
|
)
|
|
|
|
queryset = (
|
|
queryset.values("project_id", "project__name")
|
|
.annotate(
|
|
cancelled_work_items=Count("id", filter=Q(state__group="cancelled")),
|
|
completed_work_items=Count("id", filter=Q(state__group="completed")),
|
|
backlog_work_items=Count("id", filter=Q(state__group="backlog")),
|
|
un_started_work_items=Count("id", filter=Q(state__group="unstarted")),
|
|
started_work_items=Count("id", filter=Q(state__group="started")),
|
|
)
|
|
.order_by("project_id")
|
|
)
|
|
|
|
# Convert QuerySet to list of dictionaries for serialization
|
|
serialized_data = list(queryset)
|
|
|
|
headers = [
|
|
"Projects",
|
|
"Completed Issues",
|
|
"Backlog Issues",
|
|
"Unstarted Issues",
|
|
"Started Issues",
|
|
]
|
|
|
|
keys = [
|
|
"project__name",
|
|
"completed_work_items",
|
|
"backlog_work_items",
|
|
"un_started_work_items",
|
|
"started_work_items",
|
|
]
|
|
|
|
email = request.user.email
|
|
|
|
# Send serialized data to background task
|
|
export_analytics_to_csv_email.delay(serialized_data, headers, keys, email, slug)
|
|
|
|
return Response(
|
|
{
|
|
"message": f"Once the export is ready it will be emailed to you at {str(email)}"
|
|
},
|
|
status=status.HTTP_200_OK,
|
|
)
|