Redo and fix trailing characters in user pills
This removes the handling of trailing chars from createMentionParts as we need to determine whether or not to insert the trailing char differently in different situations Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
c2b66d0dbe
commit
715fff6f0c
3 changed files with 6 additions and 10 deletions
|
@ -502,10 +502,8 @@ export default class SendMessageComposer extends React.Component {
|
|||
member.rawDisplayName : userId;
|
||||
const caret = this._editorRef.getCaret();
|
||||
const position = model.positionForOffset(caret.offset, caret.atNodeEnd);
|
||||
// createMentionParts() assumes that the mention already has it's own part
|
||||
// which isn't true, therefore we increase the position.index by 1. This
|
||||
// also solves the problem of the index being -1 when the composer is empty.
|
||||
const parts = partCreator.createMentionParts(position.index + 1, displayName, userId);
|
||||
// Insert suffix only if the caret is at the start of the composer
|
||||
const parts = partCreator.createMentionParts(caret.offset === 0, displayName, userId);
|
||||
model.transform(() => {
|
||||
const addedLen = model.insert(parts, position);
|
||||
return model.positionForOffset(caret.offset + addedLen, true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue