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
6bb0b4cd
Unverified
Commit
6bb0b4cd
authored
May 21, 2023
by
CorrectRoadH
Committed by
GitHub
May 21, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: pop search when touch textarea in Android Chrome (#1700)
* fix: pop search when touch textarea * eslint
parent
56c6f603
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
31 deletions
+0
-31
HomeSidebar.tsx
web/src/components/HomeSidebar.tsx
+0
-31
No files found.
web/src/components/HomeSidebar.tsx
View file @
6bb0b4cd
import
{
useEffect
}
from
"react"
;
import
{
resolution
}
from
"../utils/layout"
;
import
{
useLayoutStore
,
useUserStore
}
from
"../store/module"
;
import
ShortcutList
from
"./ShortcutList"
;
import
TagList
from
"./TagList"
;
...
...
@@ -11,35 +9,6 @@ const HomeSidebar = () => {
const
userStore
=
useUserStore
();
const
showHomeSidebar
=
layoutStore
.
state
.
showHomeSidebar
;
useEffect
(()
=>
{
let
initialized
=
false
;
let
lastStatus
=
layoutStore
.
state
.
showHomeSidebar
;
const
handleWindowResize
=
()
=>
{
let
nextStatus
=
window
.
innerWidth
<
resolution
.
md
;
if
(
lastStatus
!==
nextStatus
)
{
if
(
!
initialized
&&
nextStatus
)
{
// Don't show sidebar on first load in mobile view.
nextStatus
=
false
;
}
layoutStore
.
setHomeSidebarStatus
(
nextStatus
);
lastStatus
=
nextStatus
;
}
if
(
!
initialized
)
{
initialized
=
true
;
return
;
}
};
window
.
addEventListener
(
"resize"
,
handleWindowResize
);
handleWindowResize
();
return
()
=>
{
window
.
removeEventListener
(
"resize"
,
handleWindowResize
);
};
},
[]);
return
(
<
div
className=
{
`fixed md:sticky top-0 left-0 w-full md:w-56 h-full shrink-0 pointer-events-none md:pointer-events-auto z-10 ${
...
...
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