File size: 11,387 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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
import { isEnabled } from '@automattic/calypso-config';
import {
COMMENT_COUNTS_REQUEST,
COMMENT_REQUEST,
COMMENTS_CHANGE_STATUS,
COMMENTS_DELETE,
COMMENTS_EDIT,
COMMENTS_EMPTY,
COMMENTS_LIKE,
COMMENTS_LIST_REQUEST,
COMMENTS_RECEIVE,
COMMENTS_RECEIVE_ERROR,
COMMENTS_REPLY_WRITE,
COMMENTS_REQUEST,
COMMENTS_SET_ACTIVE_REPLY,
COMMENTS_TOGGLE_INLINE_EXPANDED,
COMMENTS_UNLIKE,
COMMENTS_WRITE,
} from 'calypso/state/action-types';
import { getSiteComment } from 'calypso/state/comments/selectors';
import { READER_EXPAND_COMMENTS } from 'calypso/state/reader/action-types';
import { NUMBER_OF_COMMENTS_PER_FETCH } from './constants';
import 'calypso/state/data-layer/wpcom/comments';
import 'calypso/state/data-layer/wpcom/sites/comment-counts';
import 'calypso/state/data-layer/wpcom/sites/comments';
import 'calypso/state/data-layer/wpcom/sites/posts/replies';
import 'calypso/state/comments/init';
/**
* Creates an action that requests a single comment for a given site.
* @param {Object} options options object.
* @param {number} options.siteId Site identifier
* @param {number} options.commentId Comment identifier
* @param {Object} options.query API call parameters
* @returns {Object} Action that requests a single comment
*/
export const requestComment = ( { siteId, commentId, query = {} } ) => ( {
type: COMMENT_REQUEST,
siteId,
commentId,
query,
} );
/**
* Creates an action for receiving comments for a specific post on a site.
* @param {Object} options options object.
* @param {number} options.siteId site identifier
* @param {number} options.postId post identifier
* @param {Array} options.comments the list of comments received
* @param {boolean} options.commentById were the comments retrieved by ID directly?
* @returns {Object} Action for receiving comments
*/
export const receiveComments = ( { siteId, postId, comments, commentById = false } ) => ( {
type: COMMENTS_RECEIVE,
siteId,
postId,
comments,
commentById,
} );
/**
* Creates an action for receiving comment errors.
* @param {Object} options options object.
* @param {number} options.siteId site identifier
* @param {number} options.commentId comment identifier
* @returns {Object} Action for receiving comment errors
*/
export const receiveCommentsError = ( { siteId, commentId } ) => ( {
type: COMMENTS_RECEIVE_ERROR,
siteId,
commentId,
} );
/**
* Creates an action that requests comments for a given post
* @param {Object} options options object.
* @param {number} options.siteId site identifier
* @param {number} options.postId post identifier
* @param {string} options.direction
* @param {boolean} options.isPoll
* @param {string} options.status status filter. Defaults to approved posts
* @returns {Function} action that requests comments for a given post
*/
export function requestPostComments( {
siteId,
postId,
status = 'approved',
direction = 'before',
isPoll = false,
} ) {
if ( ! isEnabled( 'comments/filters-in-posts' ) ) {
status = 'approved';
}
return {
type: COMMENTS_REQUEST,
siteId,
postId,
direction,
isPoll,
query: {
order: direction === 'before' ? 'DESC' : 'ASC',
number: NUMBER_OF_COMMENTS_PER_FETCH,
status,
author_wpcom_data: true, // For self hosted Jetpack sites include wpcom author data if available.
},
};
}
/**
* Creates an action that request a list of comments for a given query.
* Except the two query properties descibed here, this function accepts all query parameters
* listed in the API docs:
* @see https://developer.wordpress.com/docs/api/1.1/get/sites/%24site/comments/
* @param {Object} query API call parameters
* @param {string} query.listType Type of list to return (required as 'site')
* @param {number} query.siteId Site identifier
* @returns {Object} Action that requests a comment list
*/
export const requestCommentsList = ( query ) => ( {
type: COMMENTS_LIST_REQUEST,
query,
} );
/**
* Creates an action that requests comment counts for a given site.
* @param {number} siteId Site identifier
* @param {number} [postId] Post identifier
* @returns {Object} Action that requests comment counts by site.
*/
export const requestCommentCounts = ( siteId, postId ) => ( {
type: COMMENT_COUNTS_REQUEST,
siteId,
postId,
} );
/**
* Creates an action that permanently deletes a comment
* or removes a comment placeholder from the state
* @param {number} siteId site identifier
* @param {number} postId post identifier
* @param {number|string} commentId comment or comment placeholder identifier
* @param {Object} options Action options
* @param {boolean} options.showSuccessNotice Announce the delete success with a notice (default: true)
* @param {Object} refreshCommentListQuery Forces requesting a fresh copy of a comments page with these query parameters.
* @returns {Object} action that deletes a comment
*/
export const deleteComment =
(
siteId,
postId,
commentId,
options = { showSuccessNotice: true },
refreshCommentListQuery = null
) =>
( dispatch, getState ) => {
const siteComment = getSiteComment( getState(), siteId, commentId );
const previousStatus = siteComment && siteComment.status;
dispatch( {
type: COMMENTS_DELETE,
siteId,
postId,
commentId,
options,
refreshCommentListQuery,
meta: {
comment: {
previousStatus,
},
dataLayer: {
trackRequest: true,
},
},
} );
};
/**
* Creates an action that permanently empties all comments
* of a specified status
* @param {number} siteId site identifier
* @param {string} status Status of comments to delete (spam or trash)
* @param {Object} options Action options
* @param {boolean} options.showSuccessNotice Announce the delete success with a notice (default: true)
* @param {Object} refreshCommentListQuery Forces requesting a fresh copy of a comments page with these query parameters.
* @returns {Object} action that empties comments
*/
export const emptyComments = (
siteId,
status,
options = { showSuccessNotice: true },
refreshCommentListQuery = null
) => ( {
type: COMMENTS_EMPTY,
siteId,
status,
options,
refreshCommentListQuery,
meta: {
dataLayer: {
trackRequest: true,
},
},
} );
/**
* Creates a write comment action for a siteId and postId
* @param {string} commentText text of the comment
* @param {number} siteId site identifier
* @param {number} postId post identifier
* @returns {Function} a thunk that creates a comment for a given post
*/
export const writeComment = ( commentText, siteId, postId ) => ( {
type: COMMENTS_WRITE,
siteId,
postId,
commentText,
} );
/**
* Creates a reply to comment action for a siteId, postId and commentId
* @param {string} commentText text of the comment
* @param {number} siteId site identifier
* @param {number} postId post identifier
* @param {number} parentCommentId parent comment identifier
* @param {Object} refreshCommentListQuery Forces requesting a fresh copy of a comments page with these query parameters.
* @returns {Function} a thunk that creates a comment for a given post
*/
export const replyComment = (
commentText,
siteId,
postId,
parentCommentId,
refreshCommentListQuery = null
) => ( {
type: COMMENTS_REPLY_WRITE,
siteId,
postId,
parentCommentId,
commentText,
refreshCommentListQuery,
} );
/**
* Creates a thunk that likes a comment
* @param {number} siteId site identifier
* @param {number} postId post identifier
* @param {number} commentId comment identifier
* @returns {Function} think that likes a comment
*/
export const likeComment = ( siteId, postId, commentId ) => ( {
type: COMMENTS_LIKE,
siteId,
postId,
commentId,
} );
/**
* Creates an action that unlikes a comment
* @param {number} siteId site identifier
* @param {number} postId post identifier
* @param {number} commentId comment identifier
* @returns {Object} Action that unlikes a comment
*/
export const unlikeComment = ( siteId, postId, commentId ) => ( {
type: COMMENTS_UNLIKE,
siteId,
postId,
commentId,
} );
/**
* Creates an action that changes a comment status.
* @param {number} siteId Site identifier
* @param {number} postId Post identifier
* @param {number} commentId Comment identifier
* @param {string} status New status
* @param {Object} refreshCommentListQuery Forces requesting a fresh copy of a comments page with these query parameters.
* @returns {Object} Action that changes a comment status
*/
export const changeCommentStatus =
( siteId, postId, commentId, status, refreshCommentListQuery = null ) =>
( dispatch, getState ) => {
const siteComment = getSiteComment( getState(), siteId, commentId );
const previousStatus = siteComment && siteComment.status;
dispatch( {
type: COMMENTS_CHANGE_STATUS,
siteId,
postId,
commentId,
status,
refreshCommentListQuery,
meta: {
comment: {
previousStatus,
},
dataLayer: {
trackRequest: true,
},
},
} );
};
/**
* @typedef {Object} Comment
* @property {number} ID specific API version for request
* @property {Author} author comment author
* @property {string} content comment content
* @property {Date} date date the comment was created
* @property {string} status status of the comment
*/
/**
* @typedef {Object} Author
* @property {string} name Full name of the comment author
* @property {string} url Address of the commenter site or blog
*/
/**
* Creates an action that edits a comment.
* @param {number} siteId Site identifier
* @param {number} postId Post identifier
* @param {number} commentId Comment identifier
* @param {Comment} comment New comment data
* @returns {Object} Action that edits a comment
*/
export const editComment = ( siteId, postId, commentId, comment ) => ( {
type: COMMENTS_EDIT,
siteId,
postId,
commentId,
comment,
} );
/**
* Expand selected comments to the level of displayType. It's important to note that a comment will
* only get expanded and cannot unexpand from this action.
* That means comments can only go in the direction of: hidden --> singleLine --> excerpt --> full
* @param {Object} options options object.
* @param {number} options.siteId siteId for the comments to expand.
* @param {Array<number>} options.commentIds list of commentIds to expand.
* @param {number} options.postId postId for the comments to expand.
* @param {string} options.displayType which displayType to set the comment to.
* @returns {Object} reader expand comments action
*/
export const expandComments = ( { siteId, commentIds, postId, displayType } ) => ( {
type: READER_EXPAND_COMMENTS,
payload: { siteId, commentIds, postId, displayType },
} );
/**
* Creates an action that sets the active reply for a given site ID and post ID
* This is used on the front end to show a reply box under the specified comment.
* @param {Object} options options object.
* @param {number} options.siteId site identifier
* @param {number} options.postId post identifier
* @param {number} options.commentId comment identifier
* @returns {Object} Action to set active reply
*/
export const setActiveReply = ( { siteId, postId, commentId } ) => ( {
type: COMMENTS_SET_ACTIVE_REPLY,
payload: {
siteId,
postId,
commentId,
},
} );
export const toggleInlineCommentsExpanded = ( { siteId, postId, streamKey } ) => ( {
type: COMMENTS_TOGGLE_INLINE_EXPANDED,
payload: {
siteId,
postId,
streamKey,
},
} );
|