2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-11-30 04:32:01 -06:00
|
|
|
# name: discourse-details
|
|
|
|
# about: HTML5.1 Details polyfill for Discourse
|
2016-03-11 10:51:16 -06:00
|
|
|
# version: 0.4
|
2015-11-30 04:32:01 -06:00
|
|
|
# authors: Régis Hanol
|
2021-07-19 10:35:47 -05:00
|
|
|
# url: https://github.com/discourse/discourse/tree/main/plugins/discourse-details
|
2015-11-30 04:32:01 -06:00
|
|
|
|
|
|
|
enabled_site_setting :details_enabled
|
2023-08-30 19:01:01 -05:00
|
|
|
hide_plugin
|
2015-11-30 04:32:01 -06:00
|
|
|
|
|
|
|
register_asset "stylesheets/details.scss"
|
|
|
|
|
|
|
|
after_initialize do
|
|
|
|
Email::Styles.register_plugin_style do |fragment|
|
2016-03-11 10:51:16 -06:00
|
|
|
# remove all elided content
|
2018-02-07 17:01:11 -06:00
|
|
|
fragment.css("details.elided").each(&:remove)
|
2016-03-11 10:51:16 -06:00
|
|
|
|
|
|
|
# replace all details with their summary in emails
|
|
|
|
fragment
|
|
|
|
.css("details")
|
|
|
|
.each do |details|
|
2016-05-01 21:33:56 -05:00
|
|
|
summary = details.css("summary")
|
|
|
|
if summary && summary[0]
|
|
|
|
summary = summary[0]
|
|
|
|
if summary && summary.respond_to?(:name)
|
|
|
|
summary.name = "p"
|
|
|
|
details.replace(summary)
|
2023-01-06 14:42:16 -06:00
|
|
|
end
|
2016-05-01 21:33:56 -05:00
|
|
|
end
|
|
|
|
end
|
2015-11-30 04:32:01 -06:00
|
|
|
end
|
|
|
|
|
2019-05-24 10:57:03 -05:00
|
|
|
on(:reduce_cooked) do |fragment, post|
|
|
|
|
fragment
|
|
|
|
.css("details")
|
|
|
|
.each do |el|
|
2020-07-13 20:49:36 -05:00
|
|
|
text = el.css("summary").text
|
2019-05-24 10:57:03 -05:00
|
|
|
link = fragment.document.create_element("a")
|
2024-05-22 03:42:58 -05:00
|
|
|
link["href"] = post&.url.presence || Discourse.base_url
|
2019-05-24 10:57:03 -05:00
|
|
|
link.content = I18n.t("details.excerpt_details")
|
2019-06-26 08:27:56 -05:00
|
|
|
el.replace CGI.escapeHTML(text) + " " + link.to_html
|
2019-05-24 10:57:03 -05:00
|
|
|
end
|
2018-02-07 17:01:11 -06:00
|
|
|
end
|
2015-11-30 04:32:01 -06:00
|
|
|
end
|