26 lines
672 B
Plaintext
26 lines
672 B
Plaintext
import "pkg:/source/api/Image.brs"
|
|
import "pkg:/source/api/baserequest.brs"
|
|
import "pkg:/source/utils/config.brs"
|
|
|
|
sub setFields()
|
|
json = m.top.json
|
|
|
|
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 = json.Type
|
|
|
|
setPoster()
|
|
end sub
|
|
|
|
sub setPoster()
|
|
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 }
|
|
m.top.posterURL = ImageURL(m.top.json.id, "Primary", imgParams)
|
|
end if
|
|
end sub
|