discourse/plugins/chat/assets/stylesheets/common/chat-composer.scss
Joffrey JAFFEUX bf886662df
UX: improves composer and thread panel (#21210)
This pull request is a full overhaul of the chat-composer and contains various improvements to the thread panel. They have been grouped in the same PR as lots of improvements/fixes to the thread panel needed an improved composer. This is meant as a first step.

### New features included in this PR

- A resizable side panel
- A clear dropzone area for uploads
- A simplified design for image uploads, this is only a first step towards more redesign of this area in the future

### Notable fixes in this PR

- Correct placeholder in thread panel
- Allows to edit the last message of a thread with arrow up
- Correctly focus composer when replying to a message
- The reply indicator is added instantly in the channel when starting a thread
- Prevents a large variety of bug where the composer could bug and prevent sending message or would clear your input while it has content

### Technical notes

To achieve this PR, three important changes have been made:

- `<ChatComposer>` has been fully rewritten and is now a glimmer component
- The chat composer now takes a `ChatMessage` as input which can directly be used in other operations, it simplifies a lot of logic as we are always working a with a `ChatMessage`
- `TextareaInteractor` has been created to wrap the existing `TextareaTextManipulation` mixin, it will make future migrations easier and allow us to have a less polluted `<ChatComposer>`

Note ".chat-live-pane" has been renamed ".chat-channel"

Design for upload dropzone is from @chapoi
2023-04-25 10:23:03 +02:00

184 lines
3.1 KiB
SCSS

.chat-composer {
display: flex;
align-items: center;
&__wrapper {
display: flex;
flex-direction: column;
z-index: 3;
background-color: var(--secondary);
margin-top: 0.1rem;
#chat-full-page-uploader,
#chat-widget-uploader {
display: none;
}
.drop-a-file {
display: none;
}
}
&__outer-container {
display: flex;
align-items: center;
padding-inline: 0.25rem;
box-sizing: border-box;
width: 100%;
}
&__inner-container {
display: flex;
align-items: center;
box-sizing: border-box;
width: 100%;
flex-direction: row;
border: 1px solid var(--primary-low-mid);
border-radius: 5px;
background-color: var(--secondary);
padding-inline: 0.25rem;
height: 42px;
.chat-composer--focused & {
border-color: var(--primary-medium);
}
.chat-composer--disabled & {
background: var(--primary-low);
}
}
&__send-btn {
border-radius: 3px;
background: none;
will-change: scale;
.chat-composer--send-enabled & {
&:hover {
background: none;
}
&:focus {
background: none;
outline: auto;
}
.d-icon {
color: var(--tertiary) !important;
}
}
@keyframes sendingScales {
0% {
transform: scale(0.8);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(0.8);
}
}
.chat-composer--sending & {
animation: sendingScales 1s infinite;
}
.chat-composer--send-disabled & {
cursor: default;
opacity: 0.6 !important;
&:hover {
background: none !important;
}
}
> * {
pointer-events: none;
}
.d-icon {
color: var(--primary) !important;
}
}
&__close-emoji-picker-btn {
margin-left: 0.2rem;
padding: 5px !important;
border-radius: 100%;
background: var(--primary-med-or-secondary-high);
border: 1px solid transparent;
display: flex;
.d-icon {
color: var(--secondary-very-high);
}
&:focus {
border-color: var(--tertiary);
}
.discourse-no-touch &:hover {
background: var(--primary-high);
.d-icon {
color: var(--primary-low);
}
}
}
&__input-container {
display: flex;
align-items: center;
box-sizing: border-box;
width: 100%;
}
&__input {
overflow-x: hidden;
width: 100%;
appearance: none;
outline: none;
border: 0;
resize: none;
max-height: 125px;
background: none;
margin: 0;
padding: 0.25rem 0.5rem;
text-overflow: ellipsis;
@include chat-scrollbar();
&[disabled] {
background: none;
}
&:focus,
&:active {
outline: none;
}
&:placeholder-shown,
&::placeholder {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
&__unreliable-network {
color: var(--danger);
padding: 0 0.5em;
}
}
.chat-composer-message-details {
padding: 0.5rem 0.75rem;
border-top: 1px solid var(--primary-low);
display: flex;
align-items: center;
.cancel-message-action {
margin-left: auto;
}
}