0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-12-22 20:20:09 +09:00

Fix online status when I'm offline

This commit is contained in:
yude 2021-06-19 18:01:47 +09:00
parent c14961d1d2
commit fb1d20dd96
Signed by: yude
GPG Key ID: EB0FE5D925C4A968

View File

@ -12,21 +12,27 @@ const App = () => {
}; };
fetchData(); fetchData();
}, []); }, []);
const status = data.members && data.members[0].status; const str = JSON.stringify(data)
const status = 0
if (str.indexOf("status") !== -1){
status = data.members && data.members[0].status;
}
return ( return (
<> <>
<div className="z-50 w-6 transform translate-y-3/4 -translate-x-full"> <div className="z-50 w-6 transform translate-y-3/4 -translate-x-full">
{ {
(() => { (() => {
if (status == 0) {
return <div className="text-gray-700 rounded-full bg-gray-500 flex w-6 h-6"></div>
}else{
if (status == "online"){ if (status == "online"){
return <div className="text-green-700 rounded-full bg-green-500 flex w-6 h-6"></div> return <div className="text-green-700 rounded-full bg-green-500 flex w-6 h-6"></div>
} else if (status == "idle"){ } else if (status == "idle"){
return <div className="text-yellow-700 rounded-full bg-green-500 flex w-6 h-6"></div> return <div className="text-yellow-700 rounded-full bg-green-500 flex w-6 h-6"></div>
} else if (status == "dnd"){
return <div className="text-yellow-700 rounded-full bg-red-500 flex w-6 h-6"></div>
} else { } else {
return <div className="text-gray-700 rounded-full bg-red-500 flex w-6 h-6"></div> return <div className="text-yellow-700 rounded-full bg-red-500 flex w-6 h-6"></div>
} }
}
})() })()
} }
</div> </div>