-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: created dashboard, widgets and dashboard widget model * fix: new user home dashboard * chore: recent projects list * chore: recent collaborators * chore: priority order change * chore: payload changes * chore: collaborator's active issue count * chore: all dashboard widgets added with services and typs * chore: centered metric for pie chart * chore: widget filters * chore: created issue filter * fix: created and assigned issues payload change * chore: created issue payload change * fix: date filter change * chore: implement filters * fix: added expansion fields * fix: changed issue structure with relation * chore: new issues response * fix: project member fix * chore: updated issue_relation structure * chore: code cleanup * chore: update issues response and added empty states * fix: button text wrap * chore: update empty state messages * fix: filters * chore: update dark mode empty states * build-error: Type check in the issue relation service * fix: issues redirection * fix: project empty state * chore: project member active check * chore: project member check in state and priority * chore: remove console logs and replace harcoded values with constants * fix: code refactoring * fix: key name changed * refactor: mapping through similar components using an array * fix: build errors --------- Co-authored-by: Aaryan Khandelwal <[email protected]> Co-authored-by: gurusainath <[email protected]>
- Loading branch information
1 parent
a9e2e21
commit 9065b5d
Showing
123 changed files
with
6,789 additions
and
848 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Module imports | ||
from .base import BaseSerializer | ||
from plane.db.models import Dashboard, Widget | ||
|
||
# Third party frameworks | ||
from rest_framework import serializers | ||
|
||
|
||
class DashboardSerializer(BaseSerializer): | ||
class Meta: | ||
model = Dashboard | ||
fields = "__all__" | ||
|
||
|
||
class WidgetSerializer(BaseSerializer): | ||
is_visible = serializers.BooleanField(read_only=True) | ||
widget_filters = serializers.JSONField(read_only=True) | ||
|
||
class Meta: | ||
model = Widget | ||
fields = [ | ||
"id", | ||
"key", | ||
"is_visible", | ||
"widget_filters" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from django.urls import path | ||
|
||
|
||
from plane.app.views import DashboardEndpoint, WidgetsEndpoint | ||
|
||
|
||
urlpatterns = [ | ||
path( | ||
"workspaces/<str:slug>/dashboard/", | ||
DashboardEndpoint.as_view(), | ||
name="dashboard", | ||
), | ||
path( | ||
"workspaces/<str:slug>/dashboard/<uuid:dashboard_id>/", | ||
DashboardEndpoint.as_view(), | ||
name="dashboard", | ||
), | ||
path( | ||
"dashboard/<uuid:dashboard_id>/widgets/<uuid:widget_id>/", | ||
WidgetsEndpoint.as_view(), | ||
name="widgets", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.