|
|
|
@ -1,16 +1,13 @@
|
|
|
|
|
import { useRef, useState, useEffect } from 'react';
|
|
|
|
|
import { Layout, Button } from 'antd';
|
|
|
|
|
import { useEffect } from 'react';
|
|
|
|
|
import { Layout } from 'antd';
|
|
|
|
|
import MessagesHeader from '@/views/Conversations/Online/MessagesHeader';
|
|
|
|
|
import MessagesWrapper from '@/views/Conversations/Online/MessagesWrapper';
|
|
|
|
|
import InputComposer from '@/views/Conversations/Online/InputComposer';
|
|
|
|
|
import { UnorderedListOutlined, MenuUnfoldOutlined, MenuFoldOutlined } from '@ant-design/icons';
|
|
|
|
|
import { useNavigate, useParams } from 'react-router-dom';
|
|
|
|
|
import useConversationStore from '@/stores/ConversationStore';
|
|
|
|
|
import useAuthStore from '@/stores/AuthStore';
|
|
|
|
|
import { useShallow } from 'zustand/react/shallow';
|
|
|
|
|
import InputAssign from './InputAssign';
|
|
|
|
|
|
|
|
|
|
import { fetchConversationsList, fetchConversationsSearch } from '@/actions/ConversationActions';
|
|
|
|
|
import { fetchConversationsSearch } from '@/actions/ConversationActions';
|
|
|
|
|
|
|
|
|
|
const { Content, Header, Footer } = Layout;
|
|
|
|
|
|
|
|
|
|