Handle mentions & hashtags that has @ or # BEFORE the link
This commit is contained in:
parent
23057efcca
commit
80d8d287a3
1 changed files with 5 additions and 2 deletions
|
@ -6,7 +6,9 @@ function handleContentLinks(opts) {
|
||||||
let { target } = e;
|
let { target } = e;
|
||||||
target = target.closest('a');
|
target = target.closest('a');
|
||||||
if (!target) return;
|
if (!target) return;
|
||||||
if (target.classList.contains('u-url')) {
|
const prevText = target.previousSibling?.textContent;
|
||||||
|
const textBeforeLinkIsAt = prevText?.endsWith('@');
|
||||||
|
if (target.classList.contains('u-url') || textBeforeLinkIsAt) {
|
||||||
const targetText = (
|
const targetText = (
|
||||||
target.querySelector('span') || target
|
target.querySelector('span') || target
|
||||||
).innerText.trim();
|
).innerText.trim();
|
||||||
|
@ -36,7 +38,8 @@ function handleContentLinks(opts) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
} else if (!previewMode) {
|
} else if (!previewMode) {
|
||||||
if (target.classList.contains('hashtag')) {
|
const textBeforeLinkIsHash = prevText?.endsWith('#');
|
||||||
|
if (target.classList.contains('hashtag') || textBeforeLinkIsHash) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
const tag = target.innerText.replace(/^#/, '').trim();
|
const tag = target.innerText.replace(/^#/, '').trim();
|
||||||
|
|
Loading…
Add table
Reference in a new issue