mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-04 16:58:05 +02:00
164 lines
4.9 KiB
JavaScript
164 lines
4.9 KiB
JavaScript
import React, { useEffect, useState } from "react";
|
|
import Parse from "parse";
|
|
import ReportTable from "../../primitives/GetReportDisplay";
|
|
import reportJson from "../../json/ReportJson";
|
|
import axios from "axios";
|
|
function DashboardReport(props) {
|
|
// console.log("props ", props)
|
|
const [List, setList] = useState([]);
|
|
const [isLoader, setIsLoader] = useState(true);
|
|
const [reportName, setReportName] = useState("");
|
|
const [actions, setActions] = useState([]);
|
|
const [heading, setHeading] = useState([]);
|
|
const [isNextRecord, setIsNextRecord] = useState(false);
|
|
const [isMoreDocs, setIsMoreDocs] = useState(true);
|
|
const abortController = new AbortController();
|
|
const docPerPage = 5;
|
|
|
|
useEffect(() => {
|
|
setReportName("");
|
|
getReportData(props.Record.reportId);
|
|
|
|
// Function returned from useEffect is called on unmount
|
|
return () => {
|
|
setIsLoader(true);
|
|
setList([]);
|
|
setIsNextRecord(false);
|
|
// Here it'll abort the fetch
|
|
abortController.abort();
|
|
};
|
|
// eslint-disable-next-line
|
|
}, [props.Record.reportId]);
|
|
|
|
// below useEffect call when isNextRecord state is true and fetch next record
|
|
useEffect(() => {
|
|
if (isNextRecord) {
|
|
getReportData(props.Record.reportId, List.length, 200);
|
|
}
|
|
// eslint-disable-next-line
|
|
}, [isNextRecord]);
|
|
|
|
const getReportData = async (id, skipUserRecord = 0, limit = 200) => {
|
|
setIsLoader(true);
|
|
const json = reportJson(id);
|
|
if (json) {
|
|
setActions(json.actions);
|
|
setReportName(json.reportName);
|
|
setHeading(json.heading);
|
|
const currentUser = Parse.User.current().id;
|
|
|
|
const headers = {
|
|
"Content-Type": "application/json",
|
|
"X-Parse-Application-Id": localStorage.getItem("parseAppId"),
|
|
sessiontoken: localStorage.getItem("accesstoken")
|
|
};
|
|
try {
|
|
const params = { reportId: id, skip: skipUserRecord, limit: limit };
|
|
const url = `${localStorage.getItem("baseUrl")}/functions/getReport`;
|
|
const res = await axios.post(url, params, {
|
|
headers: headers,
|
|
signal: abortController.signal // is used to cancel fetch query
|
|
});
|
|
if (id === "5Go51Q7T8r") {
|
|
const listData = res.data?.result.filter((x) => x.Signers.length > 0);
|
|
let arr = [];
|
|
for (const obj of listData) {
|
|
const isSigner = obj.Signers.some(
|
|
(item) => item.UserId.objectId === currentUser
|
|
);
|
|
if (isSigner) {
|
|
let isRecord;
|
|
if (obj?.AuditTrail && obj?.AuditTrail.length > 0) {
|
|
isRecord = obj?.AuditTrail.some(
|
|
(item) =>
|
|
item?.UserPtr?.UserId?.objectId === currentUser &&
|
|
item.Activity === "Signed"
|
|
);
|
|
} else {
|
|
isRecord = false;
|
|
}
|
|
if (isRecord === false) {
|
|
arr.push(obj);
|
|
}
|
|
}
|
|
}
|
|
if (arr.length === docPerPage) {
|
|
setIsMoreDocs(true);
|
|
} else {
|
|
setIsMoreDocs(false);
|
|
}
|
|
setList((prevRecord) =>
|
|
prevRecord.length > 0 ? [...prevRecord, ...arr] : arr
|
|
);
|
|
} else {
|
|
if (res.data.result.length === docPerPage) {
|
|
setIsMoreDocs(true);
|
|
} else {
|
|
setIsMoreDocs(false);
|
|
}
|
|
setIsNextRecord(false);
|
|
setList((prevRecord) =>
|
|
prevRecord.length > 0
|
|
? [...prevRecord, ...res.data.result]
|
|
: res.data.result
|
|
);
|
|
}
|
|
setIsLoader(false);
|
|
} catch (err) {
|
|
const isCancel = axios.isCancel(err);
|
|
if (!isCancel) {
|
|
console.log("err ", err);
|
|
setIsLoader(false);
|
|
}
|
|
}
|
|
} else {
|
|
setIsLoader(false);
|
|
}
|
|
};
|
|
return (
|
|
<>
|
|
{isLoader ? (
|
|
<div
|
|
style={{
|
|
height: "100vh",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center"
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
fontSize: "45px",
|
|
color: "#3dd3e0"
|
|
}}
|
|
className="loader-37"
|
|
></div>
|
|
</div>
|
|
) : (
|
|
<>
|
|
{reportName ? (
|
|
<ReportTable
|
|
ReportName={reportName}
|
|
List={List}
|
|
setList={setList}
|
|
actions={actions}
|
|
heading={heading}
|
|
setIsNextRecord={setIsNextRecord}
|
|
isMoreDocs={isMoreDocs}
|
|
docPerPage={docPerPage}
|
|
/>
|
|
) : (
|
|
<div className="flex items-center justify-center h-[100px] w-full bg-white rounded">
|
|
<div className="text-center">
|
|
<p className="text-xl text-black">Report Not Found</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default DashboardReport;
|