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
5cce0441
Commit
5cce0441
authored
Nov 16, 2017
by
afc163
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debounce not working
parent
486ec4fa
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
10 deletions
+25
-10
src/components/Charts/Bar/index.js
src/components/Charts/Bar/index.js
+4
-1
src/components/Charts/Pie/index.js
src/components/Charts/Pie/index.js
+5
-2
src/components/Charts/TagCloud/index.js
src/components/Charts/TagCloud/index.js
+3
-0
src/layouts/BasicLayout.js
src/layouts/BasicLayout.js
+9
-6
src/routes/Profile/AdvancedProfile.js
src/routes/Profile/AdvancedProfile.js
+4
-1
No files found.
src/components/Charts/Bar/index.js
View file @
5cce0441
import
React
,
{
PureComponent
}
from
'
react
'
;
import
G2
from
'
g2
'
;
import
Debounce
from
'
lodash-decorators/debounce
'
;
import
Bind
from
'
lodash-decorators/bind
'
;
import
equal
from
'
../equal
'
;
import
styles
from
'
../index.less
'
;
...
...
@@ -26,10 +27,12 @@ class Bar extends PureComponent {
if
(
this
.
chart
)
{
this
.
chart
.
destroy
();
}
this
.
resize
.
cancel
();
}
@
Bind
()
@
Debounce
(
200
)
resize
=
()
=>
{
resize
()
{
if
(
!
this
.
node
)
{
return
;
}
...
...
src/components/Charts/Pie/index.js
View file @
5cce0441
...
...
@@ -4,6 +4,7 @@ import { Divider } from 'antd';
import
classNames
from
'
classnames
'
;
import
ReactFitText
from
'
react-fittext
'
;
import
Debounce
from
'
lodash-decorators/debounce
'
;
import
Bind
from
'
lodash-decorators/bind
'
;
import
equal
from
'
../equal
'
;
import
styles
from
'
./index.less
'
;
...
...
@@ -31,10 +32,12 @@ class Pie extends Component {
if
(
this
.
chart
)
{
this
.
chart
.
destroy
();
}
this
.
resize
.
cancel
();
}
@
Debounce
(
200
)
resize
=
()
=>
{
@
Bind
()
@
Debounce
(
300
)
resize
()
{
const
{
hasLegend
}
=
this
.
props
;
if
(
!
hasLegend
||
!
this
.
root
)
{
window
.
removeEventListener
(
'
resize
'
,
this
.
resize
);
...
...
src/components/Charts/TagCloud/index.js
View file @
5cce0441
...
...
@@ -3,6 +3,7 @@ import classNames from 'classnames';
import
G2
from
'
g2
'
;
import
Cloud
from
'
g-cloud
'
;
import
Debounce
from
'
lodash-decorators/debounce
'
;
import
Bind
from
'
lodash-decorators/bind
'
;
import
styles
from
'
./index.less
'
;
/* eslint no-underscore-dangle: 0 */
...
...
@@ -26,6 +27,7 @@ class TagCloud extends PureComponent {
componentWillUnmount
()
{
window
.
removeEventListener
(
'
resize
'
,
this
.
resize
);
this
.
resize
.
cancel
();
}
resize
=
()
=>
{
...
...
@@ -73,6 +75,7 @@ class TagCloud extends PureComponent {
this
.
node
=
node
;
}
@
Bind
()
@
Debounce
(
500
)
renderChart
=
(
newData
)
=>
{
const
data
=
newData
||
this
.
props
.
data
;
...
...
src/layouts/BasicLayout.js
View file @
5cce0441
...
...
@@ -8,6 +8,7 @@ import moment from 'moment';
import
groupBy
from
'
lodash/groupBy
'
;
import
{
ContainerQuery
}
from
'
react-container-query
'
;
import
classNames
from
'
classnames
'
;
import
Debounce
from
'
lodash-decorators/debounce
'
;
import
HeaderSearch
from
'
../components/HeaderSearch
'
;
import
NoticeIcon
from
'
../components/NoticeIcon
'
;
import
GlobalFooter
from
'
../components/GlobalFooter
'
;
...
...
@@ -69,7 +70,7 @@ class BasicLayout extends React.PureComponent {
});
}
componentWillUnmount
()
{
clearTimeout
(
this
.
resizeTimeout
);
this
.
triggerResizeEvent
.
cancel
(
);
}
onCollapse
=
(
collapsed
)
=>
{
this
.
props
.
dispatch
({
...
...
@@ -216,11 +217,13 @@ class BasicLayout extends React.PureComponent {
type
:
'
global/changeLayoutCollapsed
'
,
payload
:
!
collapsed
,
});
this
.
resizeTimeout
=
setTimeout
(()
=>
{
this
.
triggerResizeEvent
();
}
@
Debounce
(
600
)
triggerResizeEvent
()
{
// eslint-disable-line
const
event
=
document
.
createEvent
(
'
HTMLEvents
'
);
event
.
initEvent
(
'
resize
'
,
true
,
false
);
window
.
dispatchEvent
(
event
);
},
600
);
}
handleNoticeClear
=
(
type
)
=>
{
message
.
success
(
`ζΈ η©ΊδΊ
${
type
}
`
);
...
...
src/routes/Profile/AdvancedProfile.js
View file @
5cce0441
import
React
,
{
Component
}
from
'
react
'
;
import
Debounce
from
'
lodash-decorators/debounce
'
;
import
Bind
from
'
lodash-decorators/bind
'
;
import
{
connect
}
from
'
dva
'
;
import
{
Button
,
Menu
,
Dropdown
,
Icon
,
Row
,
Col
,
Steps
,
Card
,
Popover
,
Badge
,
Table
,
Tooltip
,
Divider
}
from
'
antd
'
;
import
classNames
from
'
classnames
'
;
...
...
@@ -160,14 +161,16 @@ export default class AdvancedProfile extends Component {
componentWillUnmount
()
{
window
.
removeEventListener
(
'
resize
'
,
this
.
setStepDirection
);
this
.
setStepDirection
.
cancel
();
}
onOperationTabChange
=
(
key
)
=>
{
this
.
setState
({
operationkey
:
key
});
}
@
Bind
()
@
Debounce
(
200
)
setStepDirection
=
()
=>
{
setStepDirection
()
{
const
{
stepDirection
}
=
this
.
state
;
const
w
=
getWindowWidth
();
if
(
stepDirection
!==
'
vertical
'
&&
w
<=
576
)
{
...
...
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