components_data_ChannelData.bs

import "pkg:/source/api/baserequest.bs"
import "pkg:/source/api/Image.bs"
import "pkg:/source/utils/config.bs"

sub setFields()
  json = m.top.json
  m.top.id = json.id
  if isValid(json.number)
    m.top.title = `${tr("CH")} ${json.number} ${json.name}`
  else
    m.top.title = json.name
  end if
  m.top.live = true
  m.top.Type = "TvChannel"
  setPoster()
end sub

sub setPoster()
  if m.top.image <> invalid
    m.top.posterURL = m.top.image.url
  else if m.top.json.ImageTags <> invalid and m.top.json.ImageTags.Primary <> invalid
    imgParams = { "maxHeight": 60, "Tag": m.top.json.ImageTags.Primary }
    m.top.hdsmalliconurl = ImageURL(m.top.json.id, "Primary", imgParams)

    imgParams = { "maxHeight": 440, "maxWidth": 295, "Tag": m.top.json.ImageTags.Primary }
    m.top.posterURL = ImageURL(m.top.json.id, "Primary", imgParams)
  end if
end sub