first commit

This commit is contained in:
Pedro G. Galaviz
2019-11-28 20:55:32 -06:00
parent bde5ae77c1
commit 4a99a58085
63 changed files with 6227 additions and 174 deletions

View File

@@ -0,0 +1,25 @@
// Extracts mentions from text.
import { atSigns, endMentionMatch, validMention } from './regex'
export default function (text) {
if (!text || !text.match(atSigns)) {
return []
}
const mentions = []
text.replace(validMention, function (match, before, atSign, mentionText, offset, chunk) {
const after = chunk.slice(offset + match.length)
if (!after.match(endMentionMatch)) {
const startPosition = offset + before.length
const endPosition = startPosition + mentionText.length + 1
mentions.push({
username: mentionText,
indices: [startPosition, endPosition]
})
}
})
return mentions
}