* fix: stroing the transactions in page * fix: page details changes * chore: page response change * chore: removed duplicated endpoints * chore: optimised the urls * chore: removed archived and favorite pages * chore: revamping pages store and components * mentions loading state part done * fixed mentions not showing in modals * removed comments and cleaned up types * removed unused types * reset: head * chore: pages store and component updates * style: pages list item UI * fix: improved colors and drag handle width * fix: slash commands are no more shown in the code blocks * fix: cleanup/hide drag handles post drop * fix: hide/cleanup drag handles post drag start * fix: aligning the drag handles better with the node post css changes of the length * fix: juggling back and forth of drag handles in ordered and unordered lists * chore: fix imports, ts errors and other things * fix: clearing nodes to default node i.e paragraph before converting it to other types of nodes For more reference on what this does, please refer https://tiptap.dev/docs/editor/api/commands/clear-nodes * chore: clearNodes after delete in case of selections being present * fix: hiding link selector in the bubble menu if inline code block is selected * chore: filtering, ordering and searching implemented * chore: updated pages store and updated UI * chore: new core editor just for document editor created * chore: removed setIsSubmitting prop in doc editor * fix: fixed submitting state for image uploads * refactor: setShouldShowAlert removed * refactor: rerenderOnPropsChange prop removed * chore: type inference magic in ref to expose an api for controlling editor menu items from outside * fix: naming imports * chore: change names of the exposed functions and removing old types * refactor: remove debouncedUpdatesEnabled prop; * refactor: editor heading markings now parsed using html * chore: removed unrelated components from the document editor * refactor: page details granular components * fix: remove onActionCompleteHandler * refactor: removed rerenderOnProps change prop * feat: added getMarkDown function * chore: update dropdown option actions * fix: sidebar markings update logic * chore: add image and to-do list actions to the toolbar * fix: handling refs and populating them via callbacks * feat: scroll to node api exposed * cleaning up editor refs when the editor is destroyed * feat: scrolling added to read only instance of the editor * fix: markings logic * fix: build errors with types * fix: build erros * fix: subscribing to transactions of editor via ref * chore: remove debug statements * fix: type errors * fix: temporary different slash commands for document editor * chore: inline code extension style * chore: remove border from readOnly editor * fix: editor bottom padding * chore: pages improvements * chore: handle Enter key on the page title * feat: added loading indicator logic in mentions * fix: mentions and slash commands now work well with multiple editors in one place * refactor: page store structure, filtering logic * feat: added better seperation in inline code blocks * feat: list autojoining added * fix: pages folder structure * fix: image refocus from external parts * working lists somewhat * chore: implement page reactions * fix: build errors * fix: build errors * fixed drag handles stuff * task list item fixed * working * fix: working on multiple nested lists * chore: remove debug statements * fix: Tab key on first list item handled to not go out of editor focus * feat: threshold auto scroll support added and multi nested list selection fixed * fix: caret color bug with improved inline code blocks * fix: node range error when bulk deleting with list * fix: removed slash commands from working in code blocks * chore: update typography margins * chore: new field added in page model * fix: better type inference in slash commands * chore: code block UI * feat: image insertion at correct position using ref added * feat: added improved mentions support for space * fix: type errors in mentions for comments in web app * sync: core with document-core * fix: build errors * fix: fallback for appendTo not being able to find active container instantly * fix: page store * fix: page description * fix: css quality issues * chore: code cleanup * chore: removed placeholder text in codeblocks * chore: archived pages response change * chore: archived pages response change * fix: initial pages list fetch * fix: pages list filters and ordering * chore: add access change option in the quick actions dropdown * fix: inline code block caret fixed * regression: removing extra text * chore: caret color removed * feat: copy code button added in code blocks * fix: initial load of page details * fix: initial load of page details * fix: image resizing weird behavior on click/expanding it too much fixed now * chore: copy page response * fix: todo list spacing * chore: description html in the copy page * chore: handle latest description on refetch * fix: saner scroll behaviours * fix: block menu positioning * fix: updated empty string description * feat: tab change sync support added * fix: infinite rerendering with markings * fix: block menu finally * fix: intial load on reload bug fixed * fix: nested lists alignment * fix: editor padding * fix: first level list items copyable * chore: list spacing * fix: title change * fix: pages list block items interaction * fix: saving chip position * fix: delete action from block menu to focus properly * fix: margin-bottom as 0 to avoid weird spacing when a paragraph node follows a list node * style: table, chore: lite text editor toolbar * fix: page description tab sync * fix: lists spacing and alignment * refactor: document editor props * feat: rich text editor wrapper created and migrated core * feat: created wrapper around lite text editor and merged core * chore: add lite text editor toolbar * fix: build errors * fix: type errors and addead live updation of toolbar * chore: pages migration * fix: inbox issue * refactor: remove redundant package * refactor: unused files * fix: add dompurify to space app * fix: inline code margin * fix: editor className props * fix: build errors * fix: traversing up the tree before assuming the parent is not a list item * fix: drag handle positions for list items fixed * fix: removed focus at end logic after deleting block * fix: image wrapper overflow scroll fix with block menu's position * fix: selection and deletion logic for nested lists fixed!! * fix: hiding the block menu while scrolling in the document/app * fix: merge conflicts resolved from develop * fix: inbox issue description * chore: move page title to the web app * fix: handling edge cases for table selection * chore: lint issues * refactor: list item functions moved to same file * refactor: use mention hook * fix: added try catch blocks for mention suggestions * chore: remove unused code * fix: remove console logs * fix: remove console logs --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com>
379 lines
12 KiB
Python
379 lines
12 KiB
Python
# Python imports
|
|
import json
|
|
from datetime import datetime
|
|
|
|
# Django imports
|
|
from django.db import connection
|
|
from django.db.models import Exists, OuterRef, Q
|
|
from django.utils.decorators import method_decorator
|
|
from django.views.decorators.gzip import gzip_page
|
|
|
|
# Third party imports
|
|
from rest_framework import status
|
|
from rest_framework.response import Response
|
|
|
|
from plane.app.permissions import ProjectEntityPermission
|
|
from plane.app.serializers import (
|
|
PageFavoriteSerializer,
|
|
PageLogSerializer,
|
|
PageSerializer,
|
|
SubPageSerializer,
|
|
PageDetailSerializer,
|
|
)
|
|
from plane.db.models import (
|
|
Page,
|
|
PageFavorite,
|
|
PageLog,
|
|
ProjectMember,
|
|
)
|
|
|
|
# Module imports
|
|
from ..base import BaseAPIView, BaseViewSet
|
|
|
|
from plane.bgtasks.page_transaction_task import page_transaction
|
|
|
|
|
|
def unarchive_archive_page_and_descendants(page_id, archived_at):
|
|
# Your SQL query
|
|
sql = """
|
|
WITH RECURSIVE descendants AS (
|
|
SELECT id FROM pages WHERE id = %s
|
|
UNION ALL
|
|
SELECT pages.id FROM pages, descendants WHERE pages.parent_id = descendants.id
|
|
)
|
|
UPDATE pages SET archived_at = %s WHERE id IN (SELECT id FROM descendants);
|
|
"""
|
|
|
|
# Execute the SQL query
|
|
with connection.cursor() as cursor:
|
|
cursor.execute(sql, [page_id, archived_at])
|
|
|
|
|
|
class PageViewSet(BaseViewSet):
|
|
serializer_class = PageSerializer
|
|
model = Page
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
search_fields = [
|
|
"name",
|
|
]
|
|
|
|
def get_queryset(self):
|
|
subquery = PageFavorite.objects.filter(
|
|
user=self.request.user,
|
|
page_id=OuterRef("pk"),
|
|
project_id=self.kwargs.get("project_id"),
|
|
workspace__slug=self.kwargs.get("slug"),
|
|
)
|
|
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,
|
|
project__project_projectmember__is_active=True,
|
|
project__archived_at__isnull=True,
|
|
)
|
|
.filter(parent__isnull=True)
|
|
.filter(Q(owned_by=self.request.user) | Q(access=0))
|
|
.select_related("project")
|
|
.select_related("workspace")
|
|
.select_related("owned_by")
|
|
.annotate(is_favorite=Exists(subquery))
|
|
.order_by(self.request.GET.get("order_by", "-created_at"))
|
|
.prefetch_related("labels")
|
|
.order_by("-is_favorite", "-created_at")
|
|
.distinct()
|
|
)
|
|
|
|
def create(self, request, slug, project_id):
|
|
serializer = PageSerializer(
|
|
data=request.data,
|
|
context={
|
|
"project_id": project_id,
|
|
"owned_by_id": request.user.id,
|
|
"description_html": request.data.get(
|
|
"description_html", "<p></p>"
|
|
),
|
|
},
|
|
)
|
|
|
|
if serializer.is_valid():
|
|
serializer.save()
|
|
# capture the page transaction
|
|
page_transaction.delay(request.data, None, serializer.data["id"])
|
|
page = Page.objects.get(pk=serializer.data["id"])
|
|
serializer = PageDetailSerializer(page)
|
|
return Response(serializer.data, status=status.HTTP_201_CREATED)
|
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
def partial_update(self, request, slug, project_id, pk):
|
|
try:
|
|
page = Page.objects.get(
|
|
pk=pk, workspace__slug=slug, project_id=project_id
|
|
)
|
|
|
|
if page.is_locked:
|
|
return Response(
|
|
{"error": "Page is locked"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
parent = request.data.get("parent", None)
|
|
if parent:
|
|
_ = Page.objects.get(
|
|
pk=parent, workspace__slug=slug, project_id=project_id
|
|
)
|
|
|
|
# Only update access if the page owner is the requesting user
|
|
if (
|
|
page.access != request.data.get("access", page.access)
|
|
and page.owned_by_id != request.user.id
|
|
):
|
|
return Response(
|
|
{
|
|
"error": "Access cannot be updated since this page is owned by someone else"
|
|
},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
serializer = PageDetailSerializer(
|
|
page, data=request.data, partial=True
|
|
)
|
|
if serializer.is_valid():
|
|
serializer.save()
|
|
# capture the page transaction
|
|
if request.data.get("description_html"):
|
|
page_transaction.delay(
|
|
new_value=request.data,
|
|
old_value=json.dumps(
|
|
{
|
|
"description_html": page.description_html,
|
|
}
|
|
),
|
|
page_id=pk,
|
|
)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
return Response(
|
|
serializer.errors, status=status.HTTP_400_BAD_REQUEST
|
|
)
|
|
except Page.DoesNotExist:
|
|
return Response(
|
|
{
|
|
"error": "Access cannot be updated since this page is owned by someone else"
|
|
},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def retrieve(self, request, slug, project_id, pk=None):
|
|
page = self.get_queryset().filter(pk=pk).first()
|
|
return Response(
|
|
PageDetailSerializer(page).data, status=status.HTTP_200_OK
|
|
)
|
|
|
|
def lock(self, request, slug, project_id, pk):
|
|
page = Page.objects.filter(
|
|
pk=pk, workspace__slug=slug, project_id=project_id
|
|
).first()
|
|
|
|
page.is_locked = True
|
|
page.save()
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
def unlock(self, request, slug, project_id, pk):
|
|
page = Page.objects.filter(
|
|
pk=pk, workspace__slug=slug, project_id=project_id
|
|
).first()
|
|
|
|
page.is_locked = False
|
|
page.save()
|
|
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
def list(self, request, slug, project_id):
|
|
queryset = self.get_queryset()
|
|
pages = PageSerializer(queryset, many=True).data
|
|
return Response(pages, status=status.HTTP_200_OK)
|
|
|
|
def archive(self, request, slug, project_id, pk):
|
|
page = Page.objects.get(
|
|
pk=pk, workspace__slug=slug, project_id=project_id
|
|
)
|
|
|
|
# only the owner or admin can archive the page
|
|
if (
|
|
ProjectMember.objects.filter(
|
|
project_id=project_id,
|
|
member=request.user,
|
|
is_active=True,
|
|
role__lte=15,
|
|
).exists()
|
|
and request.user.id != page.owned_by_id
|
|
):
|
|
return Response(
|
|
{"error": "Only the owner or admin can archive the page"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
unarchive_archive_page_and_descendants(pk, datetime.now())
|
|
|
|
return Response(
|
|
{"archived_at": str(datetime.now())},
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
|
|
def unarchive(self, request, slug, project_id, pk):
|
|
page = Page.objects.get(
|
|
pk=pk, workspace__slug=slug, project_id=project_id
|
|
)
|
|
|
|
# only the owner or admin can un archive the page
|
|
if (
|
|
ProjectMember.objects.filter(
|
|
project_id=project_id,
|
|
member=request.user,
|
|
is_active=True,
|
|
role__lte=15,
|
|
).exists()
|
|
and request.user.id != page.owned_by_id
|
|
):
|
|
return Response(
|
|
{"error": "Only the owner or admin can un archive the page"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
# if parent page is archived then the page will be un archived breaking the hierarchy
|
|
if page.parent_id and page.parent.archived_at:
|
|
page.parent = None
|
|
page.save(update_fields=["parent"])
|
|
|
|
unarchive_archive_page_and_descendants(pk, None)
|
|
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
def destroy(self, request, slug, project_id, pk):
|
|
page = Page.objects.get(
|
|
pk=pk, workspace__slug=slug, project_id=project_id
|
|
)
|
|
|
|
# only the owner and admin can delete the page
|
|
if (
|
|
ProjectMember.objects.filter(
|
|
project_id=project_id,
|
|
member=request.user,
|
|
is_active=True,
|
|
role__gt=20,
|
|
).exists()
|
|
or request.user.id != page.owned_by_id
|
|
):
|
|
return Response(
|
|
{"error": "Only the owner and admin can delete the page"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
if page.archived_at is None:
|
|
return Response(
|
|
{"error": "The page should be archived before deleting"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
# remove parent from all the children
|
|
_ = Page.objects.filter(
|
|
parent_id=pk, project_id=project_id, workspace__slug=slug
|
|
).update(parent=None)
|
|
|
|
page.delete()
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
|
|
class PageFavoriteViewSet(BaseViewSet):
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
|
|
serializer_class = PageFavoriteSerializer
|
|
model = PageFavorite
|
|
|
|
def create(self, request, slug, project_id, pk):
|
|
_ = PageFavorite.objects.create(
|
|
project_id=project_id,
|
|
page_id=pk,
|
|
user=request.user,
|
|
)
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
def destroy(self, request, slug, project_id, pk):
|
|
page_favorite = PageFavorite.objects.get(
|
|
project=project_id,
|
|
user=request.user,
|
|
workspace__slug=slug,
|
|
page_id=pk,
|
|
)
|
|
page_favorite.delete()
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
|
|
class PageLogEndpoint(BaseAPIView):
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
|
|
serializer_class = PageLogSerializer
|
|
model = PageLog
|
|
|
|
def post(self, request, slug, project_id, page_id):
|
|
serializer = PageLogSerializer(data=request.data)
|
|
if serializer.is_valid():
|
|
serializer.save(project_id=project_id, page_id=page_id)
|
|
return Response(serializer.data, status=status.HTTP_201_CREATED)
|
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
def patch(self, request, slug, project_id, page_id, transaction):
|
|
page_transaction = PageLog.objects.get(
|
|
workspace__slug=slug,
|
|
project_id=project_id,
|
|
page_id=page_id,
|
|
transaction=transaction,
|
|
)
|
|
serializer = PageLogSerializer(
|
|
page_transaction, data=request.data, partial=True
|
|
)
|
|
if serializer.is_valid():
|
|
serializer.save()
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
def delete(self, request, slug, project_id, page_id, transaction):
|
|
transaction = PageLog.objects.get(
|
|
workspace__slug=slug,
|
|
project_id=project_id,
|
|
page_id=page_id,
|
|
transaction=transaction,
|
|
)
|
|
# Delete the transaction object
|
|
transaction.delete()
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
|
|
class SubPagesEndpoint(BaseAPIView):
|
|
permission_classes = [
|
|
ProjectEntityPermission,
|
|
]
|
|
|
|
@method_decorator(gzip_page)
|
|
def get(self, request, slug, project_id, page_id):
|
|
pages = (
|
|
PageLog.objects.filter(
|
|
page_id=page_id,
|
|
project_id=project_id,
|
|
workspace__slug=slug,
|
|
entity_name__in=["forward_link", "back_link"],
|
|
)
|
|
.select_related("project")
|
|
.select_related("workspace")
|
|
)
|
|
return Response(
|
|
SubPageSerializer(pages, many=True).data, status=status.HTTP_200_OK
|
|
)
|