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
00278519
Commit
00278519
authored
Dec 08, 2017
by
dong
Committed by
niko
Dec 08, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
repair problem: countdown will not change when target time update (#392)
parent
9d9025a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
src/components/CountDown/index.js
src/components/CountDown/index.js
+9
-6
No files found.
src/components/CountDown/index.js
View file @
00278519
...
@@ -21,9 +21,12 @@ class CountDown extends Component {
...
@@ -21,9 +21,12 @@ class CountDown extends Component {
componentWillReceiveProps
(
nextProps
)
{
componentWillReceiveProps
(
nextProps
)
{
if
(
this
.
props
.
target
!==
nextProps
.
target
)
{
if
(
this
.
props
.
target
!==
nextProps
.
target
)
{
clearTimeout
(
this
.
timer
);
const
{
lastTime
}
=
this
.
initTime
(
nextProps
);
const
{
lastTime
}
=
this
.
initTime
(
nextProps
);
this
.
setState
({
this
.
setState
({
lastTime
,
lastTime
,
},
()
=>
{
this
.
tick
();
});
});
}
}
}
}
...
@@ -76,18 +79,18 @@ class CountDown extends Component {
...
@@ -76,18 +79,18 @@ class CountDown extends Component {
clearTimeout
(
this
.
timer
);
clearTimeout
(
this
.
timer
);
this
.
setState
({
this
.
setState
({
lastTime
:
0
,
lastTime
:
0
,
},
()
=>
{
if
(
onEnd
)
{
onEnd
();
}
});
});
if
(
onEnd
)
{
onEnd
();
}
}
else
{
}
else
{
lastTime
-=
this
.
interval
;
lastTime
-=
this
.
interval
;
this
.
setState
({
this
.
setState
({
lastTime
,
lastTime
,
},
()
=>
{
this
.
tick
();
});
});
this
.
tick
();
}
}
},
this
.
interval
);
},
this
.
interval
);
}
}
...
...
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