react-mentions icon indicating copy to clipboard operation
react-mentions copied to clipboard

How can I add a image to suggested mention?

Open Cszart opened this issue 2 years ago • 3 comments

<Mention /> Component display a menu with the options, but I'm only able to display text as options. Is there way to display a picture as well? like twitter mentions?

Cszart avatar Feb 14 '23 03:02 Cszart

@Groommers - DO you want to display images in suggestion dropdown?

Musadiqkhan-nullbrainer avatar Feb 14 '23 17:02 Musadiqkhan-nullbrainer

Yes! i wanted to add a image next to the name of the dropdown. I already switched to Draftjs mentions plugin

Cszart avatar Feb 16 '23 18:02 Cszart

<Mention className='mentions__mention' trigger="@" displayTransform={(id, name) => @${name}} data={sessionUsers} onAdd={onAddMentions}

            renderSuggestion={(suggestion: any, _, __, index) => <RenderSuggestions suggestion={suggestion} />}
          />

hdk1705 avatar Jun 01 '23 07:06 hdk1705