Use environment variable

Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
Santiago Lo Coco 2022-12-20 16:24:32 -03:00
parent 651ee97a64
commit ebbe4059f4
8 changed files with 23 additions and 16 deletions

View File

@ -0,0 +1,5 @@
module.exports = {
env: {
API_URL: 'http://localhost:8000',
},
}

View File

@ -31,7 +31,7 @@ const Sidebar = () => {
useEffect(() => { useEffect(() => {
if (token) { if (token) {
const fetchData = async () => { const fetchData = async () => {
const res = await fetch("http://localhost:8000/api/documents", { const res = await fetch(process.env.API_URL + "/api/documents", {
method: "GET", method: "GET",
headers: { headers: {
'Authorization': `Bearer ${token}` 'Authorization': `Bearer ${token}`
@ -122,7 +122,7 @@ const Sidebar = () => {
const handleSubmit = async (event) => { const handleSubmit = async (event) => {
event.preventDefault() event.preventDefault()
const res = await fetch("http://localhost:8000/api/token", { const res = await fetch(process.env.API_URL + "/api/token", {
method: "DELETE", method: "DELETE",
headers: { headers: {
'Authorization': `Bearer ${token}` 'Authorization': `Bearer ${token}`

View File

@ -24,7 +24,7 @@ export default function CreateDocument() {
const JSONdata = JSON.stringify(data) const JSONdata = JSON.stringify(data)
const res = await fetch("http://localhost:8000/api/documents", { const res = await fetch(process.env.API_URL + "/api/documents", {
method: "POST", method: "POST",
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',

View File

@ -26,7 +26,7 @@ export default function Document() {
useEffect(() => { useEffect(() => {
if (token && router.query.id) { if (token && router.query.id) {
const fetchData = async () => { const fetchData = async () => {
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}`, {
method: "GET", method: "GET",
headers: { headers: {
'Authorization': `Bearer ${token}` 'Authorization': `Bearer ${token}`
@ -46,7 +46,7 @@ export default function Document() {
useEffect(() => { useEffect(() => {
if (token && router.query.id) { if (token && router.query.id) {
const interval = setInterval(() => { const interval = setInterval(() => {
fetch(`http://localhost:8000/api/documents/${router.query.id}`, { fetch(`${process.env.API_URL}/api/documents/${router.query.id}`, {
method: 'PUT', method: 'PUT',
body: `{"data": "${text.replace(/\n/g, "\\n")}"}`, body: `{"data": "${text.replace(/\n/g, "\\n")}"}`,
headers: { headers: {
@ -86,7 +86,7 @@ export default function Document() {
let access = router.query.id + "/access" let access = router.query.id + "/access"
const deleteDoc = async () => { const deleteDoc = async () => {
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}`, {
method: "DELETE", method: "DELETE",
headers: { headers: {
'Authorization': `Bearer ${token}` 'Authorization': `Bearer ${token}`
@ -100,7 +100,7 @@ export default function Document() {
}; };
const publicOrPrivate = async () => { const publicOrPrivate = async () => {
if (!publicMode) { if (!publicMode) {
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}`, {
method: "PUT", method: "PUT",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
@ -113,7 +113,7 @@ export default function Document() {
setPublicMode(() => true) setPublicMode(() => true)
} }
} else { } else {
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}`, {
method: 'PUT', method: 'PUT',
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',

View File

@ -17,7 +17,7 @@ export default function Document() {
useEffect(() => { useEffect(() => {
if (token && router.query.id) { if (token && router.query.id) {
const fetchData = async () => { const fetchData = async () => {
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}/access`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}/access`, {
method: "GET", method: "GET",
headers: { headers: {
'Authorization': `Bearer ${token}` 'Authorization': `Bearer ${token}`
@ -54,7 +54,7 @@ export default function Document() {
console.log(JSONdata) console.log(JSONdata)
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}/access`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}/access`, {
method: "POST", method: "POST",
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
@ -76,7 +76,7 @@ export default function Document() {
const JSONdata = JSON.stringify(data) const JSONdata = JSON.stringify(data)
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}/access`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}/access`, {
method: "DELETE", method: "DELETE",
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
@ -92,7 +92,7 @@ export default function Document() {
const handleSubmit = async (event) => { const handleSubmit = async (event) => {
event.preventDefault() event.preventDefault()
const aux = await fetch(`http://localhost:8000/api/users?` + new URLSearchParams( const aux = await fetch(`${process.env.API_URL}/api/users?` + new URLSearchParams(
{user: event.target.name.value} {user: event.target.name.value}
), { ), {
method: "GET", method: "GET",
@ -110,7 +110,7 @@ export default function Document() {
const JSONdata = JSON.stringify(data) const JSONdata = JSON.stringify(data)
const res = await fetch(`http://localhost:8000/api/documents/${router.query.id}/access`, { const res = await fetch(`${process.env.API_URL}/api/documents/${router.query.id}/access`, {
method: "POST", method: "POST",
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',

View File

@ -19,6 +19,8 @@ export default function Home() {
return <></> return <></>
} }
console.log(process.env.API_URL)
return <Layout> return <Layout>
<div className="flex flex-col justify-center h-full w-full align-center items-center"> <div className="flex flex-col justify-center h-full w-full align-center items-center">
<div style={{width: "fit-content"}}> <div style={{width: "fit-content"}}>

View File

@ -12,12 +12,12 @@ export default function Login() {
formData.append("username", event.target.username.value) formData.append("username", event.target.username.value)
formData.append("password", event.target.password.value) formData.append("password", event.target.password.value)
const res = await fetch("http://localhost:8000/api/token", {method: 'POST', body: formData}) const res = await fetch(process.env.API_URL + "/api/token", {method: 'POST', body: formData})
const json = await res.json(); const json = await res.json();
if (res.status == 202) { if (res.status == 202) {
localStorage.setItem("token", json["access_token"]) localStorage.setItem("token", json["access_token"])
const res = await fetch("http://localhost:8000/api/users/me", { const res = await fetch(process.env.API_URL + "/api/users/me", {
method: 'GET', method: 'GET',
headers: { headers: {
'Authorization': `Bearer ${json["access_token"]}` 'Authorization': `Bearer ${json["access_token"]}`

View File

@ -20,7 +20,7 @@ export default function Search() {
const handleSubmit = async (event) => { const handleSubmit = async (event) => {
event.preventDefault() event.preventDefault()
const res = await fetch("http://localhost:8000/api/documents?" + new URLSearchParams( const res = await fetch(process.env.API_URL + "/api/documents?" + new URLSearchParams(
{query: "*" + event.target.search.value + "*"} {query: "*" + event.target.search.value + "*"}
), { ), {
method: "GET", method: "GET",