mirror of
https://github.com/discourse/discourse.git
synced 2025-06-01 06:38:20 +08:00
DEV: Move discourse-chat
to the core repo. (#18776)
As part of this move, we are also renaming `discourse-chat` to `chat`.
This commit is contained in:
32
plugins/chat/test/javascripts/helpers/chat-stub.js
Normal file
32
plugins/chat/test/javascripts/helpers/chat-stub.js
Normal file
@ -0,0 +1,32 @@
|
||||
import fabricators from "../helpers/fabricators";
|
||||
import { isPresent } from "@ember/utils";
|
||||
import Service from "@ember/service";
|
||||
|
||||
let publicChannels;
|
||||
let userCanChat;
|
||||
let fullScreenChatOpen;
|
||||
|
||||
class ChatStub extends Service {
|
||||
userCanChat = userCanChat;
|
||||
publicChannels = publicChannels;
|
||||
fullScreenChatOpen = fullScreenChatOpen;
|
||||
}
|
||||
|
||||
export function setup(context, options = {}) {
|
||||
context.registry.register("service:chat-stub", ChatStub);
|
||||
context.registry.injection("component", "chat", "service:chat-stub");
|
||||
|
||||
publicChannels = isPresent(options.publicChannels)
|
||||
? options.publicChannels
|
||||
: [fabricators.chatChannel()];
|
||||
userCanChat = isPresent(options.userCanChat) ? options.userCanChat : true;
|
||||
fullScreenChatOpen = isPresent(options.fullScreenChatOpen)
|
||||
? options.fullScreenChatOpen
|
||||
: false;
|
||||
}
|
||||
|
||||
export function teardown() {
|
||||
publicChannels = [];
|
||||
userCanChat = true;
|
||||
fullScreenChatOpen = false;
|
||||
}
|
Reference in New Issue
Block a user