Chats: Get chats from paneData

loading-indicator-on-tls^2
Alex Gleason 2020-08-25 16:00:27 -05:00
rodzic d6b3268da4
commit 6e0bac3d43
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
2 zmienionych plików z 31 dodań i 6 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
import React from 'react';
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
import { injectIntl, FormattedMessage } from 'react-intl';
import { injectIntl } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { fetchChats } from 'soapbox/actions/chats';
import ChatListAccount from './chat_list_account';

Wyświetl plik

@ -7,10 +7,33 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
import { getSettings } from 'soapbox/actions/settings';
import ChatList from './chat_list';
import { FormattedMessage } from 'react-intl';
import { makeGetChat } from 'soapbox/selectors';
// import { fromJS } from 'immutable';
const mapStateToProps = state => ({
panesData: getSettings(state).get('chats'),
});
const addChatsToPanes = (state, panesData) => {
const getChat = makeGetChat();
const newPanes = panesData.get('panes').map(pane => {
const chat = getChat(state, { id: pane.get('chat_id') });
return pane.set('chat', chat);
});
return panesData.set('panes', newPanes);
};
const mapStateToProps = state => {
const panesData = getSettings(state).get('chats');
// const panesData = fromJS({
// panes: [
// { chat_id: '9ySohyWw0Gecd3WHKK', state: 'open' },
// ],
// });
return {
panesData: addChatsToPanes(state, panesData),
};
};
export default @connect(mapStateToProps)
@injectIntl
@ -23,11 +46,13 @@ class ChatPanes extends ImmutablePureComponent {
}
renderChatPane = (pane, i) => {
// const chat = getChat(pane.get('chat_id'))
const chat = pane.get('chat');
if (!chat) return null;
return (
<div key={i} className='pane'>
<div className='pane__header'>
// {chat.getIn(['account', 'acct'])}
{chat.getIn(['account', 'acct'])}
</div>
<div className='pane__content'>
// TODO: Show the chat messages