60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { defineMessages, useIntl } from 'react-intl';
|
|
import { useDispatch } from 'react-redux';
|
|
import { useHistory } from 'react-router-dom';
|
|
|
|
import { launchChat } from 'soapbox/actions/chats';
|
|
import AccountSearch from 'soapbox/components/account_search';
|
|
|
|
import { Card, CardTitle, Stack } from '../../components/ui';
|
|
|
|
import ChatBox from './components/chat-box';
|
|
import ChatList from './components/chat-list';
|
|
|
|
const messages = defineMessages({
|
|
title: { id: 'column.chats', defaultMessage: 'Messages' },
|
|
searchPlaceholder: { id: 'chats.search_placeholder', defaultMessage: 'Start a chat with…' },
|
|
});
|
|
|
|
const ChatIndex: React.FC = () => {
|
|
const intl = useIntl();
|
|
const dispatch = useDispatch();
|
|
const history = useHistory();
|
|
|
|
const [chat, setChat] = useState<any>(null);
|
|
|
|
const handleSuggestion = (accountId: string) => {
|
|
dispatch(launchChat(accountId, history, true));
|
|
};
|
|
|
|
const handleClickChat = (chat: any) => {
|
|
// history.push(`/chats/${chat.id}`);
|
|
setChat(chat);
|
|
};
|
|
|
|
return (
|
|
<Card className='p-0 h-[calc(100vh-176px)] overflow-hidden' variant='rounded'>
|
|
<div className='grid grid-cols-9 overflow-hidden h-full'>
|
|
<Stack className='col-span-3 p-6 bg-gradient-to-r from-white to-gray-100 overflow-hidden' space={6}>
|
|
<CardTitle title={intl.formatMessage(messages.title)} />
|
|
|
|
<AccountSearch
|
|
placeholder={intl.formatMessage(messages.searchPlaceholder)}
|
|
onSelected={handleSuggestion}
|
|
/>
|
|
|
|
<Stack className='-mx-3 flex-grow h-full'>
|
|
<ChatList onClickChat={handleClickChat} />
|
|
</Stack>
|
|
</Stack>
|
|
<Stack className='col-span-6 h-full overflow-hidden'>
|
|
{chat && (
|
|
<ChatBox chat={chat} onSetInputRef={() => {}} />
|
|
)}
|
|
</Stack>
|
|
</div>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default ChatIndex;
|