Files
scrm.antd/src/pages/ChatLogs/index.tsx

984 lines
35 KiB
TypeScript
Raw Normal View History

2023-04-11 15:29:40 +08:00
import { post } from '@/services/ajax';
import { DownOutlined, UpOutlined } from '@ant-design/icons';
2023-04-07 17:38:15 +08:00
import { PageContainer } from '@ant-design/pro-components';
2023-04-14 17:31:45 +08:00
import { Drawer, Form, Input, Tabs } from 'antd';
2023-04-11 15:29:40 +08:00
import Spin from 'antd/lib/spin';
import { stringify } from 'qs';
import React, { useEffect, useRef, useState } from 'react';
2023-04-14 17:31:45 +08:00
import { DepartmentMembersDetail } from '../DepartmentsList/components/DepartmentMemberDetail';
2023-04-13 17:36:49 +08:00
import { IChat, ICustFollow, IGroup, IGroupMembers, IStaffsItem } from './ChatLogsType';
2023-04-14 17:31:45 +08:00
import { adminList, formatTags, groupMembersCount, groupMembersCount2 } from './ChatUtils';
2023-04-11 15:29:40 +08:00
import { ChatBar } from './components/ChatBar';
import { ChatTime } from './components/ChatTime';
2023-04-14 17:31:45 +08:00
import { Gender } from './components/Gender';
2023-04-11 15:29:40 +08:00
import styles from './index.module.scss';
2023-04-13 17:36:49 +08:00
interface ISearchWord {
'0': string;
'1': string;
'2': string;
}
2023-04-07 17:38:15 +08:00
const ChatLogs: React.FC = () => {
2023-04-11 15:29:40 +08:00
const [param] = useState({
2023-04-07 17:38:15 +08:00
curr_page: 1,
page_count: 20,
2023-04-11 15:29:40 +08:00
msg_from: '',
msg_to_list: '',
2023-04-13 17:36:49 +08:00
room_id: '',
2023-04-07 17:38:15 +08:00
});
2023-04-13 17:36:49 +08:00
const [tabKey, setTabKey] = useState<string>('0');
2023-04-11 15:29:40 +08:00
const tabKeyRef = useRef('0');
2023-04-07 17:38:15 +08:00
2023-04-13 17:36:49 +08:00
const [open, setOpen] = useState(false);
// 员工
const [staffsList, setStaffsList] = useState<IStaffsItem[]>([]);
2023-04-11 15:29:40 +08:00
const [selectStaff, setSelectStaff] = useState<IStaffsItem>();
const selectStaffRef = useRef<IStaffsItem>();
2023-04-13 17:36:49 +08:00
// 内部联系人
const [innerStaffsList, setInnerStaffsList] = useState<IStaffsItem[]>([]);
const selectInnerStaffRef = useRef<IStaffsItem>();
const [selectInnerStaff, setSelectInnerStaff] = useState<IStaffsItem>();
// 外部联系人
const [custFollowsList, setCustFollowsList] = useState<ICustFollow[]>([]);
const [selectCustFollow, setSelectCustFollow] = useState<ICustFollow>();
2023-04-11 15:29:40 +08:00
const selectCustFollowRef = useRef<ICustFollow>();
2023-04-13 17:36:49 +08:00
// 群聊
const [groupList, setGroupList] = useState<IGroup[]>([]);
const selectGroupRef = useRef<IGroup>();
const [selectGroup, setSelectGroup] = useState<IGroup>();
// 群成员
const [groupMembersList, setGroupMembersList] = useState<IGroupMembers[]>([]);
const groupMembersObjRef = useRef<any>({});
2023-04-11 15:29:40 +08:00
const [chatLogs, setChatLogs] = useState<IChat[]>([]);
const [tabs] = useState([
2023-04-07 17:38:15 +08:00
{
2023-04-11 15:29:40 +08:00
key: '0',
label: '内部联系人',
children: '',
2023-04-07 17:38:15 +08:00
},
{
2023-04-11 15:29:40 +08:00
key: '1',
label: '外部联系人',
children: '',
2023-04-07 17:38:15 +08:00
},
{
2023-04-11 15:29:40 +08:00
key: '2',
label: '客户群聊',
children: '',
2023-04-07 17:38:15 +08:00
},
2023-04-11 15:29:40 +08:00
]);
2023-04-14 17:31:45 +08:00
const groupStatus: any = {
2023-04-13 17:36:49 +08:00
'0': '跟进人正常',
'1': '跟进人离职',
'2': '离职继承中',
'3': '离职继承完成',
};
const [searchWord, setSearchWord] = useState<ISearchWord>({
'0': '',
'1': '',
'2': '',
});
2023-04-11 15:29:40 +08:00
const [flolowsBoxShow, setFlolowsBox] = useState(false);
2023-04-14 17:31:45 +08:00
const [delFollowListShow, setDelFollowListShow] = useState(false);
const [delGroupListShow, setDelGroupListShow] = useState(false);
2023-04-13 17:36:49 +08:00
2023-04-11 15:29:40 +08:00
const timeShowRef = useRef(false);
const chatBoxRef = useRef<any>();
const isAllChatRef = useRef(false);
const chatLogLoadingRef = useRef(false);
const [chatLogLoading, setChatLogLoading] = useState(false);
function show() {
setFlolowsBox(false);
}
2023-04-14 17:31:45 +08:00
// 监听DOM变动
2023-04-11 15:29:40 +08:00
const callback = function (mutationsList: any) {
// Use traditional 'for loops' for IE 11
for (let mutation of mutationsList) {
if (mutation.type === 'childList') {
document.querySelector('.curr_page' + param.curr_page)?.scrollIntoView(true);
} else if (mutation.type === 'attributes') {
console.log('The ' + mutation.attributeName + ' attribute was modified.');
}
}
};
const observer = new MutationObserver(callback);
useEffect(() => {
document.addEventListener('click', show, false);
getStaffsList();
observer.observe(chatBoxRef.current, { childList: true });
2023-04-13 17:36:49 +08:00
const myScript = document.createElement('script');
myScript.src = '/public/scripts/amrnb.js';
myScript.async = false;
document.body.appendChild(myScript);
2023-04-11 15:29:40 +08:00
return () => {
document.removeEventListener('click', show, false);
observer.disconnect();
2023-04-13 17:36:49 +08:00
document.body.removeChild(myScript);
2023-04-11 15:29:40 +08:00
};
}, []);
// 获取员工
const getStaffsList = () => {
post({ url: '/Staffs/Data' }).then((res) => {
if (res.err_code == 0) {
2023-04-14 17:31:45 +08:00
if (Array.isArray(res.data) && res.data.length) {
2023-04-11 15:29:40 +08:00
// setSelectStaff(res.data[0]);
2023-04-14 17:31:45 +08:00
// selectStaffRef.current = res.data[0];
2023-04-11 15:29:40 +08:00
res.data.forEach((element: IStaffsItem) => {
if (element.user_id == 'yangxb') {
setSelectStaff(element);
selectStaffRef.current = element;
}
});
setStaffsList(res.data);
2023-04-13 17:36:49 +08:00
setInnerStaffsList(res.data);
2023-04-11 15:29:40 +08:00
getCustFollowsList();
2023-04-13 17:36:49 +08:00
getGroupList();
2023-04-11 15:29:40 +08:00
}
}
});
};
const page = (curr: number) => {
param.curr_page = curr;
param.msg_from = selectStaffRef.current?.user_id + '';
2023-04-13 17:36:49 +08:00
if (tabKey == '0') {
param.msg_to_list = selectInnerStaffRef.current?.user_id + '';
} else if (tabKey == '1') {
param.msg_to_list = selectCustFollowRef.current?.cust_id + '';
} else {
param.room_id = selectGroupRef.current?.group_id + '';
}
2023-04-11 15:29:40 +08:00
timeShowRef.current = false;
getChatLogsList();
};
const getChatLogsList = () => {
chatLogLoadingRef.current = true;
setChatLogLoading(true);
post({
2023-04-13 17:36:49 +08:00
url: tabKey == '2' ? '/ChatLogs/GroupList' : '/ChatLogs/List',
2023-04-11 15:29:40 +08:00
data: stringify(param),
}).then((res) => {
const count = res.count || 0;
chatLogLoadingRef.current = false;
2023-04-13 17:36:49 +08:00
2023-04-11 15:29:40 +08:00
setChatLogLoading(false);
isAllChatRef.current = count < param.page_count * param.curr_page;
if (res.err_code == 0) {
2023-04-13 17:36:49 +08:00
if (Array.isArray(res.data) && res.data.length) {
let arr: IChat[] = [];
const temp = res.data.reverse();
const mark = { curr_page: param.curr_page, msg_time: temp[temp.length - 1].msg_time };
2023-04-11 15:29:40 +08:00
if (param.curr_page == 1) {
2023-04-13 17:36:49 +08:00
arr = [...temp, mark];
2023-04-11 15:29:40 +08:00
} else {
2023-04-13 17:36:49 +08:00
arr = [...temp, mark, ...chatLogs];
2023-04-11 15:29:40 +08:00
}
2023-04-14 17:31:45 +08:00
// 5分钟外显示时间
// if (arr) {
// let show_time = '';
// arr.forEach((el, i) => {
// el.show_time = false;
// if (i == 0) {
// el.show_time = true;
// } else {
// if (show_time == '') {
// show_time = el.msg_time;
// } else {
// if (
// new Date(el.msg_time).getTime() - new Date(show_time).getTime() >
// 5 * 60 * 1000
// ) {
// el.show_time = true;
// show_time = el.msg_time;
// }
// }
// }
// });
// }
2023-04-13 17:36:49 +08:00
setChatLogs(arr);
}
}
});
};
const getGroupList = () => {
post({
url: '/Groups/GroupsList',
data: stringify({ user_id: selectStaffRef.current?.user_id }),
}).then((res) => {
if (res.err_code == 0) {
if (Array.isArray(res.data)) {
setGroupList(res.data);
// if (res.data.length) {
// setCustFollow(res.data[0]);
// selectCustFollowRef.current = res.data[0];
// page(1);
// }
}
}
});
};
// 群成员
const getGroupMembersList = () => {
post({
url: '/GroupMembers/GroupMembersList',
data: stringify({ group_id: selectGroupRef.current?.group_id }),
}).then((res) => {
if (res.err_code == 0) {
if (Array.isArray(res.data)) {
setGroupMembersList(res.data);
groupMembersObjRef.current = {};
res.data.forEach((item: IGroupMembers) => {
groupMembersObjRef.current[item.user_id] = item;
});
page(1);
2023-04-11 15:29:40 +08:00
}
}
});
};
const getCustFollowsList = () => {
post({
url: '/CustFollows/List',
data: stringify({ user_id: selectStaffRef.current?.user_id }),
}).then((res) => {
if (res.err_code == 0) {
if (Array.isArray(res.data)) {
setCustFollowsList(res.data);
2023-04-13 17:36:49 +08:00
// if (res.data.length) {
// setCustFollow(res.data[0]);
// selectCustFollowRef.current = res.data[0];
// page(1);
// }
2023-04-11 15:29:40 +08:00
}
}
});
};
2023-04-07 17:38:15 +08:00
// const { notification } = App.useApp();
2023-04-13 17:36:49 +08:00
const tabContent = () => {
if (tabKey == '0') {
// 内部联系人
return (
<>
{innerStaffsList.length ? (
innerStaffsList.map((item) => {
if (item.user_id == selectStaff?.user_id) {
return null;
}
return (
<div
key={`${item.user_id}_${item.name}`}
className={`${styles.chatB} ${
selectInnerStaff?.user_id == item.user_id ? styles.active : ''
}`}
onClick={() => {
tabKeyRef.current = tabKey;
setSelectCustFollow(undefined);
selectCustFollowRef.current = undefined;
setSelectGroup(undefined);
selectGroupRef.current = undefined;
setSelectInnerStaff(item);
selectInnerStaffRef.current = item;
page(1);
}}
style={{ display: item.name.includes(searchWord['0']) ? '' : 'none' }}
>
2023-04-14 17:31:45 +08:00
<div className={styles.avatar}>
{item.avatar ? (
<img
src={item.avatar}
alt=""
style={{
maxWidth: '100%',
maxHeight: '100%',
objectFit: 'cover',
borderRadius: 4,
}}
/>
) : (
<>{item.name[0]}</>
)}
</div>
2023-04-13 17:36:49 +08:00
<div className={styles.chatAMsg}>
<div className={styles.chatAName} title={item.name}>
{item.name}
</div>
</div>
</div>
);
})
) : (
<div style={{ lineHeight: '44px', textAlign: 'center', color: '#999' }}>
</div>
)}
</>
);
} else if (tabKey == '1') {
return (
<>
{custFollowsList.length ? (
custFollowsList.map((item) => {
2023-04-14 17:31:45 +08:00
if (item.state == 0) return null;
2023-04-13 17:36:49 +08:00
return (
<div
key={item.cust_id}
className={`${styles.chatB} ${item.state == 0 ? styles.state0 : ''} ${
selectCustFollow?.cust_id == item.cust_id ? styles.active : ''
}`}
onClick={() => {
tabKeyRef.current = tabKey;
setSelectInnerStaff(undefined);
selectInnerStaffRef.current = undefined;
setSelectGroup(undefined);
selectGroupRef.current = undefined;
setSelectCustFollow(item);
selectCustFollowRef.current = item;
page(1);
}}
style={{ display: item.name.includes(searchWord['1']) ? '' : 'none' }}
>
<div className={styles.avatar} style={{ background: item?.avatar ? '#fff' : '' }}>
<img
src={item.avatar}
alt=""
style={{ maxWidth: '100%', maxHeight: '100%', objectFit: 'cover' }}
/>
</div>
<div className={styles.chatAMsg} style={{ flexDirection: 'column' }}>
<div className={styles.chatAName} title={item.name}>
{item.name}
</div>
<div>{item.remark}</div>
</div>
</div>
);
})
) : (
<div style={{ lineHeight: '44px', textAlign: 'center', color: '#999' }}>
</div>
)}
2023-04-14 17:31:45 +08:00
<div
className={`${styles.delFollowList} ${
delFollowListShow ? styles.delFollowListShow : ''
}`}
>
<div
className={styles.delFollowListBar}
onClick={() => {
setDelFollowListShow(!delFollowListShow);
}}
>
<span></span>
{delFollowListShow ? <UpOutlined /> : <DownOutlined />}
</div>
<div
className={`${styles.delFollowListBox} ${
delFollowListShow ? styles.delFollowListBoxShow : ''
}`}
>
{custFollowsList.map((item) => {
if (item.state == 1) return null;
return (
<div
key={item.cust_id}
className={`${styles.chatB} ${item.state == 0 ? styles.state0 : ''} ${
selectCustFollow?.cust_id == item.cust_id ? styles.active : ''
}`}
onClick={() => {
tabKeyRef.current = tabKey;
setSelectInnerStaff(undefined);
selectInnerStaffRef.current = undefined;
setSelectGroup(undefined);
selectGroupRef.current = undefined;
setSelectCustFollow(item);
selectCustFollowRef.current = item;
page(1);
}}
style={{ display: item.name.includes(searchWord['1']) ? '' : 'none' }}
>
<div
className={styles.avatar}
style={{ background: item?.avatar ? '#fff' : '' }}
>
<img
src={item.avatar}
alt=""
style={{ maxWidth: '100%', maxHeight: '100%', objectFit: 'cover' }}
/>
</div>
<div className={styles.chatAMsg} style={{ flexDirection: 'column' }}>
<div className={styles.chatAName} title={item.name}>
{item.name}
</div>
<div>{item.remark}</div>
</div>
</div>
);
})}
</div>
</div>
2023-04-13 17:36:49 +08:00
</>
);
} else {
return (
<>
{groupList.length ? (
groupList.map((item) => {
2023-04-14 17:31:45 +08:00
if (item.state == 0) return null;
2023-04-13 17:36:49 +08:00
return (
<div
key={item.group_id}
className={`${styles.chatB} ${item.state == 0 ? styles.state0 : ''} ${
selectGroup?.group_id == item.group_id ? styles.active : ''
}`}
onClick={() => {
tabKeyRef.current = tabKey;
setSelectCustFollow(undefined);
selectCustFollowRef.current = undefined;
setSelectInnerStaff(undefined);
selectInnerStaffRef.current = undefined;
setSelectGroup(item);
selectGroupRef.current = item;
getGroupMembersList();
}}
style={{ display: item.name.includes(searchWord['2']) ? '' : 'none' }}
>
<div className={styles.avatar}>{item.name ? item.name[0] : '群'}</div>
<div className={styles.chatAMsg} style={{ flexDirection: 'column' }}>
<div className={styles.chatAName} title={item.name}>
{item.name || '未定义群名'}
</div>
<div style={{ color: '#999' }}>{groupStatus[item.status]}</div>
</div>
</div>
);
})
) : (
<div style={{ lineHeight: '44px', textAlign: 'center', color: '#999' }}>
</div>
)}
2023-04-14 17:31:45 +08:00
<div
className={`${styles.delFollowList} ${
delGroupListShow ? styles.delFollowListShow : ''
}`}
>
<div
className={styles.delFollowListBar}
onClick={() => {
setDelGroupListShow(!delGroupListShow);
}}
>
<span></span>
{delGroupListShow ? <UpOutlined /> : <DownOutlined />}
</div>
<div
className={`${styles.delFollowListBox} ${
delGroupListShow ? styles.delFollowListBoxShow : ''
}`}
>
{groupList.map((item) => {
if (item.state == 1) return null;
2023-04-13 17:36:49 +08:00
return (
2023-04-14 17:31:45 +08:00
<div
key={item.group_id}
className={`${styles.chatB} ${item.state == 0 ? styles.state0 : ''} ${
selectGroup?.group_id == item.group_id ? styles.active : ''
}`}
onClick={() => {
tabKeyRef.current = tabKey;
setSelectCustFollow(undefined);
selectCustFollowRef.current = undefined;
setSelectInnerStaff(undefined);
selectInnerStaffRef.current = undefined;
setSelectGroup(item);
selectGroupRef.current = item;
getGroupMembersList();
}}
style={{ display: item.name.includes(searchWord['2']) ? '' : 'none' }}
>
<div className={styles.avatar}>{item.name ? item.name[0] : '群'}</div>
<div className={styles.chatAMsg} style={{ flexDirection: 'column' }}>
<div className={styles.chatAName} title={item.name}>
{item.name || '未定义群名'}
</div>
<div style={{ color: '#999' }}>{groupStatus[item.status]}</div>
</div>
2023-04-13 17:36:49 +08:00
</div>
);
})}
2023-04-14 17:31:45 +08:00
</div>
</div>
</>
);
2023-04-13 17:36:49 +08:00
}
};
2023-04-07 17:38:15 +08:00
return (
<PageContainer>
2023-04-11 15:29:40 +08:00
<div className={styles.box}>
<div className={styles.personnelBox}>
<div className={`${styles.flolowsBox} ${flolowsBoxShow ? styles.show : ''}`}>
{staffsList.map((item) => {
return (
<div
key={item.user_id}
className={styles.chatB}
onClick={(e) => {
2023-04-13 17:36:49 +08:00
setSelectCustFollow(undefined);
selectCustFollowRef.current = undefined;
setSelectInnerStaff(undefined);
selectInnerStaffRef.current = undefined;
setSelectGroup(undefined);
selectGroupRef.current = undefined;
isAllChatRef.current = false;
setChatLogs([]);
2023-04-11 15:29:40 +08:00
setSelectStaff({ ...item });
selectStaffRef.current = { ...item };
setFlolowsBox(false);
getCustFollowsList();
2023-04-13 17:36:49 +08:00
getGroupList();
2023-04-11 15:29:40 +08:00
}}
2023-04-14 17:31:45 +08:00
style={{ background: selectStaff?.user_id == item.user_id ? '#bae0ff' : '' }}
2023-04-11 15:29:40 +08:00
>
2023-04-14 17:31:45 +08:00
<div className={styles.avatar}>
{item.avatar ? (
<img
src={item.avatar}
alt=""
style={{
maxWidth: '100%',
maxHeight: '100%',
objectFit: 'cover',
borderRadius: 4,
}}
/>
) : (
<>{item.name[0]}</>
)}
</div>
2023-04-11 15:29:40 +08:00
<div className={styles.chatAMsg}>
<div className={styles.chatAName} title={item.name}>
{item.name}
</div>
</div>
</div>
);
})}
</div>
<div
className={`${styles.chatA}`}
onClick={(e) => {
e.stopPropagation();
setFlolowsBox(!flolowsBoxShow);
}}
>
{selectStaff ? (
<>
2023-04-14 17:31:45 +08:00
<div className={styles.avatar}>
{selectStaff.avatar ? (
<img
src={selectStaff.avatar}
alt=""
style={{
maxWidth: '100%',
maxHeight: '100%',
objectFit: 'cover',
borderRadius: 4,
}}
/>
) : (
<>{selectStaff.name[0]}</>
)}
</div>
2023-04-11 15:29:40 +08:00
<div className={styles.chatAMsg}>
<div className={styles.chatAName} title={selectStaff.name}>
{selectStaff.name}
</div>
</div>
{flolowsBoxShow ? <UpOutlined /> : <DownOutlined />}
</>
) : null}
</div>
<Form autoComplete="off">
<Input
2023-04-13 17:36:49 +08:00
placeholder="搜索"
2023-04-11 15:29:40 +08:00
style={{ margin: '0 12px', width: 'calc(100% - 24px)' }}
autoComplete="off"
2023-04-13 17:36:49 +08:00
defaultValue={searchWord[tabKey]}
key={tabKey}
onChange={(e) => {
searchWord[tabKey] = e.target.value.trim();
setSearchWord({ ...searchWord });
}}
allowClear
2023-04-11 15:29:40 +08:00
></Input>
</Form>
2023-04-13 17:36:49 +08:00
<Tabs
items={tabs}
size="small"
style={{ padding: '0 12px' }}
tabBarGutter={12}
onChange={(val) => {
setTabKey(val);
}}
></Tabs>
<div className={styles.chatBBox}>{tabContent()}</div>
</div>
<div style={{ flex: 1 }}>
<div className={styles.logTop}>
<div
2023-04-14 17:31:45 +08:00
style={{ cursor: 'pointer', fontSize: 18 }}
2023-04-13 17:36:49 +08:00
onClick={() => {
setOpen(true);
}}
>
{tabKeyRef.current == '0' ? (
<>{selectInnerStaffRef.current?.name}</>
) : tabKeyRef.current == '1' ? (
<>{selectCustFollowRef.current?.name}</>
) : (
2023-04-14 17:31:45 +08:00
<>
{selectGroupRef.current ? selectGroupRef.current?.name || '未定义群名' : ''}
{selectGroupRef.current ? <>{groupMembersList.length}</> : null}
</>
2023-04-13 17:36:49 +08:00
)}
</div>
2023-04-14 17:31:45 +08:00
<Drawer
2023-04-13 17:36:49 +08:00
title={
tabKeyRef.current == '0' ? (
<>{selectInnerStaffRef.current?.name} </>
) : tabKeyRef.current == '1' ? (
<>{selectCustFollowRef.current?.name} </>
) : (
2023-04-14 17:31:45 +08:00
<>
{selectGroupRef.current?.name || '未定义群名'} {groupMembersList.length}
</>
2023-04-13 17:36:49 +08:00
)
}
open={open}
2023-04-14 17:31:45 +08:00
width={600}
onClose={() => setOpen(false)}
2023-04-13 17:36:49 +08:00
footer={false}
>
{tabKeyRef.current == '0' ? (
2023-04-14 17:31:45 +08:00
<DepartmentMembersDetail
record={selectInnerStaff as IStaffsItem}
></DepartmentMembersDetail>
2023-04-13 17:36:49 +08:00
) : tabKeyRef.current == '1' ? (
<div>
<div
style={{
display: 'flex',
borderBottom: '1px solid #ddd',
paddingBottom: 12,
marginBottom: 12,
}}
>
<div className={styles.modalAvatar}>
<img src={selectCustFollow?.avatar} alt="" />
</div>
<div style={{ display: 'flex', flexDirection: 'column' }}>
<div style={{ fontSize: 16 }}>
<span style={{ marginRight: 8 }}>{selectCustFollow?.name}</span>
2023-04-14 17:31:45 +08:00
<Gender gender={selectCustFollow?.gender}></Gender>
2023-04-13 17:36:49 +08:00
</div>
<div style={{ color: '#666' }}>{selectCustFollow?.description}</div>
2023-04-11 15:29:40 +08:00
</div>
</div>
2023-04-13 17:36:49 +08:00
<div>{selectCustFollow?.remark}</div>
2023-04-14 17:31:45 +08:00
{formatTags(selectCustFollow?.tags)}
2023-04-11 15:29:40 +08:00
</div>
2023-04-13 17:36:49 +08:00
) : (
<div>
2023-04-14 17:31:45 +08:00
<div style={{ marginBottom: 8, textIndent: '2em' }}>
{groupMembersObjRef.current[selectGroupRef.current?.owner]?.name}
</div>
<div style={{ marginBottom: 8 }}>
{adminList(selectGroupRef.current?.admin_list, groupMembersObjRef.current)}
</div>
<div style={{ marginBottom: 8 }}>
{selectGroupRef.current?.create_time}
</div>
<div style={{ textIndent: '1em' }}>{selectGroupRef.current?.notice}</div>
<div
style={{
fontWeight: 'bold',
marginTop: 24,
marginBottom: 8,
borderBottom: '1px solid #ddd',
paddingBottom: 8,
}}
>
{groupMembersList.length}
2023-04-13 17:36:49 +08:00
</div>
{groupMembersList.map((item) => {
2023-04-14 17:31:45 +08:00
if (item.group_members_type == '2' || item.state == 0) return null;
2023-04-13 17:36:49 +08:00
return (
<div
key={item.user_id}
style={{
display: 'inline-flex',
justifyContent: 'flex-start',
alignItems: 'center',
2023-04-14 17:31:45 +08:00
width: 80,
2023-04-13 17:36:49 +08:00
flexDirection: 'column',
verticalAlign: 'top',
marginTop: 12,
}}
>
<div className={styles.avatar}>
{item.avatar ? (
<img
style={{
maxWidth: '100%',
maxHeight: '100%',
objectFit: 'cover',
borderRadius: 4,
}}
src={item.avatar}
alt=""
/>
) : item.name ? (
item.name[0]
) : (
''
)}
</div>
<div
style={{
padding: '0 4px',
whiteSpace: 'nowrap',
minWidth: 0,
textOverflow: 'ellipsis',
overflow: 'hidden',
2023-04-14 17:31:45 +08:00
width: 72,
textAlign: 'center',
}}
title={item.name}
>
{item.name}
</div>
</div>
);
})}
{groupMembersCount2(groupMembersList, '2', 1) != 0 ? (
<div
style={{
fontWeight: 'bold',
marginTop: 24,
marginBottom: 8,
borderBottom: '1px solid #ddd',
paddingBottom: 8,
}}
>
</div>
) : null}
{groupMembersList.map((item) => {
if (item.group_members_type == '1' || item.state == 0) return null;
return (
<div
key={item.user_id}
style={{
display: 'inline-flex',
justifyContent: 'flex-start',
alignItems: 'center',
width: 80,
flexDirection: 'column',
verticalAlign: 'top',
marginTop: 12,
}}
>
<div className={styles.avatar}>
{item.avatar ? (
<img
style={{
maxWidth: '100%',
maxHeight: '100%',
objectFit: 'cover',
borderRadius: 4,
}}
src={item.avatar}
alt=""
/>
) : item.name ? (
item.name[0]
) : (
''
)}
</div>
<div
style={{
padding: '0 4px',
whiteSpace: 'nowrap',
minWidth: 0,
textOverflow: 'ellipsis',
overflow: 'hidden',
width: 72,
textAlign: 'center',
}}
title={item.name}
>
{item.name}
</div>
</div>
);
})}
{groupMembersCount(groupMembersList, 0) != 0 ? (
<div
style={{
fontWeight: 'bold',
marginTop: 24,
marginBottom: 8,
borderBottom: '1px solid #ddd',
paddingBottom: 8,
}}
>
</div>
) : null}
{groupMembersList.map((item) => {
if (item.state == 1) return null;
return (
<div
key={item.user_id}
style={{
display: 'inline-flex',
justifyContent: 'flex-start',
alignItems: 'center',
width: 80,
flexDirection: 'column',
verticalAlign: 'top',
marginTop: 12,
}}
>
<div className={styles.avatar}>
{item.avatar ? (
<img
style={{
maxWidth: '100%',
maxHeight: '100%',
objectFit: 'cover',
borderRadius: 4,
}}
src={item.avatar}
alt=""
/>
) : item.name ? (
item.name[0]
) : (
''
)}
</div>
<div
style={{
padding: '0 4px',
whiteSpace: 'nowrap',
minWidth: 0,
textOverflow: 'ellipsis',
overflow: 'hidden',
width: 72,
2023-04-13 17:36:49 +08:00
textAlign: 'center',
}}
title={item.name}
>
{item.name}
</div>
</div>
);
})}
</div>
)}
2023-04-14 17:31:45 +08:00
</Drawer>
2023-04-11 15:29:40 +08:00
</div>
2023-04-14 17:31:45 +08:00
<Spin spinning={chatLogLoading} style={{ display: 'block' }} size="large">
2023-04-11 15:29:40 +08:00
<div
className={styles.chatLogBox}
ref={chatBoxRef}
2023-04-13 17:36:49 +08:00
onScroll={(e: any) => {
2023-04-11 15:29:40 +08:00
if (
2023-04-13 17:36:49 +08:00
e.target?.scrollTop == 0 &&
2023-04-11 15:29:40 +08:00
!isAllChatRef.current &&
!chatLogLoadingRef.current
) {
page(param.curr_page + 1);
}
}}
>
{isAllChatRef.current ? (
<div style={{ marginBottom: 12, textAlign: 'center', color: '#999' }}>
</div>
) : null}
{chatLogs.map((item, i) => {
if (item.curr_page) {
return (
<div
key={item.curr_page}
className={`curr_page${param.curr_page}`}
style={{ height: 0 }}
></div>
);
} else {
return (
<div key={item.msg_id}>
2023-04-14 17:31:45 +08:00
{/* {item.show_time ? <ChatTime msgtime={item.msg_time}></ChatTime> : null} */}
<ChatTime msgtime={item.msg_time}></ChatTime>
2023-04-13 17:36:49 +08:00
{tabKey == '2' ? (
<ChatBar
from={selectStaff}
to={groupMembersObjRef.current[item.msg_from]}
chat={item}
></ChatBar>
) : (
2023-04-14 17:31:45 +08:00
<ChatBar
from={selectStaff}
to={
tabKeyRef.current == '0'
? selectInnerStaffRef.current
: selectCustFollowRef.current
}
chat={item}
></ChatBar>
2023-04-13 17:36:49 +08:00
)}
2023-04-11 15:29:40 +08:00
</div>
);
}
})}
</div>
</Spin>
</div>
</div>
2023-04-07 17:38:15 +08:00
</PageContainer>
);
};
export default ChatLogs;