mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
31 lines
802 B
TypeScript
31 lines
802 B
TypeScript
import { User } from "revolt.js";
|
|
import { Text } from "preact-i18n";
|
|
import { Users } from "revolt.js/dist/api/objects";
|
|
|
|
interface Props {
|
|
user: User;
|
|
}
|
|
|
|
export default function UserStatus({ user }: Props) {
|
|
if (user.online) {
|
|
if (user.status?.text) {
|
|
return <>{user.status?.text}</>;
|
|
}
|
|
|
|
if (user.status?.presence === Users.Presence.Busy) {
|
|
return <Text id="app.status.busy" />;
|
|
}
|
|
|
|
if (user.status?.presence === Users.Presence.Idle) {
|
|
return <Text id="app.status.idle" />;
|
|
}
|
|
|
|
if (user.status?.presence === Users.Presence.Invisible) {
|
|
return <Text id="app.status.offline" />;
|
|
}
|
|
|
|
return <Text id="app.status.online" />;
|
|
}
|
|
|
|
return <Text id="app.status.offline" />;
|
|
}
|