mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 11:33:39 +08:00
bf886662df
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
128 lines
2.3 KiB
SCSS
128 lines
2.3 KiB
SCSS
.chat-channel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 1px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
grid-area: main;
|
|
width: 100%;
|
|
min-width: 300px;
|
|
|
|
.open-drawer-btn {
|
|
color: var(--primary-low-mid);
|
|
|
|
&:visited {
|
|
color: var(--primary-low-mid);
|
|
}
|
|
|
|
&:hover {
|
|
color: var(--primary);
|
|
}
|
|
|
|
> * {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.chat-messages-scroll {
|
|
flex-grow: 1;
|
|
overflow-y: scroll;
|
|
overscroll-behavior: contain;
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
z-index: 1;
|
|
margin: 0 1px 0 0;
|
|
will-change: transform;
|
|
@include chat-scrollbar();
|
|
|
|
.join-channel-btn.in-float {
|
|
position: absolute;
|
|
transform: translateX(-50%);
|
|
left: 50%;
|
|
top: 10px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.all-loaded-message {
|
|
text-align: center;
|
|
color: var(--primary-medium);
|
|
font-size: var(--font-down-1);
|
|
padding: 0.5em 0.25em 0.25em;
|
|
}
|
|
}
|
|
|
|
.scroll-stick-wrap {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 0 1rem;
|
|
position: relative;
|
|
}
|
|
|
|
.chat-scroll-to-bottom {
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: absolute;
|
|
z-index: 1;
|
|
flex-direction: column;
|
|
bottom: -25px;
|
|
background: none;
|
|
opacity: 0;
|
|
transition: opacity 0.25s ease, transform 0.5s ease;
|
|
transform: scale(0.1);
|
|
padding: 0;
|
|
|
|
> * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
&:hover,
|
|
&:active,
|
|
&:focus {
|
|
background: none !important;
|
|
}
|
|
|
|
&.visible {
|
|
transform: translateY(-32px) scale(1);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
&__text {
|
|
color: var(--secondary);
|
|
padding: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
background: var(--primary-medium);
|
|
border-radius: 3px;
|
|
text-align: center;
|
|
font-size: var(--font-down-1);
|
|
bottom: 40px;
|
|
position: absolute;
|
|
}
|
|
|
|
&__arrow {
|
|
display: flex;
|
|
background: var(--primary-medium);
|
|
border-radius: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 32px;
|
|
width: 32px;
|
|
position: relative;
|
|
|
|
.d-icon {
|
|
color: var(--secondary);
|
|
margin-left: 1px; // "fixes" the 1px svg shift
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
|
|
.chat-scroll-to-bottom__arrow {
|
|
.d-icon {
|
|
color: var(--secondary);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|