frontend: add route to view other user profiles by id

This commit is contained in:
Kentai Radiquum 2024-04-27 10:39:57 +05:00
parent 9392345480
commit 78ca3ef054
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 39 additions and 5 deletions

View file

@ -20,7 +20,3 @@
- [ ] Избранное
- [ ] История
- [ ] ...
## интерфейс
- [X] Динамический цвет от аватарки

View file

@ -97,7 +97,7 @@ export const UserProfile = (props) => {
<Image
className="circle"
src={props.profile.avatar}
alt="Ваш профиль"
alt=""
width="512"
height="512"
style={{ blockSize: "7rem", inlineSize: "7rem" }}

View file

@ -0,0 +1,34 @@
"use client";
import { UserProfile } from "@/app/components/UserProfile/UserProfile";
import { endpoints } from "@/app/api/config";
import { getData } from "@/app/api/api-utils";
import { useEffect, useState } from "react";
import { notFound } from "next/navigation";
export default function Profile(props) {
const [profile, setProfile] = useState(null);
useEffect(() => {
async function _getProfile() {
const _profile = await getData(
`${endpoints.user.profile}/${props.params.id}`,
);
setProfile(_profile);
}
_getProfile();
}, [props.params.id]);
return (
<>
{profile ? (
profile.profile ? (
<UserProfile profile={profile.profile} />
) : (
notFound()
)
) : (
<progress></progress>
)}
</>
);
}

View file

@ -7,6 +7,10 @@ const nextConfig = {
protocol: "https",
hostname: "anixstatic.com",
},
{
protocol: "https",
hostname: "i.imgur.com",
},
],
},
};