module.exports = function() { this.compilePostCommentsHtml = (comments, next_comment, post_id, post_url, morechildren_ids, post_author) => { return new Promise((resolve, reject) => { (async () => { let comments_html if(comments.author !== undefined && comments.body_html !== undefined) { let classlist = [] let submitter_link = '' if(post_author === comments.author) { classlist.push('submitter') submitter_link = `[S]` } if(comments.author === 'AutoModerator') { classlist.push('green') } comments_html = `
${comments.author}

${kFormatter(comments.ups)} points

${timeDifference(comments.created)}

${comments.author}${comments.author === post_author ? submitter_link : ''}

${kFormatter(comments.ups)} points

${timeDifference(comments.created)}

${unescape(comments.body_html)}
` } else { if(comments.children) { if(comments.children.length > 0) { let parent_id = comments.parent_id.split('_')[1] if(post_id === parent_id && !morechildren_ids) { comments_html = `
` } else { if(!morechildren_ids) { comments_html = ` ` } else { morechildren_ids = JSON.parse(morechildren_ids) comments_html = `
` } } } else { comments_html = ` continue this thread ` } } } if(comments.replies) { for(var i = 0; i < comments.replies.length; i++) { let comment = comments.replies[i] if(comment.type !== 'load_more') { let classlist = [] let submitter_link = '' if(post_author === comment.author) { classlist.push('submitter') submitter_link = `[S]` } if(comment.author === 'AutoModerator') { classlist.push('green') } comments_html += `
${comment.author}

${kFormatter(comment.ups)} points

${timeDifference(comment.created)}

${comment.author}${comment.author === post_author ? submitter_link : ''}

${kFormatter(comment.ups)} points

${timeDifference(comment.created)}

${unescape(comment.body_html)}
` let replies_html = '' if(comment.replies) { if(comment.replies.length) { for(var j = 0; j < comment.replies.length; j++) { let next_reply if(comment.replies[j+1]) { next_reply = comment.replies[j+1] } replies_html += await compilePostCommentsHtml(comment.replies[j], next_reply, post_id, post_url, null, post_author) } } } comments_html += replies_html + '
' } else { if(comment.children.length > 0) { let parent_id = comment.parent_id.split('_')[1] comments_html += ` ` } else { comments_html += ` ` } } } } let next_comment_parent_id = null if(next_comment) { if(next_comment.parent_id) { next_comment_parent_id = next_comment.parent_id.split('_')[1] } } if((comments.replies || comments.author !== undefined) && next_comment_parent_id !== comments.id) { comments_html += `
` } next_comment_parent_id = null resolve(comments_html) })() }) } }