This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/lib/render-topic-featured-link.js.es6
2018-06-15 17:03:24 +02:00

56 lines
1.1 KiB
JavaScript

import { h } from "virtual-dom";
const _decorators = [];
export function addFeaturedLinkMetaDecorator(decorator) {
_decorators.push(decorator);
}
export function extractLinkMeta(topic) {
const href = topic.get("featured_link");
const target = Discourse.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"
};
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}">${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 }
},
meta.domain
);
}
}