-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from recogito/dl/85_drag_drop_documents
#85 - Drop and Drop Documents
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
SQL Scripts/functions/update_project_documents_sort_rpc.sql
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,31 @@ | ||
CREATE | ||
OR REPLACE FUNCTION update_project_documents_sort_rpc ( | ||
_project_id uuid, | ||
_document_ids uuid[] | ||
) RETURNS BOOLEAN AS $body$ | ||
DECLARE | ||
current_index INT = 0; | ||
_document_id uuid; | ||
BEGIN | ||
-- Check project policy that project documents can be updated by this user | ||
IF NOT (check_action_policy_organization(auth.uid(), 'project_documents', 'UPDATE') | ||
OR check_action_policy_project(auth.uid(), 'project_documents', 'UPDATE', _project_id)) | ||
THEN | ||
RETURN FALSE; | ||
END IF; | ||
|
||
FOREACH _document_id IN ARRAY _document_ids | ||
LOOP | ||
|
||
UPDATE public.project_documents pd | ||
SET sort = current_index | ||
WHERE pd.document_id = _document_id | ||
AND pd.project_id = _project_id; | ||
|
||
current_index := current_index + 1; | ||
|
||
END LOOP; | ||
|
||
RETURN TRUE; | ||
END | ||
$body$ LANGUAGE plpgsql SECURITY DEFINER; |
33 changes: 33 additions & 0 deletions
33
supabase/migrations/20241024105310_add_sort_to_project_documents.sql
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,33 @@ | ||
alter table "public"."project_documents" add column sort integer default 0; | ||
|
||
CREATE | ||
OR REPLACE FUNCTION update_project_documents_sort_rpc ( | ||
_project_id uuid, | ||
_document_ids uuid[] | ||
) RETURNS BOOLEAN AS $body$ | ||
DECLARE | ||
_current_index integer = 0; | ||
_document_id uuid; | ||
BEGIN | ||
-- Check project policy that project documents can be updated by this user | ||
IF NOT (check_action_policy_organization(auth.uid(), 'project_documents', 'UPDATE') | ||
OR check_action_policy_project(auth.uid(), 'project_documents', 'UPDATE', _project_id)) | ||
THEN | ||
RETURN FALSE; | ||
END IF; | ||
|
||
FOREACH _document_id IN ARRAY _document_ids | ||
LOOP | ||
|
||
UPDATE public.project_documents pd | ||
SET sort = _current_index | ||
WHERE pd.document_id = _document_id | ||
AND pd.project_id = _project_id; | ||
|
||
_current_index := _current_index + 1; | ||
|
||
END LOOP; | ||
|
||
RETURN TRUE; | ||
END | ||
$body$ LANGUAGE plpgsql SECURITY DEFINER; |