mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
UX: allow anon users to download calendar (#29551)
Allows anonymous users to download the calendar file. Before, they were given the option, but it would fail silently with a `TypeError: Cannot read properties of null (reading 'user_option')`.
This commit is contained in:
parent
d853b5384b
commit
6459ab9320
@ -31,6 +31,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{#if this.currentUser}}
|
||||||
<div class="control-group remember">
|
<div class="control-group remember">
|
||||||
<label class="checkbox-label">
|
<label class="checkbox-label">
|
||||||
<Input @type="checkbox" @checked={{this.remember}} />
|
<Input @type="checkbox" @checked={{this.remember}} />
|
||||||
@ -38,6 +39,7 @@
|
|||||||
</label>
|
</label>
|
||||||
<span>{{i18n "download_calendar.remember_explanation"}}</span>
|
<span>{{i18n "download_calendar.remember_explanation"}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
{{/if}}
|
||||||
</:body>
|
</:body>
|
||||||
<:footer>
|
<:footer>
|
||||||
<DButton
|
<DButton
|
||||||
|
@ -9,16 +9,16 @@ export function downloadCalendar(title, dates, options = {}) {
|
|||||||
const formattedDates = formatDates(dates);
|
const formattedDates = formatDates(dates);
|
||||||
title = title.trim();
|
title = title.trim();
|
||||||
|
|
||||||
switch (currentUser.user_option.default_calendar) {
|
switch (currentUser?.user_option.default_calendar) {
|
||||||
case "none_selected":
|
|
||||||
_displayModal(title, formattedDates, options);
|
|
||||||
break;
|
|
||||||
case "ics":
|
case "ics":
|
||||||
downloadIcs(title, formattedDates, options);
|
downloadIcs(title, formattedDates, options);
|
||||||
break;
|
break;
|
||||||
case "google":
|
case "google":
|
||||||
downloadGoogle(title, formattedDates, options);
|
downloadGoogle(title, formattedDates, options);
|
||||||
break;
|
break;
|
||||||
|
case "none_selected":
|
||||||
|
default:
|
||||||
|
_displayModal(title, formattedDates, options);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,6 +33,40 @@ acceptance(
|
|||||||
I18n.t("download_calendar.title"),
|
I18n.t("download_calendar.title"),
|
||||||
"it should display modal to select calendar"
|
"it should display modal to select calendar"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
assert.dom(".control-group.remember").exists();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
acceptance(
|
||||||
|
"Local Dates - Download calendar as an anonymous user",
|
||||||
|
function (needs) {
|
||||||
|
needs.settings({ discourse_local_dates_enabled: true });
|
||||||
|
needs.pretender((server, helper) => {
|
||||||
|
const response = cloneJSON(fixturesByUrl["/t/281.json"]);
|
||||||
|
const startDate = moment
|
||||||
|
.tz("America/Lima")
|
||||||
|
.add(1, "days")
|
||||||
|
.format("YYYY-MM-DD");
|
||||||
|
response.post_stream.posts[0].cooked = `<p><span data-date=\"${startDate}\" data-time=\"13:00:00\" class=\"discourse-local-date\" data-timezone=\"America/Lima\" data-email-preview=\"${startDate}T18:00:00Z UTC\">${startDate}T18:00:00Z</span></p>`;
|
||||||
|
|
||||||
|
server.get("/t/281.json", () => helper.response(response));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("Display pick calendar modal", async function (assert) {
|
||||||
|
await visit("/t/local-dates/281");
|
||||||
|
await click(".discourse-local-date");
|
||||||
|
await click(".download-calendar");
|
||||||
|
|
||||||
|
assert
|
||||||
|
.dom("#discourse-modal-title")
|
||||||
|
.hasText(
|
||||||
|
I18n.t("download_calendar.title"),
|
||||||
|
"it should display modal to select calendar"
|
||||||
|
);
|
||||||
|
|
||||||
|
assert.dom(".control-group.remember").doesNotExist();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user