File size: 1,062 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 |
import {
SUPPORT_ARTICLE_DIALOG_OPEN,
SUPPORT_ARTICLE_DIALOG_CLOSE,
} from 'calypso/state/action-types';
import 'calypso/state/inline-support-article/init';
/**
* Shows the given support article (by postId) in a dialog.
* @param {Object} options Action options
* @param {number} options.postId The id of the support article
* @param {string} options.postUrl The URL of the support article
* @param {string} options.actionLabel Label of the action
* @param {string} options.actionUrl URL of the action
* @param {number} options.blogId The blog id of the support article
* @returns {Object} Action
*/
export function openSupportArticleDialog( {
postId,
postUrl = null,
actionLabel = null,
actionUrl = null,
blogId = null,
} ) {
return {
type: SUPPORT_ARTICLE_DIALOG_OPEN,
postId,
postUrl,
actionLabel,
actionUrl,
blogId,
};
}
/**
* Closes/hides the support article dialog
* @returns {Object} Action
*/
export function closeSupportArticleDialog() {
return { type: SUPPORT_ARTICLE_DIALOG_CLOSE };
}
|