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
541fd9c0
Unverified
Commit
541fd9c0
authored
Apr 16, 2023
by
boojack
Committed by
GitHub
Apr 16, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update window resize listener (#1535)
parent
7d6934d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
9 deletions
+20
-9
HomeSidebar.tsx
web/src/components/HomeSidebar.tsx
+19
-8
Home.tsx
web/src/pages/Home.tsx
+1
-1
No files found.
web/src/components/HomeSidebar.tsx
View file @
541fd9c0
import
{
useEffect
}
from
"react"
;
import
{
useLocation
}
from
"react-router-dom"
;
import
{
resolution
}
from
"../utils/layout"
;
import
{
useLayoutStore
}
from
"../store/module"
;
import
{
useLayoutStore
,
useUserStore
}
from
"../store/module"
;
import
ShortcutList
from
"./ShortcutList"
;
import
TagList
from
"./TagList"
;
import
SearchBar
from
"./SearchBar"
;
import
UsageHeatMap
from
"./UsageHeatMap"
;
import
{
useLocation
}
from
"react-router-dom"
;
const
HomeSidebar
=
()
=>
{
const
location
=
useLocation
();
const
layoutStore
=
useLayoutStore
();
const
userStore
=
useUserStore
();
const
showHomeSidebar
=
layoutStore
.
state
.
showHomeSidebar
;
useEffect
(()
=>
{
let
lastStatus
=
layoutStore
.
state
.
showHomeSidebar
;
const
handleWindowResize
=
()
=>
{
if
(
window
.
innerWidth
<
resolution
.
md
)
{
layoutStore
.
setHomeSidebarStatus
(
false
);
}
else
{
la
youtStore
.
setHomeSidebarStatus
(
true
)
;
const
nextStatus
=
window
.
innerWidth
<
resolution
.
md
;
if
(
lastStatus
!==
nextStatus
)
{
layoutStore
.
setHomeSidebarStatus
(
nextStatus
);
la
stStatus
=
nextStatus
;
}
};
window
.
addEventListener
(
"resize"
,
handleWindowResize
);
handleWindowResize
();
return
()
=>
{
window
.
removeEventListener
(
"resize"
,
handleWindowResize
);
};
},
[
location
]);
return
(
...
...
@@ -45,8 +52,12 @@ const HomeSidebar = () => {
<
SearchBar
/>
</
div
>
<
UsageHeatMap
/>
<
ShortcutList
/>
<
TagList
/>
{
!
userStore
.
isVisitorMode
()
&&
(
<>
<
ShortcutList
/>
<
TagList
/>
</>
)
}
</
aside
>
</
div
>
);
...
...
web/src/pages/Home.tsx
View file @
541fd9c0
...
...
@@ -40,7 +40,7 @@ function Home() {
</
div
>
<
MemoList
/>
</
div
>
{
!
userStore
.
isVisitorMode
()
&&
<
HomeSidebar
/>
}
<
HomeSidebar
/>
</
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