jf-roku/components/home/HomeRows.brs

475 lines
14 KiB
Plaintext
Raw Normal View History

sub init()
2021-07-09 20:08:32 +00:00
m.top.itemComponentName = "HomeItem"
' how many rows are visible on the screen
m.top.numRows = 2
2021-07-09 20:08:32 +00:00
m.top.rowFocusAnimationStyle = "fixedFocusWrap"
m.top.vertFocusAnimationStyle = "fixedFocus"
2021-07-09 20:08:32 +00:00
m.top.showRowLabel = [true]
m.top.rowLabelOffset = [0, 20]
m.top.showRowCounter = [true]
2021-07-09 20:08:32 +00:00
updateSize()
2021-07-09 20:08:32 +00:00
m.top.setfocus(true)
2021-07-09 20:08:32 +00:00
m.top.observeField("rowItemSelected", "itemSelected")
2020-04-04 22:24:47 +00:00
2021-07-09 20:08:32 +00:00
' Load the Libraries from API via task
m.LoadLibrariesTask = createObject("roSGNode", "LoadItemsTask")
m.LoadLibrariesTask.observeField("content", "onLibrariesLoaded")
2022-11-05 00:37:54 +00:00
' set up tesk nodes for other rows
m.LoadContinueTask = createObject("roSGNode", "LoadItemsTask")
m.LoadContinueTask.itemsToLoad = "continue"
2022-11-05 00:37:54 +00:00
2021-07-09 20:08:32 +00:00
m.LoadNextUpTask = createObject("roSGNode", "LoadItemsTask")
m.LoadNextUpTask.itemsToLoad = "nextUp"
2022-11-05 00:37:54 +00:00
2021-12-18 06:31:28 +00:00
m.LoadOnNowTask = createObject("roSGNode", "LoadItemsTask")
2021-12-20 14:57:22 +00:00
m.LoadOnNowTask.itemsToLoad = "onNow"
2022-11-05 00:37:54 +00:00
m.LoadFavoritesTask = createObject("roSGNode", "LoadItemsTask")
m.LoadFavoritesTask.itemsToLoad = "favorites"
end sub
sub loadLibraries()
2021-07-09 20:08:32 +00:00
m.LoadLibrariesTask.control = "RUN"
end sub
sub updateSize()
2021-07-09 20:08:32 +00:00
m.top.translation = [111, 180]
itemHeight = 330
2021-07-09 20:08:32 +00:00
'Set width of Rows to cut off at edge of Safe Zone
m.top.itemSize = [1703, itemHeight]
2021-07-09 20:08:32 +00:00
' spacing between rows
m.top.itemSpacing = [0, 105]
2021-07-09 20:08:32 +00:00
' spacing between items in a row
m.top.rowItemSpacing = [20, 0]
2021-07-09 20:08:32 +00:00
m.top.visible = true
end sub
2020-03-24 07:37:45 +00:00
sub onLibrariesLoaded()
' save data for other functions
2021-07-09 20:08:32 +00:00
m.libraryData = m.LoadLibrariesTask.content
m.LoadLibrariesTask.unobserveField("content")
m.LoadLibrariesTask.content = []
' create My Media, Continue Watching, and Next Up rows
2021-07-09 20:08:32 +00:00
content = CreateObject("roSGNode", "ContentNode")
2023-01-10 00:38:50 +00:00
mediaRow = content.CreateChild("HomeRow")
mediaRow.title = tr("My Media")
2023-01-10 00:38:50 +00:00
continueRow = content.CreateChild("HomeRow")
continueRow.title = tr("Continue Watching")
2023-01-10 00:38:50 +00:00
nextUpRow = content.CreateChild("HomeRow")
nextUpRow.title = tr("Next Up >")
2022-11-05 00:37:54 +00:00
favoritesRow = content.CreateChild("HomeRow")
favoritesRow.title = tr("Favorites")
sizeArray = [
[464, 311], ' My Media
[464, 331], ' Continue Watching
2022-11-05 00:37:54 +00:00
[464, 331], ' Next Up
[464, 331] ' Favorites
]
2022-11-05 00:37:54 +00:00
haveLiveTV = false
2023-01-19 02:14:23 +00:00
' validate library data
if isValid(m.libraryData) and m.libraryData.count() > 0
userConfig = m.global.userConfig
2022-11-05 00:37:54 +00:00
' populate My Media row
filteredMedia = filterNodeArray(m.libraryData, "id", userConfig.MyMediaExcludes)
for each item in filteredMedia
mediaRow.appendChild(item)
2021-07-09 20:08:32 +00:00
end for
2022-11-05 00:37:54 +00:00
' create a "Latest In" row for each library
filteredLatest = filterNodeArray(m.libraryData, "id", userConfig.LatestItemsExcludes)
2021-07-09 20:08:32 +00:00
for each lib in filteredLatest
2023-01-19 02:14:23 +00:00
if lib.collectionType <> "boxsets" and lib.collectionType <> "livetv" and lib.json.CollectionType <> "Program"
latestInRow = content.CreateChild("HomeRow")
latestInRow.title = tr("Latest in") + " " + lib.name + " >"
sizeArray.Push([464, 331])
else if lib.collectionType = "livetv"
' If we have Live TV, add "On Now"
onNowRow = content.CreateChild("HomeRow")
onNowRow.title = tr("On Now")
sizeArray.Push([464, 331])
haveLiveTV = true
2021-07-09 20:08:32 +00:00
end if
end for
end if
m.top.rowItemSize = sizeArray
m.top.content = content
2023-04-13 19:41:11 +00:00
' Load the Continue Watching Data
m.LoadContinueTask.observeField("content", "updateContinueItems")
m.LoadContinueTask.control = "RUN"
' Load the Favorites Data
m.LoadFavoritesTask.observeField("content", "updateFavoritesItems")
m.LoadFavoritesTask.control = "RUN"
' If we have Live TV access, load "On Now" data
if haveLiveTV
m.LoadOnNowTask.observeField("content", "updateOnNowItems")
m.LoadOnNowTask.control = "RUN"
end if
end sub
sub updateHomeRows()
2022-10-06 16:01:36 +00:00
if m.global.playstateTask.state = "run"
m.global.playstateTask.observeField("state", "updateHomeRows")
2023-04-14 12:29:35 +00:00
return
2022-10-06 16:01:36 +00:00
end if
2023-04-12 21:26:45 +00:00
2023-04-14 12:29:35 +00:00
m.global.playstateTask.unobserveField("state")
2023-04-13 19:41:11 +00:00
m.LoadContinueTask.observeField("content", "updateContinueItems")
m.LoadContinueTask.control = "RUN"
end sub
2022-11-05 00:37:54 +00:00
sub updateFavoritesItems()
itemData = m.LoadFavoritesTask.content
m.LoadFavoritesTask.unobserveField("content")
m.LoadFavoritesTask.content = []
if itemData = invalid then return
homeRows = m.top.content
rowIndex = getRowIndex("Favorites")
if itemData.count() < 1
if isValid(rowIndex)
2022-11-05 00:37:54 +00:00
' remove the row
deleteFromSizeArray(rowIndex)
homeRows.removeChildIndex(rowIndex)
end if
else
' remake row using the new data
row = CreateObject("roSGNode", "HomeRow")
row.title = tr("Favorites")
itemSize = [464, 331]
for each item in itemData
usePoster = true
if lcase(item.type) = "episode" or lcase(item.type) = "audio" or lcase(item.type) = "musicartist"
usePoster = false
end if
item.usePoster = usePoster
item.imageWidth = row.imageWidth
row.appendChild(item)
end for
if rowIndex = invalid
' insert new row under "My Media"
updateSizeArray(itemSize, 1)
homeRows.insertChild(row, 1)
else
' replace the old row
homeRows.replaceChild(row, rowIndex)
end if
end if
end sub
sub updateContinueItems()
itemData = m.LoadContinueTask.content
m.LoadContinueTask.unobserveField("content")
m.LoadContinueTask.content = []
2020-03-24 07:37:45 +00:00
if itemData = invalid then return
homeRows = m.top.content
continueRowIndex = getRowIndex("Continue Watching")
if itemData.count() < 1
if isValid(continueRowIndex)
' remove the row
deleteFromSizeArray(continueRowIndex)
homeRows.removeChildIndex(continueRowIndex)
2021-07-09 20:08:32 +00:00
end if
else
' remake row using the new data
row = CreateObject("roSGNode", "HomeRow")
row.title = tr("Continue Watching")
itemSize = [464, 331]
for each item in itemData
if isValid(item.json) and isValid(item.json.UserData) and isValid(item.json.UserData.PlayedPercentage)
item.PlayedPercentage = item.json.UserData.PlayedPercentage
end if
item.usePoster = row.usePoster
item.imageWidth = row.imageWidth
row.appendChild(item)
end for
2020-03-24 07:37:45 +00:00
if continueRowIndex = invalid
' insert new row under "My Media"
updateSizeArray(itemSize, 1)
homeRows.insertChild(row, 1)
else
' replace the old row
homeRows.replaceChild(row, continueRowIndex)
2021-07-09 20:08:32 +00:00
end if
end if
2023-04-13 19:41:11 +00:00
m.LoadNextUpTask.observeField("content", "updateNextUpItems")
m.LoadNextUpTask.control = "RUN"
end sub
sub updateNextUpItems()
itemData = m.LoadNextUpTask.content
m.LoadNextUpTask.unobserveField("content")
m.LoadNextUpTask.content = []
if itemData = invalid then return
homeRows = m.top.content
nextUpRowIndex = getRowIndex("Next Up >")
if itemData.count() < 1
if isValid(nextUpRowIndex)
' remove the row
deleteFromSizeArray(nextUpRowIndex)
homeRows.removeChildIndex(nextUpRowIndex)
end if
else
' remake row using the new data
row = CreateObject("roSGNode", "HomeRow")
row.title = tr("Next Up") + " >"
itemSize = [464, 331]
for each item in itemData
item.usePoster = row.usePoster
item.imageWidth = row.imageWidth
row.appendChild(item)
end for
if nextUpRowIndex = invalid
' insert new row under "Continue Watching"
continueRowIndex = getRowIndex("Continue Watching")
if isValid(continueRowIndex)
updateSizeArray(itemSize, continueRowIndex + 1)
homeRows.insertChild(row, continueRowIndex + 1)
else
' insert it under My Media
updateSizeArray(itemSize, 1)
homeRows.insertChild(row, 1)
end if
else
' replace the old row
homeRows.replaceChild(row, nextUpRowIndex)
2021-07-09 20:08:32 +00:00
end if
2020-03-24 07:37:45 +00:00
end if
2021-07-09 20:08:32 +00:00
' consider home screen loaded when above rows are loaded
if m.global.app_loaded = false
m.top.signalBeacon("AppLaunchComplete") ' Roku Performance monitoring
m.global.app_loaded = true
2020-03-24 07:37:45 +00:00
end if
2023-01-26 22:45:20 +00:00
2023-04-13 19:41:11 +00:00
' create task nodes for "Latest In" rows
userConfig = m.global.userConfig
filteredLatest = filterNodeArray(m.libraryData, "id", userConfig.LatestItemsExcludes)
for each lib in filteredLatest
if lib.collectionType <> "livetv" and lib.collectionType <> "boxsets" and lib.json.CollectionType <> "Program"
loadLatest = createObject("roSGNode", "LoadItemsTask")
loadLatest.itemsToLoad = "latest"
loadLatest.itemId = lib.id
metadata = { "title": lib.name }
metadata.Append({ "contentType": lib.json.CollectionType })
loadLatest.metadata = metadata
loadLatest.observeField("content", "updateLatestItems")
loadLatest.control = "RUN"
end if
end for
end sub
sub updateLatestItems(msg)
2021-07-09 20:08:32 +00:00
itemData = msg.GetData()
2020-03-24 07:37:45 +00:00
2021-07-09 20:08:32 +00:00
node = msg.getRoSGNode()
node.unobserveField("content")
node.content = []
if itemData = invalid then return
2020-03-24 07:37:45 +00:00
2021-07-09 20:08:32 +00:00
homeRows = m.top.content
rowIndex = getRowIndex(tr("Latest in") + " " + node.metadata.title + " >")
if itemData.count() < 1
' remove row
if isValid(rowIndex)
deleteFromSizeArray(rowIndex)
homeRows.removeChildIndex(rowIndex)
2021-07-09 20:08:32 +00:00
end if
else
' remake row using new data
row = CreateObject("roSGNode", "HomeRow")
row.title = tr("Latest in") + " " + node.metadata.title + " >"
row.usePoster = true
' Handle specific types with different item widths
if node.metadata.contentType = "movies"
row.imageWidth = 180
itemSize = [188, 331]
else if node.metadata.contentType = "music"
row.imageWidth = 261
itemSize = [261, 331]
else
row.imageWidth = 464
itemSize = [464, 331]
2021-07-09 20:08:32 +00:00
end if
for each item in itemData
item.usePoster = row.usePoster
item.imageWidth = row.imageWidth
row.appendChild(item)
2021-07-09 20:08:32 +00:00
end for
if rowIndex = invalid
' append new row
updateSizeArray(itemSize)
homeRows.appendChild(row)
else
' replace the old row
updateSizeArray(itemSize, rowIndex, "replace")
homeRows.replaceChild(row, rowIndex)
end if
2020-03-24 07:37:45 +00:00
end if
end sub
sub updateOnNowItems()
itemData = m.LoadOnNowTask.content
m.LoadOnNowTask.unobserveField("content")
m.LoadOnNowTask.content = []
if itemData = invalid then return
homeRows = m.top.content
onNowRowIndex = getRowIndex("On Now")
if itemData.count() < 1
if isValid(onNowRowIndex)
' remove the row
deleteFromSizeArray(onNowRowIndex)
homeRows.removeChildIndex(onNowRowIndex)
end if
else
' remake row using the new data
row = CreateObject("roSGNode", "HomeRow")
row.title = tr("On Now")
itemSize = [464, 331]
for each item in itemData
item.usePoster = row.usePoster
item.imageWidth = row.imageWidth
row.appendChild(item)
end for
if onNowRowIndex = invalid
' insert new row under "My Media"
updateSizeArray(itemSize, 1)
homeRows.insertChild(row, 1)
else
' replace the old row
homeRows.replaceChild(row, onNowRowIndex)
end if
end if
end sub
2020-03-25 04:20:52 +00:00
function getRowIndex(rowTitle as string)
2021-07-09 20:08:32 +00:00
rowIndex = invalid
for i = 1 to m.top.content.getChildCount() - 1
' skip row 0 since it's always "My Media"
tmpRow = m.top.content.getChild(i)
if tmpRow.title = rowTitle
rowIndex = i
exit for
end if
end for
2021-07-09 20:08:32 +00:00
return rowIndex
2020-03-25 04:20:52 +00:00
end function
2020-12-06 04:59:32 +00:00
sub updateSizeArray(rowItemSize, rowIndex = invalid, action = "insert")
2021-07-09 20:08:32 +00:00
sizeArray = m.top.rowItemSize
' append by default
if rowIndex = invalid
rowIndex = sizeArray.count()
2020-03-24 07:37:45 +00:00
end if
2021-07-09 20:08:32 +00:00
newSizeArray = []
for i = 0 to sizeArray.count()
if rowIndex = i
if action = "replace"
newSizeArray.Push(rowItemSize)
2021-07-09 20:08:32 +00:00
else if action = "insert"
newSizeArray.Push(rowItemSize)
if isValid(sizeArray[i])
newSizeArray.Push(sizeArray[i])
2021-07-09 20:08:32 +00:00
end if
end if
else if isValid(sizeArray[i])
newSizeArray.Push(sizeArray[i])
2021-07-09 20:08:32 +00:00
end if
end for
m.top.rowItemSize = newSizeArray
end sub
sub deleteFromSizeArray(rowIndex)
2021-07-09 20:08:32 +00:00
updateSizeArray([0, 0], rowIndex, "delete")
end sub
sub itemSelected()
2021-07-09 20:08:32 +00:00
m.top.selectedItem = m.top.content.getChild(m.top.rowItemSelected[0]).getChild(m.top.rowItemSelected[1])
end sub
2020-04-04 22:24:47 +00:00
function onKeyEvent(key as string, press as boolean) as boolean
2021-07-09 20:08:32 +00:00
handled = false
if press
if key = "play"
itemToPlay = m.top.content.getChild(m.top.rowItemFocused[0]).getChild(m.top.rowItemFocused[1])
if isValid(itemToPlay) and (itemToPlay.type = "Movie" or itemToPlay.type = "Episode")
2021-07-09 20:08:32 +00:00
m.top.quickPlayNode = itemToPlay
end if
handled = true
end if
if key = "replay"
m.top.jumpToRowItem = [m.top.rowItemFocused[0], 0]
end if
end if
2021-07-09 20:08:32 +00:00
return handled
2020-04-04 22:24:47 +00:00
end function
2020-12-06 04:59:32 +00:00
function filterNodeArray(nodeArray as object, nodeKey as string, excludeArray as object) as object
2021-07-09 20:08:32 +00:00
if excludeArray.IsEmpty() then return nodeArray
newNodeArray = []
for each node in nodeArray
excludeThisNode = false
for each exclude in excludeArray
if node[nodeKey] = exclude
excludeThisNode = true
end if
end for
if excludeThisNode = false
newNodeArray.Push(node)
end if
2020-12-06 04:59:32 +00:00
end for
2021-07-09 20:08:32 +00:00
return newNodeArray
2022-05-30 12:57:40 +00:00
end function