feat: lots updates

This commit is contained in:
zerosoul
2022-01-30 21:30:12 +08:00
parent e18c7323a6
commit ceb02d834f
38 changed files with 1943 additions and 1832 deletions
+7 -5
View File
@@ -1,9 +1,8 @@
import { createApi, fetchBaseQuery } from "@reduxjs/toolkit/query/react";
import BASE_URL from "../config";
import { createApi } from "@reduxjs/toolkit/query/react";
import baseQuery from "./base.query";
export const authApi = createApi({
reducerPath: "auth",
baseQuery: fetchBaseQuery({ baseUrl: BASE_URL }),
baseQuery,
endpoints: (builder) => ({
login: builder.mutation({
query: (credentials) => ({
@@ -19,7 +18,10 @@ export const authApi = createApi({
// return resp;
// },
}),
logout: builder.query({
query: () => ({ url: `token/logout` }),
}),
}),
});
export const { useLoginMutation } = authApi;
export const { useLoginMutation, useLazyLogoutQuery } = authApi;
+4 -12
View File
@@ -1,20 +1,12 @@
import { fetchBaseQuery } from "@reduxjs/toolkit/query";
import BASE_URL, { tokenHeader } from "../config";
// const whiteList = [
// "/resource/avatar",
// "/resource/company/logo",
// "/resource/thumbnail",
// "/resource/image",
// "/token/login",
// "/token/renew",
// "/user",
// "/admin/system/company",
// ];
const whiteList = ["login"];
const baseQuery = fetchBaseQuery({
baseUrl: BASE_URL,
prepareHeaders: (headers, { getState }) => {
prepareHeaders: (headers, { getState, endpoint }) => {
console.log("req", endpoint);
const { token } = getState().authData;
if (token) {
if (token && !whiteList.includes(endpoint)) {
headers.set(tokenHeader, token);
}
return headers;
+1 -1
View File
@@ -2,7 +2,7 @@ import { createApi } from "@reduxjs/toolkit/query/react";
import baseQuery from "./base.query";
import { REHYDRATE } from "redux-persist";
export const channelApi = createApi({
reducerPath: "groups",
reducerPath: "channel",
baseQuery,
extractRehydrationInfo(action, { reducerPath }) {
if (action.type === REHYDRATE) {
+1 -1
View File
@@ -3,7 +3,7 @@ import baseQuery from "./base.query";
import BASE_URL from "../config";
import { REHYDRATE } from "redux-persist";
export const contactApi = createApi({
reducerPath: "contacts",
reducerPath: "contact",
baseQuery,
extractRehydrationInfo(action, { reducerPath }) {
if (action.type === REHYDRATE) {
+2 -2
View File
@@ -14,9 +14,9 @@ export const serverApi = createApi({
// },
endpoints: (builder) => ({
getServer: builder.query({
query: () => ({ url: `admin/system/company` }),
query: () => ({ url: `admin/system/organization` }),
transformResponse: (data) => {
data.logo = `${BASE_URL}/resource/company/logo`;
data.logo = `${BASE_URL}/resource/organization/logo`;
return data;
},
}),
+7 -1
View File
@@ -15,7 +15,13 @@ const authDataSlice = createSlice({
state.token = token;
state.refreshToken = refresh_token;
},
clearAuthData(state) {
console.log("clear auth data");
state.user = null;
state.token = null;
state.refreshToken = null;
},
},
});
export const { setAuthData } = authDataSlice.actions;
export const { setAuthData, clearAuthData } = authDataSlice.actions;
export default authDataSlice.reducer;
+36
View File
@@ -0,0 +1,36 @@
import { createSlice } from "@reduxjs/toolkit";
const initialState = {};
const channelsSlice = createSlice({
name: "channels",
initialState,
reducers: {
setChannels(state, action) {
// console.log("set channels store", action);
const chs = action.payload;
chs.forEach((c) => {
const { gid, ...rest } = c;
console.log("wtf", gid, rest);
state[gid] = rest;
});
},
addChannel(state, action) {
// console.log("set channels store", action);
const ch = action.payload;
const { gid, ...rest } = ch;
state[gid] = rest;
},
deleteChannel(state, action) {
const gid = action.payload;
delete state[gid];
},
// clearAuthData(state) {
// console.log("clear auth data");
// state.user = null;
// state.token = null;
// state.refreshToken = null;
// },
},
});
export const { setChannels, addChannel, deleteChannel } = channelsSlice.actions;
export default channelsSlice.reducer;
+50 -16
View File
@@ -1,40 +1,74 @@
import { createSlice } from "@reduxjs/toolkit";
import { isObjectEqual } from "../../common/utils";
const initialState = {};
const initialState = {
// accessLogs: {},
pendingMsgs: [],
};
const channelMsgSlice = createSlice({
name: "channelMessage",
initialState,
reducers: {
addChannelMsg(state, action) {
const { id, content, created_at, mid, from_uid } = action.payload;
const newMsg = { content, created_at, from_uid };
const {
id,
content,
created_at,
mid,
from_uid,
unread = true,
} = action.payload;
const newMsg = { content, created_at, from_uid, unread };
if (state[id]) {
let replaceMsg = state[id][mid];
// 如果存在,并且新消息和缓存消息不一样,则替换掉
// 如果存在,并且新消息和缓存消息不一样,则替换掉,并且改为已读(可能有问题)
if (replaceMsg) {
const copyMsg = { ...replaceMsg };
if (!isObjectEqual(copyMsg, newMsg)) {
state[id][mid] = newMsg;
state[id][mid] = { ...newMsg, unread: false };
}
} else {
state[id][mid] = newMsg;
}
// let replaceIdx = state[id].findIndex((m) => m.mid == mid);
// if (replaceIdx > -1) {
// const copyMsg = { ...state[id][replaceIdx] };
// console.log("current channel msg", copyMsg, newMsg);
// if (!isObjectEqual(copyMsg, newMsg)) {
// state[id][replaceIdx] = newMsg;
// }
// } else {
// state[id] = [...state[id], newMsg];
// }
} else {
state[id] = { [mid]: newMsg };
}
},
setChannelMsgRead(state, action) {
const { id, mid } = action.payload;
console.log("set unread", id, mid);
state[id][mid].unread = false;
},
clearChannelMsgUnread(state, action) {
const gid = action.payload;
console.log("set channel all unread", gid);
Object.entries(state[gid]).forEach(([key, obj]) => {
obj.unread = false;
});
},
setLastAccessTime(state, action) {
// let gid = action.payload;
// delete state[gid].lastAccess;
// const gid = action.payload;
// state.accessLogs[gid] = new Date().getTime();
},
addPendingMsg(state, action) {
state.pendingMsgs.push(action.payload);
},
removePendingMsg(state, action) {
const timestamp = action.payload;
state.pendingMsgs = state.pendingMsgs.filter(
(m) => m.timestamp != timestamp
);
},
},
});
export const { addChannelMsg } = channelMsgSlice.actions;
export const {
setLastAccessTime,
clearChannelMsgUnread,
setChannelMsgRead,
addChannelMsg,
addPendingMsg,
removePendingMsg,
} = channelMsgSlice.actions;
export default channelMsgSlice.reducer;
+16 -4
View File
@@ -7,15 +7,22 @@ const userMsgSlice = createSlice({
initialState,
reducers: {
addUserMsg(state, action) {
const { id, content, created_at, mid, from_uid } = action.payload;
const newMsg = { content, created_at, from_uid };
const {
id,
content,
created_at,
mid,
from_uid,
unread = true,
} = action.payload;
const newMsg = { content, created_at, from_uid, unread };
if (state[id]) {
let replaceMsg = state[id][mid];
// 如果存在,并且新消息和缓存消息不一样,则替换掉
if (replaceMsg) {
const copyMsg = { ...replaceMsg };
if (!isObjectEqual(copyMsg, newMsg)) {
state[id][mid] = newMsg;
state[id][mid] = { ...newMsg, unread: false };
}
} else {
state[id][mid] = newMsg;
@@ -34,7 +41,12 @@ const userMsgSlice = createSlice({
state[id] = { [mid]: newMsg };
}
},
setUserMsgRead(state, action) {
const { id, mid } = action.payload;
console.log("set unread", id, mid);
state[id][mid].unread = false;
},
},
});
export const { addUserMsg } = userMsgSlice.actions;
export const { addUserMsg, setUserMsgRead } = userMsgSlice.actions;
export default userMsgSlice.reducer;
+16
View File
@@ -0,0 +1,16 @@
import { createSlice } from "@reduxjs/toolkit";
const initialState = {
menuExpand: true,
};
const uiSlice = createSlice({
name: "ui",
initialState,
reducers: {
toggleMenuExpand(state) {
state.menuExpand = !state.menuExpand;
},
},
});
export const { toggleMenuExpand } = uiSlice.actions;
export default uiSlice.reducer;
+4
View File
@@ -11,6 +11,8 @@ import {
REGISTER,
} from "redux-persist";
import authDataReducer from "./slices/auth.data";
import uiReducer from "./slices/ui";
import channelsReducer from "./slices/channels";
import channelMsgReducer from "./slices/message.channel";
import userMsgReducer from "./slices/message.user";
import { authApi } from "./services/auth";
@@ -25,6 +27,8 @@ const persistConfig = {
const persistedReducer = persistReducer(
persistConfig,
combineReducers({
ui: uiReducer,
channels: channelsReducer,
userMsg: userMsgReducer,
channelMsg: channelMsgReducer,
authData: authDataReducer,
@@ -7,7 +7,6 @@ import ChannelIcon from "../ChannelIcon";
import Contact from "../Contact";
import StyledWrapper from "./styled";
import useFilteredUsers from "../../hook/useFilteredUsers";
import { useGetChannelsQuery } from "../../../app/services/channel";
import { useCreateChannelMutation } from "../../../app/services/channel";
export default function ChannelModal({ personal = false, closeModal }) {
@@ -19,7 +18,6 @@ export default function ChannelModal({ personal = false, closeModal }) {
is_public: !personal,
});
const { contacts, input, updateInput } = useFilteredUsers();
const { refetch: refetchChannels } = useGetChannelsQuery();
const [
createChannel,
{ isSuccess, isError, isLoading, data: newChannel },
@@ -49,7 +47,6 @@ export default function ChannelModal({ personal = false, closeModal }) {
if (isSuccess) {
toast.success("create new channel success");
closeModal();
refetchChannels();
navigateTo(`/chat/channel/${newChannel.gid}`);
}
}, [isSuccess, newChannel]);
+36 -8
View File
@@ -1,10 +1,12 @@
// import React from 'react';
import { useEffect } from "react";
import styled from "styled-components";
import dayjs from "dayjs";
import { useDispatch } from "react-redux";
import { useInViewRef } from "rooks";
import Avatar from "./Avatar";
import { useGetContactsQuery } from "../../app/services/contact";
import { setChannelMsgRead } from "../../app/slices/message.channel";
import { setUserMsgRead } from "../../app/slices/message.user";
const StyledMsg = styled.div`
display: flex;
align-items: flex-start;
@@ -44,24 +46,50 @@ const StyledMsg = styled.div`
font-size: 14px;
line-height: 20px;
word-break: break-all;
white-space: break-spaces;
&.pending {
opacity: 0.5;
}
}
}
`;
export default function Message({ uid, time, content }) {
export default function Message({
gid = "",
mid = "",
uid,
fromUid,
time,
content,
unread = false,
pending,
}) {
const [myRef, inView] = useInViewRef();
const disptach = useDispatch();
// const wrapperRef = useRef(null);
const { data: contacts } = useGetContactsQuery();
useEffect(() => {
// if (wrapperRef) {
// wrapperRef.current.scrollIntoView();
if (inView && unread) {
const setMsgRead = gid ? setChannelMsgRead : setUserMsgRead;
disptach(setMsgRead({ id: gid || uid, mid }));
}
// }
}, [gid, mid, uid, unread, inView]);
if (!contacts) return null;
const currUser = contacts.find((c) => c.uid == uid);
const currUser = contacts.find((c) => c.uid == fromUid) || {};
return (
<StyledMsg>
<StyledMsg ref={myRef}>
<div className="avatar" data-uid={uid}>
<Avatar url={currUser.avatar} id={uid} name={currUser.name} />
<Avatar url={currUser.avatar} id={fromUid} name={currUser.name} />
</div>
<div className="details">
<div className="up">
<span className="name">{currUser.name}</span>
<i className="time">{dayjs(time).format("YYYY-MM-DD h:mm:ss A")}</i>
</div>
<div className="down">{content}</div>
<div className={`down ${pending ? "pending" : ""}`}>{content}</div>
</div>
</StyledMsg>
);
+53 -8
View File
@@ -1,14 +1,23 @@
import { useEffect } from "react";
import { useDispatch, useSelector } from "react-redux";
import React, { useEffect } from "react";
import { useNavigate } from "react-router-dom";
import toast from "react-hot-toast";
import { useDispatch } from "react-redux";
import BASE_URL from "../../app/config";
import {
setChannels,
addChannel,
deleteChannel,
} from "../../app/slices/channels";
import { clearAuthData } from "../../app/slices/auth.data";
import { addChannelMsg } from "../../app/slices/message.channel";
import { addUserMsg } from "../../app/slices/message.user";
const NotificationHub = () => {
const NotificationHub = ({ token }) => {
const dispatch = useDispatch();
const { token } = useSelector((store) => store.authData);
const navigate = useNavigate();
useEffect(() => {
let sse = null;
if (token) {
@@ -24,6 +33,7 @@ const NotificationHub = () => {
};
}
return () => {
console.log("re-run see init");
if (sse) {
sse.close();
}
@@ -31,12 +41,44 @@ const NotificationHub = () => {
}, [token]);
const handleSSEMessage = (data) => {
const { type } = data;
switch (type) {
case "heartbeat":
console.log("heartbeat");
break;
case "kick":
{
console.log("kicked");
switch (data.reason) {
case "login_from_other_device":
dispatch(clearAuthData());
navigate("/login");
toast("kicked from the other device");
break;
case "delete_user":
dispatch(clearAuthData());
navigate("/login");
toast("sorry, your account has been deleted");
break;
default:
break;
}
}
break;
case "related_groups":
console.log("joined group list", data);
dispatch(setChannels(data.groups));
break;
case "joined_group":
console.log("joined group list", data.group);
dispatch(addChannel(data.group));
break;
case "kick_from_group":
console.log("joined group list", data.gid);
dispatch(deleteChannel(data.gid));
break;
case "chat":
console.log("chat data", data);
// console.log("chat data", data);
if (data.gid) {
const { gid, ...rest } = data;
dispatch(addChannelMsg({ id: gid, ...rest }));
@@ -46,10 +88,13 @@ const NotificationHub = () => {
break;
default:
console.log("sse event data", data);
break;
}
};
return null;
};
export default NotificationHub;
function compareToken(prevHub, nextHub) {
return prevHub.token === nextHub.token;
}
export default React.memo(NotificationHub, compareToken);
+9
View File
@@ -0,0 +1,9 @@
// import React from 'react'
import { Navigate } from "react-router-dom";
import { useSelector } from "react-redux";
export default function RequireAuth({ children, redirectTo = "/login" }) {
const { token } = useSelector((store) => store.authData);
return token ? children : <Navigate to={redirectTo} />;
}
+1
View File
@@ -21,6 +21,7 @@ const StyledWrapper = styled.div`
align-items: center;
gap: 5px;
.input {
width: 100%;
border: none;
outline: none;
background: none;
-131
View File
@@ -1,131 +0,0 @@
import { useState, useEffect } from "react";
import styled from "styled-components";
import { MdAdd } from "react-icons/md";
import TextareaAutosize from "react-textarea-autosize";
import { useDispatch } from "react-redux";
import { useSendChannelMsgMutation } from "../../app/services/channel";
import { useSendMsgMutation } from "../../app/services/contact";
import { addChannelMsg } from "../../app/slices/message.channel";
import { addUserMsg } from "../../app/slices/message.user";
const StyledSend = styled.div`
position: sticky;
top: calc(100vh - 90px);
left: 16px;
background: #f5f6f7;
border-radius: 8px;
width: 884px;
min-height: 54px;
display: flex;
align-items: center;
gap: 18px;
padding: 4px 18px;
.addon {
cursor: pointer;
}
.input {
width: 100%;
position: relative;
.content {
padding: 4px;
font-weight: 500;
font-size: 14px;
line-height: 20px;
color: #616161;
width: 100%;
border: none;
background: none;
}
.btn {
cursor: pointer;
border: none;
border-radius: 4px;
padding: 2px 6px;
background: green;
color: #fff;
font-size: 16px;
font-weight: bold;
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
}
}
`;
const Types = {
channel: "#",
user: "@",
};
export default function Send({ name, type = "channel", id = "" }) {
const dispatch = useDispatch();
const [
sendMsg,
{ isLoading: sending, isSuccess: sendSuccess, data: sendData },
] = useSendMsgMutation();
const [
sendChannelMsg,
{
isLoading: channelSending,
isSuccess: sendChannelSuccess,
data: sendChannelData,
},
] = useSendChannelMsgMutation();
const [msg, setMsg] = useState("");
const handleMsgChange = (evt) => {
setMsg(evt.target.value);
};
useEffect(() => {
if (sendSuccess) {
dispatch(addUserMsg({ id, ...sendData }));
setMsg("");
}
}, [sendSuccess, sendData]);
useEffect(() => {
if (sendChannelSuccess) {
const { gid, ...rest } = sendChannelData;
dispatch(addChannelMsg({ id: gid, ...rest }));
setMsg("");
}
}, [sendChannelSuccess, sendChannelData]);
const handleSendMessage = () => {
if (!msg || !type || !id) return;
switch (type) {
case "channel":
sendChannelMsg({ gid: id, message: msg });
break;
case "user":
sendMsg({ uid: id, message: msg });
break;
default:
break;
}
};
return (
<StyledSend className="send">
<MdAdd className="addon" size={20} color="#78787C" />
<div className="input">
<TextareaAutosize
className="content"
maxRows={8}
minRows={1}
onChange={handleMsgChange}
value={msg}
placeholder={`${Types[type]}${name} 发消息`}
/>
<button
disabled={sending || channelSending}
className="btn"
onClick={handleSendMessage}
>
{/* {sending ? `Sending` : `Send`} */}
Send
</button>
</div>
<div className="emoji">emoji</div>
</StyledSend>
);
}
+129
View File
@@ -0,0 +1,129 @@
import { useState, useEffect, useRef } from "react";
import { MdAdd } from "react-icons/md";
import TextareaAutosize from "react-textarea-autosize";
import { useDispatch } from "react-redux";
import { useKey } from "rooks";
import "emoji-mart/css/emoji-mart.css";
import { Picker } from "emoji-mart";
import { useSendChannelMsgMutation } from "../../../app/services/channel";
import { useSendMsgMutation } from "../../../app/services/contact";
import { addChannelMsg } from "../../../app/slices/message.channel";
import { addUserMsg } from "../../../app/slices/message.user";
import StyledSend from "./styled";
const Types = {
channel: "#",
user: "@",
};
export default function Send({ name, type = "channel", id = "" }) {
const inputRef = useRef();
const [emojiPicker, setEmojiPicker] = useState(false);
const [shift, setShift] = useState(false);
const [enter, setEnter] = useState(false);
const [msg, setMsg] = useState("");
const dispatch = useDispatch();
const toggleEmojiPicker = () => {
setEmojiPicker((prev) => !prev);
};
const [
sendMsg,
{ isLoading: sending, isSuccess: sendSuccess, data: sendData },
] = useSendMsgMutation();
const [
sendChannelMsg,
{
isLoading: channelSending,
isSuccess: sendChannelSuccess,
data: sendChannelData,
},
] = useSendChannelMsgMutation();
useKey(
"Shift",
(e) => {
console.log("shift", e.type);
setShift(e.type == "keydown");
},
{ eventTypes: ["keydown", "keyup"], target: inputRef }
);
const handleMsgChange = (evt) => {
if (enter && !shift) {
handleSendMessage();
} else {
setMsg(evt.target.value);
// inputRef.current.focus();
}
};
const handleInputKeydown = (e) => {
setEnter(e.key === "Enter");
};
const handleEmojiSelect = (emoji) => {
console.log(emoji);
setMsg((prev) => `${prev}${emoji.native}`);
// inputRef.current.focus();
toggleEmojiPicker();
};
useEffect(() => {
if (sendSuccess) {
dispatch(addUserMsg({ id, ...sendData, unread: false }));
setMsg("");
}
}, [sendSuccess, sendData]);
useEffect(() => {
if (sendChannelSuccess) {
const { gid, ...rest } = sendChannelData;
dispatch(addChannelMsg({ id: gid, ...rest, unread: false }));
setMsg("");
}
}, [sendChannelSuccess, sendChannelData]);
useEffect(() => {
inputRef.current.focus();
}, [msg]);
const handleSendMessage = () => {
if (!msg || !type || !id) return;
switch (type) {
case "channel":
sendChannelMsg({ gid: id, message: msg });
break;
case "user":
sendMsg({ uid: id, message: msg });
break;
default:
break;
}
};
return (
<StyledSend className="send">
<MdAdd className="addon" size={20} color="#78787C" />
<div className="input">
<TextareaAutosize
// autoFocus
ref={inputRef}
className="content"
maxRows={8}
minRows={1}
onKeyDown={handleInputKeydown}
onChange={handleMsgChange}
value={msg}
placeholder={`${Types[type]}${name} 发消息`}
/>
</div>
<div className="emoji">
<button className="toggle" onClick={toggleEmojiPicker}>
😄
</button>
{emojiPicker && (
<div className="picker">
<Picker
onSelect={handleEmojiSelect}
showPreview={false}
showSkinTones={false}
/>
</div>
)}
</div>
</StyledSend>
);
}
+65
View File
@@ -0,0 +1,65 @@
import styled from "styled-components";
const StyledSend = styled.div`
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
background: #f5f6f7;
border-radius: 8px;
width: calc(100% - 32px);
min-height: 54px;
display: flex;
align-items: center;
gap: 18px;
padding: 4px 18px;
/* margin: 0 16px; */
.addon {
cursor: pointer;
}
.input {
width: 100%;
position: relative;
.content {
outline: none;
padding: 4px;
font-weight: 500;
font-size: 14px;
line-height: 20px;
color: #616161;
width: 100%;
border: none;
background: none;
}
.btn {
cursor: pointer;
border: none;
border-radius: 4px;
padding: 2px 6px;
background: green;
color: #fff;
font-size: 16px;
font-weight: bold;
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
}
}
.emoji {
position: relative;
.toggle {
font-size: 22px;
border: none;
background: none;
}
.picker {
position: absolute;
top: -15px;
right: 0;
transform: translateY(-100%);
}
}
`;
export default StyledSend;
+10 -1
View File
@@ -8,6 +8,8 @@ import { PersistGate } from "redux-persist/integration/react";
import { Provider } from "react-redux";
import store from "./app/store";
import RequireAuth from "./common/component/RequireAuth";
// import Welcome from './routes/Welcome'
import NotFoundPage from "./routes/404";
import LoginPage from "./routes/login";
@@ -24,7 +26,14 @@ ReactDOM.render(
<HashRouter>
<Routes>
<Route path="/login" element={<LoginPage />} />
<Route path="/" element={<HomePage />}>
<Route
path="/"
element={
<RequireAuth>
<HomePage />
</RequireAuth>
}
>
<Route index element={<ChatPage />} />
<Route path="chat">
<Route index element={<ChatPage />} />
-186
View File
@@ -1,186 +0,0 @@
import { useEffect } from "react";
import styled from "styled-components";
import { useSelector } from "react-redux";
import Message from "../../common/component/Message";
import ChannelIcon from "../../common/component/ChannelIcon";
import Send from "../../common/component/Send";
import { useGetContactsQuery } from "../../app/services/contact";
// import msgs from "./channel.msg.mock.json";
import Contact from "../../common/component/Contact";
const StyledWrapper = styled.article`
position: relative;
width: 100%;
background: #fff;
height: 100vh;
overflow-y: scroll;
overflow-x: hidden;
.head {
height: 56px;
padding: 0 20px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
.txt {
display: flex;
align-items: center;
gap: 5px;
.title {
font-size: 16px;
line-height: 24px;
color: #1c1c1e;
}
.desc {
margin-left: 8px;
font-weight: normal;
font-size: 16px;
line-height: 24px;
color: #616161;
}
}
}
.main {
width: 100%;
display: flex;
align-items: flex-start;
justify-content: space-between;
position: relative;
padding: 0 0 20px 16px;
.notification {
padding: 3px 8px;
font-style: normal;
font-weight: 600;
font-size: 12px;
line-height: 18px;
color: #fff;
position: absolute;
top: 0;
left: 10px;
width: 900px;
height: 24px;
background: linear-gradient(135deg, #3c8ce7 0%, #00eaff 100%);
border-radius: 0px 0px 8px 8px;
display: flex;
align-items: center;
justify-content: space-between;
.clear {
cursor: pointer;
color: inherit;
border: none;
background: none;
outline: none;
}
}
.channel {
width: 684px;
.info {
padding-top: 114px;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
.title {
font-weight: bold;
font-size: 36px;
line-height: 44px;
}
.desc {
color: #78787c;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.edit {
color: #3c8ce7;
padding: 0;
border: none;
outline: none;
background: none;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
}
.chat {
padding: 18px 0;
}
}
.contacts {
display: flex;
flex-direction: column;
gap: 5px;
/* todo */
width: 226px;
height: calc(100vh - 56px);
overflow-y: scroll;
background: #f5f6f7;
padding: 16px;
}
}
`;
export default function ChannelChat({ cid = "", data = {} }) {
const msgs = useSelector((store) => {
return store.channelMsg[cid] || {};
});
const { data: users } = useGetContactsQuery();
useEffect(() => {
console.log({ cid });
}, [cid]);
const { name, description, is_public, members = [] } = data;
const filteredUsers =
members.length == 0
? users
: users.filter((u) => {
return members.includes(u.uid);
});
console.log("channel message list", msgs);
return (
<StyledWrapper>
<header className="head">
<div className="txt">
<ChannelIcon personal={!is_public} />
<span className="title">{name}</span>
<span className="desc">{description}</span>
</div>
<ul className="members">members</ul>
</header>
<main className="main">
<div className="notification">
<div className="content">25+ new messages since 3:24 PM</div>
<button className="clear">Mark As Read</button>
</div>
<div className="channel">
<div className="info">
<h2 className="title">Welcome to #{name} !</h2>
<p className="desc">This is the start of the #{name} channel. </p>
<button className="edit">Edit Channel</button>
</div>
<div className="chat">
{Object.entries(msgs).map(([mid, msg]) => {
if (!msg) return null;
const { from_uid, content, created_at } = msg;
return (
<Message
key={mid}
time={created_at}
uid={from_uid}
content={content}
/>
);
})}
</div>
</div>
<div className="contacts">
{filteredUsers.map(({ name, status, uid }) => {
return <Contact key={name} uid={uid} status={status} />;
})}
</div>
</main>
<Send id={cid} type="channel" name={name} />
</StyledWrapper>
);
}
+110
View File
@@ -0,0 +1,110 @@
import { useEffect } from "react";
import { useSelector, useDispatch } from "react-redux";
import dayjs from "dayjs";
import Message from "../../../common/component/Message";
import ChannelIcon from "../../../common/component/ChannelIcon";
import Send from "../../../common/component/Send";
import {
clearChannelMsgUnread,
setLastAccessTime,
} from "../../../app/slices/message.channel";
import { useGetContactsQuery } from "../../../app/services/contact";
import Contact from "../../../common/component/Contact";
import Layout from "../Layout";
import {
StyledNotification,
StyledContacts,
StyledChannelChat,
StyledHeader,
} from "./styled";
export default function ChannelChat({ cid = "", unreads = 0, data = {} }) {
const dispatch = useDispatch();
const msgs = useSelector((store) => {
return store.channelMsg[cid] || {};
});
const { data: users } = useGetContactsQuery();
const handleClearUnreads = () => {
dispatch(clearChannelMsgUnread(cid));
};
useEffect(() => {
console.log({ cid });
return () => {
dispatch(setLastAccessTime(cid));
};
}, [cid]);
const { name, description, is_public, members = [] } = data;
const filteredUsers =
members.length == 0
? users
: users.filter((u) => {
return members.includes(u.uid);
});
console.log("channel message list", msgs);
return (
<Layout
header={
<StyledHeader>
<div className="txt">
<ChannelIcon personal={!is_public} />
<span className="title">{name}</span>
<span className="desc">{description}</span>
</div>
<ul className="members">members</ul>
</StyledHeader>
}
contacts={
<StyledContacts>
{filteredUsers.map(({ name, status, uid }) => {
return <Contact key={name} uid={uid} status={status} />;
})}
</StyledContacts>
}
>
<StyledChannelChat>
<div className="wrapper">
<div className="info">
<h2 className="title">Welcome to #{name} !</h2>
<p className="desc">This is the start of the #{name} channel. </p>
{/* <button className="edit">Edit Channel</button> */}
</div>
<div className="chat">
{Object.entries(msgs).map(([mid, msg]) => {
if (!msg) return null;
const { from_uid, content, created_at, unread } = msg;
return (
<Message
unread={unread}
gid={cid}
mid={mid}
key={mid}
time={created_at}
fromUid={from_uid}
content={content}
/>
);
})}
</div>
</div>
<Send id={cid} type="channel" name={name} />
<div className="placeholder"></div>
</StyledChannelChat>
{unreads != 0 && (
<StyledNotification>
<div className="content">
{unreads} new messages
{msgs.lastAccess
? `since ${dayjs(msgs.lastAccess).format("YYYY-MM-DD h:mm:ss A")}`
: ""}
</div>
<button onClick={handleClearUnreads} className="clear">
Mark As Read
</button>
</StyledNotification>
)}
</Layout>
);
}
+111
View File
@@ -0,0 +1,111 @@
import styled from "styled-components";
export const StyledHeader = styled.header`
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
.txt {
display: flex;
align-items: center;
gap: 5px;
.title {
font-size: 16px;
line-height: 24px;
color: #1c1c1e;
}
.desc {
margin-left: 8px;
font-weight: normal;
font-size: 16px;
line-height: 24px;
color: #616161;
}
}
`;
export const StyledNotification = styled.div`
padding: 3px 8px;
font-style: normal;
font-weight: 600;
font-size: 12px;
line-height: 18px;
color: #fff;
position: absolute;
top: 0;
left: 10px;
width: 900px;
height: 24px;
background: linear-gradient(135deg, #3c8ce7 0%, #00eaff 100%);
border-radius: 0px 0px 8px 8px;
display: flex;
align-items: center;
justify-content: space-between;
.clear {
cursor: pointer;
color: inherit;
border: none;
background: none;
outline: none;
}
`;
export const StyledContacts = styled.div`
display: flex;
flex-direction: column;
gap: 5px;
/* todo */
width: 226px;
height: calc(100vh - 56px);
overflow-y: scroll;
background: #f5f6f7;
padding: 16px;
`;
export const StyledChannelChat = styled.article`
position: relative;
width: 100%;
/* margin-bottom: 120px; */
> .wrapper {
display: flex;
flex-direction: column;
padding: 0 16px;
height: calc(100vh - 56px - 80px);
overflow-y: scroll;
overflow-x: visible;
.info {
padding-top: 114px;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
.title {
font-weight: bold;
font-size: 36px;
line-height: 44px;
}
.desc {
color: #78787c;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.edit {
color: #3c8ce7;
padding: 0;
border: none;
outline: none;
background: none;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
}
.chat {
height: -webkit-fill-available;
padding: 18px 0;
}
}
.placeholder {
width: 100%;
height: 80px;
}
`;
-94
View File
@@ -1,94 +0,0 @@
import { useState, useEffect } from "react";
import styled from "styled-components";
import { useSelector } from "react-redux";
import Message from "../../common/component/Message";
import Send from "../../common/component/Send";
// import msgs from "./channel.msg.mock.json";
import Contact from "../../common/component/Contact";
import { useGetContactsQuery } from "../../app/services/contact";
const StyledWrapper = styled.article`
position: relative;
width: 100%;
background: #fff;
height: 100vh;
overflow-y: scroll;
overflow-x: hidden;
.head {
height: 56px;
padding: 0 20px 0 10px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
.txt {
display: flex;
align-items: center;
gap: 5px;
.title {
font-size: 16px;
line-height: 24px;
color: #1c1c1e;
}
.desc {
margin-left: 8px;
font-weight: normal;
font-size: 16px;
line-height: 24px;
color: #616161;
}
}
}
.main {
width: 100%;
display: flex;
align-items: flex-start;
justify-content: space-between;
position: relative;
padding: 0 0 20px 16px;
.chat {
width: 890px;
padding: 18px 0;
}
}
`;
export default function DMChat({ uid = "" }) {
const msgs = useSelector((store) => {
return store.userMsg[uid] || {};
});
const { data: contacts } = useGetContactsQuery();
const [currUser, setCurrUser] = useState(null);
useEffect(() => {
console.log({ uid });
if (uid && contacts) {
setCurrUser(contacts.find((c) => c.uid == uid));
}
}, [uid, contacts]);
if (!currUser) return null;
console.log("user msgs", msgs);
return (
<StyledWrapper>
<header className="head">
<Contact interactive={false} uid={currUser.uid} />
{/* <ul className="members">members</ul> */}
</header>
<main className="main">
<div className="chat">
{Object.entries(msgs).map(([mid, msg]) => {
if (!msg) return null;
const { from_uid, content, created_at } = msg;
return (
<Message
key={mid}
time={created_at}
uid={from_uid}
content={content}
/>
);
})}
</div>
</main>
<Send type="user" name={currUser?.name} id={currUser?.uid} />
</StyledWrapper>
);
}
+57
View File
@@ -0,0 +1,57 @@
import { useState, useEffect } from "react";
import { useSelector } from "react-redux";
import Message from "../../../common/component/Message";
import Send from "../../../common/component/Send";
import Contact from "../../../common/component/Contact";
import { useGetContactsQuery } from "../../../app/services/contact";
import Layout from "../Layout";
import { StyledHeader, StyledDMChat } from "./styled";
export default function DMChat({ uid = "" }) {
const msgs = useSelector((store) => {
return store.userMsg[uid] || {};
});
const { data: contacts } = useGetContactsQuery();
const [currUser, setCurrUser] = useState(null);
useEffect(() => {
console.log({ uid });
if (uid && contacts) {
setCurrUser(contacts.find((c) => c.uid == uid));
}
}, [uid, contacts]);
if (!currUser) return null;
console.log("user msgs", msgs);
return (
<Layout
header={
<StyledHeader>
<Contact interactive={false} uid={currUser.uid} />
</StyledHeader>
}
>
<StyledDMChat>
<div className="chat">
{Object.entries(msgs).map(([mid, msg]) => {
if (!msg) return null;
console.log("user msg", msg);
const { from_uid, content, created_at, unread } = msg;
return (
<Message
unread={unread}
fromUid={from_uid}
mid={mid}
key={mid}
time={created_at}
uid={uid}
content={content}
/>
);
})}
</div>
</StyledDMChat>
<div className="placeholder"></div>
<Send type="user" name={currUser?.name} id={currUser?.uid} />
</Layout>
);
}
+48
View File
@@ -0,0 +1,48 @@
import styled from "styled-components";
export const StyledHeader = styled.header`
width: 100%;
height: 100%;
/* padding: 0 20px 0 10px; */
display: flex;
align-items: center;
justify-content: space-between;
/* tricky */
> div {
padding-left: 4px;
}
.txt {
display: flex;
align-items: center;
gap: 5px;
.title {
font-size: 16px;
line-height: 24px;
color: #1c1c1e;
}
.desc {
margin-left: 8px;
font-weight: normal;
font-size: 16px;
line-height: 24px;
color: #616161;
}
}
`;
export const StyledDMChat = styled.article`
position: relative;
width: 100%;
padding-top: 25px;
/* margin-bottom: 120px; */
> .chat {
display: flex;
flex-direction: column;
padding: 0 16px;
height: calc(100vh - 56px - 80px);
overflow-y: scroll;
overflow-x: visible;
}
.placeholder {
width: 100%;
height: 80px;
}
`;
+36
View File
@@ -0,0 +1,36 @@
import React from "react";
import styled from "styled-components";
const StyledWrapper = styled.article`
position: relative;
width: 100%;
background: #fff;
height: 100vh;
.head {
height: 56px;
padding: 0 20px;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}
.main {
height: calc(100vh - 56px);
width: 100%;
display: flex;
align-items: flex-start;
justify-content: space-between;
position: relative;
.members {
border-top: 1px solid transparent;
}
}
`;
export default function Layout({ children, header, contacts = null }) {
return (
<StyledWrapper>
<header className="head">{header}</header>
<main className="main">
{children}
{contacts && <div className="members">{contacts}</div>}
</main>
</StyledWrapper>
);
}
+41 -26
View File
@@ -3,10 +3,9 @@ import { useState } from "react";
import { NavLink, useParams } from "react-router-dom";
import { useSelector } from "react-redux";
import dayjs from "dayjs";
import { MdAdd } from "react-icons/md";
import { AiOutlineCaretDown } from "react-icons/ai";
import { useGetChannelsQuery } from "../../app/services/channel";
import { useGetContactsQuery } from "../../app/services/contact";
import StyledWrapper from "./styled";
import Search from "../../common/component/Search";
@@ -18,13 +17,16 @@ import ContactsModal from "../../common/component/ContactsModal";
import ChannelModal from "../../common/component/ChannelModal";
export default function ChatPage() {
const UserMsgData = useSelector((store) => {
return store.userMsg;
const { channels, UserMsgData, ChannelMsgData } = useSelector((store) => {
return {
channels: store.channels,
UserMsgData: store.userMsg,
ChannelMsgData: store.channelMsg,
};
});
const [channelModalVisible, setChannelModalVisible] = useState(false);
const [contactsModalVisible, setContactsModalVisible] = useState(false);
const { channel_id, user_id } = useParams();
const { data: channels } = useGetChannelsQuery();
const { data: contacts } = useGetContactsQuery();
const toggleContactsModalVisible = () => {
setContactsModalVisible((prev) => !prev);
@@ -32,10 +34,16 @@ export default function ChatPage() {
const toggleChannelModalVisible = () => {
setChannelModalVisible((prev) => !prev);
};
console.log("channels", channels);
if (!channels || !contacts) return null;
const getUnreadCount = (gid) => {
return Object.values(ChannelMsgData[gid] || {}).filter((m) => m.unread)
.length;
};
if (!contacts) return null;
const Sessions = Object.keys(UserMsgData);
const tmpSessionUser = contacts.find((c) => c.uid == user_id);
const transformedChannels = Object.entries(channels).map(([key, obj]) => {
return { id: key, ...obj };
});
return (
<>
{channelModalVisible && (
@@ -60,22 +68,25 @@ export default function ChatPage() {
/>
</h3>
<nav className="nav">
{channels.map(({ gid, is_public, name, description }) => {
return (
<NavLink
title={description}
key={gid}
className="link"
to={`/chat/channel/${gid}`}
>
<span className="txt">
<ChannelIcon personal={!is_public} />
{name}
</span>
<i className="badge">12</i>
</NavLink>
);
})}
{transformedChannels.map(
({ id, is_public, name, description }) => {
let unreads = getUnreadCount(id);
return (
<NavLink
title={description}
key={id}
className="link"
to={`/chat/channel/${id}`}
>
<span className="txt">
<ChannelIcon personal={!is_public} />
{name}
</span>
{unreads > 0 && <i className="badge">{unreads}</i>}
</NavLink>
);
}
)}
</nav>
</div>
<div className="list dms">
@@ -94,6 +105,9 @@ export default function ChatPage() {
{Sessions.map((uid) => {
let currUser = contacts.find((c) => c.uid == uid);
let latestMid = Object.keys(UserMsgData[uid]).sort().pop();
let unreads = Object.values(UserMsgData[uid] || {}).filter(
(m) => m.unread
).length;
let latestMsg = UserMsgData[uid][latestMid];
return (
<NavLink key={uid} className="session" to={`/chat/dm/${uid}`}>
@@ -108,7 +122,7 @@ export default function ChatPage() {
<div className="down">
<div className="msg">{latestMsg.content}</div>
<i className="badge">3</i>
{unreads > 0 && <i className="badge">{unreads}</i>}
</div>
</div>
</NavLink>
@@ -129,7 +143,7 @@ export default function ChatPage() {
<div className="down">
<div className="msg"></div>
<i className="badge">3</i>
{/* <i className="badge">3</i> */}
</div>
</div>
</NavLink>
@@ -140,8 +154,9 @@ export default function ChatPage() {
<div className="right">
{channel_id && (
<ChannelChat
unreads={getUnreadCount(channel_id)}
cid={channel_id}
data={channels.find(({ gid }) => gid == channel_id)}
data={channels[channel_id]}
/>
)}
{user_id && <DMChat uid={user_id} />}
+143 -140
View File
@@ -1,153 +1,156 @@
import styled from 'styled-components';
import styled from "styled-components";
const StyledWrapper = styled.div`
display: flex;
height: 100%;
> .left {
display: flex;
flex-direction: column;
width: 260px;
box-shadow: inset -1px 0px 0px rgba(0, 0, 0, 0.1);
.list {
margin: 12px 8px;
.title {
padding: 0 8px;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 4px;
cursor: pointer;
> .txt {
user-select: none;
display: flex;
align-items: center;
gap: 5px;
font-weight: bold;
font-size: 12px;
line-height: 20px;
color: #78787c;
}
}
> .nav {
height: 100%;
> .left {
display: flex;
flex-direction: column;
gap: 4px;
a {
text-decoration: none;
}
.link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px;
border-radius: 4px;
&:hover,
&.active {
background: rgba(116, 127, 141, 0.1);
}
> .txt {
display: flex;
align-items: center;
gap: 5px;
color: #1c1c1e;
font-weight: 600;
font-size: 14px;
line-height: 20px;
}
> .badge {
padding: 3px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
border-radius: 50%;
background: #bfbfbf;
font-weight: 900;
font-size: 10px;
line-height: 10px;
&.dot {
width: 6px;
height: 6px;
padding: 0;
}
}
}
.session {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
padding: 4px 8px;
border-radius: 4px;
&:hover,
&.active {
background: rgba(116, 127, 141, 0.1);
}
.avatar {
width: 32px;
height: 32px;
border-radius: 50%;
/* img{
width: 100%;
} */
}
.details {
display: flex;
flex-direction: column;
width: 100%;
.up {
display: flex;
justify-content: space-between;
.name {
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #52525b;
}
time {
font-weight: 500;
font-size: 12px;
line-height: 18px;
color: #78787c;
}
}
.down {
display: flex;
justify-content: space-between;
.msg {
font-weight: normal;
font-size: 12px;
line-height: 18px;
color: #78787c;
}
> .badge {
letter-spacing: -1px;
padding: 2px;
color: #fff;
height: 16px;
min-width: 16px;
width: 260px;
box-shadow: inset -1px 0px 0px rgba(0, 0, 0, 0.1);
.list {
margin: 12px 8px;
.title {
padding: 0 8px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
background: #1fe1f9;
font-weight: 900;
font-size: 10px;
line-height: 10px;
&.mute {
background: #bfbfbf;
justify-content: space-between;
margin-bottom: 4px;
cursor: pointer;
> .txt {
user-select: none;
display: flex;
align-items: center;
gap: 5px;
font-weight: bold;
font-size: 12px;
line-height: 20px;
color: #78787c;
}
}
> .nav {
display: flex;
flex-direction: column;
gap: 4px;
a {
text-decoration: none;
}
.link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px;
border-radius: 4px;
&:hover,
&.active {
background: rgba(116, 127, 141, 0.1);
}
> .txt {
display: flex;
align-items: center;
gap: 5px;
color: #1c1c1e;
font-weight: 600;
font-size: 14px;
line-height: 20px;
}
> .badge {
color: #fff;
display: flex;
align-items: center;
justify-content: center;
height: 20px;
min-width: 20px;
border-radius: 50%;
background: #bfbfbf;
font-weight: 900;
font-size: 10px;
line-height: 10px;
&.dot {
width: 6px;
height: 6px;
padding: 0;
}
}
}
.session {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
padding: 4px 8px;
border-radius: 4px;
&:hover,
&.active {
background: rgba(116, 127, 141, 0.1);
}
.avatar {
width: 32px;
height: 32px;
border-radius: 50%;
/* img{
width: 100%;
} */
}
.details {
display: flex;
flex-direction: column;
width: 100%;
.up {
display: flex;
justify-content: space-between;
.name {
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #52525b;
}
time {
font-weight: 500;
font-size: 12px;
line-height: 18px;
color: #78787c;
}
}
.down {
display: flex;
justify-content: space-between;
.msg {
font-weight: normal;
font-size: 12px;
line-height: 18px;
color: #78787c;
white-space: nowrap;
overflow: hidden;
width: 140px;
text-overflow: ellipsis;
}
> .badge {
/* letter-spacing: -1px; */
/* padding: 2px; */
color: #fff;
height: 20px;
min-width: 20px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
background: #1fe1f9;
font-weight: 900;
font-size: 10px;
line-height: 10px;
&.mute {
background: #bfbfbf;
}
}
}
}
}
}
}
}
}
}
}
}
> .right {
width: 100%;
}
> .right {
width: 100%;
}
`;
export default StyledWrapper;
+24 -5
View File
@@ -1,15 +1,20 @@
// import React from 'react';
import { useEffect } from "react";
import styled from "styled-components";
import { AiOutlineCaretDown, AiOutlineSound } from "react-icons/ai";
import { MdOutlineKeyboardVoice } from "react-icons/md";
import { useSelector } from "react-redux";
import { useSelector, useDispatch } from "react-redux";
import { useNavigate } from "react-router-dom";
import { clearAuthData } from "../../app/slices/auth.data";
import { useLazyLogoutQuery } from "../../app/services/auth";
const StyledWrapper = styled.div`
position: absolute;
bottom: 0;
left: 0;
padding: 16px 12px;
width: -webkit-fill-available;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
@@ -37,14 +42,28 @@ const StyledWrapper = styled.div`
}
}
`;
export default function CurrentUser({ collaspe = false }) {
export default function CurrentUser({ expand = true }) {
const dispatch = useDispatch();
const navigate = useNavigate();
const [logout, { isSuccess }] = useLazyLogoutQuery();
const { user } = useSelector((store) => store.authData);
const handleLogout = () => {
logout();
};
useEffect(() => {
if (isSuccess) {
dispatch(clearAuthData());
navigate("/login");
}
}, [isSuccess]);
if (!user) return null;
const { name } = user;
return (
<StyledWrapper>
<div className="profile" title={name}>
<img
onDoubleClick={handleLogout}
title={name}
src={`https://avatars.dicebear.com/api/adventurer-neutral/${name}.svg`}
alt="user avatar"
@@ -52,7 +71,7 @@ export default function CurrentUser({ collaspe = false }) {
/>
<AiOutlineCaretDown className="toggle" width={20} color="#C4C4C4" />
</div>
{!collaspe && (
{expand && (
<div className="settings">
<AiOutlineSound className="icon" size={15} color="#1C1C1E" />
<MdOutlineKeyboardVoice className="icon" size={15} color="#1C1C1E" />
+10 -8
View File
@@ -5,12 +5,13 @@ import { HiChevronDoubleLeft } from "react-icons/hi";
const StyledWrapper = styled.div`
height: 56px;
padding: 0 16px;
padding-right: 5px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
&.collaspe {
padding-right: 5px;
&.expand {
padding-right: 16px;
}
.server {
display: flex;
@@ -44,26 +45,27 @@ const StyledWrapper = styled.div`
display: flex;
width: 15px;
height: 15px;
transform: rotate(180deg);
.icon {
width: 100%;
height: 100%;
}
&.collaspe {
transform: rotate(180deg);
&.expand {
transform: rotate(0deg);
}
}
`;
export default function ServerDropList({ data, toggle, collaspe = false }) {
export default function ServerDropList({ data, toggle, expand = true }) {
if (!data) return null;
return (
<StyledWrapper className={collaspe ? "collaspe" : ""}>
<StyledWrapper className={expand ? "expand" : ""}>
<div className="server">
<div className="logo">
<img src={data.logo} alt="logo" />
</div>
{!collaspe && <h2 className="title">{data.name}</h2>}
{expand && <h2 className="title">{data.name}</h2>}
</div>
<div onClick={toggle} className={`arrow ${collaspe ? "collaspe" : ""}`}>
<div onClick={toggle} className={`arrow ${expand ? "expand" : ""}`}>
<HiChevronDoubleLeft className="icon" color="#BFBFBF" />
</div>
</StyledWrapper>
+4 -4
View File
@@ -60,7 +60,7 @@ const StyledWrapper = styled.div`
}
}
`;
export default function Tools({ collaspe = false }) {
export default function Tools({ expand = true }) {
return (
<StyledWrapper>
<hr />
@@ -73,19 +73,19 @@ export default function Tools({ collaspe = false }) {
alt="logo"
/>
</div>
{!collaspe && <h2 className="title">Webrowse</h2>}
{expand && <h2 className="title">Webrowse</h2>}
</li>
<li className="tool">
<div className="logo">
<IoLogoGithub size={40} className="icon" />
</div>
{!collaspe && <h2 className="title">Github</h2>}
{expand && <h2 className="title">Github</h2>}
</li>
<li className="tool add">
<div className="logo">
<RiAddFill className="icon" size={40} color="#4B5563" />
</div>
{!collaspe && <h2 className="title">Add new app</h2>}
{expand && <h2 className="title">Add new app</h2>}
</li>
</ul>
</StyledWrapper>
+18 -13
View File
@@ -1,7 +1,9 @@
// import React from 'react';
import { useState } from "react";
import StyledWrapper from "./styled";
// import { useState } from "react";
import { Outlet, NavLink } from "react-router-dom";
import { useSelector, useDispatch } from "react-redux";
import { toggleMenuExpand } from "../../app/slices/ui";
import StyledWrapper from "./styled";
import ServerDropList from "./ServerDropList";
import Tools from "./Tools";
import usePreload from "./usePreload";
@@ -13,33 +15,36 @@ import ContactIcon from "../../assets/icons/contact.svg";
import NotificationHub from "../../common/component/NotificationHub";
export default function HomePage() {
const dispatch = useDispatch();
const { menuExpand, token } = useSelector((store) => {
return { token: store.authData.token, menuExpand: store.ui.menuExpand };
});
const { data, error, success } = usePreload();
const [collaspe, setCollaspe] = useState(false);
const toggleCollaspe = () => {
setCollaspe((prev) => !prev);
const toggleExpand = () => {
dispatch(toggleMenuExpand());
};
console.log({ data, error, success });
return (
<>
<NotificationHub />
<NotificationHub token={token} />
<StyledWrapper>
<div className={`col left ${collaspe ? "collaspe" : ""}`}>
<div className={`col left ${menuExpand ? "expand" : ""}`}>
<ServerDropList
data={data?.server}
collaspe={collaspe}
toggle={toggleCollaspe}
expand={menuExpand}
toggle={toggleExpand}
/>
<nav className="nav">
<NavLink className="link" to={"/chat"}>
<img src={ChatIcon} alt="chat icon" /> {!collaspe && `Chat`}
<img src={ChatIcon} alt="chat icon" /> {menuExpand && `Chat`}
</NavLink>
<NavLink className="link" to={"/contacts"}>
<img src={ContactIcon} alt="contact icon" />{" "}
{!collaspe && `Contacts`}
{menuExpand && `Contacts`}
</NavLink>
</nav>
<Tools collaspe={collaspe} />
<CurrentUser collaspe={collaspe} />
<Tools expand={menuExpand} />
<CurrentUser expand={menuExpand} />
</div>
<div className="col right">
<Outlet />
+3 -3
View File
@@ -11,11 +11,11 @@ const StyledWrapper = styled.div`
&.left {
position: relative;
/* background: #0891B2; */
width: 180px;
width: 64px;
box-shadow: inset -1px 0px 0px rgba(0, 0, 0, 0.1);
transition: all 0.5s ease-in;
&.collaspe {
width: 64px;
&.expand {
width: 180px;
}
}
&.right {
+10 -11
View File
@@ -1,6 +1,6 @@
// import React from 'react';
import { useGetContactsQuery } from "../../app/services/contact";
import { useGetChannelsQuery } from "../../app/services/channel";
// import { useGetChannelsQuery } from "../../app/services/channel";
import { useGetServerQuery } from "../../app/services/server";
// pollingInterval: 0,
const querySetting = {
@@ -19,21 +19,20 @@ export default function usePreload() {
isError: serverError,
data: server,
} = useGetServerQuery(undefined, querySetting);
const {
isLoading: groupsLoading,
isSuccess: groupsSuccess,
isError: groupsError,
data: groups,
} = useGetChannelsQuery(undefined, querySetting);
// const {
// isLoading: groupsLoading,
// isSuccess: groupsSuccess,
// isError: groupsError,
// data: groups,
// } = useGetChannelsQuery(undefined, querySetting);
return {
loading: contactsLoading && groupsLoading && serverLoading,
error: contactsError && groupsError && serverError,
success: contactsSuccess && groupsSuccess && serverSuccess,
loading: contactsLoading && serverLoading,
error: contactsError && serverError,
success: contactsSuccess && serverSuccess,
data: {
contacts,
server,
groups,
},
};
}