docbrown/app/assets/javascripts/utilities/buildArticleHTML.js.erb
Ben Halpern bce0b4fff6
Remove harsh video restriction and add video duration (#1811)
* Remove harsh video restriction and add video duration

* Fix video meta data and tests

* Modify video tests

* Rescue video duration fetch error

* Change log to puts in test
2019-02-16 17:42:44 -04:00

124 lines
6.6 KiB
Text

function buildArticleHTML(article) {
if (article && article.type_of == "podcast_episodes") {
return '<div class="single-article single-article-small-pic">\
<div class="small-pic">\
<a href="/'+article.podcast.slug+'" class="small-pic-link-wrapper">\
<img src="'+article.podcast.image_url+'" alt="'+article.podcast.title+' image">\
</a>\
</div>\
<a href="'+article.path+'" class="small-pic-link-wrapper index-article-link" id="article-link-'+article.id+'">\
<div class="content">\
<h3><span class="tag-identifier">podcast</span>'+article.title+'</h3>\
</div>\
</a>\
<h4><a href="/'+article.podcast.slug+'">'+article.podcast.title+'</a></h4>\
</div>';
}
else if (article) {
var container = document.getElementById("index-container");
var tagString = ""
var tagList = article.tag_list || article.cached_tag_list_array
if(tagList) {
tagList.forEach(function(t){
tagString = tagString + '<a href="/t/'+t+'"><span class="tag">#'+t+'</span></a>\n'
});
}
var commentsCountHTML = ""
if ((article.comments_count || '0') > 0 && article.class_name != "User") {
commentsCountHTML = '<div class="article-engagement-count comments-count"><a href="'+article.path+'#comments"><img src="<%= asset_path("comments-bubble.png") %>" alt="chat" /><span class="engagement-count-number">'+(article.comments_count || '0')+'</span></a></div>'
}
var flareTag = ""
if (container){
var currentTag = JSON.parse(container.dataset.params).tag
}
if (article.flare_tag && currentTag != article.flare_tag.name) {
flareTag = "<span class='tag-identifier' style='background:"+article.flare_tag.bg_color_hex+";color:"+article.flare_tag.text_color_hex+"'>#"+article.flare_tag.name+"</span>"
}
if (article.class_name == "PodcastEpisode"){
flareTag = "<span class='tag-identifier'>podcast</span>"
}
if (article.class_name == "User"){
flareTag = "<span class='tag-identifier' style='background:#5874d9;color:white;'>person</span>"
}
var rc = article.positive_reactions_count || article.reactions_count
var reactionsCountHTML = ''
if ((rc || '0') > 0 && article.class_name != "User") {
var reactionsCountHTML = '<div class="article-engagement-count reactions-count"><a href="'+article.path+'"><img src="<%= asset_path("reactions-stack.png") %>" alt="heart" /><span id="engagement-count-number-'+article.id+'" class="engagement-count-number">'+(rc || '0')+'</span></a></div>'
}
var picUrl = article.user.profile_image_90
var profileUsername = article.user.username
var orgHeadline = "";
if (article.organization && !document.getElementById("organization-article-index")) {
orgHeadline = '<div class="article-organization-headline"><a href="/'+article.organization.slug+'" class="article-organization-headline-inner"><img src="'+article.organization.profile_image_90+'" />'+article.organization.name+'</a><a class="org-headline-filler" href="'+article.path+'">&nbsp;</a></div>'
}
var bodyTextSnippet = "";
var commentsBlobSnippet = "";
var searchSnippetHTML = "";
if (article._snippetResult && article._snippetResult.body_text){
if (article._snippetResult.body_text.matchLevel != "none"){
var firstSnippetChar = article._snippetResult.body_text.value[0];
var startingEllipsis = ""
if (firstSnippetChar.toLowerCase() != firstSnippetChar.toUpperCase()){
startingEllipsis = "…"
}
bodyTextSnippet = startingEllipsis+article._snippetResult.body_text.value + "…"
}
if (article._snippetResult.comments_blob.matchLevel != "none" && bodyTextSnippet === ""){
var firstSnippetChar = article._snippetResult.comments_blob.value[0];
var startingEllipsis = ""
if (firstSnippetChar.toLowerCase() != firstSnippetChar.toUpperCase()){
startingEllipsis = "…"
}
commentsBlobSnippet = startingEllipsis+article._snippetResult.comments_blob.value + "… <i>(comments)</i>"
}
if ((bodyTextSnippet.length > 0 || commentsBlobSnippet.length > 0) && article.class_name == "Article"){
searchSnippetHTML = '<div class="search-snippet"><span>'+bodyTextSnippet+commentsBlobSnippet+'</span></div>'
}
}
var saveButton = '';
if (article.class_name === "Article") {
var saveButton = '<button class="article-engagement-count bookmark-engage" data-reactable-id="'+article.id+'">\
<span class="bm-success">SAVED</span>\
<span class="bm-initial">SAVE</span>\
</button>'
} else if (article.class_name === "User") {
var saveButton = '<button style="width: 122px" class="article-engagement-count bookmark-engage follow-action-button"\
data-info=\'{"id":'+article.id+',"className":"User"}\' data-follow-action-button>\
&nbsp;\
</button>'
}
var publishDate = '';
if (article.readable_publish_date) {
publishDate = '・'+article.readable_publish_date
}
var readingTimeHTML = '';
if (article.reading_time && article.class_name === "Article") {
readingTimeHTML = '<a href="'+article.path+'" class="article-reading-time">'+ (article.reading_time < 2 ? '1 min' : article.reading_time + ' min') +' read</a>'
} else if (article.class_name === "Article") {
readingTimeHTML = '<a href="'+article.path+'" class="article-reading-time">3 min read</a>'
}
var videoHTML = '';
if (article.cloudinary_video_url) {
videoHTML = '<a href="'+article.path+'" class="single-article-video-preview" style="background-image:url('+article.cloudinary_video_url+')"><div class="single-article-video-duration"><img src="<%= asset_path("video-camera.svg") %>" />'+article.video_duration_in_minutes+'</div></a>'
}
return '<div class="single-article single-article-small-pic">\
'+videoHTML+'\
'+orgHeadline+'\
<div class="small-pic">\
<a href="/'+profileUsername+'" class="small-pic-link-wrapper">\
<img src="'+picUrl+'" alt="'+profileUsername+' profile">\
</a>\
</div>\
<a href="'+article.path+'" class="small-pic-link-wrapper index-article-link" id="article-link-'+article.id+'">\
<div class="content">\
<h3>'+flareTag+filterXSS(article.title)+'</h3>\
'+searchSnippetHTML+'\
</div>\
</a>\
<h4><a href="/'+article.user.username+'">'+filterXSS(article.user.name)+publishDate+'</a></h4>\
<div class="tags">'+tagString+'</div>\
'+commentsCountHTML+reactionsCountHTML+readingTimeHTML+'\
'+saveButton+'</div>';
}
}