File size: 1,564 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
import {
DOCUMENT_HEAD_LINK_SET,
DOCUMENT_HEAD_META_SET,
DOCUMENT_HEAD_TITLE_SET,
DOCUMENT_HEAD_UNREAD_COUNT_SET,
} from 'calypso/state/action-types';
import 'calypso/state/document-head/init';
/**
* Returns an action object used in signalling that the document head title
* should be assigned to the specified value.
* @param {string} title Document title
* @returns {Object} Action object
*/
export function setDocumentHeadTitle( title ) {
return {
type: DOCUMENT_HEAD_TITLE_SET,
title,
};
}
/**
* Returns an action object used in signalling that the unread count to be
* shown in the document title should be assigned to the specified value.
* @param {number} count Unread count
* @returns {Object} Action object
*/
export function setDocumentHeadUnreadCount( count ) {
return {
type: DOCUMENT_HEAD_UNREAD_COUNT_SET,
count,
};
}
/**
* Returns an action object used in signalling that the specified link object
* should be included in the set of document head links.
* @param {Object | Array<Object>} link Link object (or array of link objects)
* @returns {Object} Action object
*/
export function setDocumentHeadLink( link ) {
return {
type: DOCUMENT_HEAD_LINK_SET,
link,
};
}
/**
* Returns an action object used in signalling that the specified meta object
* should be included in the set of document head metas.
* @param {Object} meta Meta object
* @returns {Object} Action object
*/
export function setDocumentHeadMeta( meta ) {
return {
type: DOCUMENT_HEAD_META_SET,
meta,
};
}
|