1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-11-23 17:42:46 +01:00
TweetDuck/resources/Content/tweetdeck/globals/get_hovered_tweet.js

29 lines
860 B
JavaScript

import { getHoveredColumn } from "./get_hovered_column.js";
/**
* Returns an object containing data about the tweet below the cursor.
* @returns {{ ele: Element, obj: ChirpBase, wrap: ChirpBase, column: { ele: Element, obj: TD_Column }}|null}
*/
export function getHoveredTweet() {
const hovered = document.querySelectorAll(":hover");
for (let index = hovered.length - 1; index >= 0; index--) {
const ele = hovered[index];
if (ele.tagName === "ARTICLE" && ele.classList.contains("js-stream-item") && ele.hasAttribute("data-account-key")) {
const column = getHoveredColumn();
if (column) {
const wrap = column.obj.findChirp(ele.getAttribute("data-key"));
const obj = column.obj.findChirp(ele.getAttribute("data-tweet-id")) || wrap;
if (obj) {
return { ele, obj, wrap, column };
}
}
}
}
return null;
}