Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
16905664
Unverified
Commit
16905664
authored
Nov 17, 2022
by
boojack
Committed by
GitHub
Nov 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update emoji picker (#483)
parent
a24b8852
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
EmojiPicker.tsx
web/src/components/Editor/EmojiPicker.tsx
+18
-4
No files found.
web/src/components/Editor/EmojiPicker.tsx
View file @
16905664
import
Picker
,
{
IEmojiPickerProps
}
from
"emoji-picker-react"
;
import
Picker
,
{
IEmojiPickerProps
}
from
"emoji-picker-react"
;
import
{
useEffect
}
from
"react"
;
import
{
useEffect
,
useState
}
from
"react"
;
interface
Props
{
interface
Props
{
shouldShow
:
boolean
;
shouldShow
:
boolean
;
...
@@ -7,8 +7,15 @@ interface Props {
...
@@ -7,8 +7,15 @@ interface Props {
onShouldShowEmojiPickerChange
:
(
status
:
boolean
)
=>
void
;
onShouldShowEmojiPickerChange
:
(
status
:
boolean
)
=>
void
;
}
}
interface
State
{
hasShown
:
boolean
;
}
export
const
EmojiPicker
:
React
.
FC
<
Props
>
=
(
props
:
Props
)
=>
{
export
const
EmojiPicker
:
React
.
FC
<
Props
>
=
(
props
:
Props
)
=>
{
const
{
shouldShow
,
onEmojiClick
,
onShouldShowEmojiPickerChange
}
=
props
;
const
{
shouldShow
,
onEmojiClick
,
onShouldShowEmojiPickerChange
}
=
props
;
const
[
state
,
setState
]
=
useState
<
State
>
({
hasShown
:
false
,
});
useEffect
(()
=>
{
useEffect
(()
=>
{
if
(
shouldShow
)
{
if
(
shouldShow
)
{
...
@@ -25,13 +32,20 @@ export const EmojiPicker: React.FC<Props> = (props: Props) => {
...
@@ -25,13 +32,20 @@ export const EmojiPicker: React.FC<Props> = (props: Props) => {
capture
:
true
,
capture
:
true
,
once
:
true
,
once
:
true
,
});
});
setState
({
hasShown
:
true
,
});
}
}
},
[
shouldShow
]);
},
[
shouldShow
]);
return
(
return
(
<
div
className=
{
`emoji-picker ${shouldShow ? "" : "hidden"}`
}
>
<>
<
Picker
onEmojiClick=
{
onEmojiClick
}
disableSearchBar
/>
{
state
.
hasShown
&&
(
</
div
>
<
div
className=
{
`emoji-picker ${shouldShow ? "" : "hidden"}`
}
>
<
Picker
onEmojiClick=
{
onEmojiClick
}
disableSearchBar
/>
</
div
>
)
}
</>
);
);
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment