Merge branch 'main' of github.com:kjannette/ax3Client into jdurante-1-stripe-paywall

This commit is contained in:
Jacob
2024-01-23 14:43:58 -05:00
14 changed files with 168 additions and 86 deletions

View File

@@ -5,45 +5,41 @@ export const Steps = () => (
<h2 className="doc-header-text">Generate Discovery Responses</h2>
<ol className="steps-list">
<li>
<strong>CREATE THE CASE: </strong>First, input the case to which the
discovery request pertains. Click Cases in the top navigation bar to
go to the <strong>Case View</strong>. Click the Create New Case button
(lower right) to surface the Create Case Modal. Enter all relevant
information -- case name, case number, parties, etc. -- and click Save
Case. The modal will close, returning you to the{" "}
<strong>Case View.</strong>
<strong>CREATE THE CASE: </strong> Click Cases in the top navigation
bar to go to the <strong>Case View</strong>. Click the Create New Case
button (lower right) to surface the Create Case Modal. Enter all
relevant information -- case name, case number, parties, etc. -- and
click Save Case to open the new case's
<strong> Details View.</strong> Click “Upload Document”.
</li>
<li>
On the newly-created case info card, click the View button (far right)
to navigate to its <strong>Case Details View.</strong> Click Upload
Document to surface the Document Upload Modal.
<strong>UPLOAD YOUR DOCUMENT: </strong>You will now see the Document
Upload Modal. Enter your discovery request's info: document title, i.e.
Defendants Interrogatories, and (optionally) the date served. Drag
and drop the file, or click to select it from your computer's files,{" "}
{" "}
then click <strong> “Upload”.</strong>
<br /> The upload will begin. Parsing the document usually takes 1 to 2
minutes, but be patient - it may take up to 5.
</li>
<li>
<strong>UPLOAD A DOCUMENT: </strong>On the Document Upload Modal, enter
the document title, i.e. Defendants Interrogatories, and (optionally)
the date served. Drag and drop or click to select the request document
from your files. <em>The document must be in .pdf format.</em>
<br />{" "}
<p className="howto-special-para">
Click Upload, and will you automatically navigate to the Document
List View.
</p>{" "}
<strong>GENERATE THE RESPONSE: </strong>From the Document List View,
click the “Generate Responses'' button. Novdrafts Intellidraft AI will
generate the response and automatically navigate to the interactive
Document Editor. You can edit the responses and save progress any time
by clicking the “Save Changes” button.
</li>
<li>
<strong>GENERATE THE DISCOVERY RESPONSE: </strong>Click the Generate
Responses'' button. Novdrafts Intellidraft AI will generate the
response and automatically navigate to the interactive Document Editor.
You can edit the responses and save progress anytime by clicking the
Save Changes button. When you are satisfied, you can download a .docx
file by clicking the Create .docx File button.
<strong>DOWNLOAD YOUR RESPONSE DOCUMENT: </strong>Click the “Create
.Docx' button to download your fully-formatted, ready-to-serve response.
</li>
<ExclamationTriangle
style={{ color: "red", marginRight: "6px", marginBottom: "2px" }}
/>
<strong>Pro tip:</strong> once you've created a case, you can skip most of
these steps. Simply search for the case by entering the case number in the
search bar on your Dashboard, click "Express Document Upload" and follow
the prompts.
<strong>Pro tip:</strong> Once you've created the case, you can skip step
one. Simply search for the case by entering the case number in the search
bar on your Dashboard, click "Express Document Upload" and follow the
prompts.
</ol>
<p className="steps-p"></p>
</div>

View File

@@ -0,0 +1,20 @@
export const createCaseFields = {
caption: { required: true, maxLength: 45 },
captionTwo: { required: true, maxLength: 45 },
caseNumber: { required: true, maxLength: 45 },
judge: { required: true, maxLength: 45 },
plaintiffParties: { required: true, maxLength: 45 },
defendantParties: { required: true, maxLength: 45 },
jurisdiction: { required: true, maxLength: 45 },
billingCode: { required: true, maxLength: 45 },
venue: { required: true, maxLength: 45 },
caseType: { required: true, maxLength: 45 },
trialDate: { required: true, maxLength: 45, type: "date" },
filedDate: { required: true, maxLength: 45, type: "date" },
contactFirstName: { required: true, maxLength: 45 },
contactLastName: { required: true, maxLength: 45 },
contactEmail: { required: true, maxLength: 45, type: "email" },
leadAttorneys: { required: true, maxLength: 45 },
lawFirm: { required: false, maxLength: 45 },
clientPosition: { required: true, default: "Plaintiff" },
};