From 109701233c1b76d5a94a79ee4828eb0236e6d309 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Sat, 2 Mar 2024 18:59:21 -0600 Subject: [PATCH] more --- src/Components/Document/ReqEditPage.js | 9 ++++ src/Constants/Copy/reqEditCopy.js | 57 ++++++++++++++++++++++++++ src/styles/docedit-page.scss | 4 ++ 3 files changed, 70 insertions(+) create mode 100644 src/Constants/Copy/reqEditCopy.js diff --git a/src/Components/Document/ReqEditPage.js b/src/Components/Document/ReqEditPage.js index 4ddb587..0c22fd1 100644 --- a/src/Components/Document/ReqEditPage.js +++ b/src/Components/Document/ReqEditPage.js @@ -8,6 +8,7 @@ import LoadingSpinner from "../../pageElements/LoadingSpinner"; import { docEditCopy } from "../../Constants/Copy/docEditCopy.js"; import ConfirmModal from "../Modals/ConfirmModal"; import Button from "../../pageElements/Button"; +import { rogInstructions } from "../../Constants/Copy/reqEditCopy.js"; import { db } from "../../firebase"; import { collection, @@ -338,6 +339,14 @@ const RequestEditPage = () => {
{headerString}
{/*displayCopy.prelimaryStatement*/} +
+ {rogInstructions?.map((req, i) => ( +
+
{`${i + 1}.`}
+
{req?.text}
+
+ ))} +
{requests?.map((req, i) => (
diff --git a/src/Constants/Copy/reqEditCopy.js b/src/Constants/Copy/reqEditCopy.js new file mode 100644 index 0000000..dbb2fb3 --- /dev/null +++ b/src/Constants/Copy/reqEditCopy.js @@ -0,0 +1,57 @@ +export const rogInstructions = [ + { + id: "c42293a4-77fd-4c1f-926d-72c36af01298", + text: "These requests are continuing in character and require you to file supplementary or amended responses if you obtain further, different or contradictory information at any time prior to a trial of this action.", + }, + { + id: "17822ae2-d8ae-4d76-aff6-2c0740d7ba0e", + text: "Unless otherwise stated, these requests refer to the time, place, and circumstances of the occurances described and/or complained of in the Complaint and which form the basis for this action.", + }, + { + id: "959f3415-92b1-41f3-8954-b69f186d3988", + text: "Where name and identity of a person is required, state the full name, home address and business address, if known.", + }, + { + id: "5ac2d7bb-183d-4e88-91cf-f3fe11810d73", + text: "When the identity of a corporation or other business entity is requested, state the entity's principal place of business, address and telephone number. Also, set forth the individual or individuals with knowledge of the facts and circumstances that form the basis for this action.", + }, + { + id: "530e79d2-fa37-4ac0-97de-66a4fa5db5a9", + text: "Where knowledge or information in possession of a party is requested, such request includes knowledge of the party’s agents, representatives, and, unless privileged, attorneys. ", + }, + { + id: "031da6a5-808b-4cd2-aaaa-f4d72d1e549c", + text: "Where the respondent is a corporation or other business entity, state the name, address and title of persons supplying the information and making the affidavit, and state with particularity the source of his or her information and basis of knowledge.", + }, + { + id: "8eedfd95-2590-432c-8e64-03b0751e55e3", + text: "“You” refers to the party to whom the requests are addressed and any addiitonal parties or entities as described above.", + }, + { + id: "15f855ea-2a7b-4f3d-878b-9c0749ca8e44", + text: "If you are unable to provide an accurate answer to an interrogatory, or are uncertain regarding a response to any item, please provide your best estimate of the information requested, specifying that the answer is merely an estimate, and that an accurate response cannot be given by you to the item.", + }, + { + id: "2f3ac0b0-8a1f-4683-bf96-1e11054f7f56", + text: "“You” refers to the party to whom the requests are addressed and any addiitonal parties or entities as described above.", + }, + { + id: "545bff8d-66de-47fd-9f01-26c945ba8db3", + text: "“You” refers to the party to whom the requests are addressed and any addiitonal parties or entities as described above.", + }, + { + id: "695ec39a-078a-4c43-b9ba-93403a14a0bb", + text: "If you withhold any information or documents on the basis of privilege, confidentiality, relevance, or for any other reason whatsoever please identify it, providing sufficient information to identify the withheld documents or items for this party and the Court to determine whether the documents, items or information should be disclosed.", + }, +]; + +export const foundationRogs = [ + { id: "81094bfb-07d4-4b46-bc73-641ab62ce80b", text: "" }, + { id: "fb50e08b-2009-4588-89b8-4842481f434a", text: "" }, + { id: "72680c6f-4d7e-4e6b-a932-477e0392db98", text: "" }, + { id: "6933ce23-8c88-4c6b-877c-c59629685ea1", text: "" }, + { id: "ec035502-b3bc-436f-b517-b77721a97b58", text: "" }, + { id: "ae5e13e3-1296-4d89-a873-8949be9d7bcf", text: "" }, + { id: "e2c7bb8d-48cf-47e9-b27d-e872dcffdd3d", text: "" }, + { id: "4c3ffbf0-6259-4f43-8996-bdb25e6203a7", text: "" }, +]; diff --git a/src/styles/docedit-page.scss b/src/styles/docedit-page.scss index 65dc0e1..1b4c252 100644 --- a/src/styles/docedit-page.scss +++ b/src/styles/docedit-page.scss @@ -42,6 +42,10 @@ } .req-item-outer-div { margin-bottom: 10px; + &.row { + display: flex; + flex-direction: row; + } } .req-item-inner-div {