mirror of
https://github.com/iptv-org/epg
synced 2025-12-16 10:26:41 -05:00
Replaces icon with image
This commit is contained in:
@@ -34,7 +34,7 @@ module.exports = {
|
||||
title: parseTitle($item),
|
||||
category: parseCategory($item),
|
||||
description: parseDescription($item),
|
||||
icon: parseIcon($item),
|
||||
image: parseImage($item),
|
||||
start,
|
||||
stop
|
||||
})
|
||||
@@ -93,11 +93,11 @@ function parseDescription($item) {
|
||||
return $item('a > div.content > p.synopsis').text().trim()
|
||||
}
|
||||
|
||||
function parseIcon($item) {
|
||||
function parseImage($item) {
|
||||
const backgroundImage = $item('a > div.image-parent > div.image').css('background-image')
|
||||
const [, icon] = backgroundImage.match(/url\('(.*)'\)/) || [null, null]
|
||||
const [, image] = backgroundImage.match(/url\('(.*)'\)/) || [null, null]
|
||||
|
||||
return icon
|
||||
return image
|
||||
}
|
||||
|
||||
function parseItems(content) {
|
||||
|
||||
@@ -33,7 +33,7 @@ it('can parse response', () => {
|
||||
title: 'Trasnoche de 24/7',
|
||||
category: 'Interés general',
|
||||
description: 'Lo más visto de la semana en nuestra pantalla.',
|
||||
icon: 'https://cdn.mitvstatic.com/programs/fallback_other_l_m.jpg'
|
||||
image: 'https://cdn.mitvstatic.com/programs/fallback_other_l_m.jpg'
|
||||
},
|
||||
{
|
||||
start: '2021-11-24T23:00:00.000Z',
|
||||
@@ -42,7 +42,7 @@ it('can parse response', () => {
|
||||
category: 'Noticiero',
|
||||
description:
|
||||
'Cerramos el día con un completo resumen de los temas más relevantes con columnistas y análisis especiales para terminar el día.',
|
||||
icon: 'https://cdn.mitvstatic.com/programs/fallback_other_l_m.jpg'
|
||||
image: 'https://cdn.mitvstatic.com/programs/fallback_other_l_m.jpg'
|
||||
},
|
||||
{
|
||||
start: '2021-11-25T01:00:00.000Z',
|
||||
@@ -51,7 +51,7 @@ it('can parse response', () => {
|
||||
category: 'Cultural',
|
||||
description:
|
||||
'La energía tiene mucho para mostrar. Este programa reúne a las principales empresas y protagonistas de la actividad que esta revolucionando la región.',
|
||||
icon: 'https://cdn.mitvstatic.com/programs/fallback_other_l_m.jpg'
|
||||
image: 'https://cdn.mitvstatic.com/programs/fallback_other_l_m.jpg'
|
||||
}
|
||||
])
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user