Only rendering the emoji picker when it's needed
If not done so the whole channel select render will take an eternity
This commit is contained in:
parent
4d9df41c35
commit
b17fb5dea8
1 changed files with 17 additions and 14 deletions
|
@ -59,7 +59,9 @@ const EmojiButton = (props: { events: Registry<ChatBoxEvents> }) => {
|
|||
<img alt={""} src={"img/smiley-smile.svg"} />
|
||||
</div>
|
||||
<div className={cssStyle.picker} style={{ display: shown ? undefined : "none" }}>
|
||||
{!shown ? undefined :
|
||||
<Picker
|
||||
key={"picker"}
|
||||
set={"twitter"}
|
||||
theme={"light"}
|
||||
showPreview={true}
|
||||
|
@ -74,6 +76,7 @@ const EmojiButton = (props: { events: Registry<ChatBoxEvents> }) => {
|
|||
}
|
||||
}}
|
||||
/>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue