This commit introduces the skeleton of the chat thread UI. The
structure of the components looks like this. Its done this way
so the side panel can be used for other things as well if we wish,
not just for threads:
```
.main-chat-outlet
<ChatLivePane />
<ChatSidePanel>
<-- rendered with {{outlet}} -->
<ChatThread />
</ChatSidePanel>
```
Later on the `ChatThreadList` will be rendered here as well.
Now, when you go to a channel you can open a thread by clicking
on either the Open Thread message action button or by clicking on
the reply indicator. This will take you to a route like `chat/c/:slug/:channelId/t/:threadId`.
This works on mobile as well.
This commit includes basic serializers and routes for threads,
as well as a new `ChatThreadsManager` service in JS that caches
threads for a channel the same way the channel threads manager does.
The chat messages inside the thread are intentionally left out
until a later PR.
**NOTE: These changes are gated behind the site setting enable_experimental_chat_threaded_discussions
and the threading_enabled boolean on a ChatChannel**
42 lines
916 B
JavaScript
42 lines
916 B
JavaScript
import Controller from "@ember/controller";
|
|
import { inject as service } from "@ember/service";
|
|
|
|
export default class ChatController extends Controller {
|
|
@service chat;
|
|
@service chatStateManager;
|
|
@service router;
|
|
|
|
get shouldUseChatSidebar() {
|
|
if (this.site.mobileView) {
|
|
return false;
|
|
}
|
|
|
|
if (this.shouldUseCoreSidebar) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
get shouldUseCoreSidebar() {
|
|
return this.siteSettings.navigation_menu === "sidebar";
|
|
}
|
|
|
|
get mainOutletModifierClasses() {
|
|
let modifierClasses = [];
|
|
|
|
if (this.chatStateManager.isSidePanelExpanded) {
|
|
modifierClasses.push("has-side-panel-expanded");
|
|
}
|
|
|
|
if (
|
|
!this.router.currentRouteName.startsWith("chat.channel.info") &&
|
|
!this.router.currentRouteName.startsWith("chat.browse")
|
|
) {
|
|
modifierClasses.push("chat-view");
|
|
}
|
|
|
|
return modifierClasses.join(" ");
|
|
}
|
|
}
|