|
|
import debugFactory from 'debug'; |
|
|
import { logServerEvent } from 'calypso/lib/analytics/statsd-utils'; |
|
|
import trackScrollPage from 'calypso/lib/track-scroll-page'; |
|
|
import wpcom from 'calypso/lib/wp'; |
|
|
import performanceMark from 'calypso/server/lib/performance-mark'; |
|
|
import { THEME_FILTERS_ADD } from 'calypso/state/themes/action-types'; |
|
|
import { requestThemes } from 'calypso/state/themes/actions'; |
|
|
import { DEFAULT_THEME_QUERY } from 'calypso/state/themes/constants'; |
|
|
import { getThemeFilters, getThemesForQuery } from 'calypso/state/themes/selectors'; |
|
|
import { getAnalyticsData } from './helpers'; |
|
|
import LoggedOutComponent from './logged-out'; |
|
|
|
|
|
const debug = debugFactory( 'calypso:themes' ); |
|
|
|
|
|
export function getProps( context ) { |
|
|
const { category, tier, filter, vertical, view } = context.params; |
|
|
|
|
|
const { analyticsPath, analyticsPageTitle } = getAnalyticsData( context.path, context.params ); |
|
|
|
|
|
const boundTrackScrollPage = function () { |
|
|
trackScrollPage( analyticsPath, analyticsPageTitle, 'Themes' ); |
|
|
}; |
|
|
|
|
|
return { |
|
|
category, |
|
|
tier, |
|
|
filter, |
|
|
vertical, |
|
|
analyticsPageTitle, |
|
|
analyticsPath, |
|
|
search: context.query.s, |
|
|
isCollectionView: view === 'collection', |
|
|
pathName: context.pathname, |
|
|
trackScrollPage: boundTrackScrollPage, |
|
|
}; |
|
|
} |
|
|
|
|
|
export function loggedOut( context, next ) { |
|
|
performanceMark( context, 'themesLoggedOut' ); |
|
|
if ( context.isServerSide && Object.keys( context.query ).length > 0 ) { |
|
|
|
|
|
return next(); |
|
|
} |
|
|
|
|
|
const props = getProps( context ); |
|
|
|
|
|
context.primary = <LoggedOutComponent { ...props } />; |
|
|
next(); |
|
|
} |
|
|
|
|
|
export function fetchThemeData( context, next ) { |
|
|
if ( context.cachedMarkup ) { |
|
|
debug( 'Skipping theme data fetch' ); |
|
|
return next(); |
|
|
} |
|
|
performanceMark( context, 'fetchThemeData' ); |
|
|
|
|
|
const siteId = 'wpcom'; |
|
|
const query = { |
|
|
search: context.query.s, |
|
|
tier: context.params.tier, |
|
|
filter: [ context.params.filter, context.params.vertical ].filter( Boolean ).join( ',' ), |
|
|
page: 1, |
|
|
number: DEFAULT_THEME_QUERY.number, |
|
|
}; |
|
|
|
|
|
const themes = getThemesForQuery( context.store.getState(), siteId, query ); |
|
|
|
|
|
logServerEvent( 'themes', { |
|
|
name: `ssr.get_themes_fetch_cache.${ themes ? 'hit' : 'miss' }`, |
|
|
type: 'counting', |
|
|
} ); |
|
|
|
|
|
if ( themes ) { |
|
|
debug( 'found theme data in cache' ); |
|
|
return next(); |
|
|
} |
|
|
|
|
|
context.store |
|
|
.dispatch( requestThemes( siteId, query, context.lang ) ) |
|
|
.then( next ) |
|
|
.catch( next ); |
|
|
} |
|
|
|
|
|
export function fetchThemeFilters( context, next ) { |
|
|
if ( context.cachedMarkup ) { |
|
|
debug( 'Skipping theme filter data fetch' ); |
|
|
return next(); |
|
|
} |
|
|
performanceMark( context, 'fetchThemeFilters' ); |
|
|
|
|
|
const { store } = context; |
|
|
const hasFilters = Object.keys( getThemeFilters( store.getState() ) ).length > 0; |
|
|
|
|
|
logServerEvent( 'themes', { |
|
|
name: `ssr.get_theme_filters_fetch_cache.${ hasFilters ? 'hit' : 'miss' }`, |
|
|
type: 'counting', |
|
|
} ); |
|
|
|
|
|
if ( hasFilters ) { |
|
|
debug( 'found theme filters in cache' ); |
|
|
return next(); |
|
|
} |
|
|
|
|
|
wpcom.req |
|
|
.get( '/theme-filters', { |
|
|
apiVersion: '1.2', |
|
|
locale: context.lang, |
|
|
} ) |
|
|
.then( ( filters ) => { |
|
|
store.dispatch( { type: THEME_FILTERS_ADD, filters } ); |
|
|
next(); |
|
|
} ) |
|
|
.catch( next ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export function redirectSearchAndType( { res, params: { site, search, tier } } ) { |
|
|
const target = '/themes/' + [ tier, site ].filter( Boolean ).join( '/' ); |
|
|
if ( search ) { |
|
|
res.redirect( `${ target }?s=${ search }` ); |
|
|
} else { |
|
|
res.redirect( target ); |
|
|
} |
|
|
} |
|
|
|
|
|
export function redirectFilterAndType( { res, params: { site, filter, tier } } ) { |
|
|
let parts; |
|
|
if ( filter ) { |
|
|
parts = [ tier, 'filter', filter, site ]; |
|
|
} else { |
|
|
parts = [ tier, site ]; |
|
|
} |
|
|
res.redirect( '/themes/' + parts.filter( Boolean ).join( '/' ) ); |
|
|
} |
|
|
|
|
|
export function redirectToThemeDetails( redirect, site, theme, section, next ) { |
|
|
|
|
|
if ( theme.includes( '.' ) || Number.isInteger( parseInt( theme, 10 ) ) ) { |
|
|
return next(); |
|
|
} |
|
|
|
|
|
const path = '/theme/' + [ theme, section, site ].filter( Boolean ).join( '/' ); |
|
|
redirect( path ); |
|
|
} |
|
|
|