more
This commit is contained in:
@@ -54,6 +54,11 @@ const DocEditPage = () => {
|
||||
const zipCode = group ? group.zipCode : null;
|
||||
const telephone = group ? group.telephone : null;
|
||||
|
||||
const apiUrl =
|
||||
process.env.NODE_ENV === "development"
|
||||
? process.env.REACT_APP_API_DEV
|
||||
: process.env.REACT_APP_API_PROD;
|
||||
|
||||
const displayCopy =
|
||||
state === "New York"
|
||||
? docEditCopy.NewYork
|
||||
@@ -90,8 +95,6 @@ const DocEditPage = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const baseUrl = "http://localhost:4000";
|
||||
|
||||
const headerString =
|
||||
documentType === "interrogatories" ? (
|
||||
"Response to Interrogatories"
|
||||
@@ -212,7 +215,7 @@ const DocEditPage = () => {
|
||||
const docType = String(documentType);
|
||||
try {
|
||||
const response = await fetch(
|
||||
`${baseUrl}/getParsedRequests/${documentId}/${docType}`,
|
||||
`${apiUrl}/getParsedRequests/${documentId}/${docType}`,
|
||||
{
|
||||
method: "GET",
|
||||
}
|
||||
@@ -231,7 +234,7 @@ const DocEditPage = () => {
|
||||
|
||||
async function getCompletions(docId) {
|
||||
const docType = String(documentType);
|
||||
const response = await fetch(`${baseUrl}/completions/${docId}/${docType}`, {
|
||||
const response = await fetch(`${apiUrl}/completions/${docId}/${docType}`, {
|
||||
method: "GET",
|
||||
});
|
||||
const req = await response.json();
|
||||
@@ -254,7 +257,7 @@ const DocEditPage = () => {
|
||||
try {
|
||||
setIsLoading(true);
|
||||
fetch(
|
||||
`${baseUrl}/genResponseFromArrayCombined/${documentId}/${docType}/${isRequests}`,
|
||||
`${apiUrl}/genResponseFromArrayCombined/${documentId}/${docType}/${isRequests}`,
|
||||
{
|
||||
method: "GET",
|
||||
}
|
||||
@@ -293,7 +296,7 @@ const DocEditPage = () => {
|
||||
try {
|
||||
setIsLoading(true);
|
||||
fetch(
|
||||
`${baseUrl}/genResponseFromArray/${documentId}/${docType}/${isRequests}`,
|
||||
`${apiUrl}/genResponseFromArray/${documentId}/${docType}/${isRequests}`,
|
||||
{
|
||||
method: "GET",
|
||||
}
|
||||
@@ -327,7 +330,7 @@ const DocEditPage = () => {
|
||||
obj["requests"] = responses;
|
||||
const data = JSON.stringify(obj);
|
||||
try {
|
||||
const response = await fetch(`${baseUrl}/storecompletions`, {
|
||||
const response = await fetch(`${apiUrl}/storecompletions`, {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
json: true,
|
||||
@@ -351,7 +354,7 @@ const DocEditPage = () => {
|
||||
async function cleanUpDocx() {
|
||||
const docId = documentId;
|
||||
const reqType = documentType;
|
||||
fetch(`${baseUrl}/cleanUpDocx/${docId}/${reqType}`, {
|
||||
fetch(`${apiUrl}/cleanUpDocx/${docId}/${reqType}`, {
|
||||
method: "GET",
|
||||
})
|
||||
.then((response) => {
|
||||
@@ -365,7 +368,7 @@ const DocEditPage = () => {
|
||||
async function getDocx() {
|
||||
const docId = documentId;
|
||||
const reqType = documentType;
|
||||
fetch(`${baseUrl}/getDocx/${docId}/${reqType}`, {
|
||||
fetch(`${apiUrl}/getDocx/${docId}/${reqType}`, {
|
||||
method: "GET",
|
||||
}).then((response) => {
|
||||
response.blob().then((blob) => {
|
||||
@@ -398,7 +401,7 @@ const DocEditPage = () => {
|
||||
: null;
|
||||
|
||||
try {
|
||||
const response = await fetch(`${baseUrl}/genDocx/${docId}/${reqType}`, {
|
||||
const response = await fetch(`${apiUrl}/genDocx/${docId}/${reqType}`, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
Accept: "application/json",
|
||||
@@ -450,7 +453,7 @@ const DocEditPage = () => {
|
||||
obj["requests"] = responses;
|
||||
const data = JSON.stringify(obj);
|
||||
try {
|
||||
const response = await fetch(`${baseUrl}/storeeditedcompletions`, {
|
||||
const response = await fetch(`${apiUrl}/storeeditedcompletions`, {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
json: true,
|
||||
|
||||
Reference in New Issue
Block a user