mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-21 15:12:34 +02:00
1004 lines
27 KiB
JavaScript
1004 lines
27 KiB
JavaScript
import axios from "axios";
|
|
import { $ } from "select-dom";
|
|
import { rgb } from "pdf-lib";
|
|
|
|
const isMobile = window.innerWidth < 767;
|
|
|
|
export async function getBase64FromUrl(url) {
|
|
const data = await fetch(url);
|
|
const blob = await data.blob();
|
|
return new Promise((resolve) => {
|
|
const reader = new FileReader();
|
|
reader.readAsDataURL(blob);
|
|
reader.onloadend = function () {
|
|
const pdfBase = this.result;
|
|
const removeBase64Prefix = "data:application/octet-stream;base64,";
|
|
const suffixbase64 = pdfBase.replace(removeBase64Prefix, "");
|
|
resolve(suffixbase64);
|
|
};
|
|
});
|
|
}
|
|
|
|
export async function getBase64FromIMG(url) {
|
|
const data = await fetch(url);
|
|
const blob = await data.blob();
|
|
return new Promise((resolve) => {
|
|
const reader = new FileReader();
|
|
reader.readAsDataURL(blob);
|
|
reader.onloadend = function () {
|
|
const pdfBase = this.result;
|
|
|
|
resolve(pdfBase);
|
|
};
|
|
});
|
|
}
|
|
//function for convert signature png base64 url to jpeg base64
|
|
export const convertPNGtoJPEG = (base64Data) => {
|
|
return new Promise((resolve, reject) => {
|
|
const canvas = document.createElement("canvas");
|
|
const img = new Image();
|
|
img.src = base64Data;
|
|
|
|
img.onload = () => {
|
|
canvas.width = img.width;
|
|
canvas.height = img.height;
|
|
|
|
const ctx = canvas.getContext("2d");
|
|
ctx.fillStyle = "#ffffff"; // white color
|
|
ctx.fillRect(0, 0, canvas.width, canvas.height);
|
|
ctx.drawImage(img, 0, 0);
|
|
// Convert to JPEG by using the canvas.toDataURL() method
|
|
const jpegBase64Data = canvas.toDataURL("image/jpeg");
|
|
|
|
resolve(jpegBase64Data);
|
|
};
|
|
|
|
img.onerror = (error) => {
|
|
reject(error);
|
|
};
|
|
});
|
|
};
|
|
|
|
export function getHostUrl() {
|
|
const hostUrl = window.location.href;
|
|
|
|
if (hostUrl) {
|
|
const urlSplit = hostUrl.split("/");
|
|
const concatUrl = urlSplit[3] + "/" + urlSplit[4];
|
|
|
|
if (urlSplit) {
|
|
const desireUrl = "/" + concatUrl;
|
|
if (desireUrl) {
|
|
return desireUrl + "/";
|
|
}
|
|
}
|
|
} else {
|
|
return "/";
|
|
}
|
|
}
|
|
|
|
export const calculateImgAspectRatio = (imgWH) => {
|
|
let newWidth, newHeight;
|
|
const aspectRatio = imgWH.width / imgWH.height;
|
|
if (aspectRatio === "2.533333333333333") {
|
|
newWidth = 150;
|
|
newHeight = 60;
|
|
} else if (aspectRatio === 1) {
|
|
newWidth = aspectRatio * 100;
|
|
newHeight = aspectRatio * 100;
|
|
} else if (aspectRatio < 1) {
|
|
newWidth = aspectRatio * 70;
|
|
newHeight = 70;
|
|
} else if (aspectRatio < 2) {
|
|
newWidth = aspectRatio * 100;
|
|
newHeight = 100;
|
|
} else if (aspectRatio > 2 && aspectRatio < 4) {
|
|
newWidth = aspectRatio * 70;
|
|
newHeight = 70;
|
|
} else if (aspectRatio > 4) {
|
|
newWidth = aspectRatio * 40;
|
|
newHeight = 40;
|
|
} else if (aspectRatio > 5) {
|
|
newWidth = aspectRatio * 10;
|
|
newHeight = 10;
|
|
}
|
|
return { newHeight, newWidth };
|
|
};
|
|
|
|
//function for upload stamp or image
|
|
export function onSaveImage(xyPostion, index, signKey, imgWH, image) {
|
|
const updateFilter = xyPostion[index].pos.filter(
|
|
(data, ind) =>
|
|
data.key === signKey && data.Width && data.Height && data.SignUrl
|
|
);
|
|
let getIMGWH = calculateImgAspectRatio(imgWH);
|
|
const getXYdata = xyPostion[index].pos;
|
|
if (updateFilter.length > 0) {
|
|
const addSign = getXYdata.map((url, ind) => {
|
|
if (url.key === signKey) {
|
|
return {
|
|
...url,
|
|
Width: getIMGWH.newWidth,
|
|
Height: getIMGWH.newHeight,
|
|
SignUrl: image.src,
|
|
ImageType: image.imgType
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newUpdateUrl = xyPostion.map((obj, ind) => {
|
|
if (ind === index) {
|
|
return { ...obj, pos: addSign };
|
|
}
|
|
return obj;
|
|
});
|
|
return newUpdateUrl;
|
|
} else {
|
|
const getXYdata = xyPostion[index].pos;
|
|
|
|
let getPosData = xyPostion[index].pos.filter(
|
|
(data) => data.key === signKey
|
|
);
|
|
|
|
const addSign = getXYdata.map((url, ind) => {
|
|
if (url.key === signKey) {
|
|
return {
|
|
...url,
|
|
Width: getIMGWH.newWidth,
|
|
Height: getIMGWH.newHeight,
|
|
SignUrl: image.src,
|
|
ImageType: image.imgType
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newUpdateUrl = xyPostion.map((obj, ind) => {
|
|
if (ind === index) {
|
|
return { ...obj, pos: addSign };
|
|
}
|
|
return obj;
|
|
});
|
|
return newUpdateUrl;
|
|
}
|
|
}
|
|
|
|
//function for save button to save signature or image url
|
|
export function onSaveSign(
|
|
xyPostion,
|
|
index,
|
|
signKey,
|
|
signatureImg,
|
|
imgWH,
|
|
isDefaultSign,
|
|
isSign
|
|
) {
|
|
let getXYdata = xyPostion[index].pos;
|
|
let getPosData = xyPostion[index].pos.filter((data) => data.key === signKey);
|
|
|
|
let getIMGWH;
|
|
if (isDefaultSign) {
|
|
getIMGWH = calculateImgAspectRatio(imgWH);
|
|
}
|
|
|
|
const posWidth = isDefaultSign
|
|
? getIMGWH.newWidth
|
|
: isSign && getPosData[0].ImageType
|
|
? 150
|
|
: getPosData[0].Width
|
|
? getPosData[0].Width
|
|
: 150;
|
|
const posHidth = isDefaultSign
|
|
? getIMGWH.newHeight
|
|
: isSign && getPosData[0].ImageType
|
|
? 60
|
|
: getPosData[0].Height
|
|
? getPosData[0].Height
|
|
: 60;
|
|
|
|
const addSign = getXYdata.map((url, ind) => {
|
|
if (url.key === signKey) {
|
|
return {
|
|
...url,
|
|
Width: posWidth,
|
|
Height: posHidth,
|
|
SignUrl: signatureImg,
|
|
ImageType: "sign"
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newUpdateUrl = xyPostion.map((obj, ind) => {
|
|
if (ind === index) {
|
|
return { ...obj, pos: addSign };
|
|
}
|
|
return obj;
|
|
});
|
|
return newUpdateUrl;
|
|
}
|
|
|
|
export const addZIndex = (signerPos, key, setZIndex) => {
|
|
return signerPos.map((item) => {
|
|
if (item.placeHolder && item.placeHolder.length > 0) {
|
|
// If there is a nested array, recursively add the field to the last object
|
|
return {
|
|
...item,
|
|
placeHolder: addZIndex(item.placeHolder, key, setZIndex)
|
|
};
|
|
} else if (item.pos && item.pos.length > 0) {
|
|
// If there is no nested array, add the new field
|
|
return {
|
|
...item,
|
|
pos: addZIndex(item.pos, key, setZIndex)
|
|
// Adjust this line to add the desired field
|
|
};
|
|
} else {
|
|
if (item.key === key) {
|
|
setZIndex(item.zIndex);
|
|
return {
|
|
...item,
|
|
zIndex: item.zIndex ? item.zIndex + 1 : 1
|
|
};
|
|
} else {
|
|
return {
|
|
...item
|
|
};
|
|
}
|
|
}
|
|
});
|
|
};
|
|
//function for add default signature or image for all requested location
|
|
export const addDefaultSignatureImg = (xyPostion, defaultSignImg) => {
|
|
let imgWH = { width: "", height: "" };
|
|
const img = new Image();
|
|
img.src = defaultSignImg;
|
|
if (img.complete) {
|
|
imgWH = {
|
|
width: img.width,
|
|
height: img.height
|
|
};
|
|
}
|
|
const getIMGWH = calculateImgAspectRatio(imgWH);
|
|
let xyDefaultPos = [];
|
|
for (let i = 0; i < xyPostion.length; i++) {
|
|
const getXYdata = xyPostion[i].pos;
|
|
const getPageNo = xyPostion[i].pageNumber;
|
|
const getPosData = getXYdata;
|
|
|
|
const addSign = getPosData.map((url, ind) => {
|
|
if (url) {
|
|
return {
|
|
...url,
|
|
SignUrl: defaultSignImg,
|
|
Width: getIMGWH.newWidth,
|
|
Height: getIMGWH.newHeight,
|
|
ImageType: "default"
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newXypos = {
|
|
pageNumber: getPageNo,
|
|
pos: addSign
|
|
};
|
|
xyDefaultPos.push(newXypos);
|
|
}
|
|
return xyDefaultPos;
|
|
};
|
|
|
|
//function for select image and upload image
|
|
export const onImageSelect = (event, setImgWH, setImage) => {
|
|
const imageType = event.target.files[0].type;
|
|
const reader = new FileReader();
|
|
reader.readAsDataURL(event.target.files[0]);
|
|
|
|
reader.onloadend = function (e) {
|
|
let width, height;
|
|
const image = new Image();
|
|
|
|
image.src = e.target.result;
|
|
image.onload = function () {
|
|
width = image.width;
|
|
height = image.height;
|
|
const aspectRatio = 460 / 184;
|
|
const imgR = width / height;
|
|
|
|
if (imgR > aspectRatio) {
|
|
width = 460;
|
|
height = 460 / imgR;
|
|
} else {
|
|
width = 184 * imgR;
|
|
height = 184;
|
|
}
|
|
setImgWH({ width: width, height: height });
|
|
};
|
|
|
|
image.src = reader.result;
|
|
|
|
setImage({ src: image.src, imgType: imageType });
|
|
};
|
|
};
|
|
//function for getting document details from contract_Documents class
|
|
export const contractDocument = async (documentId) => {
|
|
const data = {
|
|
docId: documentId
|
|
};
|
|
const documentDeatils = await axios
|
|
.post(`${localStorage.getItem("baseUrl")}functions/getDocument`, data, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"X-Parse-Application-Id": localStorage.getItem("parseAppId"),
|
|
sessionToken: localStorage.getItem("accesstoken")
|
|
}
|
|
})
|
|
.then((Listdata) => {
|
|
const json = Listdata.data;
|
|
let data = [];
|
|
if (json && json.result.error) {
|
|
return json;
|
|
} else if (json && json.result) {
|
|
data.push(json.result);
|
|
return data;
|
|
} else {
|
|
return [];
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
return "Error: Something went wrong!";
|
|
});
|
|
|
|
return documentDeatils;
|
|
};
|
|
|
|
//function for getting document details for getDrive
|
|
export const getDrive = async (documentId) => {
|
|
const data = {
|
|
docId: documentId && documentId
|
|
};
|
|
const driveDeatils = await axios
|
|
.post(`${localStorage.getItem("baseUrl")}functions/getDrive`, data, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"X-Parse-Application-Id": localStorage.getItem("parseAppId"),
|
|
sessiontoken: localStorage.getItem("accesstoken")
|
|
}
|
|
})
|
|
.then((Listdata) => {
|
|
const json = Listdata.data;
|
|
|
|
if (json && json.result.error) {
|
|
return json;
|
|
} else if (json && json.result) {
|
|
const data = json.result;
|
|
return data;
|
|
} else {
|
|
return [];
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
return "Error: Something went wrong!";
|
|
});
|
|
|
|
return driveDeatils;
|
|
};
|
|
//function for getting contract_User details
|
|
export const contractUsers = async (email) => {
|
|
const data = {
|
|
email: email
|
|
};
|
|
const userDetails = await axios
|
|
.post(`${localStorage.getItem("baseUrl")}functions/getUserDetails`, data, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"X-Parse-Application-Id": localStorage.getItem("parseAppId"),
|
|
sessionToken: localStorage.getItem("accesstoken")
|
|
}
|
|
})
|
|
.then((Listdata) => {
|
|
const json = Listdata.data;
|
|
let data = [];
|
|
|
|
if (json && json.result) {
|
|
data.push(json.result);
|
|
return data;
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
return "Error: Something went wrong!";
|
|
});
|
|
|
|
return userDetails;
|
|
};
|
|
|
|
//function for getting contracts_contactbook details
|
|
export const contactBook = async (objectId) => {
|
|
const result = await axios
|
|
.get(
|
|
`${localStorage.getItem("baseUrl")}classes/${localStorage.getItem(
|
|
"_appName"
|
|
)}_Contactbook?where={"objectId":"${objectId}"}`,
|
|
{
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"X-Parse-Application-Id": localStorage.getItem("parseAppId"),
|
|
"X-Parse-Session-Token": localStorage.getItem("accesstoken")
|
|
}
|
|
}
|
|
)
|
|
.then((Listdata) => {
|
|
const json = Listdata.data;
|
|
const res = json.results;
|
|
return res;
|
|
})
|
|
|
|
.catch((err) => {
|
|
return "Error: Something went wrong!";
|
|
});
|
|
return result;
|
|
};
|
|
|
|
// function for validating URLs
|
|
export function urlValidator(url) {
|
|
try {
|
|
const newUrl = new URL(url);
|
|
return newUrl.protocol === "http:" || newUrl.protocol === "https:";
|
|
} catch (err) {
|
|
return false;
|
|
}
|
|
}
|
|
export function modalAlign() {
|
|
let modalDialog = $(".modal-dialog").getBoundingClientRect();
|
|
let mobileHead = $(".mobileHead").getBoundingClientRect();
|
|
let modal = $(".modal-dialog");
|
|
if (modalDialog.left < mobileHead.left) {
|
|
let leftOffset = mobileHead.left - modalDialog.left;
|
|
modal.style.left = leftOffset + "px";
|
|
modal.style.top = window.innerHeight / 3 + "px";
|
|
}
|
|
}
|
|
export const containerWidth = (pos, scale, signyourself) => {
|
|
let width;
|
|
if (signyourself) {
|
|
if (isMobile) {
|
|
return pos.Width * scale;
|
|
} else {
|
|
return pos.Width;
|
|
}
|
|
} else {
|
|
if (isMobile) {
|
|
if (pos.isMobile) {
|
|
width = pos.Width ? pos.Width * scale : 150 * scale;
|
|
return width;
|
|
} else {
|
|
if (pos.IsResize) {
|
|
width = pos.Width ? pos.Width * scale : 150 * scale;
|
|
return width;
|
|
} else {
|
|
width = pos.Width ? pos.Width : 150;
|
|
return width;
|
|
}
|
|
}
|
|
} else {
|
|
if (pos.isMobile) {
|
|
if (pos.IsResize) {
|
|
width = pos.Width ? pos.Width : 150;
|
|
return width;
|
|
} else {
|
|
width = pos.Width ? pos.Width * pos.scale : 150 * pos.scale;
|
|
|
|
return width;
|
|
}
|
|
} else {
|
|
width = pos.Width ? pos.Width : 150;
|
|
return width;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
export const containerHeight = (pos, scale, signyourself) => {
|
|
let height;
|
|
if (signyourself) {
|
|
if (isMobile) {
|
|
return pos.Height * scale;
|
|
} else {
|
|
return pos.Height;
|
|
}
|
|
} else {
|
|
if (isMobile) {
|
|
if (pos.isMobile) {
|
|
height = pos.Height ? pos.Height * scale : 60 * scale;
|
|
return height;
|
|
} else {
|
|
if (pos.IsResize) {
|
|
height = pos.Height ? pos.Height * scale : 60 * scale;
|
|
return height;
|
|
} else {
|
|
height = pos.Height ? pos.Height : 60;
|
|
return height;
|
|
}
|
|
}
|
|
} else {
|
|
if (pos.isMobile) {
|
|
if (pos.IsResize) {
|
|
height = pos.Height ? pos.Height : 60;
|
|
return height;
|
|
} else {
|
|
height = pos.Height ? pos.Height * pos.scale : 60 * pos.scale;
|
|
return height;
|
|
}
|
|
} else {
|
|
height = pos.Height ? pos.Height : 60;
|
|
return height;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
//function for embed multiple signature using pdf-lib
|
|
export const multiSignEmbed = async (
|
|
pngUrl,
|
|
pdfDoc,
|
|
pdfOriginalWidth,
|
|
signyourself,
|
|
containerWH
|
|
) => {
|
|
for (let item of pngUrl) {
|
|
const newWidth = containerWH.width;
|
|
const scale = isMobile ? pdfOriginalWidth / newWidth : 1;
|
|
const pageNo = item.pageNumber;
|
|
const imgUrlList = item.pos;
|
|
const pages = pdfDoc.getPages();
|
|
const page = pages[pageNo - 1];
|
|
const images = await Promise.all(
|
|
imgUrlList.map(async (url) => {
|
|
let signUrl = url.SignUrl;
|
|
if (url.ImageType === "image/png") {
|
|
//function for convert signature png base64 url to jpeg base64
|
|
const newUrl = await convertPNGtoJPEG(signUrl);
|
|
signUrl = newUrl;
|
|
}
|
|
const checkUrl = urlValidator(signUrl);
|
|
if (checkUrl) {
|
|
signUrl = signUrl + "?get";
|
|
}
|
|
const res = await fetch(signUrl);
|
|
return res.arrayBuffer();
|
|
})
|
|
);
|
|
images.forEach(async (imgData, id) => {
|
|
let img;
|
|
if (
|
|
(imgUrlList[id].ImageType &&
|
|
imgUrlList[id].ImageType === "image/png") ||
|
|
imgUrlList[id].ImageType === "image/jpeg"
|
|
) {
|
|
img = await pdfDoc.embedJpg(imgData);
|
|
} else {
|
|
img = await pdfDoc.embedPng(imgData);
|
|
}
|
|
const imgHeight = imgUrlList[id].Height ? imgUrlList[id].Height : 60;
|
|
const scaleWidth = containerWidth(imgUrlList[id], scale, signyourself);
|
|
const scaleHeight = containerHeight(imgUrlList[id], scale, signyourself);
|
|
|
|
const xPos = (pos) => {
|
|
if (signyourself) {
|
|
if (isMobile) {
|
|
return imgUrlList[id].xPosition * scale;
|
|
} else {
|
|
return imgUrlList[id].xPosition;
|
|
}
|
|
} else {
|
|
//checking both condition mobile and desktop view
|
|
if (isMobile) {
|
|
//if pos.isMobile false -- placeholder saved from desktop view then handle position in mobile view divided by scale
|
|
if (pos.isMobile) {
|
|
const x = pos.xPosition * (pos.scale / scale);
|
|
return x * scale;
|
|
} else {
|
|
const x = pos.xPosition / scale;
|
|
return x * scale;
|
|
}
|
|
} else {
|
|
//else if pos.isMobile true -- placeholder saved from mobile or tablet view then handle position in desktop view divide by scale
|
|
if (pos.isMobile) {
|
|
const x = pos.xPosition * pos.scale;
|
|
return x;
|
|
} else {
|
|
return pos.xPosition;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const yPos = (pos) => {
|
|
if (signyourself) {
|
|
if (isMobile) {
|
|
return (
|
|
page.getHeight() -
|
|
imgUrlList[id].yPosition * scale -
|
|
imgHeight * scale
|
|
);
|
|
} else {
|
|
return page.getHeight() - imgUrlList[id].yPosition - imgHeight;
|
|
}
|
|
} else {
|
|
//checking both condition mobile and desktop view
|
|
const y = pos.yPosition / scale;
|
|
if (isMobile) {
|
|
//if pos.isMobile false -- placeholder saved from desktop view then handle position in mobile view divided by scale
|
|
if (pos.isMobile) {
|
|
const y = pos.yPosition * (pos.scale / scale);
|
|
return page.getHeight() - y * scale - imgHeight * scale;
|
|
} else {
|
|
if (pos.IsResize) {
|
|
return page.getHeight() - y * scale - imgHeight * scale;
|
|
} else {
|
|
return page.getHeight() - y * scale - imgHeight;
|
|
}
|
|
}
|
|
} else {
|
|
//else if pos.isMobile true -- placeholder saved from mobile or tablet view then handle position in desktop view divide by scale
|
|
if (pos.isMobile) {
|
|
if (pos.IsResize) {
|
|
const y = pos.yPosition * pos.scale;
|
|
return page.getHeight() - y - imgHeight;
|
|
} else {
|
|
const y = pos.yPosition * pos.scale;
|
|
return page.getHeight() - y - imgHeight * pos.scale;
|
|
}
|
|
} else {
|
|
return page.getHeight() - pos.yPosition - imgHeight;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
page.drawImage(img, {
|
|
x: xPos(imgUrlList[id]),
|
|
y: yPos(imgUrlList[id]),
|
|
width: scaleWidth,
|
|
height: scaleHeight
|
|
});
|
|
});
|
|
}
|
|
|
|
const pdfBytes = await pdfDoc.saveAsBase64({ useObjectStreams: false });
|
|
|
|
return pdfBytes;
|
|
};
|
|
//function for embed document id
|
|
export const embedDocId = async (pdfDoc, documentId, allPages) => {
|
|
for (let i = 0; i < allPages; i++) {
|
|
const font = await pdfDoc.embedFont("Helvetica");
|
|
const fontSize = 10;
|
|
const textContent = documentId && `OpenSign™ DocumentId: ${documentId} `;
|
|
const pages = pdfDoc.getPages();
|
|
const page = pages[i];
|
|
page.drawText(textContent, {
|
|
x: 10,
|
|
y: page.getHeight() - 10,
|
|
size: fontSize,
|
|
font,
|
|
color: rgb(0.5, 0.5, 0.5)
|
|
});
|
|
}
|
|
};
|
|
|
|
export const pdfNewWidthFun = (divRef) => {
|
|
const clientWidth = divRef.current.offsetWidth;
|
|
const pdfWidth = clientWidth - 160 - 200;
|
|
//160 is width of left side, 200 is width of right side component
|
|
return pdfWidth;
|
|
};
|
|
|
|
//function for resize image and update width and height for mulitisigners
|
|
export const handleImageResize = (
|
|
ref,
|
|
key,
|
|
signerId,
|
|
position,
|
|
signerPos,
|
|
pageNumber,
|
|
setSignerPos,
|
|
pdfOriginalWidth,
|
|
containerWH,
|
|
showResize
|
|
) => {
|
|
const filterSignerPos = signerPos.filter(
|
|
(data) => data.signerObjId === signerId
|
|
);
|
|
|
|
if (filterSignerPos.length > 0) {
|
|
const getPlaceHolder = filterSignerPos[0].placeHolder;
|
|
const getPageNumer = getPlaceHolder.filter(
|
|
(data) => data.pageNumber === pageNumber
|
|
);
|
|
if (getPageNumer.length > 0) {
|
|
const getXYdata = getPageNumer[0].pos.filter(
|
|
(data, ind) => data.key === key && data.Width && data.Height
|
|
);
|
|
if (getXYdata.length > 0) {
|
|
const getXYdata = getPageNumer[0].pos;
|
|
const getPosData = getXYdata;
|
|
const addSignPos = getPosData.map((url, ind) => {
|
|
if (url.key === key) {
|
|
return {
|
|
...url,
|
|
Width: ref.offsetWidth,
|
|
Height: ref.offsetHeight,
|
|
IsResize: showResize ? true : false
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newUpdateSignPos = getPlaceHolder.map((obj, ind) => {
|
|
if (obj.pageNumber === pageNumber) {
|
|
return { ...obj, pos: addSignPos };
|
|
}
|
|
return obj;
|
|
});
|
|
|
|
const newUpdateSigner = signerPos.map((obj, ind) => {
|
|
if (obj.signerObjId === signerId) {
|
|
return { ...obj, placeHolder: newUpdateSignPos };
|
|
}
|
|
return obj;
|
|
});
|
|
|
|
setSignerPos(newUpdateSigner);
|
|
} else {
|
|
const getXYdata = getPageNumer[0].pos;
|
|
const getPosData = getXYdata;
|
|
const addSignPos = getPosData.map((url, ind) => {
|
|
if (url.key === key) {
|
|
return {
|
|
...url,
|
|
Width: ref.offsetWidth,
|
|
Height: ref.offsetHeight,
|
|
IsResize: showResize ? true : false
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newUpdateSignPos = getPlaceHolder.map((obj, ind) => {
|
|
if (obj.pageNumber === pageNumber) {
|
|
return { ...obj, pos: addSignPos };
|
|
}
|
|
return obj;
|
|
});
|
|
|
|
const newUpdateSigner = signerPos.map((obj, ind) => {
|
|
if (obj.signerObjId === signerId) {
|
|
return { ...obj, placeHolder: newUpdateSignPos };
|
|
}
|
|
return obj;
|
|
});
|
|
|
|
setSignerPos(newUpdateSigner);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
//function for resize image and update width and height for sign-yourself
|
|
export const handleSignYourselfImageResize = (
|
|
ref,
|
|
key,
|
|
direction,
|
|
position,
|
|
xyPostion,
|
|
index,
|
|
setXyPostion,
|
|
pdfOriginalWidth,
|
|
containerWH
|
|
) => {
|
|
const updateFilter = xyPostion[index].pos.filter(
|
|
(data) => data.key === key && data.Width && data.Height
|
|
);
|
|
|
|
if (updateFilter.length > 0) {
|
|
const getXYdata = xyPostion[index].pos;
|
|
const getPosData = getXYdata;
|
|
const addSign = getPosData.map((url, ind) => {
|
|
if (url.key === key) {
|
|
return {
|
|
...url,
|
|
Width: ref.offsetWidth,
|
|
Height: ref.offsetHeight,
|
|
IsResize: true
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newUpdateUrl = xyPostion.map((obj, ind) => {
|
|
if (ind === index) {
|
|
return { ...obj, pos: addSign };
|
|
}
|
|
return obj;
|
|
});
|
|
|
|
setXyPostion(newUpdateUrl);
|
|
} else {
|
|
const getXYdata = xyPostion[index].pos;
|
|
|
|
const getPosData = getXYdata;
|
|
|
|
const addSign = getPosData.map((url, ind) => {
|
|
if (url.key === key) {
|
|
return {
|
|
...url,
|
|
Width: ref.offsetWidth,
|
|
Height: ref.offsetHeight,
|
|
IsResize: true
|
|
};
|
|
}
|
|
return url;
|
|
});
|
|
|
|
const newUpdateUrl = xyPostion.map((obj, ind) => {
|
|
if (ind === index) {
|
|
return { ...obj, pos: addSign };
|
|
}
|
|
return obj;
|
|
});
|
|
setXyPostion(newUpdateUrl);
|
|
}
|
|
};
|
|
|
|
//function for call cloud function signPdf and generate digital signature
|
|
export const signPdfFun = async (
|
|
base64Url,
|
|
documentId,
|
|
signerObjectId,
|
|
pdfOriginalWidth,
|
|
signerData,
|
|
containerWH,
|
|
setIsAlert,
|
|
xyPosData,
|
|
pdfBase64Url,
|
|
pageNo
|
|
) => {
|
|
let singleSign;
|
|
|
|
const newWidth = containerWH.width;
|
|
const scale = isMobile ? pdfOriginalWidth / newWidth : 1;
|
|
if (signerData && signerData.length === 1 && signerData[0].pos.length === 1) {
|
|
const height = xyPosData.Height ? xyPosData.Height : 60;
|
|
|
|
const xPos = (pos) => {
|
|
//checking both condition mobile and desktop view
|
|
if (isMobile) {
|
|
//if pos.isMobile false -- placeholder saved from desktop view then handle position in mobile view divided by scale
|
|
if (pos.isMobile) {
|
|
const x = pos.xPosition * (pos.scale / scale);
|
|
return x * scale;
|
|
} else {
|
|
const x = pos.xPosition / scale;
|
|
return x * scale;
|
|
}
|
|
} else {
|
|
//else if pos.isMobile true -- placeholder saved from mobile or tablet view then handle position in desktop view divide by scale
|
|
if (pos.isMobile) {
|
|
const x = pos.xPosition * pos.scale;
|
|
return x;
|
|
} else {
|
|
return pos.xPosition;
|
|
}
|
|
}
|
|
};
|
|
const yBottom = (pos) => {
|
|
let yPosition;
|
|
//checking both condition mobile and desktop view
|
|
|
|
if (isMobile) {
|
|
//if pos.isMobile false -- placeholder saved from desktop view then handle position in mobile view divided by scale
|
|
if (pos.isMobile) {
|
|
const y = pos.yBottom * (pos.scale / scale);
|
|
yPosition = pos.isDrag
|
|
? y * scale - height * scale
|
|
: pos.firstYPos
|
|
? y * scale - height * scale + pos.firstYPos
|
|
: y * scale - height * scale;
|
|
return yPosition;
|
|
} else {
|
|
const y = pos.yBottom / scale;
|
|
if (pos.IsResize) {
|
|
yPosition = pos.isDrag
|
|
? y * scale - height * scale
|
|
: pos.firstYPos
|
|
? y * scale - height * scale + pos.firstYPos
|
|
: y * scale - height * scale;
|
|
return yPosition;
|
|
} else {
|
|
yPosition = pos.isDrag
|
|
? y * scale - height
|
|
: pos.firstYPos
|
|
? y * scale - height + pos.firstYPos
|
|
: y * scale - height;
|
|
return yPosition;
|
|
}
|
|
}
|
|
} else {
|
|
//else if pos.isMobile true -- placeholder saved from mobile or tablet view then handle position in desktop view divide by scale
|
|
if (pos.isMobile) {
|
|
const y = pos.yBottom * pos.scale;
|
|
if (pos.IsResize) {
|
|
yPosition = pos.isDrag
|
|
? y - height
|
|
: pos.firstYPos
|
|
? y - height + pos.firstYPos
|
|
: y - height;
|
|
return yPosition;
|
|
} else {
|
|
yPosition = pos.isDrag
|
|
? y - height * pos.scale
|
|
: pos.firstYPos
|
|
? y - height * pos.scale + pos.firstYPos
|
|
: y - height * pos.scale;
|
|
return yPosition;
|
|
}
|
|
} else {
|
|
yPosition = pos.isDrag
|
|
? pos.yBottom - height
|
|
: pos.firstYPos
|
|
? pos.yBottom - height + pos.firstYPos
|
|
: pos.yBottom - height;
|
|
return yPosition;
|
|
}
|
|
}
|
|
};
|
|
|
|
const bottomY = yBottom(xyPosData);
|
|
singleSign = {
|
|
pdfFile: pdfBase64Url,
|
|
docId: documentId,
|
|
userId: signerObjectId,
|
|
sign: {
|
|
Base64: base64Url,
|
|
Left: xPos(xyPosData),
|
|
Bottom: bottomY,
|
|
Width: containerWidth(xyPosData, scale),
|
|
Height: containerHeight(xyPosData, scale),
|
|
Page: pageNo
|
|
}
|
|
};
|
|
} else if (
|
|
signerData &&
|
|
signerData.length > 0 &&
|
|
signerData[0].pos.length > 0
|
|
) {
|
|
singleSign = {
|
|
pdfFile: base64Url,
|
|
docId: documentId,
|
|
userId: signerObjectId
|
|
};
|
|
}
|
|
|
|
const response = await axios
|
|
.post(`${localStorage.getItem("baseUrl")}functions/signPdf`, singleSign, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"X-Parse-Application-Id": localStorage.getItem("parseAppId"),
|
|
sessionToken: localStorage.getItem("accesstoken")
|
|
}
|
|
})
|
|
.then((Listdata) => {
|
|
const json = Listdata.data;
|
|
const res = json.result;
|
|
return res;
|
|
})
|
|
.catch((err) => {
|
|
setIsAlert({
|
|
isShow: true,
|
|
alertMessage: "something went wrong"
|
|
});
|
|
});
|
|
|
|
return response;
|
|
};
|