159 lines
6.3 KiB
TypeScript
159 lines
6.3 KiB
TypeScript
import {
|
|
Home,
|
|
UserDetail,
|
|
Wrench,
|
|
Notepad,
|
|
} from "@styled-icons/boxicons-solid";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Link, useLocation, useParams } from "react-router-dom";
|
|
import { RelationshipStatus } from "revolt-api/types/Users";
|
|
|
|
import { Text } from "preact-i18n";
|
|
import { useContext, useEffect } from "preact/hooks";
|
|
|
|
import ConditionalLink from "../../../lib/ConditionalLink";
|
|
import PaintCounter from "../../../lib/PaintCounter";
|
|
import { isTouchscreenDevice } from "../../../lib/isTouchscreenDevice";
|
|
|
|
import { useApplicationState } from "../../../mobx/State";
|
|
|
|
import { useIntermediate } from "../../../context/intermediate/Intermediate";
|
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
|
|
|
import Category from "../../ui/Category";
|
|
import placeholderSVG from "../items/placeholder.svg";
|
|
|
|
import { GenericSidebarBase, GenericSidebarList } from "../SidebarBase";
|
|
import ButtonItem, { ChannelButton } from "../items/ButtonItem";
|
|
import ConnectionStatus from "../items/ConnectionStatus";
|
|
|
|
export default observer(() => {
|
|
const { pathname } = useLocation();
|
|
const client = useContext(AppContext);
|
|
const state = useApplicationState();
|
|
const { channel: currentChannel } = useParams<{ channel: string }>();
|
|
const { openScreen } = useIntermediate();
|
|
|
|
const channels = [...client.channels.values()].filter(
|
|
(x) => x.channel_type === "DirectMessage" || x.channel_type === "Group",
|
|
);
|
|
|
|
const obj = client.channels.get(currentChannel);
|
|
|
|
// ! FIXME: move this globally
|
|
// Track what page the user was last on (in home page).
|
|
useEffect(() => state.layout.setLastHomePath(pathname), [pathname]);
|
|
|
|
channels.sort((b, a) =>
|
|
a.last_message_id_or_past.localeCompare(b.last_message_id_or_past),
|
|
);
|
|
|
|
return (
|
|
<GenericSidebarBase mobilePadding>
|
|
<ConnectionStatus />
|
|
<GenericSidebarList>
|
|
<ConditionalLink active={pathname === "/"} to="/">
|
|
<ButtonItem active={pathname === "/"}>
|
|
<Home size={20} />
|
|
<span>
|
|
<Text id="app.navigation.tabs.home" />
|
|
</span>
|
|
</ButtonItem>
|
|
</ConditionalLink>
|
|
{!isTouchscreenDevice && (
|
|
<>
|
|
<ConditionalLink
|
|
active={pathname === "/friends"}
|
|
to="/friends">
|
|
<ButtonItem
|
|
active={pathname === "/friends"}
|
|
alert={
|
|
typeof [...client.users.values()].find(
|
|
(user) =>
|
|
user?.relationship ===
|
|
RelationshipStatus.Incoming,
|
|
) !== "undefined"
|
|
? "unread"
|
|
: undefined
|
|
}>
|
|
<UserDetail size={20} />
|
|
<span>
|
|
<Text id="app.navigation.tabs.friends" />
|
|
</span>
|
|
</ButtonItem>
|
|
</ConditionalLink>
|
|
</>
|
|
)}
|
|
<ConditionalLink
|
|
active={obj?.channel_type === "SavedMessages"}
|
|
to="/open/saved">
|
|
<ButtonItem active={obj?.channel_type === "SavedMessages"}>
|
|
<Notepad size={20} />
|
|
<span>
|
|
<Text id="app.navigation.tabs.saved" />
|
|
</span>
|
|
</ButtonItem>
|
|
</ConditionalLink>
|
|
{import.meta.env.DEV && (
|
|
<Link to="/dev">
|
|
<ButtonItem active={pathname === "/dev"}>
|
|
<Wrench size={20} />
|
|
<span>
|
|
<Text id="app.navigation.tabs.dev" />
|
|
</span>
|
|
</ButtonItem>
|
|
</Link>
|
|
)}
|
|
<Category
|
|
text={<Text id="app.main.categories.conversations" />}
|
|
action={() =>
|
|
openScreen({
|
|
id: "special_input",
|
|
type: "create_group",
|
|
})
|
|
}
|
|
/>
|
|
{channels.length === 0 && (
|
|
<img src={placeholderSVG} loading="eager" />
|
|
)}
|
|
{channels.map((channel) => {
|
|
let user;
|
|
if (channel.channel_type === "DirectMessage") {
|
|
if (!channel.active) return null;
|
|
user = channel.recipient;
|
|
|
|
if (!user) return null;
|
|
}
|
|
|
|
const isUnread = channel.isUnread(state.notifications);
|
|
const mentionCount = channel.getMentions(
|
|
state.notifications,
|
|
).length;
|
|
|
|
return (
|
|
<ConditionalLink
|
|
key={channel._id}
|
|
active={channel._id === currentChannel}
|
|
to={`/channel/${channel._id}`}>
|
|
<ChannelButton
|
|
user={user}
|
|
channel={channel}
|
|
alert={
|
|
mentionCount > 0
|
|
? "mention"
|
|
: isUnread
|
|
? "unread"
|
|
: undefined
|
|
}
|
|
alertCount={mentionCount}
|
|
active={channel._id === currentChannel}
|
|
/>
|
|
</ConditionalLink>
|
|
);
|
|
})}
|
|
<PaintCounter />
|
|
</GenericSidebarList>
|
|
</GenericSidebarBase>
|
|
);
|
|
});
|