This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/assets/javascripts/discourse/components
Martin Brennan 07ab20131a
FEATURE: Chat side panel with threads initial skeleton (#20209)
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**
2023-02-14 11:38:41 +10:00
..
user-menu DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
channels-list.hbs DEV: Rename all uses of PluginOutlet @args in core 2023-01-31 13:51:25 +00:00
channels-list.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-browse-view.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-browse-view.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-channel-about-view.hbs FEATURE: Allow editing channel slug (#19948) 2023-01-30 13:18:34 +10:00
chat-channel-about-view.js FIX: Change wording from title -> name in channel about page (#19889) 2023-01-18 09:13:33 +10:00
chat-channel-archive-modal-inner.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-archive-modal-inner.js FIX: various fixes to channel archive status (#19649) 2022-12-29 11:45:40 +01:00
chat-channel-archive-status.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-archive-status.js FIX: Improve error reporting and failure modes for channel archiving (#19791) 2023-01-12 10:04:46 +10:00
chat-channel-card.hbs DEV: refactors routes to simplify using outlet (#20179) 2023-02-07 13:59:32 +01:00
chat-channel-card.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-channel-chooser-header.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-chooser-header.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-channel-chooser-row.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-chooser-row.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-channel-chooser.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-channel-delete-modal-inner.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-delete-modal-inner.js DEV: introduces documentation for chat (#19772) 2023-01-18 12:36:16 +01:00
chat-channel-leave-btn.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-leave-btn.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-channel-members-view.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-members-view.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-channel-metadata.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-metadata.js FIX: ensures chat channel metadata date is updated (#19314) 2022-12-05 14:47:01 +01:00
chat-channel-preview-card.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-preview-card.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-channel-row.hbs DEV: refactors routes to simplify using outlet (#20179) 2023-02-07 13:59:32 +01:00
chat-channel-row.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-channel-selection-row.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-selection-row.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-channel-selector-modal-inner.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-selector-modal-inner.js FIX: at this point in time component can be destroyed (#19677) 2023-01-02 19:17:10 +01:00
chat-channel-settings-saved-indicator.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-settings-saved-indicator.js FEATURE: channels can allow/disallow @all/@here mentions (#19317) 2022-12-05 17:03:51 +01:00
chat-channel-settings-view.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-settings-view.js DEV: introduces documentation for chat (#19772) 2023-01-18 12:36:16 +01:00
chat-channel-status.hbs DEV: /channel -> /c chat route rename (#19782) 2023-01-27 09:58:12 -03:00
chat-channel-status.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-channel-title.hbs DEV: Rename all uses of PluginOutlet @args in core 2023-01-31 13:51:25 +00:00
chat-channel-title.js UX: reworks channel index (drawer and mobile) (#18892) 2022-11-28 18:38:05 +01:00
chat-channel-toggle-view.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-channel-toggle-view.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-channel-unread-indicator.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-composer-dropdown.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-composer-dropdown.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-composer-inline-buttons.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-composer-inline-buttons.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-composer-message-details.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-composer-message-details.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-composer-upload.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-composer-upload.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-composer-uploads.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-composer-uploads.js REFACTOR: naming and state refactor (#19187) 2022-11-25 14:15:38 +01:00
chat-composer.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-composer.js FIX: Chat's user autocomplete threw errors (#20236) 2023-02-10 11:41:46 +01:00
chat-draft-channel-screen.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-draft-channel-screen.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-drawer.hbs FEATURE: resizeable chat drawer (#20160) 2023-02-03 15:11:12 +01:00
chat-drawer.js DEV: Change setActiveChannel to get/set in services/chat (#20237) 2023-02-10 11:41:29 +01:00
chat-emoji-avatar.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-emoji-picker.hbs FIX: Allow keyboard navigation when searching emojis in chat (#20157) 2023-02-03 11:36:45 -03:00
chat-emoji-picker.js FIX: Allow keyboard navigation when searching emojis in chat (#20157) 2023-02-03 11:36:45 -03:00
chat-header-icon-unread-indicator.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-header-icon-unread-indicator.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-header-icon.hbs A11Y: Header icons should be buttons, not links (#20242) 2023-02-10 13:55:51 -05:00
chat-header-icon.js UX: brings back URL on chat icon when in full page (#20092) 2023-01-31 10:16:45 +01:00
chat-live-pane.hbs DEV: refactors routes to simplify using outlet (#20179) 2023-02-07 13:59:32 +01:00
chat-live-pane.js FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-mention-warnings.hbs REFACTOR: Move mention warnings logic into a separate service. (#19465) 2023-02-03 15:38:30 -03:00
chat-mention-warnings.js REFACTOR: Move mention warnings logic into a separate service. (#19465) 2023-02-03 15:38:30 -03:00
chat-message-actions-desktop.hbs FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-message-actions-desktop.js FIX: adds negative skidding to popper offset (#19958) 2023-01-23 16:04:14 -05:00
chat-message-actions-mobile.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-actions-mobile.js REFACTOR: chat-msgactions (#18969) 2022-11-10 15:08:14 +01:00
chat-message-avatar.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-avatar.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-message-collapser.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-collapser.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-message-info.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-info.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-message-left-gutter.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-move-to-channel-modal-inner.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-move-to-channel-modal-inner.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-message-reaction.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-reaction.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-message-separator.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-separator.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-message-text.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-message-text.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-message.hbs FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-message.js FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-replying-indicator.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-replying-indicator.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-retention-reminder.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-retention-reminder.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-selection-manager.hbs DEV: Correct hbs prettier violations 2023-02-02 13:03:11 +00:00
chat-selection-manager.js DEV: Pass messageId as a dynamic segment instead of a query param (#20013) 2023-02-01 12:39:23 -03:00
chat-side-panel.hbs FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-side-panel.js FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-skeleton.hbs UX: implements a random and auto generated skeleton (#20202) 2023-02-07 22:48:10 +01:00
chat-skeleton.js UX: implements a random and auto generated skeleton (#20202) 2023-02-07 22:48:10 +01:00
chat-thread.hbs FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-thread.js FEATURE: Chat side panel with threads initial skeleton (#20209) 2023-02-14 11:38:41 +10:00
chat-to-topic-selector.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-to-topic-selector.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
chat-upload.hbs FEATURE: Inline audio player for chat uploads (#20175) 2023-02-06 16:00:03 +10:00
chat-upload.js FEATURE: Inline audio player for chat uploads (#20175) 2023-02-06 16:00:03 +10:00
chat-user-avatar.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-user-avatar.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-user-display-name.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
chat-user-display-name.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
chat-vh.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
collapser.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
collapser.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
d-progress-bar.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
d-progress-bar.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
dc-filter-input.hbs FIX: Emoji autocomplete “more” button not working in chat (#20113) 2023-02-02 15:04:52 -03:00
dc-filter-input.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
direct-message-creator.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
direct-message-creator.js REFACTOR: handles every chat resource as an URL (#18961) 2022-11-11 06:39:15 +01:00
full-page-chat.hbs DEV: refactors routes to simplify using outlet (#20179) 2023-02-07 13:59:32 +01:00
full-page-chat.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
on-visibility-action.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
on-visibility-action.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
reviewable-chat-message.hbs DEV: Pass messageId as a dynamic segment instead of a query param (#20013) 2023-02-01 12:39:23 -03:00
reviewable-chat-message.js DEV: Enable @cached decorator for themes and plugins (#19261) 2022-11-30 15:53:54 +00:00
sidebar-channels.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
sidebar-channels.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
toggle-channel-membership-button.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
toggle-channel-membership-button.js DEV: start glimmer-ification and optimisations of chat plugin (#19531) 2022-12-21 13:21:02 +01:00
user-card-chat-button.hbs DEV: Apply prettier to hbs files 2022-12-28 13:11:12 +00:00
user-card-chat-button.js DEV: Move discourse-chat to the core repo. (#18776) 2022-11-02 10:41:30 -03:00