104 lines
2.5 KiB
TypeScript
104 lines
2.5 KiB
TypeScript
|
|
import { useEffect, useState } from "react";
|
|
import api from '../../script/axiosApi';
|
|
import DefaultPicture from '../../assets/profile.jpg'
|
|
import styled from "styled-components";
|
|
|
|
import { RxCheckCircled, RxCircleBackslash } from "react-icons/rx";
|
|
|
|
const UserChat = styled.div `
|
|
padding: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
color: white;
|
|
cursor: pointer;
|
|
|
|
&:hover{
|
|
background-color: #3e3c61;
|
|
}
|
|
`
|
|
|
|
const SideP = styled.p`
|
|
font-size: 14px;
|
|
color: lightgray;
|
|
margin-left: 15px;
|
|
`
|
|
|
|
export default function Friend({currentUser})
|
|
{
|
|
const [profilePicture, setProfilePicture] = useState('');
|
|
const [request, setRequest] = useState('');
|
|
|
|
useEffect(() => {
|
|
const fetchProfilePicture = async () => {
|
|
try {
|
|
// const user = await api.get("/profile");
|
|
const pic = await api.post("/getPicture", {username: currentUser.username})
|
|
const tmpRequest = await api.post("/user", {username: currentUser.username})
|
|
setRequest(tmpRequest.data);
|
|
// console.log(`user naem profile pic222= ${currentUser.username}`)
|
|
// console.log(` profile pic222= ${pic.data}`)
|
|
setProfilePicture(pic.data);
|
|
} catch (error) {
|
|
console.error('Error fetching profile picture:', error);
|
|
}
|
|
};
|
|
|
|
fetchProfilePicture();
|
|
})
|
|
|
|
function getStatus(friend)
|
|
{
|
|
let status = friend.status
|
|
console.log(`status= ${status}`)
|
|
let statusColor;
|
|
|
|
if (status === 0)
|
|
statusColor = 'grey';
|
|
else if (status === 1)
|
|
statusColor = 'green';
|
|
else if (status === 2)
|
|
statusColor = 'blue';
|
|
return statusColor;
|
|
}
|
|
|
|
const handleSpectate = (user) => {
|
|
//socket connection and add to party with one with username
|
|
console.log(`spectate hehe`)
|
|
console.log(`user= ${user}`)
|
|
};
|
|
|
|
const handleButtonClick = (user) => {
|
|
let path = `http://localhost/profile/${user.username}`;
|
|
// history(path, { replace: true });
|
|
// window.location.replace(path);
|
|
window.history.pushState({}, null, path);
|
|
window.location.reload(false);
|
|
};
|
|
|
|
const Accept = (user) => {
|
|
console.log("accept")
|
|
}
|
|
|
|
const Refuse = (user) => {
|
|
console.log("refuse")
|
|
}
|
|
|
|
return (
|
|
<UserChat>
|
|
{profilePicture ? (
|
|
<img className="pic-user" src={`data:image/jpeg;base64,${profilePicture}`} />
|
|
) : (
|
|
<img className="pic-user" src={DefaultPicture} alt="Default Profile Picture" />
|
|
)}
|
|
<div className="infoSideBar">
|
|
<span onClick={() => handleButtonClick(currentUser)}>{currentUser.nickname}</span>
|
|
<RxCheckCircled onClick={() => Accept(request)} color={'green'}/>
|
|
<RxCircleBackslash onClick={() => Refuse(request)} color={'red'}/>
|
|
|
|
</div>
|
|
</UserChat>
|
|
)
|
|
}
|
|
|