mirror of
https://github.com/discourse/discourse.git
synced 2025-05-29 11:48:08 +08:00
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
import { h } from "virtual-dom";
|
|
import { renderIcon } from "discourse-common/lib/icon-library";
|
|
import User from "discourse/models/user";
|
|
|
|
const _decorators = [];
|
|
|
|
export function addFeaturedLinkMetaDecorator(decorator) {
|
|
_decorators.push(decorator);
|
|
}
|
|
|
|
export function extractLinkMeta(topic) {
|
|
const href = topic.get("featured_link");
|
|
const target = User.currentProp("external_links_in_new_tab")
|
|
? "_blank"
|
|
: "";
|
|
|
|
if (!href) {
|
|
return;
|
|
}
|
|
|
|
const meta = {
|
|
target: target,
|
|
href,
|
|
domain: topic.get("featured_link_root_domain"),
|
|
rel: "nofollow ugc"
|
|
};
|
|
|
|
if (_decorators.length) {
|
|
_decorators.forEach(cb => cb(meta));
|
|
}
|
|
|
|
return meta;
|
|
}
|
|
|
|
export default function renderTopicFeaturedLink(topic) {
|
|
const meta = extractLinkMeta(topic);
|
|
if (meta) {
|
|
return `<a class="topic-featured-link" rel="${meta.rel}" target="${
|
|
meta.target
|
|
}" href="${meta.href}">${renderIcon("string", "external-link-alt")} ${
|
|
meta.domain
|
|
}</a>`;
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
export function topicFeaturedLinkNode(topic) {
|
|
const meta = extractLinkMeta(topic);
|
|
if (meta) {
|
|
return h(
|
|
"a.topic-featured-link",
|
|
{
|
|
attributes: { href: meta.href, rel: meta.rel, target: meta.target }
|
|
},
|
|
[renderIcon("node", "external-link-alt"), meta.domain]
|
|
);
|
|
}
|
|
}
|