revite/src/pages/channels/Channel.tsx

117 lines
3.6 KiB
TypeScript
Raw Normal View History

2021-07-29 13:41:01 -04:00
import { observer } from "mobx-react-lite";
import { useParams } from "react-router-dom";
import { Channel as ChannelI } from "revolt.js/dist/maps/Channels";
2021-07-05 06:23:23 -04:00
import styled from "styled-components";
import { useState } from "preact/hooks";
import { isTouchscreenDevice } from "../../lib/isTouchscreenDevice";
2021-07-05 06:23:23 -04:00
import { dispatch, getState } from "../../redux";
import { useClient } from "../../context/revoltjs/RevoltClient";
import AgeGate from "../../components/common/AgeGate";
2021-07-05 06:23:23 -04:00
import MessageBox from "../../components/common/messaging/MessageBox";
import JumpToBottom from "../../components/common/messaging/bars/JumpToBottom";
import TypingIndicator from "../../components/common/messaging/bars/TypingIndicator";
2021-07-05 06:23:23 -04:00
import MemberSidebar from "../../components/navigation/right/MemberSidebar";
import ChannelHeader from "./ChannelHeader";
import { MessageArea } from "./messaging/MessageArea";
import VoiceHeader from "./voice/VoiceHeader";
const ChannelMain = styled.div`
2021-07-05 06:25:20 -04:00
flex-grow: 1;
display: flex;
min-height: 0;
overflow: hidden;
flex-direction: row;
`;
const ChannelContent = styled.div`
2021-07-05 06:25:20 -04:00
flex-grow: 1;
display: flex;
overflow: hidden;
flex-direction: column;
`;
export function Channel({ id }: { id: string }) {
const client = useClient();
const channel = client.channels.get(id);
2021-07-05 06:25:20 -04:00
if (!channel) return null;
2021-06-23 08:52:16 -04:00
2021-07-05 06:25:20 -04:00
if (channel.channel_type === "VoiceChannel") {
return <VoiceChannel channel={channel} />;
}
2021-07-29 13:41:01 -04:00
return <TextChannel channel={channel} />;
2021-06-23 08:52:16 -04:00
}
const MEMBERS_SIDEBAR_KEY = "sidebar_members";
const TextChannel = observer(({ channel }: { channel: ChannelI }) => {
const [showMembers, setMembers] = useState(
getState().sectionToggle[MEMBERS_SIDEBAR_KEY] ?? true,
);
const id = channel._id;
2021-07-05 06:25:20 -04:00
return (
<AgeGate
type="channel"
channel={channel}
gated={
2021-08-05 09:47:00 -04:00
!!(
(channel.channel_type === "TextChannel" ||
channel.channel_type === "Group") &&
channel.name?.includes("nsfw")
)
}>
2021-07-05 06:25:20 -04:00
<ChannelHeader
channel={channel}
toggleSidebar={() => {
setMembers(!showMembers);
if (showMembers) {
dispatch({
type: "SECTION_TOGGLE_SET",
id: MEMBERS_SIDEBAR_KEY,
state: false,
});
} else {
dispatch({
type: "SECTION_TOGGLE_UNSET",
id: MEMBERS_SIDEBAR_KEY,
});
}
}}
/>
2021-07-05 06:25:20 -04:00
<ChannelMain>
<ChannelContent>
<VoiceHeader id={id} />
<MessageArea id={id} />
2021-07-31 08:48:26 -04:00
<TypingIndicator channel={channel} />
2021-07-05 06:25:20 -04:00
<JumpToBottom id={id} />
<MessageBox channel={channel} />
</ChannelContent>
{!isTouchscreenDevice && showMembers && (
<MemberSidebar channel={channel} />
)}
</ChannelMain>
</AgeGate>
2021-07-05 06:25:20 -04:00
);
2021-07-29 13:41:01 -04:00
});
2021-06-23 08:52:16 -04:00
function VoiceChannel({ channel }: { channel: ChannelI }) {
2021-07-05 06:25:20 -04:00
return (
<>
<ChannelHeader channel={channel} />
<VoiceHeader id={channel._id} />
</>
);
}
2021-08-05 09:47:00 -04:00
export default function ChannelComponent() {
2021-07-05 06:25:20 -04:00
const { channel } = useParams<{ channel: string }>();
return <Channel id={channel} key={channel} />;
}