show how long ago stream started

このコミットが含まれているのは:
Andrew Zhao 2021-02-24 23:06:50 -05:00
コミット 295e5c9731
2個のファイルの変更6行の追加1行の削除

ファイルの表示

@ -534,7 +534,8 @@ struct Video
end
def live_now
info["videoDetails"]["isLiveContent"]?.try &.as_bool || false
info["microformat"]?.try &.["playerMicroformatRenderer"]?
.try &.["liveBroadcastDetails"]?.try &.["isLiveNow"]?.try &.as_bool || false
end
def is_listed

ファイルの表示

@ -81,6 +81,10 @@
<h3>
<%= video.premiere_timestamp.try { |t| translate(locale, "Premieres in `x`", recode_date((t - Time.utc).ago, locale)) } %>
</h3>
<% elsif video.live_now %>
<h3>
<%= video.premiere_timestamp.try { |t| translate(locale, "Started streaming `x` ago", recode_date((Time.utc - t).ago, locale)) } %>
</h3>
<% end %>
</div>