fix: fetch was not using rest requests

This commit is contained in:
2025-07-04 10:24:43 -04:00
parent a41d1ceaea
commit 7ff55c4679
5 changed files with 29 additions and 5 deletions
+5 -1
View File
@@ -1,5 +1,6 @@
from fastapi import FastAPI, Depends, HTTPException, status
from fastapi.middleware.cors import CORSMiddleware
from fastapi.middleware.trustedhost import TrustedHostMiddleware
from fastapi.security import OAuth2PasswordRequestForm
from sqlalchemy.orm import Session
from typing import Optional
@@ -10,8 +11,11 @@ from .database import SessionLocal, engine, Base
Base.metadata.create_all(bind=engine)
app = FastAPI()
app = FastAPI(proxy_headers=True)
app.add_middleware(
TrustedHostMiddleware, allowed_hosts=["site-api.muszyn.dev", "*.muszyn.dev"]
)
app.add_middleware(
CORSMiddleware,
allow_origins=[
+6 -1
View File
@@ -83,7 +83,12 @@ function BlogPage() {
const [blogs, setBlogs] = useState<Blog[]>([]);
useEffect(() => {
fetch(`${API_URL}/blogs`)
fetch(`${API_URL}/blogs`, {
method: "GET",
headers: {
"Content-Type": "application/json",
},
})
.then((res) => res.json())
.then((data: Blog[]) => setBlogs(data))
.catch((err) => console.error(err));
+6 -1
View File
@@ -4,7 +4,12 @@ import { API_URL } from "./constants";
export function BlogList() {
const [content, setContent] = useState("");
useEffect(() => {
fetch(`${API_URL}/get-blogs`)
fetch(`${API_URL}/get-blogs`, {
method: "GET",
headers: {
"Content-Type": "application/json",
},
})
.then((res) => res.text())
.then(setContent);
}, []);
+6 -1
View File
@@ -16,7 +16,12 @@ export function BlogViewer() {
useEffect(() => {
if (!slug) return;
fetch(`${API_URL}/blogs/${slug}`)
fetch(`${API_URL}/blogs/${slug}`, {
method: "GET",
headers: {
"Content-Type": "application/json",
},
})
.then((res) => res.json())
.then((data: Blog) => setBlog(data))
.catch((err) => console.error(err));
+6 -1
View File
@@ -16,7 +16,12 @@ export function EditBlog() {
useEffect(() => {
if (!slug) return;
fetch(`${API_URL}/blogs/${slug}`)
fetch(`${API_URL}/blogs/${slug}`, {
method: "GET",
headers: {
"Content-Type": "application/json",
},
})
.then((res) => res.json())
.then((data: Blog) => {
setBlog(data);