split up a bit of the mentions/emoji input
parent
2478a78794
commit
445852eca1
@ -0,0 +1,44 @@
|
||||
import React from 'react';
|
||||
import { SuggestionDataItem } from 'react-mentions';
|
||||
import styled from 'styled-components';
|
||||
import { BaseEmoji, emojiIndex } from 'emoji-mart';
|
||||
|
||||
const EmojiQuickResult = styled.span`
|
||||
width: 100%;
|
||||
padding-inline-end: 20px;
|
||||
padding-inline-start: 10px;
|
||||
`;
|
||||
const EmojiQuickResultIcon = styled.span`
|
||||
padding-inline-end: 20px;
|
||||
padding-inline-start: 10px;
|
||||
font-size: 1.4em;
|
||||
`;
|
||||
const EmojiQuickResultText = styled.span``;
|
||||
|
||||
export const renderEmojiQuickResultRow = (suggestion: SuggestionDataItem) => {
|
||||
return (
|
||||
<EmojiQuickResult>
|
||||
<EmojiQuickResultIcon>{suggestion.id}</EmojiQuickResultIcon>
|
||||
<EmojiQuickResultText>{suggestion.display}</EmojiQuickResultText>
|
||||
</EmojiQuickResult>
|
||||
);
|
||||
};
|
||||
|
||||
export const searchEmojiForQuery = (query: string): Array<SuggestionDataItem> => {
|
||||
if (query.length === 0 || !emojiIndex) {
|
||||
return [];
|
||||
}
|
||||
const results = emojiIndex.search(query);
|
||||
if (!results || !results.length) {
|
||||
return [];
|
||||
}
|
||||
return results
|
||||
.map(o => {
|
||||
const onlyBaseEmokji = o as BaseEmoji;
|
||||
return {
|
||||
id: onlyBaseEmokji.native,
|
||||
display: onlyBaseEmokji.colons,
|
||||
};
|
||||
})
|
||||
.slice(0, 8);
|
||||
};
|
@ -0,0 +1,49 @@
|
||||
import React from 'react';
|
||||
import { SuggestionDataItem } from 'react-mentions';
|
||||
import { MemberListItem } from '../../MemberListItem';
|
||||
|
||||
export const styleForCompositionBoxSuggestions = {
|
||||
suggestions: {
|
||||
list: {
|
||||
fontSize: 14,
|
||||
boxShadow: 'rgba(0, 0, 0, 0.24) 0px 3px 8px',
|
||||
backgroundColor: 'var(--color-cell-background)',
|
||||
},
|
||||
item: {
|
||||
height: '100%',
|
||||
paddingTop: '5px',
|
||||
paddingBottom: '5px',
|
||||
backgroundColor: 'var(--color-cell-background)',
|
||||
transition: '0.25s',
|
||||
|
||||
'&focused': {
|
||||
backgroundColor: 'var(--color-clickable-hovered)',
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export const renderUserMentionRow = (suggestion: SuggestionDataItem) => {
|
||||
return (
|
||||
<MemberListItem
|
||||
isSelected={false}
|
||||
key={suggestion.id}
|
||||
pubkey={`${suggestion.id}`}
|
||||
disableBg={true}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
// this is dirty but we have to replace all @(xxx) by @xxx manually here
|
||||
export function cleanMentions(text: string): string {
|
||||
const matches = text.match(mentionsRegex);
|
||||
let replacedMentions = text;
|
||||
(matches || []).forEach(match => {
|
||||
const replacedMention = match.substring(2, match.indexOf('\uFFD7'));
|
||||
replacedMentions = replacedMentions.replace(match, `@${replacedMention}`);
|
||||
});
|
||||
|
||||
return replacedMentions;
|
||||
}
|
||||
|
||||
export const mentionsRegex = /@\uFFD205[0-9a-f]{64}\uFFD7[^\uFFD2]+\uFFD2/gu;
|
Loading…
Reference in New Issue