| import { useTranslate, fixMe } from 'i18n-calypso'; | |
| import { get } from 'lodash'; | |
| import ConversationsEmptyContent from 'calypso/blocks/conversations/empty'; | |
| import DocumentHead from 'calypso/components/data/document-head'; | |
| import NavigationHeader from 'calypso/components/navigation-header'; | |
| import Stream from 'calypso/reader/stream'; | |
| import ConversationsIntro from './intro'; | |
| import './stream.scss'; | |
| const emptyContent = () => <ConversationsEmptyContent />; | |
| export default function ( props ) { | |
| const isInternal = get( props, 'store.id' ) === 'conversations-a8c'; | |
| const intro = () => <ConversationsIntro isInternal={ isInternal } />; | |
| const translate = useTranslate(); | |
| const ConversationTitle = () => { | |
| return ( | |
| <DocumentHead | |
| title={ translate( '%s ‹ Reader', { | |
| args: props.title ?? 'Conversations', | |
| comment: '%s is the section name. For example: "My Likes"', | |
| textOnly: true, | |
| } ) } | |
| /> | |
| ); | |
| }; | |
| return ( | |
| <> | |
| <Stream | |
| key="conversations" | |
| streamKey={ props.streamKey } | |
| className="conversations__stream" | |
| followSource="conversations" | |
| useCompactCards | |
| trackScrollPage={ props.trackScrollPage } | |
| emptyContent={ emptyContent } | |
| intro={ intro } | |
| > | |
| <ConversationTitle title={ props.title } /> | |
| <NavigationHeader | |
| title={ translate( 'Conversations' ) } | |
| subtitle={ fixMe( { | |
| text: 'Check in on your open discussions.', | |
| newCopy: translate( 'Check in on your open discussions.' ), | |
| oldCopy: translate( 'Monitor all of your ongoing discussions.' ), | |
| } ) } | |
| className="conversations__header" | |
| /> | |
| </Stream> | |
| </> | |
| ); | |
| } | |