fb3a73d8a7
Enter: Odysee Premium.
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
// @flow
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
|
import React from 'react';
|
|
import PremiumBadge from 'component/common/premium-badge';
|
|
|
|
type Props = {
|
|
claimLabel?: string,
|
|
claimTitle?: string,
|
|
emote?: any,
|
|
uri?: string,
|
|
odyseeMembershipByUri: ?string,
|
|
};
|
|
|
|
export default function TextareaSuggestionsItem(props: Props) {
|
|
const { claimLabel, claimTitle, emote, uri, odyseeMembershipByUri, ...autocompleteProps } = props;
|
|
|
|
if (emote) {
|
|
const { name: value, url, unicode } = emote;
|
|
|
|
return (
|
|
<div {...autocompleteProps} dispatch={undefined}>
|
|
{unicode ? <div className="emote">{unicode}</div> : <img className="emote" src={url} />}
|
|
|
|
<div className="textarea-suggestion__label">
|
|
<span className="textarea-suggestion__title textarea-suggestion__value textarea-suggestion__value--emote">
|
|
{value}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (claimLabel) {
|
|
const value = claimLabel;
|
|
|
|
return (
|
|
<div {...autocompleteProps} dispatch={undefined}>
|
|
<ChannelThumbnail xsmall uri={uri} />
|
|
|
|
<div className="textarea-suggestion__label">
|
|
<span className="textarea-suggestion__title">{claimTitle || value}</span>
|
|
<span className="textarea-suggestion__value">
|
|
{value}
|
|
<PremiumBadge membership={odyseeMembershipByUri} />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|