Skip to content
Snippets Groups Projects
Commit da659032 authored by Jure's avatar Jure
Browse files

feat: add placeholder for empty conversations and display name

parent 44d28017
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,7 @@ import { ...@@ -22,6 +22,7 @@ import {
Bubble, Bubble,
InnerMessageContainer, InnerMessageContainer,
Byline, Byline,
Placeholder,
} from './style' } from './style'
const GET_MESSAGES = gql` const GET_MESSAGES = gql`
...@@ -37,6 +38,9 @@ const GET_MESSAGES = gql` ...@@ -37,6 +38,9 @@ const GET_MESSAGES = gql`
username username
profilePicture profilePicture
online online
defaultIdentity {
name
}
} }
} }
pageInfo { pageInfo {
...@@ -59,6 +63,9 @@ const MESSAGES_SUBSCRIPTION = gql` ...@@ -59,6 +63,9 @@ const MESSAGES_SUBSCRIPTION = gql`
username username
profilePicture profilePicture
online online
defaultIdentity {
name
}
} }
} }
} }
...@@ -214,6 +221,9 @@ const Messages = ({ channelId }) => { ...@@ -214,6 +221,9 @@ const Messages = ({ channelId }) => {
Show previous messages Show previous messages
</NextPageButton> </NextPageButton>
)} )}
{messages && !messages.length && (
<Placeholder>No discussion for this manuscript yet. Start by typing a message below.</Placeholder>
)}
{messages.map(group => { {messages.map(group => {
const initialMessage = group[0] const initialMessage = group[0]
if ( if (
...@@ -239,7 +249,7 @@ const Messages = ({ channelId }) => { ...@@ -239,7 +249,7 @@ const Messages = ({ channelId }) => {
{index === 0 && <UserAvatar user={message.user} />} {index === 0 && <UserAvatar user={message.user} />}
</GutterContainer> </GutterContainer>
<InnerMessageContainer> <InnerMessageContainer>
{index === 0 && <Byline>{message.user.username}</Byline>} {index === 0 && <Byline>{message.user.defaultIdentity.name}</Byline>}
<Bubble> <Bubble>
<MessageRenderer message={message} /> <MessageRenderer message={message} />
</Bubble> </Bubble>
......
...@@ -138,3 +138,11 @@ export const EmbedComponent = styled.iframe` ...@@ -138,3 +138,11 @@ export const EmbedComponent = styled.iframe`
height: 100%; height: 100%;
width: 100%; width: 100%;
` `
export const Placeholder = styled.div`
display: grid;
place-items: center;
color: ${th('colorTextPlaceholder')};
height: 100%;
padding: 4em;
`
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment