mirror of
https://github.com/discourse/discourse.git
synced 2025-03-24 22:06:40 +08:00
UX: improves dates display in emails (#6805)
This commit is contained in:
parent
79eb1b8e16
commit
9703fa2abc
@ -104,17 +104,12 @@ function addLocalDate(buffer, matches, state) {
|
|||||||
|
|
||||||
buffer.push(token);
|
buffer.push(token);
|
||||||
|
|
||||||
let emailPreview;
|
const formattedDateTime = dateTime
|
||||||
const emailTimezone = (config.timezones || "Etc/UTC").split("|")[0];
|
.tz("Etc/UTC")
|
||||||
const formattedDateTime = dateTime.tz(emailTimezone).format(config.format);
|
.format(
|
||||||
const formattedTimezone = emailTimezone.replace("/", ": ").replace("_", " ");
|
state.md.options.discourse.datesEmailFormat || moment.defaultFormat
|
||||||
|
);
|
||||||
if (formattedDateTime.match(/TZ/)) {
|
token.attrs.push(["data-email-preview", `${formattedDateTime} UTC`]);
|
||||||
emailPreview = formattedDateTime.replace("TZ", formattedTimezone);
|
|
||||||
} else {
|
|
||||||
emailPreview = `${formattedDateTime} (${formattedTimezone})`;
|
|
||||||
}
|
|
||||||
token.attrs.push(["data-email-preview", emailPreview]);
|
|
||||||
|
|
||||||
closeBuffer(buffer, state, dateTime.utc().format(config.format));
|
closeBuffer(buffer, state, dateTime.utc().format(config.format));
|
||||||
}
|
}
|
||||||
@ -139,6 +134,8 @@ export function setup(helper) {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
helper.registerOptions((opts, siteSettings) => {
|
helper.registerOptions((opts, siteSettings) => {
|
||||||
|
opts.datesEmailFormat = siteSettings.discourse_local_dates_email_format;
|
||||||
|
|
||||||
opts.features[
|
opts.features[
|
||||||
"discourse-local-dates"
|
"discourse-local-dates"
|
||||||
] = !!siteSettings.discourse_local_dates_enabled;
|
] = !!siteSettings.discourse_local_dates_enabled;
|
||||||
|
@ -3,3 +3,4 @@ en:
|
|||||||
discourse_local_dates_enabled: "Enable the discourse-local-dates feature. This will add support to local timezone aware dates in posts using the [date] element."
|
discourse_local_dates_enabled: "Enable the discourse-local-dates feature. This will add support to local timezone aware dates in posts using the [date] element."
|
||||||
discourse_local_dates_default_formats: "Frequently used date time formats, see: <a target='_blank' rel='noopener' href='https://momentjs.com/docs/#/parsing/string-format/'>momentjs string format</a>"
|
discourse_local_dates_default_formats: "Frequently used date time formats, see: <a target='_blank' rel='noopener' href='https://momentjs.com/docs/#/parsing/string-format/'>momentjs string format</a>"
|
||||||
discourse_local_dates_default_timezones: "Default list of timezones, must be a valid <a target='_blank' rel='noopener' href='https://en.wikipedia.org/wiki/List_of_tz_database_time_zones'>TZ</a>"
|
discourse_local_dates_default_timezones: "Default list of timezones, must be a valid <a target='_blank' rel='noopener' href='https://en.wikipedia.org/wiki/List_of_tz_database_time_zones'>TZ</a>"
|
||||||
|
discourse_local_dates_email_format: "Format used to display a date in emails."
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
plugins:
|
plugins:
|
||||||
|
discourse_local_dates_email_format:
|
||||||
|
default: "YYYY-MM-DDTHH:mm:ss[Z]"
|
||||||
|
client: true
|
||||||
discourse_local_dates_enabled:
|
discourse_local_dates_enabled:
|
||||||
default: true
|
default: true
|
||||||
client: true
|
client: true
|
||||||
|
@ -21,7 +21,7 @@ RSpec.describe "Local Dates" do
|
|||||||
'data-timezones="Europe/Paris|America/Los_Angeles"'
|
'data-timezones="Europe/Paris|America/Los_Angeles"'
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(cooked).to include('data-email-preview="05/09/2018 12:00:00 AM (Europe: Paris)"')
|
expect(cooked).to include('data-email-preview="2018-05-08T22:00:00Z UTC"')
|
||||||
expect(cooked).to include('05/08/2018 10:00:00 PM')
|
expect(cooked).to include('05/08/2018 10:00:00 PM')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -5,6 +5,8 @@ def generate_html(text, opts = {})
|
|||||||
output += " data-date=\"#{opts[:date]}\"" if opts[:date]
|
output += " data-date=\"#{opts[:date]}\"" if opts[:date]
|
||||||
output += " data-time=\"#{opts[:time]}\"" if opts[:time]
|
output += " data-time=\"#{opts[:time]}\"" if opts[:time]
|
||||||
output += " class=\"discourse-local-date\""
|
output += " class=\"discourse-local-date\""
|
||||||
|
output += " data-timezones=\"#{opts[:timezones]}\"" if opts[:timezones]
|
||||||
|
output += " data-timezone=\"#{opts[:timezone]}\"" if opts[:timezone]
|
||||||
output += " data-format=\"#{opts[:format]}\"" if opts[:format]
|
output += " data-format=\"#{opts[:format]}\"" if opts[:format]
|
||||||
output += " data-email-preview=\"#{opts[:email_preview]}\"" if opts[:email_preview]
|
output += " data-email-preview=\"#{opts[:email_preview]}\"" if opts[:email_preview]
|
||||||
output += ">"
|
output += ">"
|
||||||
@ -20,20 +22,9 @@ describe PrettyText do
|
|||||||
context 'emails simplified rendering' do
|
context 'emails simplified rendering' do
|
||||||
it 'works with default markup' do
|
it 'works with default markup' do
|
||||||
cooked = PrettyText.cook("[date=2018-05-08]")
|
cooked = PrettyText.cook("[date=2018-05-08]")
|
||||||
cooked_mail = generate_html("2018-05-08T00:00:00Z (Etc: UTC)",
|
cooked_mail = generate_html("2018-05-08T00:00:00Z UTC",
|
||||||
date: "2018-05-08",
|
date: "2018-05-08",
|
||||||
email_preview: "2018-05-08T00:00:00Z (Etc: UTC)"
|
email_preview: "2018-05-08T00:00:00Z UTC"
|
||||||
)
|
|
||||||
|
|
||||||
expect(PrettyText.format_for_email(cooked)).to match_html(cooked_mail)
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'works with format' do
|
|
||||||
cooked = PrettyText.cook("[date=2018-05-08 format=LLLL]")
|
|
||||||
cooked_mail = generate_html("Tuesday, May 8, 2018 12:00 AM (Etc: UTC)",
|
|
||||||
date: "2018-05-08",
|
|
||||||
email_preview: "Tuesday, May 8, 2018 12:00 AM (Etc: UTC)",
|
|
||||||
format: "LLLL"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(PrettyText.format_for_email(cooked)).to match_html(cooked_mail)
|
expect(PrettyText.format_for_email(cooked)).to match_html(cooked_mail)
|
||||||
@ -41,13 +32,41 @@ describe PrettyText do
|
|||||||
|
|
||||||
it 'works with time' do
|
it 'works with time' do
|
||||||
cooked = PrettyText.cook("[date=2018-05-08 time=20:00:00]")
|
cooked = PrettyText.cook("[date=2018-05-08 time=20:00:00]")
|
||||||
cooked_mail = generate_html("2018-05-08T20:00:00Z (Etc: UTC)",
|
cooked_mail = generate_html("2018-05-08T20:00:00Z UTC",
|
||||||
date: "2018-05-08",
|
date: "2018-05-08",
|
||||||
email_preview: "2018-05-08T20:00:00Z (Etc: UTC)",
|
email_preview: "2018-05-08T20:00:00Z UTC",
|
||||||
time: "20:00:00"
|
time: "20:00:00"
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(PrettyText.format_for_email(cooked)).to match_html(cooked_mail)
|
expect(PrettyText.format_for_email(cooked)).to match_html(cooked_mail)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'works with multiple timezones' do
|
||||||
|
cooked = PrettyText.cook('[date=2018-05-08 timezone="Europe/Paris" timezones="America/Los_Angeles|Pacific/Auckland"]')
|
||||||
|
cooked_mail = generate_html("2018-05-07T22:00:00Z UTC",
|
||||||
|
date: "2018-05-08",
|
||||||
|
email_preview: "2018-05-07T22:00:00Z UTC",
|
||||||
|
timezone: "Europe/Paris",
|
||||||
|
timezones: "America/Los_Angeles|Pacific/Auckland"
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(PrettyText.format_for_email(cooked)).to match_html(cooked_mail)
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'discourse_local_dates_email_format' do
|
||||||
|
before do
|
||||||
|
SiteSetting.discourse_local_dates_email_format = "DD/MM"
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'uses the site setting' do
|
||||||
|
cooked = PrettyText.cook("[date=2018-05-08]")
|
||||||
|
cooked_mail = generate_html("08/05 UTC",
|
||||||
|
date: "2018-05-08",
|
||||||
|
email_preview: "08/05 UTC"
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(PrettyText.format_for_email(cooked)).to match_html(cooked_mail)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user