jf-roku/components/ItemGrid/GridItem.brs

151 lines
4.8 KiB
Plaintext
Raw Normal View History

sub init()
2021-07-09 20:08:32 +00:00
m.posterMask = m.top.findNode("posterMask")
m.itemPoster = m.top.findNode("itemPoster")
m.itemIcon = m.top.findNode("itemIcon")
m.posterText = m.top.findNode("posterText")
m.itemText = m.top.findNode("itemText")
m.backdrop = m.top.findNode("backdrop")
2021-07-09 20:08:32 +00:00
m.itemPoster.observeField("loadStatus", "onPosterLoadStatusChanged")
2022-12-10 22:25:00 +00:00
m.unplayedCount = m.top.findNode("unplayedCount")
m.unplayedEpisodeCount = m.top.findNode("unplayedEpisodeCount")
2021-07-09 20:08:32 +00:00
m.itemText.translation = [0, m.itemPoster.height + 7]
m.alwaysShowTitles = get_user_setting("itemgrid.alwaysShowTitles") = "true"
m.itemText.visible = m.alwaysShowTitles
' Add some padding space when Item Titles are always showing
if m.alwaysShowTitles then m.itemText.maxWidth = 250
2021-07-09 20:08:32 +00:00
'Parent is MarkupGrid and it's parent is the ItemGrid
m.topParent = m.top.GetParent().GetParent()
2021-07-09 20:08:32 +00:00
'Get the imageDisplayMode for these grid items
if m.topParent.imageDisplayMode <> invalid
m.itemPoster.loadDisplayMode = m.topParent.imageDisplayMode
2021-07-09 20:08:32 +00:00
end if
end sub
sub itemContentChanged()
2021-07-09 20:08:32 +00:00
' Set Random background colors from pallet
posterBackgrounds = m.global.constants.poster_bg_pallet
m.backdrop.blendColor = posterBackgrounds[rnd(posterBackgrounds.count()) - 1]
itemData = m.top.itemContent
if itemData = invalid then return
if itemData.type = "Movie"
m.itemPoster.uri = itemData.PosterUrl
m.itemIcon.uri = itemData.iconUrl
2021-07-09 20:08:32 +00:00
m.itemText.text = itemData.Title
else if itemData.type = "Series"
2022-12-10 22:25:00 +00:00
if itemData.json.UserData.UnplayedItemCount > 0
m.unplayedCount.visible = true
m.unplayedEpisodeCount.text = itemData.json.UserData.UnplayedItemCount
end if
2021-07-09 20:08:32 +00:00
m.itemPoster.uri = itemData.PosterUrl
m.itemIcon.uri = itemData.iconUrl
2021-07-09 20:08:32 +00:00
m.itemText.text = itemData.Title
else if itemData.type = "Boxset"
m.itemPoster.uri = itemData.PosterUrl
m.itemIcon.uri = itemData.iconUrl
2021-07-09 20:08:32 +00:00
m.itemText.text = itemData.Title
else if itemData.type = "TvChannel"
m.itemPoster.uri = itemData.PosterUrl
m.itemIcon.uri = itemData.iconUrl
2021-07-09 20:08:32 +00:00
m.itemText.text = itemData.Title
else if itemData.type = "Folder"
m.itemPoster.uri = itemData.PosterUrl
'm.itemIcon.uri = itemData.iconUrl
2021-07-09 20:08:32 +00:00
m.itemText.text = itemData.Title
m.itemPoster.loadDisplayMode = m.topParent.imageDisplayMode
2021-07-09 20:08:32 +00:00
else if itemData.type = "Video"
m.itemPoster.uri = itemData.PosterUrl
m.itemIcon.uri = itemData.iconUrl
2021-07-09 20:08:32 +00:00
m.itemText.text = itemData.Title
2022-02-06 15:37:02 +00:00
else if itemData.type = "Photo"
m.itemPoster.uri = itemData.PosterUrl
m.itemIcon.uri = itemData.iconUrl
2022-02-06 15:37:02 +00:00
m.itemText.text = itemData.Title
else if itemData.type = "Episode"
m.itemPoster.uri = itemData.PosterUrl
m.itemIcon.uri = itemData.iconUrl
m.itemText.text = itemData.json.SeriesName + " - " + itemData.Title
2022-05-14 02:35:50 +00:00
else if itemData.type = "MusicArtist"
m.itemPoster.uri = itemData.PosterUrl
m.itemText.text = itemData.Title
2022-06-09 23:56:40 +00:00
m.itemPoster.height = 290
m.itemPoster.width = 290
m.itemText.translation = [0, m.itemPoster.height + 7]
2022-06-09 23:56:40 +00:00
m.backdrop.height = 290
m.backdrop.width = 290
2022-10-02 18:23:42 +00:00
m.posterText.height = 200
m.posterText.width = 280
else if itemData.json.type = "MusicAlbum"
m.itemPoster.uri = itemData.PosterUrl
m.itemText.text = itemData.Title
m.itemPoster.height = 290
m.itemPoster.width = 290
m.itemText.translation = [0, m.itemPoster.height + 7]
m.backdrop.height = 290
m.backdrop.width = 290
m.posterText.height = 200
2022-06-09 23:56:40 +00:00
m.posterText.width = 280
2021-07-09 20:08:32 +00:00
else
print "Unhandled Grid Item Type: " + itemData.type
2021-07-09 20:08:32 +00:00
end if
'If Poster not loaded, ensure "blue box" is shown until loaded
if m.itemPoster.loadStatus <> "ready"
m.backdrop.visible = true
m.posterText.visible = true
end if
m.posterText.text = m.itemText.text
end sub
'
2020-06-11 06:57:31 +00:00
'Use FocusPercent to animate scaling of Poser Image
sub focusChanging()
2021-07-09 20:08:32 +00:00
scaleFactor = 0.85 + (m.top.focusPercent * 0.15)
m.posterMask.scale = [scaleFactor, scaleFactor]
2020-06-11 06:57:31 +00:00
end sub
'
'Display or hide title Visibility on focus change
sub focusChanged()
2021-07-09 20:08:32 +00:00
if m.top.itemHasFocus = true
m.itemText.visible = true
m.itemText.repeatCount = -1
2022-06-04 03:29:22 +00:00
m.posterMask.scale = [1, 1]
2021-07-09 20:08:32 +00:00
else
m.itemText.visible = m.alwaysShowTitles
2021-07-09 20:08:32 +00:00
m.itemText.repeatCount = 0
2022-06-04 03:29:22 +00:00
if m.topParent.alphaActive = true
m.posterMask.scale = [0.85, 0.85]
end if
2021-07-09 20:08:32 +00:00
end if
end sub
'Hide backdrop and text when poster loaded
sub onPosterLoadStatusChanged()
2021-07-09 20:08:32 +00:00
if m.itemPoster.loadStatus = "ready"
m.backdrop.visible = false
m.posterText.visible = false
end if
end sub