revite/src/pages/friends/Friends.tsx

112 lines
4.9 KiB
TypeScript
Raw Normal View History

2021-06-19 15:00:30 -04:00
import { Friend } from "./Friend";
import { Text } from "preact-i18n";
import styles from "./Friend.module.scss";
2021-06-19 15:00:30 -04:00
import Header from "../../components/ui/Header";
import Overline from "../../components/ui/Overline";
2021-07-02 13:00:17 -04:00
import Tooltip from "../../components/common/Tooltip";
2021-06-19 15:00:30 -04:00
import IconButton from "../../components/ui/IconButton";
import { useUsers } from "../../context/revoltjs/hooks";
import { User, Users } from "revolt.js/dist/api/objects";
2021-07-02 13:00:17 -04:00
import UserIcon from "../../components/common/user/UserIcon";
2021-07-02 05:39:07 -04:00
import { isTouchscreenDevice } from "../../lib/isTouchscreenDevice";
2021-06-19 15:00:30 -04:00
import { useIntermediate } from "../../context/intermediate/Intermediate";
import { ChevronDown, ChevronRight } from "@styled-icons/boxicons-regular";
2021-07-02 13:00:17 -04:00
import { UserDetail, Conversation, UserPlus } from "@styled-icons/boxicons-solid";
2021-06-19 15:00:30 -04:00
export default function Friends() {
const { openScreen } = useIntermediate();
const users = useUsers() as User[];
users.sort((a, b) => a.username.localeCompare(b.username));
const friends = users.filter(x => x.relationship === Users.Relationship.Friend);
const lists = [
[ 'app.special.friends.pending', users.filter(x =>
2021-07-02 13:00:17 -04:00
x.relationship === Users.Relationship.Incoming
) ],
[ 'app.special.friends.pending', users.filter(x =>
2021-06-19 15:00:30 -04:00
x.relationship === Users.Relationship.Outgoing
) ],
[ 'app.status.online', friends.filter(x =>
x.online && x.status?.presence !== Users.Presence.Invisible
) ],
[ 'app.status.offline', friends.filter(x =>
!x.online || x.status?.presence === Users.Presence.Invisible
) ],
[ 'app.special.friends.blocked', friends.filter(x =>
x.relationship === Users.Relationship.Blocked
) ]
] as [ string, User[] ][];
const isEmpty = lists.reduce((p: number, n) => p + n.length, 0) === 0;
2021-06-19 15:00:30 -04:00
return (
<>
<Header placement="primary">
2021-07-02 05:39:07 -04:00
{ !isTouchscreenDevice && <UserDetail size={24} /> }
2021-06-19 15:00:30 -04:00
<div className={styles.title}>
<Text id="app.navigation.tabs.friends" />
</div>
<Tooltip content={"Create Group"} placement="bottom">
<IconButton onClick={() => openScreen({ id: 'special_input', type: 'create_group' })}>
<Conversation size={24} />
</IconButton>
</Tooltip>
<Tooltip content={"Add Friend"} placement="bottom">
<IconButton onClick={() => openScreen({ id: 'special_input', type: 'add_friend' })}>
<UserPlus size={24} />
</IconButton>
</Tooltip>
{/*
<div className={styles.divider} />
<Tooltip content={"Friend Activity"} placement="bottom">
<IconButton>
<TennisBall size={24} />
</IconButton>
</Tooltip>
*/}
2021-06-19 15:00:30 -04:00
</Header>
<div className={styles.list} data-empty={isEmpty}>
{isEmpty && (
2021-06-19 15:00:30 -04:00
<>
<img src="https://img.insrt.uk/xexu7/XOPoBUTI47.png/raw" />
<Text id="app.special.friends.nobody" />
</>
)}
2021-07-02 13:00:17 -04:00
{ lists[0][1].length > 0 && <div className={styles.pending}
onClick={() => openScreen({ id: 'pending_requests', users: lists[0][1].map(x => x._id) })}>
<div className={styles.avatars}>
{ lists[0][1].map((x, i) => i < 3 && <UserIcon target={x} size={54} />) }
2021-07-02 13:00:17 -04:00
</div>
<div className={styles.details}>
{/* ! FIXME: i18n */}
<div className={styles.title}>Pending requests<span>{ lists[0][1].length }</span></div>
<span className={styles.from}>From <span className={styles.user}>{ lists[0][1].map(x => x.username).join(', ') }</span></span>
2021-07-02 13:00:17 -04:00
</div>
<ChevronRight size={28} />
2021-07-02 13:00:17 -04:00
</div> }
{
2021-07-02 13:00:17 -04:00
lists.map(([i18n, list], index) => {
if (index === 0) return;
if (list.length === 0) return;
return (
<details open>
<summary>
<Overline className={styles.overline} type="subtle">
<ChevronDown size={20} />
<Text id={i18n} /> { list.length }
</Overline>
</summary>
{ list.map(x => <Friend key={x._id} user={x} />) }
</details>
)
})
}
2021-06-19 15:00:30 -04:00
</div>
</>
);
}