Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ant-design-pro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
ant-design-pro
Commits
08a59602
Commit
08a59602
authored
Sep 06, 2018
by
ιεΈ
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #2168 When auto-hide is off, the header is displayed.
parent
555d8984
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
src/layouts/Header.js
src/layouts/Header.js
+13
-6
No files found.
src/layouts/Header.js
View file @
08a59602
...
@@ -15,6 +15,15 @@ class HeaderView extends PureComponent {
...
@@ -15,6 +15,15 @@ class HeaderView extends PureComponent {
visible
:
true
,
visible
:
true
,
};
};
static
getDerivedStateFromProps
(
props
,
state
)
{
if
(
!
props
.
autoHideHeader
&&
!
state
.
visible
)
{
return
{
visible
:
true
,
};
}
return
null
;
}
componentDidMount
()
{
componentDidMount
()
{
document
.
addEventListener
(
'
scroll
'
,
this
.
handScroll
,
{
passive
:
true
});
document
.
addEventListener
(
'
scroll
'
,
this
.
handScroll
,
{
passive
:
true
});
}
}
...
@@ -87,12 +96,12 @@ class HeaderView extends PureComponent {
...
@@ -87,12 +96,12 @@ class HeaderView extends PureComponent {
this
.
scrollTop
=
scrollTop
;
this
.
scrollTop
=
scrollTop
;
return
;
return
;
}
}
if
(
scrollTop
>
4
00
&&
visible
)
{
if
(
scrollTop
>
3
00
&&
visible
)
{
this
.
setState
({
this
.
setState
({
visible
:
false
,
visible
:
false
,
});
});
}
}
if
(
scrollTop
<
4
00
&&
!
visible
)
{
if
(
scrollTop
<
3
00
&&
!
visible
)
{
this
.
setState
({
this
.
setState
({
visible
:
true
,
visible
:
true
,
});
});
...
@@ -109,11 +118,9 @@ class HeaderView extends PureComponent {
...
@@ -109,11 +118,9 @@ class HeaderView extends PureComponent {
const
{
navTheme
,
layout
,
fixedHeader
}
=
setting
;
const
{
navTheme
,
layout
,
fixedHeader
}
=
setting
;
const
{
visible
}
=
this
.
state
;
const
{
visible
}
=
this
.
state
;
const
isTop
=
layout
===
'
topmenu
'
;
const
isTop
=
layout
===
'
topmenu
'
;
const
width
=
this
.
getHeadWidth
();
const
HeaderDom
=
visible
?
(
const
HeaderDom
=
visible
?
(
<
Header
<
Header
style
=
{{
padding
:
0
,
width
}}
className
=
{
fixedHeader
?
styles
.
fixedHeader
:
''
}
>
style
=
{{
padding
:
0
,
width
:
this
.
getHeadWidth
()
}}
className
=
{
fixedHeader
?
styles
.
fixedHeader
:
''
}
>
{
isTop
&&
!
isMobile
?
(
{
isTop
&&
!
isMobile
?
(
<
TopNavHeader
<
TopNavHeader
theme
=
{
navTheme
}
theme
=
{
navTheme
}
...
...
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