mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:15:32 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
92 lines
2.4 KiB
JavaScript
92 lines
2.4 KiB
JavaScript
import { set } from "@ember/object";
|
|
import componentTest, {
|
|
setupRenderingTest,
|
|
} from "discourse/tests/helpers/component-test";
|
|
import { exists } from "discourse/tests/helpers/qunit-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { CHATABLE_TYPES } from "discourse/plugins/chat/discourse/models/chat-channel";
|
|
import { module } from "qunit";
|
|
|
|
const directMessageChannel = {
|
|
id: 1,
|
|
chatable_type: CHATABLE_TYPES.directMessageChannel,
|
|
chatable: {
|
|
users: [{ id: 1 }],
|
|
},
|
|
};
|
|
|
|
const topicChannel = {
|
|
id: 2,
|
|
chatable_type: CHATABLE_TYPES.topicChannel,
|
|
chatable: {
|
|
users: [{ id: 1 }],
|
|
},
|
|
};
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-channel-unread-indicator",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
componentTest("has no unread", {
|
|
template: hbs`{{chat-channel-unread-indicator channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
set(this.currentUser, "chat_channel_tracking_state", {
|
|
unread_count: 0,
|
|
});
|
|
this.set("channel", topicChannel);
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.notOk(exists(".chat-channel-unread-indicator"));
|
|
},
|
|
});
|
|
|
|
componentTest("has unread and no mentions", {
|
|
template: hbs`{{chat-channel-unread-indicator channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
set(this.currentUser, "chat_channel_tracking_state", {
|
|
[topicChannel.id]: { unread_count: 1 },
|
|
});
|
|
this.set("channel", topicChannel);
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.ok(exists(".chat-channel-unread-indicator:not(.urgent)"));
|
|
},
|
|
});
|
|
|
|
componentTest("has unread and mentions", {
|
|
template: hbs`{{chat-channel-unread-indicator channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
set(this.currentUser, "chat_channel_tracking_state", {
|
|
[topicChannel.id]: { unread_count: 1, unread_mentions: 1 },
|
|
});
|
|
this.set("channel", topicChannel);
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.ok(exists(".chat-channel-unread-indicator.urgent"));
|
|
},
|
|
});
|
|
|
|
componentTest("direct message channel | has unread", {
|
|
template: hbs`{{chat-channel-unread-indicator channel=channel}}`,
|
|
|
|
beforeEach() {
|
|
set(this.currentUser, "chat_channel_tracking_state", {
|
|
[directMessageChannel.id]: { unread_count: 1 },
|
|
});
|
|
this.set("channel", directMessageChannel);
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.ok(exists(".chat-channel-unread-indicator.urgent"));
|
|
},
|
|
});
|
|
}
|
|
);
|