1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 10:22:30 +01:00

implement message input component

This commit is contained in:
Puyodead1 2023-05-27 01:38:51 -04:00
parent 6db6dc06ab
commit f95dfe4264
No known key found for this signature in database
GPG Key ID: BA5F91AAEF68E5CE
3 changed files with 134 additions and 8 deletions

View File

@ -12,7 +12,7 @@ const Wrapper = styled.div`
display: flex;
flex-direction: column;
flex: 1 1 100%;
background-color: var(--background-primary);
background-color: var(--background-primary-alt);
`;
const MessageListWrapper = styled.div`
@ -31,8 +31,14 @@ const List = styled.ul`
const Container = styled.div`
display: flex;
flex-direction: column;
flex: 1;
flex: 1 1 auto;
overflow: hidden;
position: relative;
`;
const Spacer = styled.div`
height: 30px;
width: 1px;
`;
function Chat() {
@ -97,10 +103,11 @@ function Chat() {
/>
);
})}
<Spacer />
</List>
</MessageListWrapper>
<MessageInput />
<MessageInput channel={channel} />
</Container>
</Wrapper>
);

View File

@ -5,7 +5,7 @@ const Wrapper = styled.section`
display: flex;
padding: 12px 16px;
margin-bottom: 1px;
background-color: var(--background-primary);
background-color: var(--background-primary-alt);
box-shadow: 0 1px 0 hsl(0deg 0% 0% / 0.3);
align-items: center;
`;

View File

@ -1,12 +1,131 @@
import React from "react";
import styled from "styled-components";
import Channel from "../stores/objects/Channel";
const Container = styled.div`
display: flex;
height: 52px;
margin-top: -8px;
padding-left: 16px;
padding-right: 16px;
flex-shrink: 0;
position: relative;
`;
function MessageInput() {
return <Container>MessageInput</Container>;
const InnerContainer = styled.div`
background-color: var(--background-primary);
margin-bottom: 24px;
position: relative;
width: 100%;
border-radius: 8px;
`;
const TextInput = styled.div`
position: absolute;
top: 0;
left: 0;
width: 100%;
outline: none;
word-wrap: break-word;
padding: 12px 16px;
`;
interface Props {
channel?: Channel;
}
function MessageInput(props: Props) {
const wrapperRef = React.useRef<HTMLDivElement>(null);
const placeholderRef = React.useRef<HTMLDivElement>(null);
const [content, setContent] = React.useState("");
React.useEffect(() => {
// ensure the content is not just a new line
if (content === "\n") {
setContent("");
return;
}
// controls the placeholder visibility
if (!content.length)
placeholderRef.current!.style.setProperty("display", "block");
else placeholderRef.current!.style.setProperty("display", "none");
}, [content]);
// this function makes the input element grow as the user types
function adjustInputHeight() {
if (!wrapperRef.current) return;
wrapperRef.current.style.height = "44px";
wrapperRef.current.style.height =
wrapperRef.current.scrollHeight + "px";
}
function onChange(e: React.FormEvent<HTMLDivElement>) {
const target = e.target as HTMLDivElement;
const text = target.innerText;
setContent(text);
adjustInputHeight();
}
return (
<Container>
<InnerContainer>
<div
style={{
overflowX: "hidden",
overflowY: "scroll",
maxHeight: "50vh",
borderRadius: "8px",
}}
>
<div
style={{
paddingLeft: "16px",
display: "flex",
position: "relative",
}}
>
<div
style={{
padding: 0,
backgroundColor: "transparent",
resize: "none",
border: "none",
appearance: "none",
fontWeight: 400,
fontSize: "16px",
width: "100%",
height: "44px",
minHeight: "44px",
// maxHeight: "50vh",
color: "var(--text-normal)",
position: "relative",
}}
ref={wrapperRef}
>
<div>
<span
ref={placeholderRef}
style={{
padding: "12px 16px",
}}
>
Message #{props.channel?.name}
</span>
<TextInput
role="textbox"
spellCheck="true"
autoCorrect="off"
contentEditable="true"
onInput={onChange}
/>
</div>
</div>
</div>
</div>
</InnerContainer>
</Container>
);
}
export default MessageInput;