2018-05-04 02:11:33 -04:00
|
|
|
# name: discourse-local-dates
|
|
|
|
# about: Display a date in your local timezone
|
|
|
|
# version: 0.1
|
|
|
|
# author: Joffrey Jaffeux
|
2018-05-15 18:43:09 -04:00
|
|
|
hide_plugin if self.respond_to?(:hide_plugin)
|
2018-05-04 02:11:33 -04:00
|
|
|
|
2018-11-26 08:20:32 -05:00
|
|
|
register_asset "javascripts/discourse-local-dates.js.no-module.es6"
|
2018-05-30 13:05:41 -04:00
|
|
|
register_asset "stylesheets/common/discourse-local-dates.scss"
|
2018-05-04 02:11:33 -04:00
|
|
|
register_asset "moment.js", :vendored_core_pretty_text
|
|
|
|
register_asset "moment-timezone.js", :vendored_core_pretty_text
|
|
|
|
|
|
|
|
enabled_site_setting :discourse_local_dates_enabled
|
|
|
|
|
2018-05-18 09:35:37 -04:00
|
|
|
after_initialize do
|
2018-09-06 14:13:24 -04:00
|
|
|
module ::DiscourseLocalDates
|
|
|
|
PLUGIN_NAME ||= "discourse-local-dates".freeze
|
|
|
|
POST_CUSTOM_FIELD ||= "local_dates".freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
[
|
|
|
|
"../lib/discourse_local_dates/engine.rb",
|
|
|
|
].each { |path| load File.expand_path(path, __FILE__) }
|
|
|
|
|
|
|
|
register_post_custom_field_type(DiscourseLocalDates::POST_CUSTOM_FIELD, :json)
|
|
|
|
|
2018-09-06 15:01:45 -04:00
|
|
|
on(:before_post_process_cooked) do |doc, post|
|
2018-09-06 14:13:24 -04:00
|
|
|
dates = doc.css('span.discourse-local-date').map do |cooked_date|
|
|
|
|
date = {}
|
|
|
|
cooked_date.attributes.values.each do |attribute|
|
2018-10-15 19:34:55 -04:00
|
|
|
data_name = attribute.name&.gsub('data-', '')
|
|
|
|
if data_name && ['date', 'time', 'timezone'].include?(data_name)
|
2018-09-06 14:13:24 -04:00
|
|
|
unless attribute.value == 'undefined'
|
2018-10-15 19:34:55 -04:00
|
|
|
date[data_name] = CGI.escapeHTML(attribute.value || "")
|
2018-09-06 14:13:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
date
|
|
|
|
end
|
|
|
|
|
|
|
|
if dates.present?
|
2018-09-17 08:48:43 -04:00
|
|
|
post.custom_fields[DiscourseLocalDates::POST_CUSTOM_FIELD] = dates
|
2018-09-06 14:13:24 -04:00
|
|
|
post.save_custom_fields
|
2018-09-06 15:01:45 -04:00
|
|
|
elsif !post.custom_fields[DiscourseLocalDates::POST_CUSTOM_FIELD].nil?
|
|
|
|
post.custom_fields.delete(DiscourseLocalDates::POST_CUSTOM_FIELD)
|
|
|
|
post.save_custom_fields
|
2018-09-06 14:13:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
add_to_class(:post, :local_dates) do
|
|
|
|
custom_fields[DiscourseLocalDates::POST_CUSTOM_FIELD] || []
|
|
|
|
end
|
|
|
|
|
2018-05-18 09:35:37 -04:00
|
|
|
on(:reduce_cooked) do |fragment|
|
2018-10-11 18:26:35 -04:00
|
|
|
fragment.css(".discourse-local-date").each do |container|
|
|
|
|
if container.attributes["data-email-preview"]
|
|
|
|
preview = container.attributes["data-email-preview"].value
|
|
|
|
container.content = preview
|
|
|
|
end
|
2018-05-18 11:13:58 -04:00
|
|
|
end
|
2018-05-18 09:35:37 -04:00
|
|
|
end
|
|
|
|
end
|