refactor: project configuration
This commit is contained in:
@@ -0,0 +1,93 @@
|
||||
import { useState } from "react";
|
||||
import { hideAll } from "tippy.js";
|
||||
import { useAppSelector } from "@/app/store";
|
||||
import IconInvite from "@/assets/icons/add.person.svg";
|
||||
import IconMention from "@/assets/icons/mention.svg";
|
||||
import IconSearch from "@/assets/icons/search.svg";
|
||||
import ChannelIcon from "./ChannelIcon";
|
||||
import ChannelModal from "./ChannelModal";
|
||||
import UsersModal from "./UsersModal";
|
||||
import InviteModal from "./InviteModal";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import SearchUser from "./SearchUser";
|
||||
import ServerVersionChecker from "./ServerVersionChecker";
|
||||
|
||||
export default function AddEntriesMenu() {
|
||||
const { t } = useTranslation();
|
||||
const currentUser = useAppSelector((store) => store.authData.user);
|
||||
const [isPrivate, setIsPrivate] = useState(false);
|
||||
const [inviteModalVisible, setInviteModalVisible] = useState(false);
|
||||
const [searchModalVisible, setSearchModalVisible] = useState(false);
|
||||
const [channelModalVisible, setChannelModalVisible] = useState(false);
|
||||
const [usersModalVisible, setUsersModalVisible] = useState(false);
|
||||
const toggleInviteModalVisible = () => {
|
||||
setInviteModalVisible((prev) => {
|
||||
if (!prev) {
|
||||
hideAll();
|
||||
}
|
||||
return !prev;
|
||||
});
|
||||
};
|
||||
const toggleSearchModalVisible = () => {
|
||||
setSearchModalVisible((prevVisible) => {
|
||||
if (!prevVisible) {
|
||||
hideAll();
|
||||
}
|
||||
return !prevVisible;
|
||||
});
|
||||
};
|
||||
const toggleUsersModalVisible = () => {
|
||||
setUsersModalVisible((prevVisible) => {
|
||||
if (!prevVisible) {
|
||||
hideAll();
|
||||
}
|
||||
return !prevVisible;
|
||||
});
|
||||
};
|
||||
const handleOpenChannelModal = (isPrivate: boolean) => {
|
||||
setIsPrivate(isPrivate);
|
||||
setChannelModalVisible(true);
|
||||
hideAll();
|
||||
};
|
||||
const handleCloseModal = () => {
|
||||
setChannelModalVisible(false);
|
||||
};
|
||||
|
||||
const itemClass = "rounded flex items-center gap-2 text-sm font-semibold cursor-pointer px-2 py-2.5 md:hover:bg-gray-800/20 md:dark:hover:bg-gray-200/20";
|
||||
const iconClass = "w-5 h-5 dark:fill-gray-300";
|
||||
return (
|
||||
<>
|
||||
<ul className="flex flex-col rounded-xl drop-shadow p-1 select-none text-gray-500 dark:text-gray-300 bg-white dark:bg-black">
|
||||
{/* temp remove public channel */}
|
||||
{currentUser?.is_admin && (
|
||||
<li className={itemClass} onClick={handleOpenChannelModal.bind(null, false)}>
|
||||
<ChannelIcon className={iconClass} />
|
||||
{t("action.new_channel")}
|
||||
</li>
|
||||
)}
|
||||
<li className={itemClass} onClick={handleOpenChannelModal.bind(null, true)}>
|
||||
<ChannelIcon personal={true} className={iconClass} />
|
||||
{t("action.new_private_channel")}
|
||||
</li>
|
||||
<li className={itemClass} onClick={toggleUsersModalVisible}>
|
||||
<IconMention className={iconClass} />
|
||||
{t("action.new_msg")}
|
||||
</li>
|
||||
<li className={itemClass} onClick={toggleInviteModalVisible}>
|
||||
<IconInvite className={iconClass} />
|
||||
{t("action.invite_people")}
|
||||
</li>
|
||||
<ServerVersionChecker version="0.3.7" empty={true}>
|
||||
<li className={itemClass} onClick={toggleSearchModalVisible}>
|
||||
<IconSearch className={iconClass} />
|
||||
{t("action.search_people")}
|
||||
</li>
|
||||
</ServerVersionChecker>
|
||||
</ul>
|
||||
{channelModalVisible && <ChannelModal personal={isPrivate} closeModal={handleCloseModal} />}
|
||||
{usersModalVisible && <UsersModal closeModal={toggleUsersModalVisible} />}
|
||||
{inviteModalVisible && <InviteModal closeModal={toggleInviteModalVisible} />}
|
||||
{searchModalVisible && <SearchUser closeModal={toggleSearchModalVisible} />}
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user