1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-02 12:50:52 +02:00
ttrss/plugins/shorten_expanded/init.js
2021-02-15 14:10:46 +03:00

52 lines
1.3 KiB
JavaScript

/* global Plugins, __, require, PluginHost */
const _shorten_expanded_threshold = 1.5; //window heights
Plugins.Shorten_Expanded = {
expand: function(id) {
const row = $(id);
if (row) {
const content = row.select(".content-shrink-wrap")[0];
const link = row.select(".expand-prompt")[0];
if (content) content.removeClassName("content-shrink-wrap");
if (link) Element.hide(link);
}
return false;
}
}
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function() {
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) {
window.setTimeout(function() {
if (row) {
const content = row.querySelector(".content-inner");
const attachments = row.querySelector(".attachments-inline");
if (content && attachments &&
row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
content.innerHTML = `
<div class="content-shrink-wrap">
${content.innerHTML}
${attachments.innerHTML}
</div>
<button dojoType="dijit.form.Button" class="alt-info expand-prompt" onclick="return Plugins.Shorten_Expanded.expand('${row.id}')" href="#">
${__("Click to expand article")}</button>`;
attachments.innerHTML = "";
dojo.parser.parse(content);
}
}
}, 150);
return true;
});
});
});