mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-12 04:37:39 +02:00
Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fda9fb534b | ||
|
|
cb3e31ebbf | ||
|
|
400525debb |
@@ -379,6 +379,7 @@
|
|||||||
"certificate": "Zertifikat",
|
"certificate": "Zertifikat",
|
||||||
"decline": "Ablehnen",
|
"decline": "Ablehnen",
|
||||||
"finish": "Fertigstellen",
|
"finish": "Fertigstellen",
|
||||||
|
"done": "Fertig",
|
||||||
"mail": "E-Mail",
|
"mail": "E-Mail",
|
||||||
"sign-now": "Jetzt unterzeichnen",
|
"sign-now": "Jetzt unterzeichnen",
|
||||||
"successfully-signed": "Erfolgreich unterzeichnet!",
|
"successfully-signed": "Erfolgreich unterzeichnet!",
|
||||||
|
|||||||
@@ -379,6 +379,7 @@
|
|||||||
"certificate": "Certificate",
|
"certificate": "Certificate",
|
||||||
"decline": "Decline",
|
"decline": "Decline",
|
||||||
"finish": "Finish",
|
"finish": "Finish",
|
||||||
|
"done": "Done",
|
||||||
"mail": "Mail",
|
"mail": "Mail",
|
||||||
"sign-now": "Sign now",
|
"sign-now": "Sign now",
|
||||||
"successfully-signed": "Successfully signed!",
|
"successfully-signed": "Successfully signed!",
|
||||||
|
|||||||
@@ -380,6 +380,7 @@
|
|||||||
"certificate": "Certificado",
|
"certificate": "Certificado",
|
||||||
"decline": "Rechazar",
|
"decline": "Rechazar",
|
||||||
"finish": "Finalizar",
|
"finish": "Finalizar",
|
||||||
|
"done": "Hecho",
|
||||||
"mail": "Correo",
|
"mail": "Correo",
|
||||||
"sign-now": "Firmar ahora",
|
"sign-now": "Firmar ahora",
|
||||||
"successfully-signed": "¡Firmado exitosamente!",
|
"successfully-signed": "¡Firmado exitosamente!",
|
||||||
|
|||||||
@@ -379,6 +379,7 @@
|
|||||||
"certificate": "Certificat",
|
"certificate": "Certificat",
|
||||||
"decline": "refusé",
|
"decline": "refusé",
|
||||||
"finish": "terminé",
|
"finish": "terminé",
|
||||||
|
"done": "Terminé",
|
||||||
"mail": "Mail",
|
"mail": "Mail",
|
||||||
"sign-now": "Signez maintenant",
|
"sign-now": "Signez maintenant",
|
||||||
"successfully-signed": "Signé avec succès !",
|
"successfully-signed": "Signé avec succès !",
|
||||||
|
|||||||
@@ -379,6 +379,7 @@
|
|||||||
"certificate": "प्रमाण पत्र",
|
"certificate": "प्रमाण पत्र",
|
||||||
"decline": "अस्वीकार करें",
|
"decline": "अस्वीकार करें",
|
||||||
"finish": "समाप्त करें",
|
"finish": "समाप्त करें",
|
||||||
|
"done": "हो गया",
|
||||||
"mail": "मेल",
|
"mail": "मेल",
|
||||||
"sign-now": "अभी हस्ताक्षर करें",
|
"sign-now": "अभी हस्ताक्षर करें",
|
||||||
"successfully-signed": "सफलतापूर्वक हस्ताक्षर किए गए!",
|
"successfully-signed": "सफलतापूर्वक हस्ताक्षर किए गए!",
|
||||||
|
|||||||
@@ -379,6 +379,7 @@
|
|||||||
"certificate": "Certificato",
|
"certificate": "Certificato",
|
||||||
"decline": "Rifiuta",
|
"decline": "Rifiuta",
|
||||||
"finish": "Completa",
|
"finish": "Completa",
|
||||||
|
"done": "Fatto",
|
||||||
"mail": "Email",
|
"mail": "Email",
|
||||||
"sign-now": "Firma ora",
|
"sign-now": "Firma ora",
|
||||||
"successfully-signed": "Firmato con successo!",
|
"successfully-signed": "Firmato con successo!",
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ const Header = ({ showSidebar, setIsMenu, isConsole }) => {
|
|||||||
const image = localStorage.getItem("profileImg") || dp;
|
const image = localStorage.getItem("profileImg") || dp;
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
const [applogo, setAppLogo] = useState("");
|
const [applogo, setAppLogo] = useState("");
|
||||||
|
const [isDarkTheme, setIsDarkTheme] = useState();
|
||||||
|
|
||||||
const toggleDropdown = () => {
|
const toggleDropdown = () => {
|
||||||
setIsOpen(!isOpen);
|
setIsOpen(!isOpen);
|
||||||
@@ -88,22 +89,15 @@ const Header = ({ showSidebar, setIsMenu, isConsole }) => {
|
|||||||
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const updateLogoForTheme = () => {
|
const updateThemeStatus = () => {
|
||||||
const isDarkMode =
|
const isDarkTheme =
|
||||||
document.documentElement.getAttribute("data-theme") === "opensigndark";
|
document.documentElement.getAttribute("data-theme") === "opensigndark";
|
||||||
const logo = isDarkMode
|
setIsDarkTheme(isDarkTheme);
|
||||||
? "/static/js/assets/images/logo-dark.png" // Path to the dark mode logo
|
|
||||||
: appInfo.applogo; // Use current logo for light mode
|
|
||||||
if (applogo !== logo) {
|
|
||||||
setAppLogo(logo);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
updateThemeStatus();
|
||||||
// Set the logo immediately based on the current theme
|
|
||||||
updateLogoForTheme();
|
|
||||||
|
|
||||||
const observer = new MutationObserver(() => {
|
const observer = new MutationObserver(() => {
|
||||||
updateLogoForTheme();
|
updateThemeStatus();
|
||||||
});
|
});
|
||||||
|
|
||||||
observer.observe(document.documentElement, {
|
observer.observe(document.documentElement, {
|
||||||
@@ -112,7 +106,7 @@ const Header = ({ showSidebar, setIsMenu, isConsole }) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
return () => observer.disconnect();
|
return () => observer.disconnect();
|
||||||
}, [applogo]);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
@@ -130,7 +124,11 @@ const Header = ({ showSidebar, setIsMenu, isConsole }) => {
|
|||||||
{applogo && (
|
{applogo && (
|
||||||
<img
|
<img
|
||||||
className="object-contain h-full w-auto"
|
className="object-contain h-full w-auto"
|
||||||
src={applogo}
|
src={
|
||||||
|
isDarkTheme
|
||||||
|
? "/static/js/assets/images/logo-dark.png"
|
||||||
|
: applogo
|
||||||
|
}
|
||||||
alt="logo"
|
alt="logo"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ function PlaceholderType(props) {
|
|||||||
alt="signature"
|
alt="signature"
|
||||||
draggable="false"
|
draggable="false"
|
||||||
src={props.pos.SignUrl}
|
src={props.pos.SignUrl}
|
||||||
className="w-full h-full select-none-cls "
|
className={`${props.pos.signatureType !== "type" ? "object-contain" : ""} w-full h-full select-none-cls`}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<div className={widgetCls}>
|
<div className={widgetCls}>
|
||||||
@@ -132,7 +132,7 @@ function PlaceholderType(props) {
|
|||||||
alt="stamp"
|
alt="stamp"
|
||||||
draggable="false"
|
draggable="false"
|
||||||
src={props.pos.SignUrl}
|
src={props.pos.SignUrl}
|
||||||
className="w-full h-full select-none-cls"
|
className="w-full h-full select-none-cls object-contain"
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<div className={widgetCls}>
|
<div className={widgetCls}>
|
||||||
@@ -253,7 +253,7 @@ function PlaceholderType(props) {
|
|||||||
alt="initials"
|
alt="initials"
|
||||||
draggable="false"
|
draggable="false"
|
||||||
src={props.pos.SignUrl}
|
src={props.pos.SignUrl}
|
||||||
className="w-full h-full select-none-cls"
|
className={`${props.pos.signatureType !== "type" ? "object-contain" : ""} w-full h-full select-none-cls`}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<div className={widgetCls}>
|
<div className={widgetCls}>
|
||||||
@@ -402,7 +402,7 @@ function PlaceholderType(props) {
|
|||||||
alt="image"
|
alt="image"
|
||||||
draggable="false"
|
draggable="false"
|
||||||
src={props.pos.SignUrl}
|
src={props.pos.SignUrl}
|
||||||
className="w-full h-full select-none-cls"
|
className="w-full h-full select-none-cls object-contain"
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<div className={widgetCls}>
|
<div className={widgetCls}>
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ import {
|
|||||||
cellsWidget,
|
cellsWidget,
|
||||||
textWidget,
|
textWidget,
|
||||||
years,
|
years,
|
||||||
convertTextToImg
|
convertTextToImg,
|
||||||
|
convertJpegToPng
|
||||||
} from "../../constant/Utils";
|
} from "../../constant/Utils";
|
||||||
import CellsWidget from "./CellsWidget";
|
import CellsWidget from "./CellsWidget";
|
||||||
import DatePicker from "react-datepicker";
|
import DatePicker from "react-datepicker";
|
||||||
@@ -110,7 +111,6 @@ function WidgetsValueModal(props) {
|
|||||||
const [signature, setSignature] = useState();
|
const [signature, setSignature] = useState();
|
||||||
const [isImageSelect, setIsImageSelect] = useState(false);
|
const [isImageSelect, setIsImageSelect] = useState(false);
|
||||||
const [isFinish, setIsFinish] = useState(false);
|
const [isFinish, setIsFinish] = useState(false);
|
||||||
const [imgWH, setImgWH] = useState({});
|
|
||||||
const [fontSelect, setFontSelect] = useState(fontOptions[0].value);
|
const [fontSelect, setFontSelect] = useState(fontOptions[0].value);
|
||||||
const [isSavedSign, setIsSavedSign] = useState(false);
|
const [isSavedSign, setIsSavedSign] = useState(false);
|
||||||
const [isAutoSign, setIsAutoSign] = useState(false);
|
const [isAutoSign, setIsAutoSign] = useState(false);
|
||||||
@@ -257,11 +257,11 @@ function WidgetsValueModal(props) {
|
|||||||
setOriginalImage(null); // Reset original image when a new file is selected
|
setOriginalImage(null); // Reset original image when a new file is selected
|
||||||
setRemoveBgEnabled(false); // Optionally reset toggle
|
setRemoveBgEnabled(false); // Optionally reset toggle
|
||||||
// Ensure compressedFileSize calls setImage, which then triggers the useEffect for BG removal.
|
// Ensure compressedFileSize calls setImage, which then triggers the useEffect for BG removal.
|
||||||
compressedFileSize(file, setImgWH, setImage);
|
compressedFileSize(file, setImage);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
//function is used to save image,stamp widgets data
|
//function is used to save image,stamp widgets data
|
||||||
const handleSaveImage = () => {
|
const handleSaveImage = (signatureType) => {
|
||||||
const widgetsType = currWidgetsDetails?.type;
|
const widgetsType = currWidgetsDetails?.type;
|
||||||
//`isApplyAll` is used when user edit stamp then updated signature apply all existing drawn signatures
|
//`isApplyAll` is used when user edit stamp then updated signature apply all existing drawn signatures
|
||||||
const isApplyAll = true;
|
const isApplyAll = true;
|
||||||
@@ -278,10 +278,10 @@ function WidgetsValueModal(props) {
|
|||||||
|
|
||||||
// Get updated placeholder list
|
// Get updated placeholder list
|
||||||
const updatedPlaceholders = onSaveImage(
|
const updatedPlaceholders = onSaveImage(
|
||||||
|
signatureType,
|
||||||
signer.placeHolder,
|
signer.placeHolder,
|
||||||
index,
|
index,
|
||||||
currWidgetsDetails?.key,
|
currWidgetsDetails?.key,
|
||||||
imgWH,
|
|
||||||
image,
|
image,
|
||||||
isAutoSign,
|
isAutoSign,
|
||||||
widgetsType,
|
widgetsType,
|
||||||
@@ -299,11 +299,13 @@ function WidgetsValueModal(props) {
|
|||||||
return object.pageNumber === pageNumber;
|
return object.pageNumber === pageNumber;
|
||||||
});
|
});
|
||||||
const getImage = onSaveImage(
|
const getImage = onSaveImage(
|
||||||
|
signatureType,
|
||||||
props?.xyPosition,
|
props?.xyPosition,
|
||||||
index,
|
index,
|
||||||
currWidgetsDetails?.key,
|
currWidgetsDetails?.key,
|
||||||
imgWH,
|
image,
|
||||||
image
|
false,
|
||||||
|
widgetsType
|
||||||
);
|
);
|
||||||
setXyPosition(getImage);
|
setXyPosition(getImage);
|
||||||
}
|
}
|
||||||
@@ -311,36 +313,28 @@ function WidgetsValueModal(props) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
//function is used to save draw type or initial type signature
|
//function is used to save draw type or initial type signature
|
||||||
const handleSaveSignature = (
|
const handleSaveSignature = async (
|
||||||
type,
|
signType,
|
||||||
isDefaultSign,
|
isDefaultSign,
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
typedSignature
|
typedSignature
|
||||||
) => {
|
) => {
|
||||||
//get current click widget type
|
// get current click widget type
|
||||||
const widgetsType = currWidgetsDetails?.type;
|
const widgetsType = currWidgetsDetails?.type;
|
||||||
//if there are any width and height then it will typed signature
|
// if there are any width and height then it will typed signature
|
||||||
const isTypeText = width && height ? true : false;
|
const isTypeText = width && height ? true : false;
|
||||||
//final getting signature url via default select sign/default initial sign/self draw sign
|
// final getting signature url via default select sign/default initial sign/self draw sign
|
||||||
const signatureImg = isDefaultSign
|
const signUrl = isDefaultSign
|
||||||
? isDefaultSign === "initials"
|
? isDefaultSign === "initials"
|
||||||
? myInitial
|
? await convertJpegToPng(myInitial, "myinitials") // default initials set through my signature tab
|
||||||
: defaultSignImg
|
: await convertJpegToPng(defaultSignImg, "mysign") // default signature set through my signature tab
|
||||||
: signature;
|
: signature; // signature done by user thorugh draw, upload, typed
|
||||||
|
const signatureImg = signUrl;
|
||||||
let imgWH = { width: width ? width : "", height: height ? height : "" };
|
let imgWH = { width: width ? width : "", height: height ? height : "" };
|
||||||
setIsImageSelect(false);
|
setIsImageSelect(false);
|
||||||
setImage();
|
setImage();
|
||||||
//set default signature image width and height
|
// `isApplyAll` is used when user edit signature/initial then updated signature apply all existing drawn signatures
|
||||||
if (isDefaultSign) {
|
|
||||||
const img = new Image();
|
|
||||||
img.src = defaultSignImg;
|
|
||||||
if (img.complete) {
|
|
||||||
imgWH = { width: img.width, height: img.height };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//`isApplyAll` is used when user edit signature/initial then updated signature apply all existing drawn signatures
|
|
||||||
const isApplyAll = true;
|
const isApplyAll = true;
|
||||||
if (uniqueId) {
|
if (uniqueId) {
|
||||||
setXyPosition((prevState) =>
|
setXyPosition((prevState) =>
|
||||||
@@ -351,13 +345,12 @@ function WidgetsValueModal(props) {
|
|||||||
(x) => x.pageNumber === pageNumber
|
(x) => x.pageNumber === pageNumber
|
||||||
);
|
);
|
||||||
const updatedPlaceholders = onSaveSign(
|
const updatedPlaceholders = onSaveSign(
|
||||||
type,
|
signType,
|
||||||
signer.placeHolder,
|
signer.placeHolder,
|
||||||
placeholderIndex,
|
placeholderIndex,
|
||||||
currWidgetsDetails?.key,
|
currWidgetsDetails?.key,
|
||||||
signatureImg,
|
signatureImg,
|
||||||
imgWH,
|
imgWH,
|
||||||
isDefaultSign,
|
|
||||||
isTypeText,
|
isTypeText,
|
||||||
typedSignature,
|
typedSignature,
|
||||||
isAutoSign,
|
isAutoSign,
|
||||||
@@ -377,13 +370,12 @@ function WidgetsValueModal(props) {
|
|||||||
return object.pageNumber === pageNumber;
|
return object.pageNumber === pageNumber;
|
||||||
});
|
});
|
||||||
const getUpdatePosition = onSaveSign(
|
const getUpdatePosition = onSaveSign(
|
||||||
type,
|
signType,
|
||||||
props?.xyPosition,
|
props?.xyPosition,
|
||||||
index,
|
index,
|
||||||
currWidgetsDetails?.key,
|
currWidgetsDetails?.key,
|
||||||
signatureImg,
|
signatureImg,
|
||||||
imgWH,
|
imgWH,
|
||||||
isDefaultSign,
|
|
||||||
isTypeText,
|
isTypeText,
|
||||||
typedSignature,
|
typedSignature,
|
||||||
false,
|
false,
|
||||||
@@ -535,7 +527,7 @@ function WidgetsValueModal(props) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// `handlesavesign` is used to save signaute, initials, stamp as a default
|
// `handlesavesign` is used to save signature, initials, stamp as a default
|
||||||
const handleSaveSign = async () => {
|
const handleSaveSign = async () => {
|
||||||
if (signature || image?.src) {
|
if (signature || image?.src) {
|
||||||
setIsLoader(true);
|
setIsLoader(true);
|
||||||
@@ -556,7 +548,7 @@ function WidgetsValueModal(props) {
|
|||||||
objectId: User?.id
|
objectId: User?.id
|
||||||
};
|
};
|
||||||
if (imageUrl) {
|
if (imageUrl) {
|
||||||
// below code is used to save or update default signaute, initials, stamp
|
// below code is used to save or update default signature, initials, stamp
|
||||||
try {
|
try {
|
||||||
const signCls = new Parse.Object("contracts_Signature");
|
const signCls = new Parse.Object("contracts_Signature");
|
||||||
if (props?.saveSignCheckbox?.signId) {
|
if (props?.saveSignCheckbox?.signId) {
|
||||||
@@ -642,13 +634,14 @@ function WidgetsValueModal(props) {
|
|||||||
} else {
|
} else {
|
||||||
setSignature("");
|
setSignature("");
|
||||||
canvasRef?.current?.clear();
|
canvasRef?.current?.clear();
|
||||||
handleSaveSignature(isTab);
|
const tab = isTab === "uploadImage" ? "image" : isTab;
|
||||||
|
handleSaveSignature(tab);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
setPenColor("blue");
|
setPenColor("blue");
|
||||||
} else {
|
} else {
|
||||||
setSignature("");
|
setSignature("");
|
||||||
handleSaveImage();
|
handleSaveImage("image");
|
||||||
}
|
}
|
||||||
setIsImageSelect(false);
|
setIsImageSelect(false);
|
||||||
setIsDefaultSign(false);
|
setIsDefaultSign(false);
|
||||||
@@ -1178,7 +1171,9 @@ function WidgetsValueModal(props) {
|
|||||||
hidden
|
hidden
|
||||||
/>
|
/>
|
||||||
<i className="fa-light fa-cloud-upload-alt uploadImgLogo text-base-content"></i>
|
<i className="fa-light fa-cloud-upload-alt uploadImgLogo text-base-content"></i>
|
||||||
<div className="text-[10px] text-base-content">{t("upload")}</div>
|
<div className="text-[10px] text-base-content">
|
||||||
|
{t("upload")}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
@@ -1324,7 +1319,6 @@ function WidgetsValueModal(props) {
|
|||||||
dotSize={1}
|
dotSize={1}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-row justify-between mt-[10px]">
|
<div className="flex flex-row justify-between mt-[10px]">
|
||||||
<PenColorComponent />
|
<PenColorComponent />
|
||||||
</div>
|
</div>
|
||||||
@@ -1988,7 +1982,7 @@ function WidgetsValueModal(props) {
|
|||||||
handleClickOnNext(isFinishDoc);
|
handleClickOnNext(isFinishDoc);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{t("finish")}
|
{t("done")}
|
||||||
</button>
|
</button>
|
||||||
) : (
|
) : (
|
||||||
<button
|
<button
|
||||||
|
|||||||
@@ -390,7 +390,7 @@ export const changeDateToMomentFormat = (format) => {
|
|||||||
case "dd MMMM, yyyy":
|
case "dd MMMM, yyyy":
|
||||||
return "DD MMMM, YYYY";
|
return "DD MMMM, YYYY";
|
||||||
case "dd.MM.yyyy":
|
case "dd.MM.yyyy":
|
||||||
return"DD.MM.YYYY";
|
return "DD.MM.YYYY";
|
||||||
default:
|
default:
|
||||||
return "L";
|
return "L";
|
||||||
}
|
}
|
||||||
@@ -1318,15 +1318,14 @@ export function convertTextToImg(fontStyle, text, color, widgetDims) {
|
|||||||
return dataUrl;
|
return dataUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
//function for save button to save signature or image url
|
// `onSaveSign` trigger on save button to save for signature, initials widget for type: draw, typed, default
|
||||||
export function onSaveSign(
|
export function onSaveSign(
|
||||||
type,
|
type,
|
||||||
xyPosition,
|
xyPosition,
|
||||||
index,
|
index,
|
||||||
signKey,
|
signKey,
|
||||||
signatureImg,
|
signatureImg,
|
||||||
defaultImgWH,
|
updatedImgWH,
|
||||||
isDefaultSign,
|
|
||||||
isTypeText,
|
isTypeText,
|
||||||
typedSignature,
|
typedSignature,
|
||||||
isAutoSign,
|
isAutoSign,
|
||||||
@@ -1341,27 +1340,11 @@ export function onSaveSign(
|
|||||||
widgetsType && ["signature", "initials"].includes(widgetsType);
|
widgetsType && ["signature", "initials"].includes(widgetsType);
|
||||||
const updateXYData = getXYdata.map((position) => {
|
const updateXYData = getXYdata.map((position) => {
|
||||||
if (position.key === signKey) {
|
if (position.key === signKey) {
|
||||||
if (isDefaultSign === "initials") {
|
if (isTypeText) {
|
||||||
let imgWH = { width: position.Width, height: position.Height };
|
|
||||||
getIMGWH = calculateImgAspectRatio(imgWH, position);
|
|
||||||
} else if (isDefaultSign === "default") {
|
|
||||||
getIMGWH = calculateImgAspectRatio(defaultImgWH, position);
|
|
||||||
} else if (isTypeText) {
|
|
||||||
getIMGWH = {
|
getIMGWH = {
|
||||||
newWidth: defaultImgWH.width,
|
newWidth: updatedImgWH.width,
|
||||||
newHeight: defaultImgWH.height
|
newHeight: updatedImgWH.height
|
||||||
};
|
};
|
||||||
} else {
|
|
||||||
const defaultWidth = defaultWidthHeight(position?.type).width;
|
|
||||||
const defaultHeight = defaultWidthHeight(position?.type).height;
|
|
||||||
|
|
||||||
getIMGWH = calculateImgAspectRatio(
|
|
||||||
{
|
|
||||||
width: defaultWidth ? defaultWidth : 150,
|
|
||||||
height: defaultHeight ? defaultHeight : 60
|
|
||||||
},
|
|
||||||
position
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
posWidth = getIMGWH ? getIMGWH.newWidth : 150;
|
posWidth = getIMGWH ? getIMGWH.newWidth : 150;
|
||||||
posHeight = getIMGWH ? getIMGWH.newHeight : 60;
|
posHeight = getIMGWH ? getIMGWH.newHeight : 60;
|
||||||
@@ -1371,8 +1354,8 @@ export function onSaveSign(
|
|||||||
: signatureImg;
|
: signatureImg;
|
||||||
return {
|
return {
|
||||||
...position,
|
...position,
|
||||||
Width: posWidth,
|
...(type === "type" ? { Width: posWidth } : {}),
|
||||||
Height: posHeight,
|
...(type === "type" ? { Height: posHeight } : {}),
|
||||||
SignUrl: signImg,
|
SignUrl: signImg,
|
||||||
...(isSignOrInitials && { signatureType: type || "" }),
|
...(isSignOrInitials && { signatureType: type || "" }),
|
||||||
options: { ...position.options, response: signImg },
|
options: { ...position.options, response: signImg },
|
||||||
@@ -1392,7 +1375,7 @@ export function onSaveSign(
|
|||||||
}
|
}
|
||||||
return obj;
|
return obj;
|
||||||
});
|
});
|
||||||
//condition when draw/upload signature/initials then apply it all related to widgets (signature,image,typed signature or default signature)
|
//condition when draw/upload signature/initials then apply it all related to widgets (draw, typed signature or default signature)
|
||||||
if (isApplyAll || isAutoSign) {
|
if (isApplyAll || isAutoSign) {
|
||||||
const updatedArray = updateXYposition.map((page) => ({
|
const updatedArray = updateXYposition.map((page) => ({
|
||||||
...page,
|
...page,
|
||||||
@@ -1404,9 +1387,6 @@ export function onSaveSign(
|
|||||||
: signatureImg;
|
: signatureImg;
|
||||||
return {
|
return {
|
||||||
...item,
|
...item,
|
||||||
// Only copy signature content, keep existing dimensions
|
|
||||||
// Width: posWidth,
|
|
||||||
// Height: posHeight,
|
|
||||||
SignUrl: signImg,
|
SignUrl: signImg,
|
||||||
...(isSignOrInitials && { signatureType: type || "" }),
|
...(isSignOrInitials && { signatureType: type || "" }),
|
||||||
options: { ...item.options, response: signImg },
|
options: { ...item.options, response: signImg },
|
||||||
@@ -1426,6 +1406,54 @@ export function onSaveSign(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scales and centers a base64‐encoded image into a fixed‐size widget
|
||||||
|
* and returns a new base64 PNG.
|
||||||
|
*
|
||||||
|
* @param {string} base64Image A data-URL (e.g. "data:image/png;base64,…")
|
||||||
|
* @param {{ Width: number, Height: number }} widgetDims
|
||||||
|
* @returns {Promise<string>} A Promise that resolves to a data-URL of the new image
|
||||||
|
*/
|
||||||
|
export async function convertBase64ToImg(base64Image, widgetDims) {
|
||||||
|
const { Width: maxWidth, Height: maxHeight } = widgetDims;
|
||||||
|
|
||||||
|
// Detect input format from data URL
|
||||||
|
const match = base64Image.match(/^data:(image\/(png|jpeg|jpg|webp));base64,/);
|
||||||
|
const inputMime = match ? match[1] : "image/png"; // fallback to PNG if unknown
|
||||||
|
|
||||||
|
// 1. Load the image off-DOM
|
||||||
|
const img = new Image();
|
||||||
|
img.src = base64Image;
|
||||||
|
await new Promise((resolve, reject) => {
|
||||||
|
img.onload = resolve;
|
||||||
|
img.onerror = reject;
|
||||||
|
});
|
||||||
|
|
||||||
|
// 2. Compute scale to fit within widget (preserving aspect ratio)
|
||||||
|
const { naturalWidth: imgW, naturalHeight: imgH } = img;
|
||||||
|
const scale = Math.min(maxWidth / imgW, maxHeight / imgH, 1);
|
||||||
|
const drawW = imgW * scale;
|
||||||
|
const drawH = imgH * scale;
|
||||||
|
|
||||||
|
// 3. Prepare a high-DPI canvas
|
||||||
|
const pxRatio = (window.devicePixelRatio || 1) * 2;
|
||||||
|
const canvas = document.createElement("canvas");
|
||||||
|
canvas.width = Math.ceil(maxWidth * pxRatio);
|
||||||
|
canvas.height = Math.ceil(maxHeight * pxRatio);
|
||||||
|
const ctx = canvas.getContext("2d");
|
||||||
|
ctx.scale(pxRatio, pxRatio);
|
||||||
|
ctx.clearRect(0, 0, maxWidth, maxHeight);
|
||||||
|
|
||||||
|
// 4. Center the image in the widget rectangle
|
||||||
|
const x = (maxWidth - drawW) / 2;
|
||||||
|
const y = (maxHeight - drawH) / 2;
|
||||||
|
ctx.drawImage(img, x, y, drawW, drawH);
|
||||||
|
// 5. Return new base64 in same format as input
|
||||||
|
const quality =
|
||||||
|
inputMime.includes("jpeg") || inputMime.includes("jpg") ? 0.9 : undefined;
|
||||||
|
return canvas.toDataURL(inputMime, quality);
|
||||||
|
}
|
||||||
|
|
||||||
//function to use After setting the signature URL for the first signature widget, clicking on subsequent
|
//function to use After setting the signature URL for the first signature widget, clicking on subsequent
|
||||||
//signature widgets should automatically apply and display the signature. apply for initial,signature and stamp widget
|
//signature widgets should automatically apply and display the signature. apply for initial,signature and stamp widget
|
||||||
export const handleCopySignUrl = (
|
export const handleCopySignUrl = (
|
||||||
@@ -1488,35 +1516,30 @@ export const calculateImgAspectRatio = (imgWH, pos) => {
|
|||||||
return { newHeight, newWidth };
|
return { newHeight, newWidth };
|
||||||
};
|
};
|
||||||
|
|
||||||
//function for upload stamp or image
|
// `onSaveImage` trigger for upload image through stamp, image, signature, initials widgets
|
||||||
export function onSaveImage(
|
export function onSaveImage(
|
||||||
|
signatureType,
|
||||||
xyPosition,
|
xyPosition,
|
||||||
index,
|
index,
|
||||||
signKey,
|
signKey,
|
||||||
imgWH,
|
|
||||||
image,
|
image,
|
||||||
isAutoSign,
|
isAutoSign,
|
||||||
widgetsType,
|
widgetsType,
|
||||||
isApplyAll
|
isApplyAll
|
||||||
) {
|
) {
|
||||||
let getIMGWH;
|
// let getIMGWH;
|
||||||
|
const isSignOrInitials =
|
||||||
|
widgetsType && ["signature", "initials"].includes(widgetsType);
|
||||||
//get current page position
|
//get current page position
|
||||||
const getXYData = xyPosition[index].pos;
|
const getXYData = xyPosition[index].pos;
|
||||||
const updateXYData = getXYData.map((position) => {
|
const updateXYData = getXYData.map((position) => {
|
||||||
if (position.key === signKey) {
|
if (position.key === signKey) {
|
||||||
getIMGWH = calculateImgAspectRatio(imgWH, position);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...position,
|
...position,
|
||||||
Width: getIMGWH.newWidth,
|
|
||||||
Height: getIMGWH.newHeight,
|
|
||||||
SignUrl: image.src,
|
SignUrl: image.src,
|
||||||
ImageType: image.imgType,
|
ImageType: image.imgType,
|
||||||
options: {
|
...(isSignOrInitials && { signatureType: signatureType || "" }),
|
||||||
...position.options,
|
options: { ...position.options, response: image.src }
|
||||||
response: image.src
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return position;
|
return position;
|
||||||
@@ -1528,17 +1551,16 @@ export function onSaveImage(
|
|||||||
}
|
}
|
||||||
return obj;
|
return obj;
|
||||||
});
|
});
|
||||||
//condition when user upload(stamp) then apply it all related to widgets
|
// condition when user upload(stamp) then apply it all related to widgets
|
||||||
if (isApplyAll || isAutoSign) {
|
if (isApplyAll || isAutoSign) {
|
||||||
const updatedArray = updateXYposition.map((page) => ({
|
const updatedArray = updateXYposition.map((page) => ({
|
||||||
...page,
|
...page,
|
||||||
pos: page.pos.map(
|
pos: page.pos.map(
|
||||||
(item) =>
|
(item) =>
|
||||||
|
// below condition to exclude apply all for image widget
|
||||||
item.type === widgetsType && item.type !== "image"
|
item.type === widgetsType && item.type !== "image"
|
||||||
? {
|
? {
|
||||||
...item,
|
...item,
|
||||||
// Width: getIMGWH.newWidth,
|
|
||||||
// Height: getIMGWH.newHeight,
|
|
||||||
SignUrl: image.src,
|
SignUrl: image.src,
|
||||||
ImageType: image.imgType,
|
ImageType: image.imgType,
|
||||||
options: {
|
options: {
|
||||||
@@ -1556,7 +1578,7 @@ export function onSaveImage(
|
|||||||
}
|
}
|
||||||
|
|
||||||
//function for select image and upload image
|
//function for select image and upload image
|
||||||
export const onImageSelect = (setImgWH, setImage, file) => {
|
export const onImageSelect = (setImage, file) => {
|
||||||
const reader = new FileReader();
|
const reader = new FileReader();
|
||||||
reader.readAsDataURL(file);
|
reader.readAsDataURL(file);
|
||||||
reader.onloadend = function (e) {
|
reader.onloadend = function (e) {
|
||||||
@@ -1575,13 +1597,12 @@ export const onImageSelect = (setImgWH, setImage, file) => {
|
|||||||
width = 184 * imgR;
|
width = 184 * imgR;
|
||||||
height = 184;
|
height = 184;
|
||||||
}
|
}
|
||||||
setImgWH({ width: width, height: height });
|
|
||||||
};
|
};
|
||||||
image.src = reader.result;
|
image.src = reader.result;
|
||||||
setImage({ src: image.src, imgType: file.type });
|
setImage({ src: image.src, imgType: file.type });
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
export const compressedFileSize = (file, setImgWH, setImage) => {
|
export const compressedFileSize = (file, setImage) => {
|
||||||
// Create a new FileReader instance to read the uploaded file
|
// Create a new FileReader instance to read the uploaded file
|
||||||
const reader = new FileReader();
|
const reader = new FileReader();
|
||||||
|
|
||||||
@@ -1606,7 +1627,7 @@ export const compressedFileSize = (file, setImgWH, setImage) => {
|
|||||||
// Draw the image onto the canvas with the specified dimensions
|
// Draw the image onto the canvas with the specified dimensions
|
||||||
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
|
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
|
||||||
// Get the original file type (default to "image/png" if not recognized)
|
// Get the original file type (default to "image/png" if not recognized)
|
||||||
const fileType = file.type || "image/png";
|
const fileType = "image/png"; //file.type || "image/png"
|
||||||
// Compress the image and convert it into a Blob
|
// Compress the image and convert it into a Blob
|
||||||
canvas.toBlob(
|
canvas.toBlob(
|
||||||
(blob) => {
|
(blob) => {
|
||||||
@@ -1616,7 +1637,7 @@ export const compressedFileSize = (file, setImgWH, setImage) => {
|
|||||||
lastModified: Date.now() // Update the last modified timestamp
|
lastModified: Date.now() // Update the last modified timestamp
|
||||||
});
|
});
|
||||||
// Pass the compressed file to a custom function for further processing
|
// Pass the compressed file to a custom function for further processing
|
||||||
onImageSelect(setImgWH, setImage, compressedFile);
|
onImageSelect(setImage, compressedFile);
|
||||||
},
|
},
|
||||||
fileType, // Output format for the compressed image
|
fileType, // Output format for the compressed image
|
||||||
0.3 // Compression quality (30%)
|
0.3 // Compression quality (30%)
|
||||||
@@ -1741,10 +1762,12 @@ export const multiSignEmbed = async (widgets, pdfDoc, signyourself, scale) => {
|
|||||||
widgetsPositionArr.map(async (widget) => {
|
widgetsPositionArr.map(async (widget) => {
|
||||||
// `SignUrl` this is wrong nomenclature and maintain for older code in this options we save base64 of signature image from sign pad
|
// `SignUrl` this is wrong nomenclature and maintain for older code in this options we save base64 of signature image from sign pad
|
||||||
let signbase64 = widget.SignUrl && widget.SignUrl;
|
let signbase64 = widget.SignUrl && widget.SignUrl;
|
||||||
|
const widgetDims = { Width: widget.Width, Height: widget.Height };
|
||||||
if (signbase64) {
|
if (signbase64) {
|
||||||
let arr = signbase64.split(","),
|
let arr = signbase64.split(","),
|
||||||
mime = arr[0].match(/:(.*?);/)[1];
|
mime = arr[0].match(/:(.*?);/)[1];
|
||||||
const res = await fetch(signbase64);
|
const signatureImg = await convertBase64ToImg(signbase64, widgetDims);
|
||||||
|
const res = await fetch(signatureImg);
|
||||||
const arrayBuffer = await res.arrayBuffer();
|
const arrayBuffer = await res.arrayBuffer();
|
||||||
const obj = { mimetype: mime, arrayBuffer: arrayBuffer };
|
const obj = { mimetype: mime, arrayBuffer: arrayBuffer };
|
||||||
return obj;
|
return obj;
|
||||||
@@ -2272,28 +2295,25 @@ export const addDefaultSignatureImg = (xyPosition, defaultSignImg, type) => {
|
|||||||
const img = new Image();
|
const img = new Image();
|
||||||
img.src = defaultSignImg;
|
img.src = defaultSignImg;
|
||||||
if (img.complete) {
|
if (img.complete) {
|
||||||
imgWH = {
|
imgWH = { width: img.width, height: img.height };
|
||||||
width: img.width,
|
|
||||||
height: img.height
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let xyDefaultPos = [];
|
let xyDefaultPos = [];
|
||||||
for (let i = 0; i < xyPosition.length; i++) {
|
for (let i = 0; i < xyPosition.length; i++) {
|
||||||
let getIMGWH;
|
// let getIMGWH;
|
||||||
const getXYdata = xyPosition[i].pos;
|
const getXYdata = xyPosition[i].pos;
|
||||||
const getPageNo = xyPosition[i].pageNumber;
|
const getPageNo = xyPosition[i].pageNumber;
|
||||||
const getPosData = getXYdata;
|
const getPosData = getXYdata;
|
||||||
|
|
||||||
const addSign = getPosData.map((position) => {
|
const addSign = getPosData.map((position) => {
|
||||||
getIMGWH = calculateImgAspectRatio(imgWH, position);
|
// getIMGWH = calculateImgAspectRatio(imgWH, position);
|
||||||
if (position.type) {
|
if (position.type) {
|
||||||
if (position?.type === type) {
|
if (position?.type === type) {
|
||||||
return {
|
return {
|
||||||
...position,
|
...position,
|
||||||
SignUrl: defaultSignImg,
|
SignUrl: defaultSignImg,
|
||||||
Width: getIMGWH.newWidth,
|
// Width: getIMGWH.newWidth,
|
||||||
Height: getIMGWH.newHeight,
|
// Height: getIMGWH.newHeight,
|
||||||
ImageType: "default",
|
ImageType: "default",
|
||||||
options: {
|
options: {
|
||||||
...position.options,
|
...position.options,
|
||||||
@@ -2305,8 +2325,8 @@ export const addDefaultSignatureImg = (xyPosition, defaultSignImg, type) => {
|
|||||||
return {
|
return {
|
||||||
...position,
|
...position,
|
||||||
SignUrl: defaultSignImg,
|
SignUrl: defaultSignImg,
|
||||||
Width: getIMGWH.newWidth,
|
// Width: getIMGWH.newWidth,
|
||||||
Height: getIMGWH.newHeight,
|
// Height: getIMGWH.newHeight,
|
||||||
ImageType: "default",
|
ImageType: "default",
|
||||||
options: {
|
options: {
|
||||||
...position.options,
|
...position.options,
|
||||||
@@ -2414,7 +2434,10 @@ export const getAppLogo = async () => {
|
|||||||
});
|
});
|
||||||
if (tenant) {
|
if (tenant) {
|
||||||
localStorage.setItem("appname", "OpenSign™");
|
localStorage.setItem("appname", "OpenSign™");
|
||||||
return { logo: tenant?.logo, user: tenant?.user };
|
return {
|
||||||
|
logo: tenant?.logo,
|
||||||
|
user: tenant?.user
|
||||||
|
};
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log("err in getlogo ", err);
|
console.log("err in getlogo ", err);
|
||||||
@@ -3650,3 +3673,60 @@ export function getFileAsArrayBuffer(file) {
|
|||||||
reader.readAsArrayBuffer(file);
|
reader.readAsArrayBuffer(file);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts a JPEG/JPG File/Blob into a PNG File.
|
||||||
|
*
|
||||||
|
* @param {string} base64Image - A data-URL (e.g. "data:image/jpeg;base64,…")
|
||||||
|
* @param {string} filename - Desired filename (e.g. "input").
|
||||||
|
* @returns {Promise<File>} - A promise that resolves with a new PNG File.
|
||||||
|
*/
|
||||||
|
export function convertJpegToPng(base64Image, filename) {
|
||||||
|
const arr = base64Image.split(",");
|
||||||
|
const mimeMatch = arr[0].match(/:(.*?);/);
|
||||||
|
if (!mimeMatch) throw new Error("Invalid dataURL");
|
||||||
|
const mime = mimeMatch[1];
|
||||||
|
const type = mime.split("/")[1];
|
||||||
|
if (type === "png") {
|
||||||
|
return base64Image;
|
||||||
|
} else {
|
||||||
|
const bstr = atob(arr[1]);
|
||||||
|
let n = bstr.length;
|
||||||
|
const u8arr = new Uint8Array(n);
|
||||||
|
while (n--) u8arr[n] = bstr.charCodeAt(n);
|
||||||
|
const inputFile = new File([u8arr], `${filename}.${type}`, { type: mime });
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
// ensure it’s JPEG/JPG (you can remove this check if not needed)
|
||||||
|
if (!/image\/jpe?g/.test(inputFile.type)) {
|
||||||
|
return reject(new Error("Input must be a JPEG or JPG image"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read the file as a data URL
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.onerror = () => reject(new Error("Failed to read the file"));
|
||||||
|
reader.onload = () => {
|
||||||
|
const img = new Image();
|
||||||
|
img.onerror = () => reject(new Error("Failed to load image"));
|
||||||
|
img.onload = () => {
|
||||||
|
// draw image onto a canvas
|
||||||
|
const canvas = document.createElement("canvas");
|
||||||
|
canvas.width = img.width;
|
||||||
|
canvas.height = img.height;
|
||||||
|
const ctx = canvas.getContext("2d");
|
||||||
|
ctx.drawImage(img, 0, 0);
|
||||||
|
|
||||||
|
// directly get PNG as base64 data URL
|
||||||
|
try {
|
||||||
|
const pngDataUrl = canvas.toDataURL("image/png");
|
||||||
|
resolve(pngDataUrl);
|
||||||
|
} catch (err) {
|
||||||
|
reject(new Error("Failed to convert canvas to PNG"));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
img.src = reader.result;
|
||||||
|
};
|
||||||
|
reader.readAsDataURL(inputFile);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user