MentionNode: add Tooltip
This commit is contained in:
parent
5aacfe299a
commit
f6d60c243a
1 changed files with 11 additions and 8 deletions
|
@ -8,6 +8,8 @@ import { addClassNamesToElement } from '@lexical/utils';
|
||||||
import { $applyNodeReplacement, DecoratorNode } from 'lexical';
|
import { $applyNodeReplacement, DecoratorNode } from 'lexical';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
|
import { Tooltip } from 'soapbox/components/ui';
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
EditorConfig,
|
EditorConfig,
|
||||||
LexicalNode,
|
LexicalNode,
|
||||||
|
@ -79,14 +81,15 @@ class MentionNode extends DecoratorNode<JSX.Element> {
|
||||||
const username = acct.split('@')[0];
|
const username = acct.split('@')[0];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<Tooltip text={`@${acct}`}>
|
||||||
className='text-accent-blue'
|
<button
|
||||||
type='button'
|
className='text-accent-blue'
|
||||||
title={`@${acct}`}
|
type='button'
|
||||||
dir='ltr'
|
dir='ltr'
|
||||||
>
|
>
|
||||||
@{username}
|
@{username}
|
||||||
</button>
|
</button>
|
||||||
|
</Tooltip>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue