Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit bece936

Browse files
authored
Merge pull request #4583 from withspectrum/2.6.3
2.6.3
2 parents 4ba3dff + 1eb20c8 commit bece936

File tree

5 files changed

+94
-24
lines changed

5 files changed

+94
-24
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Spectrum",
3-
"version": "2.6.2",
3+
"version": "2.6.3",
44
"license": "BSD-3-Clause",
55
"devDependencies": {
66
"@babel/preset-flow": "^7.0.0",

src/components/chatInput/index.js

+47-13
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ import {
2626
StyledMentionSuggestion,
2727
SuggestionsWrapper,
2828
MentionUsername,
29+
MentionContent,
30+
MentionName,
2931
} from './style';
3032
import sendMessage from 'shared/graphql/mutations/message/sendMessage';
3133
import sendDirectMessage from 'shared/graphql/mutations/message/sendDirectMessage';
@@ -38,8 +40,11 @@ import { ESC, BACKSPACE, DELETE } from 'src/helpers/keycodes';
3840

3941
const MentionSuggestion = ({ entry, search, focused }) => (
4042
<StyledMentionSuggestion focused={focused}>
41-
<UserAvatar size={24} user={entry} />
42-
<MentionUsername>{entry.username}</MentionUsername>
43+
<UserAvatar size={32} user={entry} />
44+
<MentionContent>
45+
<MentionName focused={focused}>{entry.name}</MentionName>
46+
<MentionUsername focused={focused}>@{entry.username}</MentionUsername>
47+
</MentionContent>
4348
</StyledMentionSuggestion>
4449
);
4550

@@ -292,21 +297,40 @@ const ChatInput = (props: Props) => {
292297
);
293298
};
294299

300+
const sortSuggestions = (a, b, queryString) => {
301+
const aUsernameIndex = a.username.indexOf(queryString || '');
302+
const bUsernameIndex = b.username.indexOf(queryString || '');
303+
const aNameIndex = a.filterName.indexOf(queryString || '');
304+
const bNameIndex = b.filterName.indexOf(queryString || '');
305+
if (aNameIndex === 0) return -1;
306+
if (aUsernameIndex === 0) return -1;
307+
if (aNameIndex === 0) return -1;
308+
if (aUsernameIndex === 0) return -1;
309+
return aNameIndex - bNameIndex || aUsernameIndex - bUsernameIndex;
310+
};
311+
295312
const searchUsers = async (queryString, callback) => {
296313
const filteredParticipants = props.participants
297314
? props.participants
298315
.filter(Boolean)
299-
.filter(
300-
participant => participant.username.indexOf(queryString || '') > -1
301-
)
302-
.sort(
303-
(a, b) =>
304-
a.username.indexOf(queryString || '') -
305-
b.username.indexOf(queryString || '')
306-
)
316+
.filter(participant => {
317+
return (
318+
participant.username &&
319+
(participant.username.indexOf(queryString || '') > -1 ||
320+
participant.filterName.indexOf(queryString || '') > -1)
321+
);
322+
})
323+
.sort((a, b) => {
324+
return sortSuggestions(a, b, queryString);
325+
})
326+
.slice(0, 8)
307327
: [];
328+
308329
callback(filteredParticipants);
309-
if (!queryString || queryString.length === 0) return;
330+
331+
if (!queryString || queryString.length === 0)
332+
return callback(filteredParticipants);
333+
310334
const {
311335
data: { search },
312336
} = await props.client.query({
@@ -316,31 +340,40 @@ const ChatInput = (props: Props) => {
316340
type: 'USERS',
317341
},
318342
});
319-
if (!search || !search.searchResultsConnection) return;
343+
344+
if (!search || !search.searchResultsConnection) {
345+
if (filteredParticipants && filteredParticipants.length > 0)
346+
return filteredParticipants;
347+
return;
348+
}
320349

321350
let searchUsers = search.searchResultsConnection.edges
322351
.filter(Boolean)
352+
.filter(edge => edge.node.username)
323353
.map(edge => {
324354
const user = edge.node;
325355
return {
326356
...user,
327357
id: user.username,
328358
display: user.username,
329359
username: user.username,
360+
filterName: user.name.toLowerCase(),
330361
};
331362
});
363+
332364
// Prepend the filtered participants in case a user is tabbing down right now
333365
const fullResults = [...filteredParticipants, ...searchUsers];
334366
const uniqueResults = [];
335367
const done = [];
368+
336369
fullResults.forEach(item => {
337370
if (done.indexOf(item.username) === -1) {
338371
uniqueResults.push(item);
339372
done.push(item.username);
340373
}
341374
});
342375

343-
callback(uniqueResults);
376+
return callback(uniqueResults.slice(0, 8));
344377
};
345378

