mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 20:43:44 +08:00
afe3e36363
- Refactors the old plugin to remove jquery usage - Adds support for Vimeo videos (default on) and Tiktok (experimental and default off)
14 lines
455 B
JavaScript
14 lines
455 B
JavaScript
export default function getVideoAttributes(cooked) {
|
|
if (!cooked.classList.contains("lazy-video-container")) {
|
|
return {};
|
|
}
|
|
|
|
const url = cooked.querySelector("a")?.getAttribute("href");
|
|
const thumbnail = cooked.querySelector("img")?.getAttribute("src");
|
|
const title = cooked.dataset.videoTitle;
|
|
const providerName = cooked.dataset.providerName;
|
|
const id = cooked.dataset.videoId;
|
|
|
|
return { url, thumbnail, title, providerName, id };
|
|
}
|