jf-roku/components/data/FolderData.brs

25 lines
779 B
Plaintext
Raw Normal View History

2020-10-30 17:23:28 +00:00
sub setFields()
json = m.top.json
m.top.id = json.id
m.top.Title = json.name
m.top.Type = "Folder"
m.top.iconUrl = "pkg:/images/media_type_icons/folder_white.png"
' This is a temporary measure to avoid displaying landscape photos
2021-07-09 20:08:32 +00:00
' in GridItem components that only support portrait. It will be fixed
' after the ItemGrid is reworked.
if m.top.json.Type <> "CollectionFolder"
setPoster()
end if
2021-04-19 02:27:11 +00:00
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 }
m.top.posterURL = ImageURL(m.top.json.id, "Primary", imgParams)
end if
2020-10-30 17:23:28 +00:00
end sub