mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 09:13:43 +08:00
17 lines
609 B
JavaScript
17 lines
609 B
JavaScript
export default function getVideoAttributes(cooked) {
|
|
if (!cooked.classList.contains("lazy-video-container")) {
|
|
return {};
|
|
}
|
|
|
|
const url = cooked.querySelector("a")?.getAttribute("href");
|
|
const img = cooked.querySelector("img");
|
|
const thumbnail = img?.getAttribute("src");
|
|
const dominantColor = img?.dataset?.dominantColor;
|
|
const title = cooked.dataset.videoTitle;
|
|
const startTime = cooked.dataset.videoStartTime || 0;
|
|
const providerName = cooked.dataset.providerName;
|
|
const id = cooked.dataset.videoId;
|
|
|
|
return { url, thumbnail, title, providerName, id, dominantColor, startTime };
|
|
}
|