more
This commit is contained in:
@@ -43,7 +43,6 @@ const CaseDetailsPage = () => {
|
|||||||
//documentId, responseGenerations, caseId, documentType
|
//documentId, responseGenerations, caseId, documentType
|
||||||
console.log("handle navigate fired docId", docId);
|
console.log("handle navigate fired docId", docId);
|
||||||
let docType = "interrogatories";
|
let docType = "interrogatories";
|
||||||
|
|
||||||
navigate(`/documents/${docId}/${docType}/${caseId}`);
|
navigate(`/documents/${docId}/${docType}/${caseId}`);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -51,7 +50,9 @@ const CaseDetailsPage = () => {
|
|||||||
if (!documentId || !caseId) {
|
if (!documentId || !caseId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
console.log(
|
||||||
|
"hit handleNavEdit----------------------------------------------------------"
|
||||||
|
);
|
||||||
navigate(`/reqedit/${documentId}/interrogatories-out/${caseId}`);
|
navigate(`/reqedit/${documentId}/interrogatories-out/${caseId}`);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -144,12 +145,15 @@ const CaseDetailsPage = () => {
|
|||||||
);
|
);
|
||||||
if (docType === "complaint") {
|
if (docType === "complaint") {
|
||||||
const clientPosition = subCase.clientPosition;
|
const clientPosition = subCase.clientPosition;
|
||||||
|
setTimeout(handleNavEdit, 20000, docId, caseId);
|
||||||
const res = await generateOutgoingDiscoveryRequests(
|
const res = await generateOutgoingDiscoveryRequests(
|
||||||
docId,
|
docId,
|
||||||
radioValue,
|
radioValue,
|
||||||
clientPosition
|
clientPosition
|
||||||
);
|
);
|
||||||
setTimeout(handleNavEdit, 20000, docId, caseId);
|
console.log(
|
||||||
|
"res in generateOutgoingDiscoveryRequests------------------->"
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
// try to kick off parsing here
|
// try to kick off parsing here
|
||||||
setTimeout(handleNavigate, 40000, docId, caseId);
|
setTimeout(handleNavigate, 40000, docId, caseId);
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import {
|
|||||||
docEditCopy,
|
docEditCopy,
|
||||||
outgoingComesNow,
|
outgoingComesNow,
|
||||||
} from "../../Constants/Copy/docEditCopy.js";
|
} from "../../Constants/Copy/docEditCopy.js";
|
||||||
import ConfirmModal from "../Modals/ConfirmModal";
|
|
||||||
import Button from "../../pageElements/Button";
|
import Button from "../../pageElements/Button";
|
||||||
import {
|
import {
|
||||||
rogInstructions,
|
rogInstructions,
|
||||||
@@ -18,15 +17,7 @@ import {
|
|||||||
standardProd,
|
standardProd,
|
||||||
} from "../../Constants/Copy/reqEditCopy.js";
|
} from "../../Constants/Copy/reqEditCopy.js";
|
||||||
import { db } from "../../firebase";
|
import { db } from "../../firebase";
|
||||||
import {
|
import { doc, getDoc } from "firebase/firestore";
|
||||||
collection,
|
|
||||||
updateDoc,
|
|
||||||
onSnapshot,
|
|
||||||
doc,
|
|
||||||
getDoc,
|
|
||||||
setDoc,
|
|
||||||
increment,
|
|
||||||
} from "firebase/firestore";
|
|
||||||
import "../../styles/doclist-page.scss";
|
import "../../styles/doclist-page.scss";
|
||||||
|
|
||||||
const RequestEditPage = () => {
|
const RequestEditPage = () => {
|
||||||
@@ -88,6 +79,7 @@ const RequestEditPage = () => {
|
|||||||
// NEVER CHANGE THIS:
|
// NEVER CHANGE THIS:
|
||||||
return { showInputEle: false, text: item.text, index: index };
|
return { showInputEle: false, text: item.text, index: index };
|
||||||
});
|
});
|
||||||
|
|
||||||
setRequests(resp);
|
setRequests(resp);
|
||||||
setProdReq(standardProd);
|
setProdReq(standardProd);
|
||||||
})
|
})
|
||||||
@@ -111,6 +103,9 @@ const RequestEditPage = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function getOutgoingRequests(documentId) {
|
async function getOutgoingRequests(documentId) {
|
||||||
|
if (!documentId) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const docType = String(documentType);
|
const docType = String(documentType);
|
||||||
const docId = String(documentId);
|
const docId = String(documentId);
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
@@ -178,8 +173,10 @@ const RequestEditPage = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
async function postEditedResponses() {
|
async function postEditedResponses() {
|
||||||
|
if (!requests && requests.length > 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const mergedRequests = [...requests, ...prodReq];
|
const mergedRequests = [...requests, ...prodReq];
|
||||||
|
|
||||||
const docId = documentId;
|
const docId = documentId;
|
||||||
const leadAttorneys = fetchedCase?.leadAttorneys
|
const leadAttorneys = fetchedCase?.leadAttorneys
|
||||||
? fetchedCase?.leadAttorneys
|
? fetchedCase?.leadAttorneys
|
||||||
@@ -385,7 +382,7 @@ const RequestEditPage = () => {
|
|||||||
fetchedCase?.clientPosition === "Defendant"
|
fetchedCase?.clientPosition === "Defendant"
|
||||||
? fetchedCase?.plaintiffParties
|
? fetchedCase?.plaintiffParties
|
||||||
: fetchedCase?.defendantParties;
|
: fetchedCase?.defendantParties;
|
||||||
console.log("state", state);
|
|
||||||
const editingContent = () => {
|
const editingContent = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -33,9 +33,9 @@ const HomePage = () => {
|
|||||||
<div className="row upper-row-one">
|
<div className="row upper-row-one">
|
||||||
<div className="col-md-12">
|
<div className="col-md-12">
|
||||||
<div className="heading-one-container">
|
<div className="heading-one-container">
|
||||||
<h1 className="heading-1">
|
<h1 className="heading-1">Novodraft: Legal AI.</h1>
|
||||||
Novodraft: Legal AI. Draft documents faster <i>and </i>{" "}
|
<h1 className="heading-2">
|
||||||
smarter.
|
Draft documents faster <i>and </i> smarter.
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-block-1">
|
<p className="text-block-1">
|
||||||
|
|||||||
@@ -59,33 +59,23 @@ export const docEditCopy = {
|
|||||||
|
|
||||||
export const outgoingComesNow = (state, fetchedCase) => {
|
export const outgoingComesNow = (state, fetchedCase) => {
|
||||||
let copyString;
|
let copyString;
|
||||||
const position = fetchedCase ? fetchedCase?.clientPosition : <></>;
|
|
||||||
const parties = fetchedCase ? (
|
const servingParty =
|
||||||
fetchedCase?.clientPosition === "Plaintiff" ? (
|
fetchedCase?.clientPosition === "Plaintiff"
|
||||||
fetchedCase?.plaintiffParties
|
? fetchedCase?.plaintiffParties
|
||||||
) : (
|
: fetchedCase?.defendantParties;
|
||||||
fetchedCase?.defendantParties
|
const respondingParty =
|
||||||
)
|
servingParty === fetchedCase?.plaintiffParties
|
||||||
) : (
|
? fetchedCase?.defendantParties
|
||||||
<></>
|
: fetchedCase?.plaintiffParties;
|
||||||
);
|
|
||||||
const adversary = fetchedCase ? (
|
|
||||||
fetchedCase?.clientPosition === "Plaintiff" ? (
|
|
||||||
fetchedCase?.defendantParties
|
|
||||||
) : (
|
|
||||||
fetchedCase?.plaintiffParties
|
|
||||||
)
|
|
||||||
) : (
|
|
||||||
<></>
|
|
||||||
);
|
|
||||||
|
|
||||||
if (state === "ny") {
|
if (state === "ny") {
|
||||||
copyString = `COMES NOW, ${position}, ${parties}, through counsel, and hereby propounds these Interrogatories and Requests for Production on ${adversary}, to be answered under oath, in writing, in accordance with NY CPLR 3120 - 3130.`;
|
copyString = `COMES NOW, ${fetchedCase?.clientPosition}, ${servingParty}, through counsel, and hereby propounds these Interrogatories and Requests for Production on ${respondingParty}, to be answered under oath, in writing, in accordance with NY CPLR 3120 - 3130.`;
|
||||||
} else if (state === "fl") {
|
} else if (state === "fl") {
|
||||||
copyString = `COMES NOW, ${position}, ${parties}, through counsel, and hereby propounds these Interrogatories and Requests for Production on ${adversary}, to be answered to be answered under oath, in writing, in accordance with Rule 1.340, Florida Rules of Civil Procedure.`;
|
copyString = `COMES NOW, ${fetchedCase?.clientPosition}, ${servingParty}, through counsel, and hereby propounds these Interrogatories and Requests for Production on ${respondingParty}, to be answered to be answered under oath, in writing, in accordance with Rule 1.340, Florida Rules of Civil Procedure.`;
|
||||||
} else if (state === "nj") {
|
} else if (state === "nj") {
|
||||||
copyString =
|
copyString =
|
||||||
`Comes now ${position}, ${parties}, through counsel, and hereby propounds these Interrogatories and Requests for Production on ${adversary}, to be answered to be answered under oath, in writing, in accordance with NJ R. 4:17-1 - 4:18-1,` +
|
`Comes now ${fetchedCase?.clientPosition}, ${servingParty}, through counsel, and hereby propounds these Interrogatories and Requests for Production on ${respondingParty}, to be answered to be answered under oath, in writing, in accordance with NJ R. 4:17-1 - 4:18-1,` +
|
||||||
<div className="jersey-itals">et. seq.</div> +
|
<div className="jersey-itals">et. seq.</div> +
|
||||||
`All questions must be answered unless the court otherwise orders or unless a claim of privilege or protective order is made in accordance with R. 4:17-1(b)(3).`;
|
`All questions must be answered unless the court otherwise orders or unless a claim of privilege or protective order is made in accordance with R. 4:17-1(b)(3).`;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -426,6 +426,7 @@
|
|||||||
.reqedit-report-container {
|
.reqedit-report-container {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
margin-top: -20px;
|
margin-top: -20px;
|
||||||
|
margin-left: 16px;
|
||||||
}
|
}
|
||||||
.docedit-report-link {
|
.docedit-report-link {
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
@@ -441,7 +442,7 @@
|
|||||||
min-width: 700px;
|
min-width: 700px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
margin: 16px 0px;
|
margin: 16px 0px 8px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1140px) {
|
@media only screen and (max-width: 1140px) {
|
||||||
|
|||||||
@@ -41,8 +41,7 @@ ul.navbar-nav {
|
|||||||
|
|
||||||
section.section-1:before {
|
section.section-1:before {
|
||||||
content: "";
|
content: "";
|
||||||
background: url("../Assets/Images/overlayFlipSmall.png") no-repeat fixed 0%
|
background: url("../Assets/Images/overlayFlip.png") no-repeat fixed 10% 115px;
|
||||||
290px;
|
|
||||||
background-attachment: local;
|
background-attachment: local;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
@@ -132,26 +131,38 @@ section.section-1 {
|
|||||||
max-width: 370px;
|
max-width: 370px;
|
||||||
line-height: 29px;
|
line-height: 29px;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
|
margin-top: -8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1.heading-1 {
|
h1.heading-1 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: 40px;
|
font-size: 54px;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 52px; /* 140.625% */
|
line-height: 52px; /* 140.625% */
|
||||||
margin-bottom: 1rem !important;
|
margin-bottom: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1.heading-2 {
|
||||||
|
color: #fff;
|
||||||
|
font-family: Roboto;
|
||||||
|
font-size: 32px;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 52px; /* 140.625% */
|
||||||
|
margin-bottom: 0px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
p.text-block-1 {
|
p.text-block-1 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: 28px;
|
font-size: 26px;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
line-height: 29.756px; /* 123.983% */
|
line-height: 29.756px; /* 123.983% */
|
||||||
width: 525.308px;
|
width: 525px;
|
||||||
|
margin-top: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.try-it-button-box {
|
.try-it-button-box {
|
||||||
|
|||||||
Reference in New Issue
Block a user