mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 19:43:38 +08:00
7b173e883f
Direct messages on mobile will now display the last message in the channels list.
51 lines
1.8 KiB
JavaScript
51 lines
1.8 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 { exists } from "discourse/tests/helpers/qunit-helpers";
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
module("Discourse Chat | Component | chat-channel-metadata", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("displays last message created at", async function (assert) {
|
|
let lastMessageSentAt = moment().subtract(1, "day").format();
|
|
this.channel = fabricators.directMessageChannel();
|
|
this.channel.lastMessage = fabricators.message({
|
|
channel: this.channel,
|
|
created_at: lastMessageSentAt,
|
|
});
|
|
|
|
await render(hbs`<ChatChannelMetadata @channel={{this.channel}} />`);
|
|
|
|
assert.dom(".chat-channel__metadata-date").hasText("Yesterday");
|
|
|
|
lastMessageSentAt = moment();
|
|
this.channel.lastMessage.createdAt = lastMessageSentAt;
|
|
await render(hbs`<ChatChannelMetadata @channel={{this.channel}} />`);
|
|
|
|
assert
|
|
.dom(".chat-channel__metadata-date")
|
|
.hasText(lastMessageSentAt.format("LT"));
|
|
});
|
|
|
|
test("unreadIndicator", async function (assert) {
|
|
this.channel = fabricators.directMessageChannel();
|
|
this.channel.tracking.unreadCount = 1;
|
|
|
|
this.unreadIndicator = true;
|
|
await render(
|
|
hbs`<ChatChannelMetadata @channel={{this.channel}} @unreadIndicator={{this.unreadIndicator}}/>`
|
|
);
|
|
|
|
assert.true(exists(".chat-channel-unread-indicator"));
|
|
|
|
this.unreadIndicator = false;
|
|
await render(
|
|
hbs`<ChatChannelMetadata @channel={{this.channel}} @unreadIndicator={{this.unreadIndicator}}/>`
|
|
);
|
|
|
|
assert.false(exists(".chat-channel-unread-indicator"));
|
|
});
|
|
});
|