|
|
import config from '@automattic/calypso-config'; |
|
|
import { withStorageKey } from '@automattic/state-utils'; |
|
|
import { isEqual } from 'lodash'; |
|
|
import { |
|
|
DOCUMENT_HEAD_LINK_SET, |
|
|
DOCUMENT_HEAD_META_SET, |
|
|
DOCUMENT_HEAD_TITLE_SET, |
|
|
DOCUMENT_HEAD_UNREAD_COUNT_SET, |
|
|
ROUTE_SET, |
|
|
} from 'calypso/state/action-types'; |
|
|
import { combineReducers, withSchemaValidation } from 'calypso/state/utils'; |
|
|
import { titleSchema, unreadCountSchema, linkSchema, metaSchema } from './schema'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_META_STATE = config( 'meta' ); |
|
|
|
|
|
export const title = withSchemaValidation( titleSchema, ( state = '', action ) => { |
|
|
switch ( action.type ) { |
|
|
case DOCUMENT_HEAD_TITLE_SET: |
|
|
return action.title; |
|
|
} |
|
|
|
|
|
return state; |
|
|
} ); |
|
|
|
|
|
export const unreadCount = withSchemaValidation( unreadCountSchema, ( state = 0, action ) => { |
|
|
switch ( action.type ) { |
|
|
case DOCUMENT_HEAD_UNREAD_COUNT_SET: |
|
|
return action.count; |
|
|
case ROUTE_SET: |
|
|
return 0; |
|
|
} |
|
|
|
|
|
return state; |
|
|
} ); |
|
|
|
|
|
export const meta = withSchemaValidation( metaSchema, ( state = DEFAULT_META_STATE, action ) => { |
|
|
switch ( action.type ) { |
|
|
case DOCUMENT_HEAD_META_SET: |
|
|
return action.meta; |
|
|
} |
|
|
|
|
|
return state; |
|
|
} ); |
|
|
|
|
|
export const link = withSchemaValidation( linkSchema, ( state = [], action ) => { |
|
|
switch ( action.type ) { |
|
|
case DOCUMENT_HEAD_LINK_SET: { |
|
|
if ( ! action.link ) { |
|
|
return state; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const links = Array.isArray( action.link ) ? action.link : [ action.link ]; |
|
|
return links.reduce( ( accuState, newLink ) => { |
|
|
const isNew = ! accuState.some( ( accuLink ) => isEqual( accuLink, newLink ) ); |
|
|
return isNew ? [ ...accuState, newLink ] : accuState; |
|
|
}, state ); |
|
|
} |
|
|
} |
|
|
|
|
|
return state; |
|
|
} ); |
|
|
|
|
|
const combinedReducer = combineReducers( { |
|
|
link, |
|
|
meta, |
|
|
title, |
|
|
unreadCount, |
|
|
} ); |
|
|
|
|
|
export default withStorageKey( 'documentHead', combinedReducer ); |
|
|
|