File size: 998 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import { createElement } from 'react';
import { sectionify } from 'calypso/lib/route';
import {
trackPageLoad,
trackUpdatesLoaded,
trackScrollPage,
} from 'calypso/reader/controller-helper';
import LikedPostsStream from 'calypso/reader/liked-stream/main';
const analyticsPageTitle = 'Reader';
const exported = {
likes( context, next ) {
const basePath = sectionify( context.path );
const fullAnalyticsPageTitle = analyticsPageTitle + ' > My Likes';
const mcKey = 'postlike';
const streamKey = 'likes';
trackPageLoad( basePath, fullAnalyticsPageTitle, mcKey );
context.primary = (
<div>
{ createElement( LikedPostsStream, {
key: 'liked',
streamKey,
trackScrollPage: trackScrollPage.bind(
null,
basePath,
fullAnalyticsPageTitle,
analyticsPageTitle,
mcKey
),
onUpdatesShown: trackUpdatesLoaded.bind( null, mcKey ),
} ) }
</div>
);
next();
},
};
export default exported;
export const { likes } = exported;
|