jf-roku/components/tvshows/TVShowDetails.brs

168 lines
4.6 KiB
Plaintext
Raw Normal View History

2019-05-03 12:48:59 +00:00
sub init()
2021-07-09 20:08:32 +00:00
m.top.optionsAvailable = false
main = m.top.findNode("toplevel")
main.translation = [96, 175]
2022-03-13 08:46:03 +00:00
m.extrasSlider = m.top.findNode("tvSeasonExtras")
'm.extrasSlider.translation = [30,1014]
m.extrasSlider.visible = true
2019-05-03 12:48:59 +00:00
end sub
sub itemContentChanged()
2021-07-09 20:08:32 +00:00
' Updates video metadata
' TODO - make things use item rather than itemData
item = m.top.itemContent
itemData = item.json
m.top.findNode("tvshowPoster").uri = m.top.itemContent.posterURL
' Handle all "As Is" fields
m.top.overhangTitle = itemData.name
setFieldText("releaseYear", itemData.productionYear)
setFieldText("officialRating", itemData.officialRating)
if itemData.communityRating <> invalid
m.top.findNode("star").visible = true
setFieldText("communityRating", itemData.communityRating)
' m.top.findNode("communityRating").text = str(int(itemData.communityRating*10)/10)
else
m.top.findNode("star").visible = false
end if
setFieldText("overview", itemData.overview)
if type(itemData.RunTimeTicks) = "LongInteger"
setFieldText("runtime", stri(getRuntime()) + " mins")
end if
setFieldText("history", getHistory())
if itemData.genres.count() > 0
setFieldText("genres", itemData.genres.join(", "))
end if
for each person in itemData.people
if person.type = "Director"
exit for
end if
end for
if itemData.taglines.count() > 0
setFieldText("tagline", itemData.taglines[0])
2019-05-03 12:48:59 +00:00
end if
end sub
sub setFieldText(field, value)
2021-07-09 20:08:32 +00:00
node = m.top.findNode(field)
if node = invalid or value = invalid then return
' Handle non strings... Which _shouldn't_ happen, but hey
if type(value) = "roInt" or type(value) = "Integer"
value = str(value).trim()
else if type(value) = "roFloat" or type(value) = "Float"
value = str(value).trim()
else if type(value) <> "roString" and type(value) <> "String"
value = ""
end if
node.text = value
end sub
function getRuntime() as integer
2021-07-09 20:08:32 +00:00
itemData = m.top.itemContent.json
2021-07-09 20:08:32 +00:00
' A tick is .1ms, so 1/10,000,000 for ticks to seconds,
' then 1/60 for seconds to minutess... 1/600,000,000
return round(itemData.RunTimeTicks / 600000000.0)
end function
function getEndTime() as string
2021-07-09 20:08:32 +00:00
itemData = m.top.itemContent.json
2021-07-09 20:08:32 +00:00
date = CreateObject("roDateTime")
duration_s = int(itemData.RunTimeTicks / 10000000.0)
date.fromSeconds(date.asSeconds() + duration_s)
date.toLocalTime()
2021-07-09 20:08:32 +00:00
return formatTime(date)
end function
function getHistory() as string
2021-07-09 20:08:32 +00:00
itemData = m.top.itemContent.json
' Aired Fridays at 9:30 PM on ABC (US)
airwords = invalid
studio = invalid
if itemData.status = "Ended"
verb = "Aired"
else
verb = "Airs"
end if
airdays = itemData.airdays
airtime = itemData.airtime
if airtime <> invalid and airdays.count() = 1
airwords = airdays[0] + " at " + airtime
end if
if itemData.studios.count() > 0
studio = itemData.studios[0].name
end if
if studio = invalid and airwords = invalid
return ""
end if
words = verb
if airwords <> invalid
words = words + " " + airwords
end if
if studio <> invalid
words = words + " on " + studio
end if
return words
end function
2019-05-03 12:48:59 +00:00
function round(f as float) as integer
2021-07-09 20:08:32 +00:00
' BrightScript only has a "floor" round
' This compares floor to floor + 1 to find which is closer
m = int(f)
n = m + 1
x = abs(f - m)
y = abs(f - n)
if y > x
return m
else
return n
end if
end function
2022-03-13 08:46:03 +00:00
function onKeyEvent(key as string, press as boolean) as boolean
if not press then return false
overview = m.top.findNode("overview")
2022-03-13 08:46:03 +00:00
topGrp = m.top.findNode("seasons")
bottomGrp = m.top.findNode("extrasGrid")
if key = "down" and overview.hasFocus()
topGrp.setFocus(true)
return true
else if key = "down" and topGrp.hasFocus()
2022-03-13 08:46:03 +00:00
bottomGrp.setFocus(true)
m.top.findNode("VertSlider").reverse = false
m.top.findNode("extrasFader").reverse = false
m.top.findNode("pplAnime").control = "start"
return true
else if key = "up" and bottomGrp.hasFocus()
2022-03-13 08:46:03 +00:00
if bottomGrp.itemFocused = 0
m.top.findNode("VertSlider").reverse = true
m.top.findNode("extrasFader").reverse = true
m.top.findNode("pplAnime").control = "start"
topGrp.setFocus(true)
return true
end if
else if key = "up" and topGrp.hasFocus()
overview.setFocus(true)
return true
2022-03-13 08:46:03 +00:00
end if
2022-03-13 08:46:03 +00:00
return false
end function