jf-roku/components/data/VideoData.bs

26 lines
707 B
Plaintext
Raw Normal View History

import "pkg:/source/api/Image.brs"
import "pkg:/source/api/baserequest.brs"
import "pkg:/source/utils/config.brs"
sub setFields()
2021-07-09 20:08:32 +00:00
json = m.top.json
2021-07-09 20:08:32 +00:00
m.top.id = json.id
m.top.Title = json.name
m.top.Description = json.overview
m.top.favorite = json.UserData.isFavorite
m.top.watched = json.UserData.played
m.top.Type = "Video"
2021-07-09 20:08:32 +00:00
setPoster()
end sub
sub setPoster()
2021-07-09 20:08:32 +00:00
if m.top.image <> invalid
m.top.posterURL = m.top.image.url
else if m.top.json.ImageTags.Primary <> invalid
imgParams = { "maxHeight": 440, "maxWidth": 295, "Tag": m.top.json.ImageTags.Primary }
2021-07-09 20:08:32 +00:00
m.top.posterURL = ImageURL(m.top.json.id, "Primary", imgParams)
end if
2022-05-30 12:57:40 +00:00
end sub