2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-04-04 22:14:34 +02:00
|
|
|
function collapse_spoiler(spoiler) {
|
2020-06-17 21:57:12 +02:00
|
|
|
const spoiler_height = spoiler.height();
|
2020-04-04 22:14:34 +02:00
|
|
|
|
|
|
|
// Set height to rendered height on next frame, then to zero on following
|
|
|
|
// frame to allow CSS transition animation to work
|
2020-07-02 01:45:54 +02:00
|
|
|
requestAnimationFrame(() => {
|
2020-07-15 01:29:15 +02:00
|
|
|
spoiler.height(spoiler_height + "px");
|
2020-04-04 22:14:34 +02:00
|
|
|
spoiler.removeClass("spoiler-content-open");
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
requestAnimationFrame(() => {
|
2020-04-04 22:14:34 +02:00
|
|
|
spoiler.height("0px");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function expand_spoiler(spoiler) {
|
|
|
|
// Normally, the height of the spoiler block is not defined absolutely on
|
|
|
|
// the `spoiler-content-open` class, but just set to `auto` (i.e. the height
|
|
|
|
// of the content). CSS animations do not work with properties set to
|
|
|
|
// `auto`, so we get the actual height of the content here and temporarily
|
|
|
|
// put it explicitly on the element styling to allow the transition to work.
|
2020-07-15 01:29:15 +02:00
|
|
|
const spoiler_height = spoiler.prop("scrollHeight");
|
2020-04-04 22:14:34 +02:00
|
|
|
spoiler.height(spoiler_height + "px");
|
|
|
|
// The `spoiler-content-open` class has CSS animations defined on it which
|
|
|
|
// will trigger on the frame after this class change.
|
|
|
|
spoiler.addClass("spoiler-content-open");
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
spoiler.on("transitionend", () => {
|
|
|
|
spoiler.off("transitionend");
|
2020-04-04 22:14:34 +02:00
|
|
|
// When the CSS transition is over, reset the height to auto
|
|
|
|
// This keeps things working if, e.g., the viewport is resized
|
|
|
|
spoiler.height("");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-07-15 02:08:01 +02:00
|
|
|
exports.hide_spoilers_in_notification = (content) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
content.find(".spoiler-block").each((i, elem) => {
|
|
|
|
$(elem).find(".spoiler-content").remove();
|
|
|
|
let text = $(elem).find(".spoiler-header").text().trim();
|
2020-07-15 02:08:01 +02:00
|
|
|
if (text.length > 0) {
|
|
|
|
text = `${text} `;
|
|
|
|
}
|
|
|
|
text = `${text}(…)`;
|
2020-07-15 01:29:15 +02:00
|
|
|
$(elem).find(".spoiler-header").text(text);
|
2020-07-15 02:08:01 +02:00
|
|
|
});
|
|
|
|
return content;
|
|
|
|
};
|
|
|
|
|
2020-04-04 22:14:34 +02:00
|
|
|
exports.initialize = function () {
|
2020-06-17 21:57:12 +02:00
|
|
|
$("body").on("click", ".spoiler-header", function (e) {
|
2020-07-15 01:29:15 +02:00
|
|
|
const button = $(this).children(".spoiler-button");
|
|
|
|
const arrow = button.children(".spoiler-arrow");
|
2020-06-17 21:57:12 +02:00
|
|
|
const spoiler_content = $(this).siblings(".spoiler-content");
|
|
|
|
const target = $(e.target);
|
|
|
|
|
2020-08-11 01:47:49 +02:00
|
|
|
// Spoiler headers can contain Markdown, including links. We
|
2020-07-02 00:26:00 +02:00
|
|
|
// return so that clicking such links will be be processed by
|
|
|
|
// the browser rather than opening the header.
|
2020-07-15 01:29:15 +02:00
|
|
|
if (target.closest("a").length > 0) {
|
2020-07-02 00:26:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow selecting text inside a spoiler header.
|
|
|
|
if (document.getSelection().type === "Range") {
|
2020-06-17 21:57:12 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-04 22:14:34 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
if (spoiler_content.hasClass("spoiler-content-open")) {
|
|
|
|
// Content was open, we are collapsing
|
|
|
|
arrow.removeClass("spoiler-button-open");
|
|
|
|
|
|
|
|
// Modify ARIA roles for screen readers
|
2020-06-17 21:57:12 +02:00
|
|
|
button.attr("aria-expanded", "false");
|
2020-04-04 22:14:34 +02:00
|
|
|
spoiler_content.attr("aria-hidden", "true");
|
|
|
|
|
|
|
|
collapse_spoiler(spoiler_content);
|
|
|
|
} else {
|
|
|
|
// Content was closed, we are expanding
|
|
|
|
arrow.addClass("spoiler-button-open");
|
|
|
|
|
|
|
|
// Modify ARIA roles for screen readers
|
2020-06-17 21:57:12 +02:00
|
|
|
button.attr("aria-expanded", "true");
|
2020-04-04 22:14:34 +02:00
|
|
|
spoiler_content.attr("aria-hidden", "false");
|
|
|
|
|
|
|
|
expand_spoiler(spoiler_content);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
window.spoilers = exports;
|