summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded/init.js
blob: a5424ea38c393ad94bf81e484c4669fd92524681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
var _shorten_expanded_threshold = 1.5; //window heights

function expandSizeWrapper(id) {
	const row = $(id);

	if (row) {
		const content = row.select(".contentSizeWrapper")[0];
		const link = row.select(".expandPrompt")[0];

		if (content) content.removeClassName("contentSizeWrapper");
		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 c_inner = row.select(".content-inner")[0];
					const c_inter = row.select(".intermediate")[0];

					if (c_inner && c_inter &&
						row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {

						c_inter.parentNode.removeChild(c_inter);

						c_inner.innerHTML = "<div class='contentSizeWrapper'>" +
							c_inner.innerHTML +
							c_inter.innerHTML + "</div>" +
							"<button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' href='#'>" +
								__("Click to expand article") + "</button>";
					}
				}
			}, 150);

			return true;
		});
	});
});