mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 20:43:44 +08:00
c1abf8b35c
The setting will change from "%{count} days" to "Chat settings have been set to retain channel messages for %{count} day." This commit also: - migrates `chat-retention-reminder` to gjs - adds a "type" property to `chat-retention-reminder-text` to allow use a long or short text depending on where it's used.
79 lines
2.4 KiB
JavaScript
79 lines
2.4 KiB
JavaScript
import { render } from "@ember/test-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module, test } from "qunit";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import I18n from "I18n";
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-retention-reminder-text",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("when setting is set on 0", async function (assert) {
|
|
this.channel = fabricators.channel();
|
|
this.siteSettings.chat_channel_retention_days = 0;
|
|
|
|
await render(
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} />`
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-retention-reminder-text")
|
|
.includesText(I18n.t("chat.retention_reminders.indefinitely_long"));
|
|
|
|
await render(
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} @type="short" />`
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-retention-reminder-text")
|
|
.includesText(I18n.t("chat.retention_reminders.indefinitely_short"));
|
|
});
|
|
|
|
test("when channel is a public channel", async function (assert) {
|
|
const count = 10;
|
|
this.channel = fabricators.channel();
|
|
this.siteSettings.chat_channel_retention_days = count;
|
|
|
|
await render(
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} />`
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-retention-reminder-text")
|
|
.includesText(I18n.t("chat.retention_reminders.long", { count }));
|
|
|
|
await render(
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} @type="short" />`
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-retention-reminder-text")
|
|
.includesText(I18n.t("chat.retention_reminders.short", { count }));
|
|
});
|
|
|
|
test("when channel is a DM channel", async function (assert) {
|
|
const count = 10;
|
|
this.channel = fabricators.directMessageChannel();
|
|
this.siteSettings.chat_dm_retention_days = count;
|
|
|
|
await render(
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} />`
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-retention-reminder-text")
|
|
.includesText(I18n.t("chat.retention_reminders.long", { count }));
|
|
|
|
await render(
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} @type="short" />`
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-retention-reminder-text")
|
|
.includesText(I18n.t("chat.retention_reminders.short", { count }));
|
|
});
|
|
}
|
|
);
|