jf-roku/components/tvshows/TVEpisodes.brs

65 lines
1.7 KiB
Plaintext
Raw Normal View History

2020-02-23 04:47:00 +00:00
sub init()
2021-07-09 20:08:32 +00:00
m.top.optionsAvailable = false
m.rows = m.top.findNode("picker")
2022-06-09 20:51:04 +00:00
m.poster = m.top.findNode("seasonPoster")
m.Random = m.top.findNode("Random")
m.tvEpisodeRow = m.top.findNode("tvEpisodeRow")
m.rows.observeField("doneLoading", "updateSeason")
end sub
sub setSeasonLoading()
m.top.overhangTitle = tr("Loading...")
2020-02-23 04:47:00 +00:00
end sub
sub updateSeason()
2022-06-09 20:51:04 +00:00
imgParams = { "maxHeight": 450, "maxWidth": 300 }
m.poster.uri = ImageURL(m.top.seasonData.Id, "Primary", imgParams)
m.Random.visible = true
2021-07-09 20:08:32 +00:00
m.top.overhangTitle = m.top.seasonData.SeriesName + " - " + m.top.seasonData.name
2020-02-23 04:47:00 +00:00
end sub
function onKeyEvent(key as string, press as boolean) as boolean
2021-07-09 20:08:32 +00:00
handled = false
2022-06-09 20:51:04 +00:00
if key = "left" and not m.Random.hasFocus()
m.Random.setFocus(true)
return true
end if
if key = "right" and not m.tvEpisodeRow.hasFocus()
m.tvEpisodeRow.setFocus(true)
return true
end if
if key = "OK" or key = "play"
if m.Random.hasFocus()
randomEpisode = Rnd(m.rows.getChild(0).objects.items.count()) - 1
m.top.quickPlayNode = m.rows.getChild(0).objects.items[randomEpisode]
return true
end if
end if
focusedChild = m.top.focusedChild.focusedChild
if focusedChild.content = invalid then return handled
' OK needs to be handled on release...
proceed = false
if key = "OK"
proceed = true
end if
if press and key = "play" or proceed = true
itemToPlay = focusedChild.content.getChild(focusedChild.rowItemFocused[0]).getChild(0)
if itemToPlay <> invalid and itemToPlay.id <> ""
m.top.quickPlayNode = itemToPlay
2021-07-09 20:08:32 +00:00
end if
handled = true
end if
2021-07-09 20:08:32 +00:00
return handled
end function