[PR #1297] [CLOSED] feat: save recipients on blur #1540

Closed
opened 2026-02-26 19:33:41 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/1297
Author: @catalinpit
Created: 8/22/2024
Status: Closed

Base: mainHead: feat/save-recipients-on-blur


📝 Commits (9)

  • bed8cbd feat: fix branch issues
  • da92874 feat: removed todos
  • b885aae feat: template recipients on blur
  • 4791318 feat: update db on template placeholder recipient removal
  • 1d73a0f feat: remove console logs and updated the disabled property on input elements
  • ca0e96d chore: merged main
  • ced583a chore: extract translations
  • 7ea7740 chore: removed console.log
  • bb7732a chore: remove more onsole.logs

📊 Changes

31 files changed (+628 additions, -313 deletions)

View changed files

📝 apps/marketing/process-env.d.ts (+2 -2)
📝 apps/web/process-env.d.ts (+1 -1)
📝 apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx (+2 -0)
📝 apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx (+1 -0)
📝 apps/web/src/app/embed/base-schema.ts (+4 -1)
📝 apps/web/src/app/embed/completed.tsx (+6 -3)
📝 apps/web/src/app/embed/direct/[[...url]]/client.tsx (+11 -11)
📝 apps/web/src/app/embed/direct/[[...url]]/not-found.tsx (+1 -1)
📝 apps/web/src/app/embed/direct/[[...url]]/page.tsx (+1 -5)
📝 apps/web/src/app/embed/document-fields.tsx (+1 -1)
📝 apps/web/src/app/embed/paywall.tsx (+6 -4)
📝 apps/web/src/app/embed/sign/[[...url]]/client.tsx (+16 -14)
📝 apps/web/src/app/embed/sign/[[...url]]/not-found.tsx (+1 -1)
📝 apps/web/src/app/embed/sign/[[...url]]/page.tsx (+10 -5)
📝 apps/web/src/middleware.ts (+1 -1)
📝 packages/lib/client-only/hooks/use-throttle-fn.ts (+4 -4)
📝 packages/lib/constants/app.ts (+2 -1)
📝 packages/lib/server-only/feature-flags/all.ts (+5 -1)
📝 packages/lib/server-only/feature-flags/get.ts (+6 -2)
packages/lib/server-only/recipient/delete-recipient-from-template.ts (+54 -0)

...and 11 more files

📄 Description

Summary by CodeRabbit

  • New Features

    • Enhanced the AddSignersFormPartial component with new props for document and team context, improving signer management.
    • Introduced new mutation procedures for removing signers from templates and documents, streamlining recipient management.
    • Added functionality to the AddTemplatePlaceholderRecipientsFormPartial for dynamic handling of template signers.
    • Implemented a function to delete a recipient from a specified template, improving template recipient management.
  • Bug Fixes

    • Improved error handling for signer removal operations to ensure proper user feedback and logging.
  • Documentation

    • Updated localization files to reflect recent changes and ensure accuracy in user-facing text.
  • Chores

    • Minor formatting adjustments across various files to enhance code readability and maintainability.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/documenso/documenso/pull/1297 **Author:** [@catalinpit](https://github.com/catalinpit) **Created:** 8/22/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/save-recipients-on-blur` --- ### 📝 Commits (9) - [`bed8cbd`](https://github.com/documenso/documenso/commit/bed8cbd651db6042e035474cf46d740670ffba10) feat: fix branch issues - [`da92874`](https://github.com/documenso/documenso/commit/da9287440bc1a3043a86bafbd537ca25abed7375) feat: removed todos - [`b885aae`](https://github.com/documenso/documenso/commit/b885aae511b858b1c548441fc1db7cfad02aa1bc) feat: template recipients on blur - [`4791318`](https://github.com/documenso/documenso/commit/479131822eda59bc1191954a344f2878b477afbc) feat: update db on template placeholder recipient removal - [`1d73a0f`](https://github.com/documenso/documenso/commit/1d73a0f9e6bc79f56c7d567c2734bb1246dadf36) feat: remove console logs and updated the disabled property on input elements - [`ca0e96d`](https://github.com/documenso/documenso/commit/ca0e96d4c07dd217402df6ebb7056397a01edc37) chore: merged main - [`ced583a`](https://github.com/documenso/documenso/commit/ced583a52596b5bd2d409987a741a94ed288df06) chore: extract translations - [`7ea7740`](https://github.com/documenso/documenso/commit/7ea7740b88ae807dc2a1d8ab28f1272a128a06cc) chore: removed console.log - [`bb7732a`](https://github.com/documenso/documenso/commit/bb7732a2039136b8e69e78f635f8949590b2e5e6) chore: remove more onsole.logs ### 📊 Changes **31 files changed** (+628 additions, -313 deletions) <details> <summary>View changed files</summary> 📝 `apps/marketing/process-env.d.ts` (+2 -2) 📝 `apps/web/process-env.d.ts` (+1 -1) 📝 `apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx` (+2 -0) 📝 `apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx` (+1 -0) 📝 `apps/web/src/app/embed/base-schema.ts` (+4 -1) 📝 `apps/web/src/app/embed/completed.tsx` (+6 -3) 📝 `apps/web/src/app/embed/direct/[[...url]]/client.tsx` (+11 -11) 📝 `apps/web/src/app/embed/direct/[[...url]]/not-found.tsx` (+1 -1) 📝 `apps/web/src/app/embed/direct/[[...url]]/page.tsx` (+1 -5) 📝 `apps/web/src/app/embed/document-fields.tsx` (+1 -1) 📝 `apps/web/src/app/embed/paywall.tsx` (+6 -4) 📝 `apps/web/src/app/embed/sign/[[...url]]/client.tsx` (+16 -14) 📝 `apps/web/src/app/embed/sign/[[...url]]/not-found.tsx` (+1 -1) 📝 `apps/web/src/app/embed/sign/[[...url]]/page.tsx` (+10 -5) 📝 `apps/web/src/middleware.ts` (+1 -1) 📝 `packages/lib/client-only/hooks/use-throttle-fn.ts` (+4 -4) 📝 `packages/lib/constants/app.ts` (+2 -1) 📝 `packages/lib/server-only/feature-flags/all.ts` (+5 -1) 📝 `packages/lib/server-only/feature-flags/get.ts` (+6 -2) ➕ `packages/lib/server-only/recipient/delete-recipient-from-template.ts` (+54 -0) _...and 11 more files_ </details> ### 📄 Description <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Enhanced the `AddSignersFormPartial` component with new props for document and team context, improving signer management. - Introduced new mutation procedures for removing signers from templates and documents, streamlining recipient management. - Added functionality to the `AddTemplatePlaceholderRecipientsFormPartial` for dynamic handling of template signers. - Implemented a function to delete a recipient from a specified template, improving template recipient management. - **Bug Fixes** - Improved error handling for signer removal operations to ensure proper user feedback and logging. - **Documentation** - Updated localization files to reflect recent changes and ensure accuracy in user-facing text. - **Chores** - Minor formatting adjustments across various files to enhance code readability and maintainability. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 19:33:41 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/documenso#1540
No description provided.