discourse/plugins/chat/test/javascripts/components/chat-sidebar-indicators-test.gjs
Keegan George 44f75d041e
FIX: Regression causing missing chat unread indicators (#36466)
## 🔍 Overview
This update fixes a recent regression causing chat unread indicators to
not be visible when there are long channel titles.

## 📷 Preview

| Before | After |
|--------|------|
| <img width="253" height="533" alt="Screenshot 2025-12-04 at 14 10 20"
src="https://github.com/user-attachments/assets/de0c83d9-2ca4-4cf8-9546-4742bd2da79c"
/> | <img width="255" height="530" alt="Screenshot 2025-12-04 at 14 09
25"
src="https://github.com/user-attachments/assets/36d49120-d338-4a0d-b7eb-39b227930f25"
/> |
2025-12-04 15:09:53 -08:00

111 lines
3.5 KiB
Text

import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import ChatSidebarIndicators from "discourse/plugins/chat/discourse/components/chat-sidebar-indicators";
module(
"Discourse Chat | Component | chat-sidebar-indicators",
function (hooks) {
setupRenderingTest(hooks);
test("shows indicator when unreadCount > 0", async function (assert) {
const status = { unreadCount: 1 };
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").exists();
});
test("shows indicator when unreadThreadsCount > 0", async function (assert) {
const status = { unreadThreadsCount: 1 };
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").exists();
});
test("shows indicator when mentionCount > 0", async function (assert) {
const status = { mentionCount: 1 };
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").exists();
assert.dom(".sidebar-section-link-content-badge").hasClass("urgent");
});
test("shows indicator when watchedThreadsUnreadCount > 0", async function (assert) {
const status = { watchedThreadsUnreadCount: 1 };
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").exists();
assert.dom(".sidebar-section-link-content-badge").hasClass("urgent");
});
test("does not show indicator when all counts are 0", async function (assert) {
const status = {
unreadCount: 0,
unreadThreadsCount: 0,
mentionCount: 0,
watchedThreadsUnreadCount: 0,
};
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").doesNotExist();
});
test("shows urgent class for DM with unread messages", async function (assert) {
const status = {
unreadCount: 1,
isDirectMessageChannel: true,
};
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").hasClass("urgent");
});
test("shows unread class for public channel with unread messages", async function (assert) {
const status = {
unreadCount: 1,
isDirectMessageChannel: false,
};
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").hasClass("unread");
});
test("shows urgent class when watchedThreadsUnreadCount > 0 even without other unreads", async function (assert) {
const status = {
unreadCount: 0,
unreadThreadsCount: 0,
mentionCount: 0,
watchedThreadsUnreadCount: 1,
isDirectMessageChannel: false,
};
await render(
<template><ChatSidebarIndicators @suffixArgs={{status}} /></template>
);
assert.dom(".sidebar-section-link-content-badge").exists();
assert.dom(".sidebar-section-link-content-badge").hasClass("urgent");
});
}
);