57 lines
2.1 KiB
TypeScript
57 lines
2.1 KiB
TypeScript
// import React from 'react';
|
|
import { useState } from "react";
|
|
import { useParams } from "react-router-dom";
|
|
|
|
import StyledWrapper from "./styled";
|
|
import BlankPlaceholder from "../../common/component/BlankPlaceholder";
|
|
import Server from "../../common/component/Server";
|
|
import CurrentUser from "../../common/component/CurrentUser";
|
|
import ChannelChat from "./ChannelChat";
|
|
import DMChat from "./DMChat";
|
|
import UsersModal from "../../common/component/UsersModal";
|
|
import ChannelModal from "../../common/component/ChannelModal";
|
|
import SessionList from "./SessionList";
|
|
import { useAppSelector } from "../../app/store";
|
|
export default function ChatPage() {
|
|
const [channelModalVisible, setChannelModalVisible] = useState(false);
|
|
const [usersModalVisible, setUsersModalVisible] = useState(false);
|
|
const { channel_id = 0, user_id = 0 } = useParams();
|
|
const { sessionUids } = useAppSelector((store) => {
|
|
return {
|
|
sessionUids: store.userMessage.ids
|
|
};
|
|
});
|
|
const toggleUsersModalVisible = () => {
|
|
setUsersModalVisible((prev) => !prev);
|
|
};
|
|
const toggleChannelModalVisible = () => {
|
|
setChannelModalVisible((prev) => !prev);
|
|
};
|
|
const tmpSession =
|
|
sessionUids.findIndex((i) => i == user_id) > -1
|
|
? null
|
|
: { key: `user_${user_id}`, mid: null, unreads: 0, id: user_id, type: "user" };
|
|
// console.log("temp uid", tmpUid);
|
|
const placeholderVisible = channel_id == 0 && user_id == 0;
|
|
return (
|
|
<>
|
|
{channelModalVisible && (
|
|
<ChannelModal closeModal={toggleChannelModalVisible} personal={true} />
|
|
)}
|
|
{usersModalVisible && <UsersModal closeModal={toggleUsersModalVisible} />}
|
|
<StyledWrapper>
|
|
<div className="left">
|
|
<Server />
|
|
<SessionList tempSession={tmpSession} />
|
|
<CurrentUser />
|
|
</div>
|
|
<div className={`right ${placeholderVisible ? "placeholder" : ""}`}>
|
|
{placeholderVisible && <BlankPlaceholder />}
|
|
{channel_id !== 0 && <ChannelChat cid={+channel_id} />}
|
|
{user_id !== 0 && <DMChat uid={+user_id} />}
|
|
</div>
|
|
</StyledWrapper>
|
|
</>
|
|
);
|
|
}
|