mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 22:23:44 +08:00
cbb9396353
- Moves `<ChatMessageInfo />` to `<Chat::Message::Info />` - Moves `<ChatMessageAvatar />` to `<Chat::Message::Avatar />` - Moves `<ChatMessageLeftGutter />` to `<Chat::Message::LeftGutter />`, adds tests - Creates `<Chat::Message::Error />` - Creates `<Chat::Message::MentionWarning />`, adds tests and a styleguide - Creates a model for ChatMessageMentionWarning, adds fabricator for it - Keeps the enter/leave viewport logic inside the `<ChatMessage />` component instead of bubbling it to the channel and thread components - Adds a scale animation when clicking a reaction - Creates `chat/later-fn` modifier which accepts a function and a delay. It allows to call a function Xms after a component has been inserted, it's useful for animations. - Moves css code out of chat-message into relevant files - Deletes unused code <!-- NOTE: All pull requests should have tests (rspec in Ruby, qunit in JavaScript). If your code does not include test coverage, please include an explanation of why it was omitted. -->
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
import { render } from "@ember/test-helpers";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module, test } from "qunit";
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
import I18n from "I18n";
|
|
|
|
module(
|
|
"Discourse Chat | Component | Chat::Message::LeftGutter",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
const template = hbs`
|
|
<Chat::Message::LeftGutter @message={{this.message}} />
|
|
`;
|
|
|
|
test("default", async function (assert) {
|
|
this.message = fabricators.message();
|
|
|
|
await render(template);
|
|
|
|
assert.dom(".chat-message-left-gutter__date").exists();
|
|
});
|
|
|
|
test("with reviewable", async function (assert) {
|
|
this.message = fabricators.message({ reviewable_id: 1 });
|
|
|
|
await render(template);
|
|
|
|
assert
|
|
.dom(".chat-message-left-gutter__flag .svg-icon-title")
|
|
.hasAttribute("title", I18n.t("chat.flagged"));
|
|
});
|
|
|
|
test("with flag status", async function (assert) {
|
|
this.message = fabricators.message({ user_flag_status: 0 });
|
|
|
|
await render(template);
|
|
|
|
assert
|
|
.dom(".chat-message-left-gutter__flag .svg-icon-title")
|
|
.hasAttribute("title", I18n.t("chat.you_flagged"));
|
|
});
|
|
|
|
test("bookmark", async function (assert) {
|
|
this.message = fabricators.message({ bookmark: fabricators.bookmark() });
|
|
|
|
await render(template);
|
|
|
|
assert.dom(".chat-message-left-gutter__date").exists();
|
|
assert.dom(".chat-message-left-gutter__bookmark").exists();
|
|
});
|
|
}
|
|
);
|