mirror of
				https://git.sr.ht/~cadence/cloudtube
				synced 2025-10-27 19:59:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| mixin video_list_item(className, video, instanceOrigin, options = {})
 | |
|   div(class={[className]: true, "video-list-item--watched": video.watched})
 | |
|     - let link = `/watch?v=${video.videoId}`
 | |
|     if options.continuous
 | |
|       - link += `&continuous=1&session-watched=${sessionWatchedNext}`
 | |
|     a(href=link tabindex="-1").thumbnail
 | |
|       img(src=`/vi/${video.videoId}/mqdefault.jpg` width=320 height=180 alt="").image
 | |
|       if video.second__lengthText != undefined
 | |
|         span.duration= video.second__lengthText
 | |
|     .info
 | |
|       div.title: a(href=link).title-link= video.title
 | |
|       div.author-line
 | |
|         a(href=`/channel/${video.authorId}`).author= video.author
 | |
|         - const views = video.viewCountText || video.second__viewCountText
 | |
|         if views
 | |
|           = ` • `
 | |
|           span.views= views
 | |
|         if video.publishedText
 | |
|           = ` • `
 | |
|           span.published= video.publishedText
 | |
|         if options.showMarkWatched
 | |
|           form(method="post" action=`/formapi/markwatched/${video.videoId}`).mark-watched
 | |
|             = ` • `
 | |
|             button.mark-watched__button Mark watched
 | |
|       if video.descriptionHtml
 | |
|         div.description!= video.descriptionHtml
 | 
