27 lines
986 B
TypeScript
27 lines
986 B
TypeScript
import * as cherrio from 'cheerio'
|
|
|
|
const getResource = (data: any) => {
|
|
const result = {
|
|
videoHightlight: null,
|
|
imageHightlight: null,
|
|
resources: [],
|
|
};
|
|
const $ = cherrio.load(`<div class="get-resource">${data}</div>`)
|
|
const html : any = $('.get-resource').html();
|
|
html.find('video, figure img, img').each((index : any, element: any) => {
|
|
// if (index === 0) result.videoHightlight =
|
|
});
|
|
|
|
console.log(html)
|
|
|
|
// <div>
|
|
// <video controls="controls" width="100%" height="auto" data-id="578" data-resource="https://resource.vpress.vn/resources/1/private/13cee27a2bd93915479f049378cffdd3/video/28thi-tot-nghiep-ptth-2024-1719829616.mp4" data-title="28thi-tot-nghiep-ptth-2024">
|
|
// <source src="https://resource.vpress.vn/resources/1/private/13cee27a2bd93915479f049378cffdd3/video/28thi-tot-nghiep-ptth-2024-1719829616.mp4" type="video/mp4">
|
|
// </video>
|
|
// </div>
|
|
}
|
|
|
|
|
|
export {
|
|
getResource
|
|
} |