jf-roku/components/ItemGrid/ItemGrid.brs

368 lines
10 KiB
Plaintext
Raw Normal View History

sub init()
2020-08-08 20:43:37 +00:00
m.options = m.top.findNode("options")
2020-11-23 17:13:57 +00:00
m.tvGuide = invalid
2020-08-08 20:43:37 +00:00
m.itemGrid = m.top.findNode("itemGrid")
m.backdrop = m.top.findNode("backdrop")
m.newBackdrop = m.top.findNode("backdropTransition")
2020-07-11 13:37:33 +00:00
m.emptyText = m.top.findNode("emptyText")
m.swapAnimation = m.top.findNode("backroundSwapAnimation")
m.swapAnimation.observeField("state", "swapDone")
m.loadedRows = 0
m.loadedItems = 0
m.data = CreateObject("roSGNode", "ContentNode")
m.itemGrid.content = m.data
m.itemGrid.setFocus(true)
m.itemGrid.observeField("itemFocused", "onItemFocused")
m.itemGrid.observeField("itemSelected", "onItemSelected")
m.newBackdrop.observeField("loadStatus", "newBGLoaded")
'Background Image Queued for loading
m.queuedBGUri = ""
'Item sort - maybe load defaults from user prefs?
m.sortField = "SortName"
m.sortAscending = true
2020-10-24 22:50:07 +00:00
m.filter = "All"
m.loadItemsTask = createObject("roSGNode", "LoadItemsTask2")
end sub
'
'Load initial set of Data
sub loadInitialItems()
2020-06-15 16:05:48 +00:00
2020-07-11 13:37:33 +00:00
if m.top.parentItem.backdropUrl <> invalid then
SetBackground(m.top.parentItem.backdropUrl)
end if
2020-06-15 16:05:48 +00:00
m.loadItemsTask.itemId = m.top.parentItem.Id
m.loadItemsTask.sortField = m.sortField
m.loadItemsTask.sortAscending = m.sortAscending
2020-10-24 22:50:07 +00:00
m.loadItemsTask.filter = m.filter
m.loadItemsTask.startIndex = 0
2020-06-15 16:05:48 +00:00
if m.top.parentItem.collectionType = "movies" then
m.loadItemsTask.itemType = "Movie"
else if m.top.parentItem.collectionType = "tvshows" then
m.loadItemsTask.itemType = "Series"
else if m.top.parentItem.collectionType = "livetv" then
m.loadItemsTask.itemType = "LiveTV"
'For LiveTV, we want to "Fit" the item images, not zoom
m.top.imageDisplayMode = "scaleToFit"
if get_user_setting("display.livetv.landing") = "guide" then
showTvGuid()
end if
2021-04-10 10:20:02 +00:00
else if m.top.parentItem.collectionType = "CollectionFolder" OR m.top.parentItem.collectionType = "boxsets" or m.top.parentItem.Type = "Folder" or m.top.parentItem.Type = "Channel" then
2020-10-30 17:23:28 +00:00
' Non-recursive, to not show subfolder contents
m.loadItemsTask.recursive = false
2020-10-27 17:12:18 +00:00
else if m.top.parentItem.collectionType = "Channel" then
m.top.imageDisplayMode = "scaleToFit"
else
print "[ItemGrid] Unknown Type: " m.top.parentItem
2020-06-15 16:05:48 +00:00
end if
m.loadItemsTask.observeField("content", "ItemDataLoaded")
m.loadItemsTask.control = "RUN"
SetUpOptions()
end sub
2020-08-16 16:17:41 +00:00
' Data to display when options button selected
sub SetUpOptions()
options = {}
2020-11-23 17:13:57 +00:00
options.filter = []
2020-08-16 16:17:41 +00:00
'Movies
if m.top.parentItem.collectionType = "movies" then
2020-10-24 22:50:07 +00:00
options.views = [
{ "Title": tr("Movies"), "Name": "movies" },
]
options.sort = [
2020-08-17 15:48:23 +00:00
{ "Title": tr("TITLE"), "Name": "SortName" },
{ "Title": tr("IMDB_RATING"), "Name": "CommunityRating" },
{ "Title": tr("CRITIC_RATING"), "Name": "CriticRating" },
{ "Title": tr("DATE_ADDED"), "Name": "DateCreated" },
{ "Title": tr("DATE_PLAYED"), "Name": "DatePlayed" },
{ "Title": tr("OFFICIAL_RATING"), "Name": "OfficialRating" },
{ "Title": tr("PLAY_COUNT"), "Name": "PlayCount" },
{ "Title": tr("RELEASE_DATE"), "Name": "PremiereDate" },
{ "Title": tr("RUNTIME"), "Name": "Runtime" }
]
2020-10-24 22:50:07 +00:00
options.filter = [
2020-10-24 22:59:41 +00:00
{ "Title": tr("All"), "Name": "All" },
2020-10-24 22:50:07 +00:00
{ "Title": tr("Favorites"), "Name": "Favorites" }
]
'Boxsets
else if m.top.parentItem.collectionType = "boxsets" then
options.views = [{ "Title": tr("Shows"), "Name": "shows" }]
options.sort = [
{ "Title": tr("TITLE"), "Name": "SortName" },
{ "Title": tr("DATE_ADDED"), "Name": "DateCreated" },
{ "Title": tr("DATE_PLAYED"), "Name": "DatePlayed" },
{ "Title": tr("RELEASE_DATE"), "Name": "PremiereDate" },
]
options.filter = [
{ "Title": tr("All"), "Name": "All" },
{ "Title": tr("Favorites"), "Name": "Favorites" }
]
2020-08-16 16:17:41 +00:00
'TV Shows
else if m.top.parentItem.collectionType = "tvshows" then
options.views = [{ "Title": tr("Shows"), "Name": "shows" }]
options.sort = [
2020-08-17 15:48:23 +00:00
{ "Title": tr("TITLE"), "Name": "SortName" },
{ "Title": tr("IMDB_RATING"), "Name": "CommunityRating" },
{ "Title": tr("DATE_ADDED"), "Name": "DateCreated" },
{ "Title": tr("DATE_PLAYED"), "Name": "DatePlayed" },
{ "Title": tr("OFFICIAL_RATING"), "Name": "OfficialRating" },
{ "Title": tr("RELEASE_DATE"), "Name": "PremiereDate" },
]
2020-10-30 17:23:28 +00:00
options.filter = []
'Live TV
else if m.top.parentItem.collectionType = "livetv" then
2020-11-23 17:13:57 +00:00
options.views = [
{"Title": tr("Channels"), "Name": "livetv" },
{"Title": tr("TV Guide"), "Name": "tvGuide", "Selected": get_user_setting("display.livetv.landing") = "guide" }
2020-11-23 17:13:57 +00:00
]
options.sort = [
{ "Title": tr("TITLE"), "Name": "SortName" }
]
2020-10-30 17:23:28 +00:00
options.filter = []
2020-10-27 17:12:18 +00:00
else
2020-11-23 17:13:57 +00:00
options.views = [
{"Title": tr("Default"), "Name": "default" }
]
2020-10-27 17:12:18 +00:00
options.sort = [
{ "Title": tr("TITLE"), "Name": "SortName" }
]
2020-10-30 17:23:28 +00:00
options.filter = []
end if
for each o in options.sort
if o.Name = m.sortField then
o.Selected = true
o.Ascending = m.sortAscending
end if
end for
2020-10-24 22:59:41 +00:00
for each o in options.filter
if o.Name = m.filter then
o.Selected = true
end if
end for
m.options.options = options
end sub
'
'Handle loaded data, and add to Grid
sub ItemDataLoaded(msg)
itemData = msg.GetData()
m.loadItemsTask.unobserveField("content")
m.loadItemsTask.content = []
if itemData = invalid then
m.Loading = false
return
end if
for each item in itemData
m.data.appendChild(item)
end for
'Update the stored counts
m.loadedItems = m.itemGrid.content.getChildCount()
m.loadedRows = m.loadedItems / m.itemGrid.numColumns
m.Loading = false
2020-07-11 13:37:33 +00:00
'If there are no items to display, show message
if m.loadedItems = 0 then
m.emptyText.text = tr("NO_ITEMS").Replace("%1", m.top.parentItem.Type)
m.emptyText.visible = true
end if
m.itemGrid.setFocus(true)
end sub
'
'Set Background Image
sub SetBackground(backgroundUri as string)
'If a new image is being loaded, or transitioned to, store URL to load next
if m.swapAnimation.state <> "stopped" or m.newBackdrop.loadStatus = "loading" then
m.queuedBGUri = backgroundUri
return
end if
m.newBackdrop.uri = backgroundUri
end sub
'
'Handle new item being focused
sub onItemFocused()
focusedRow = CInt(m.itemGrid.itemFocused / m.itemGrid.numColumns) + 1
itemInt = m.itemGrid.itemFocused
2020-07-11 13:37:33 +00:00
' If no selected item, set background to parent backdrop
if itemInt = -1 then
return
end if
' Set Background to item backdrop
SetBackground(m.itemGrid.content.getChild(m.itemGrid.itemFocused).backdropUrl)
' Load more data if focus is within last 3 rows, and there are more items to load
if focusedRow >= m.loadedRows - 3 and m.loadeditems < m.loadItemsTask.totalRecordCount then
loadMoreData()
end if
end sub
'
'When Image Loading Status changes
sub newBGLoaded()
'If image load was sucessful, start the fade swap
if m.newBackdrop.loadStatus = "ready"
m.swapAnimation.control = "start"
end if
end sub
'
'Swap Complete
sub swapDone()
if m.swapAnimation.state = "stopped" then
'Set main BG node image and hide transitioning node
m.backdrop.uri = m.newBackdrop.uri
m.backdrop.opacity = 0.25
m.newBackdrop.opacity = 0
'If there is another one to load
if m.newBackdrop.uri <> m.queuedBGUri and m.queuedBGUri <> "" then
SetBackground(m.queuedBGUri)
m.queuedBGUri = ""
end if
end if
end sub
'
'Load next set of items
sub loadMoreData()
if m.Loading = true then return
m.Loading = true
m.loadItemsTask.startIndex = m.loadedItems
m.loadItemsTask.observeField("content", "ItemDataLoaded")
m.loadItemsTask.control = "RUN"
end sub
'
'Item Selected
sub onItemSelected()
m.top.selectedItem = m.itemGrid.content.getChild(m.itemGrid.itemSelected)
2020-08-08 20:43:37 +00:00
end sub
'
'Check if options updated and any reloading required
sub optionsClosed()
2020-11-23 17:13:57 +00:00
if m.options.view = "tvGuide" then
showTVGuid()
2020-11-23 17:13:57 +00:00
return
else if m.tvGuide <> invalid then
' Try to hide the TV Guide
m.top.removeChild(m.tvGuide)
end if
2020-10-26 18:27:53 +00:00
reload = false
if m.options.sortField <> m.sortField or m.options.sortAscending <> m.sortAscending then
m.sortField = m.options.sortField
m.sortAscending = m.options.sortAscending
2020-10-26 18:27:53 +00:00
reload = true
end if
if m.options.filter <> m.filter then
2020-10-24 22:50:07 +00:00
m.filter = m.options.filter
2020-10-26 18:27:53 +00:00
reload = true
end if
if reload
2020-10-24 22:50:07 +00:00
m.loadedRows = 0
m.loadedItems = 0
m.data = CreateObject("roSGNode", "ContentNode")
m.itemGrid.content = m.data
loadInitialItems()
end if
m.itemGrid.setFocus(true)
end sub
sub showTVGuid()
m.top.signalBeacon("EPGLaunchInitiate") ' Required Roku Performance monitoring
if m.tvGuide = invalid then
m.tvGuide = createObject("roSGNode", "Schedule")
endif
m.tvGuide.observeField("watchChannel", "onChannelSelected")
m.top.appendChild(m.tvGuide)
m.tvGuide.lastFocus.setFocus(true)
end sub
2020-11-23 17:13:57 +00:00
sub onChannelSelected(msg)
node = msg.getRoSGNode()
m.top.lastFocus = lastFocusedChild(node)
if node.watchChannel <> invalid then
' Clone the node when it's reused/update in the TimeGrid it doesn't automatically start playing
m.top.selectedItem = node.watchChannel.clone(false)
end if
end sub
2020-08-08 20:43:37 +00:00
function onKeyEvent(key as string, press as boolean) as boolean
if not press then return false
if key = "options"
if m.options.visible = true then
m.options.visible = false
2020-11-23 17:13:57 +00:00
m.top.removeChild(m.options)
optionsClosed()
else
m.options.visible = true
2020-11-23 17:13:57 +00:00
m.top.appendChild(m.options)
m.options.setFocus(true)
end if
return true
else if key = "back" then
if m.options.visible = true then
m.options.visible = false
optionsClosed()
return true
end if
2020-12-08 09:08:19 +00:00
else if key = "play" then
markupGrid = m.top.getChild(2)
itemToPlay = markupGrid.content.getChild(markupGrid.itemFocused)
if itemToPlay <> invalid and (itemToPlay.type = "Movie" or itemToPlay.type = "Episode") then
m.top.quickPlayNode = itemToPlay
end if
return true
end if
2020-08-08 20:43:37 +00:00
return false
end function