mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-04 16:58:05 +02:00
feat: create duplicate template functionality feat: add support of csv and xlsx for bulk contacts import feat: add info text for forms and dashboard button feat: implement functionality to delete a PDF page while editing the document feat: show completed documents in which signers included but not owner in completed reports feat: add delete folder button in opensign drive feat: introduce Bcc email support for sending completed documents feat: allow merging multiple pdf while drafting document and template feat: add 'My Initials' tab for auto-signing in request-sign flow feat: add support for redirect URL to navigate after document completion feat: introduce privacy policy and digital signature terms before signing documents. feat: add feature to allow adding new pages to existing document feat: add save signature, initials, stamp functionality in sign pad for logged in user feat: add preferences menu feat: add save custom email template, notifyonsignature, set timezone, allow signature types in preferences feat: secure local url feat: implement Italian language translation feat: implement German language translation feat: update menu name from report to documents and shift contactbook in main menu feat: provide edit contact functionality fix: unable to delete folder when all its documents are deleted fix: fields.push is not function fix: document loading issue in opensign drive fix: adjust the guest signature flow to display the document in full screen, eliminating any blank space which is displayed below the place holder in mobile view fix: resolve issue of instance of pdfdict or pdfstream but got undefined build(deps): update dependencies refactor: change note text from add contact form
67 lines
2.4 KiB
JavaScript
67 lines
2.4 KiB
JavaScript
import React from "react";
|
|
import RecipientList from "./RecipientList";
|
|
import { Tooltip } from "react-tooltip";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
function SignerListPlace(props) {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div>
|
|
<div className="mx-2 pr-2 pt-2 pb-1 text-[15px] text-base-content font-semibold border-b-[1px] border-base-300">
|
|
<span className="relative">
|
|
{props.title ? props.title : "Recipients"}
|
|
<span className="absolute text-xs z-[30] mt-1 ml-0.5">
|
|
{props?.title === "Roles" && (
|
|
<>
|
|
<a data-tooltip-id="my-tooltip">
|
|
<sup>
|
|
<i className="fa-light fa-question rounded-full border-[1px] border-base-content text-[11px] py-[1px] px-[3px]"></i>
|
|
</sup>
|
|
</a>
|
|
<Tooltip id="my-tooltip" className="z-[100]">
|
|
<div className="max-w-[450px] 2xl:max-w-[500px] p-[1px]">
|
|
<p className="font-bold pb-[1px]">{t("role-help.p1")}</p>
|
|
<p>{t("role-help.p2")} </p>
|
|
<p className="font-bold">{t("role-help.p3")}</p>
|
|
<p>{t("role-help.p4")}</p>
|
|
<p className="font-bold">{t("role-help.p5")}</p>
|
|
<p>{t("role-help.p6")}</p>
|
|
</div>
|
|
</Tooltip>
|
|
</>
|
|
)}
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div className="overflow-auto hide-scrollbar max-h-[180px]">
|
|
<RecipientList {...props} />
|
|
</div>
|
|
<div className="mx-1">
|
|
{props.handleAddSigner ? (
|
|
<div
|
|
role="button"
|
|
data-tut="reactourAddbtn"
|
|
disabled={props?.isMailSend ? true : false}
|
|
className="op-btn op-btn-accent op-btn-outline w-full mt-[14px]"
|
|
onClick={() => props.handleAddSigner()}
|
|
>
|
|
<i className="fa-light fa-plus"></i> {t("add-role")}
|
|
</div>
|
|
) : (
|
|
<div
|
|
role="button"
|
|
data-tut="addRecipient"
|
|
className="op-btn op-btn-accent op-btn-outline w-full mt-[14px]"
|
|
disabled={props?.isMailSend ? true : false}
|
|
onClick={() => props.setIsAddSigner(true)}
|
|
>
|
|
<i className="fa-light fa-plus"></i> {t("add-recipients")}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default SignerListPlace;
|