346379
const networkDisabled =
@@ -414,6 +447,7 @@ const ChatInput = (props: Props) => {
414447
<Mention
415448
trigger="@"
416449
data={searchUsers}
450+
appendSpaceOnAdd={true}
417451
renderSuggestion={(
418452
entry,
419453
search,

src/components/chatInput/style.js

+24-8
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ const MentionsInputStyle = {
102102
suggestions: {
103103
list: {
104104
backgroundColor: theme.bg.default,
105-
boxShadow: '1px 0 8px rgba(0,0,0,0.08)',
105+
boxShadow: '1px 0 12px rgba(0,0,0,0.12)',
106106
borderRadius: '4px',
107107
overflow: 'hidden',
108-
bottom: '24px',
108+
bottom: '28px',
109109
position: 'absolute',
110110
},
111111
},
@@ -349,17 +349,33 @@ export const MarkdownHint = styled.div`
349349

350350
export const StyledMentionSuggestion = styled.div`
351351
display: flex;
352-
padding: 4px 8px;
353-
font-size: 14px;
354-
font-weight: 500;
355-
color: ${props => (props.focused ? theme.brand.default : theme.text.default)};
352+
padding: 8px 12px;
356353
align-items: center;
357354
background: ${props => (props.focused ? theme.brand.wash : theme.bg.default)};
358355
min-width: 156px;
356+
line-height: 1.3;
357+
border-bottom: 1px solid ${theme.bg.border};
358+
`;
359+
360+
export const MentionContent = styled.div`
361+
display: flex;
362+
flex-direction: column;
363+
`;
364+
365+
export const MentionName = styled.span`
366+
margin-left: 12px;
367+
width: calc(184px - 62px);
368+
${Truncate};
369+
font-size: 14px;
370+
font-weight: 500;
371+
color: ${props => (props.focused ? theme.brand.default : theme.text.default)};
359372
`;
360373

361374
export const MentionUsername = styled.span`
362-
margin-left: 8px;
363-
width: calc(156px - 62px);
375+
margin-left: 12px;
376+
font-size: 13px;
377+
font-weight: 400;
378+
width: calc(184px - 62px);
364379
${Truncate};
380+
color: ${props => (props.focused ? theme.brand.default : theme.text.alt)};
365381
`;

src/views/thread/components/messages.js

+8
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,14 @@ class MessagesWithData extends React.Component<Props, State> {
125125
componentDidMount() {
126126
this.subscribe();
127127

128+
if (
129+
this.props.data &&
130+
this.props.data.thread &&
131+
this.props.onMessagesLoaded
132+
) {
133+
this.props.onMessagesLoaded(this.props.data.thread);
134+
}
135+
128136
if (this.shouldForceScrollToBottom()) {
129137
return setTimeout(() => this.props.forceScrollToBottom());
130138
}

src/views/thread/container.js

+14-2
Original file line numberDiff line numberDiff line change
@@ -401,14 +401,26 @@ class ThreadContainer extends React.Component<Props, State> {
401401

402402
updateThreadParticipants = thread => {
403403
const { messageConnection, author } = thread;
404-
if (!messageConnection || messageConnection.edges.length === 0) return;
404+
405+
if (!messageConnection || messageConnection.edges.length === 0)
406+
return this.setState({
407+
participants: [
408+
{ ...author.user, filterName: author.user.name.toLowerCase() },
409+
],
410+
});
411+
405412
const participants = messageConnection.edges
406413
.map(edge => edge.node)
407414
.map(node => node.author.user);
408415

409416
const participantsWithAuthor = [...participants, author.user]
410417
.filter((user, index, array) => array.indexOf(user) === index)
411-
.map(user => ({ ...user, id: user.username, display: user.username }));
418+
.map(user => ({
419+
...user,
420+
id: user.username,
421+
display: user.username,
422+
filterName: user.name.toLowerCase(),
423+
}));
412424

413425
return this.setState({ participants: participantsWithAuthor });
414426
};

0 commit comments

Comments
 (0)