Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Boudes
mastodon
Commits
8e33fc29
Commit
8e33fc29
authored
7 years ago
by
MIYAGI Hikaru
Committed by
Eugen Rochko
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
redo #4500 with customEmojis (#5016)
parent
1de6c525
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/javascript/mastodon/emoji.js
+29
-37
29 additions, 37 deletions
app/javascript/mastodon/emoji.js
with
29 additions
and
37 deletions
app/javascript/mastodon/emoji.js
+
29
−
37
View file @
8e33fc29
...
...
@@ -4,47 +4,39 @@ import Trie from 'substring-trie';
const
trie
=
new
Trie
(
Object
.
keys
(
unicodeMapping
));
const
emojify
=
(
str
,
customEmojis
=
{})
=>
{
// This walks through the string from start to end, ignoring any tags (<p>, <br>, etc.)
// and replacing valid unicode strings
// that _aren't_ within tags with an <img> version.
// The goal is to be the same as an emojione.regUnicode replacement, but faster.
let
i
=
-
1
;
let
insideTag
=
false
;
let
insideShortname
=
false
;
let
shortnameStartIndex
=
-
1
;
let
match
;
while
(
++
i
<
str
.
length
)
{
const
char
=
str
.
charAt
(
i
);
if
(
insideShortname
&&
char
===
'
:
'
)
{
const
shortname
=
str
.
substring
(
shortnameStartIndex
,
i
+
1
);
if
(
shortname
in
customEmojis
)
{
const
replacement
=
`<img draggable="false" class="emojione" alt="
${
shortname
}
" title="
${
shortname
}
" src="
${
customEmojis
[
shortname
]}
" />`
;
str
=
str
.
substring
(
0
,
shortnameStartIndex
)
+
replacement
+
str
.
substring
(
i
+
1
);
i
+=
(
replacement
.
length
-
shortname
.
length
-
1
);
// jump ahead the length we've added to the string
let
rtn
=
''
;
for
(;;)
{
let
match
,
i
=
0
,
tag
;
while
(
i
<
str
.
length
&&
(
tag
=
'
<&:
'
.
indexOf
(
str
[
i
]))
===
-
1
&&
!
(
match
=
trie
.
search
(
str
.
slice
(
i
))))
{
i
+=
str
.
codePointAt
(
i
)
<
65536
?
1
:
2
;
}
if
(
i
===
str
.
length
)
break
;
else
if
(
tag
>=
0
)
{
let
tagend
=
str
.
indexOf
(
'
>;:
'
[
tag
],
i
+
1
)
+
1
;
if
(
!
tagend
)
break
;
if
(
str
[
i
]
===
'
:
'
)
{
const
shortname
=
str
.
slice
(
i
,
tagend
);
const
lt
=
str
.
indexOf
(
'
<
'
,
i
+
1
);
if
((
lt
===
-
1
||
lt
>=
tagend
)
&&
shortname
in
customEmojis
)
{
rtn
+=
str
.
slice
(
0
,
i
)
+
`<img draggable="false" class="emojione" alt="
${
shortname
}
" title="
${
shortname
}
" src="
${
customEmojis
[
shortname
]}
" />`
;
str
=
str
.
slice
(
tagend
);
}
else
{
rtn
+=
str
.
slice
(
0
,
i
+
1
);
str
=
str
.
slice
(
i
+
1
);
}
}
else
{
i
--
;
}
insideShortname
=
false
;
}
else
if
(
insideTag
&&
char
===
'
>
'
)
{
insideTag
=
false
;
}
else
if
(
char
===
'
<
'
)
{
insideTag
=
true
;
insideShortname
=
false
;
}
else
if
(
!
insideTag
&&
char
===
'
:
'
)
{
insideShortname
=
true
;
shortnameStartIndex
=
i
;
}
else
if
(
!
insideTag
&&
(
match
=
trie
.
search
(
str
.
substring
(
i
))))
{
const
unicodeStr
=
match
;
if
(
unicodeStr
in
unicodeMapping
)
{
const
[
filename
,
shortCode
]
=
unicodeMapping
[
unicodeStr
];
const
alt
=
unicodeStr
;
const
replacement
=
`<img draggable="false" class="emojione" alt="
${
alt
}
" title=":
${
shortCode
}
:" src="/emoji/
${
filename
}
.svg" />`
;
str
=
str
.
substring
(
0
,
i
)
+
replacement
+
str
.
substring
(
i
+
unicodeStr
.
length
);
i
+=
(
replacement
.
length
-
unicodeStr
.
length
);
// jump ahead the length we've added to the string
rtn
+=
str
.
slice
(
0
,
tagend
);
str
=
str
.
slice
(
tagend
);
}
}
else
{
const
[
filename
,
shortCode
]
=
unicodeMapping
[
match
];
rtn
+=
str
.
slice
(
0
,
i
)
+
`<img draggable="false" class="emojione" alt="
${
match
}
" title=":
${
shortCode
}
:" src="/emoji/
${
filename
}
.svg" />`
;
str
=
str
.
slice
(
i
+
match
.
length
);
}
}
return
str
;
return
rtn
+
str
;
};
export
default
emojify
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment