discourse/plugins/chat/test/javascripts/components/channel-icon-test.gjs
chapoi 590d970fcb
UX: Starred chat channel icons (#36568)
This commit:

* cleans up some DOM structure for the chat channel icons
* adds more clear classes for --emoji and --icon type icons
* removes the different background for the chat index page
* aligns all channel icons, regardless of type

I'm also trying out some styling changes for mobile on the starred
channel index:

| BC | AC |
|--------|--------|
| <img width="668" height="1490" alt="CleanShot 2025-12-09 at 18 01
30@2x"
src="https://github.com/user-attachments/assets/8b589b23-851a-48d4-a96d-717cb37c3eee"
/> | <img width="668" height="1490" alt="CleanShot 2025-12-09 at 17 59
05@2x"
src="https://github.com/user-attachments/assets/b65278df-8cf2-437b-9827-8e68960d6038"
/> |

---------

Co-authored-by: zogstrip <regis@hanol.fr>
2025-12-09 19:50:44 +01:00

85 lines
3 KiB
Text
Vendored

import { getOwner } from "@ember/owner";
import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import CoreFabricators from "discourse/lib/fabricators";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import ChannelIcon from "discourse/plugins/chat/discourse/components/channel-icon";
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
import { CHATABLE_TYPES } from "discourse/plugins/chat/discourse/models/chat-channel";
module("Discourse Chat | Component | <ChannelIcon />", function (hooks) {
setupRenderingTest(hooks);
test("category channel - badge", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).channel();
await render(<template><ChannelIcon @channel={{channel}} /></template>);
assert
.dom(".chat-channel-icon.--icon")
.hasAttribute("style", `color: #${channel.chatable.color}`);
});
test("category channel - escapes label", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).channel({
chatable_type: CHATABLE_TYPES.categoryChannel,
title: "<div class='xss'>evil</div>",
});
await render(<template><ChannelIcon @channel={{channel}} /></template>);
assert.dom(".xss").doesNotExist();
});
test("category channel - read restricted", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).channel({
chatable: new CoreFabricators(getOwner(this)).category({
read_restricted: true,
}),
});
await render(<template><ChannelIcon @channel={{channel}} /></template>);
assert.dom(".d-icon-lock").exists();
});
test("category channel - not read restricted", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).channel({
chatable: new CoreFabricators(getOwner(this)).category({
read_restricted: false,
}),
});
await render(<template><ChannelIcon @channel={{channel}} /></template>);
assert.dom(".d-icon-lock").doesNotExist();
});
test("dm channel - one user", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).directMessageChannel({
chatable: new ChatFabricators(getOwner(this)).directMessage({
users: [new CoreFabricators(getOwner(this)).user()],
}),
});
const user = channel.chatable.users[0];
await render(<template><ChannelIcon @channel={{channel}} /></template>);
assert.dom(`.chat-user-avatar .avatar[title="${user.username}"]`).exists();
});
test("dm channel - multiple users", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).directMessageChannel({
users: [
new CoreFabricators(getOwner(this)).user(),
new CoreFabricators(getOwner(this)).user(),
new CoreFabricators(getOwner(this)).user(),
],
});
channel.chatable.group = true;
await render(<template><ChannelIcon @channel={{channel}} /></template>);
assert.dom(".chat-channel-icon.--users-count").hasText("3");
});
});