From d77176bceb0088f138843c5e3e7e2d6435b52134 Mon Sep 17 00:00:00 2001 From: Bogdan Cochior <bogdan.cochior@thinslices.com> Date: Tue, 4 Sep 2018 09:30:48 +0300 Subject: [PATCH] fix(autosave): fix timer on autosave indicator --- packages/component-faraday-ui/src/AutosaveIndicator.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/component-faraday-ui/src/AutosaveIndicator.js b/packages/component-faraday-ui/src/AutosaveIndicator.js index 57f5d5955..10335b7e8 100644 --- a/packages/component-faraday-ui/src/AutosaveIndicator.js +++ b/packages/component-faraday-ui/src/AutosaveIndicator.js @@ -15,14 +15,22 @@ class AutosaveIndicator extends Component { this.timer = null } + componentDidMount() { + this.setTimer() + } + componentWillReceiveProps({ autosave: nextAutosave }) { const { autosave, toggleVisible } = this.props - if (autosave && !isEqual(autosave, nextAutosave)) { + if (!isEqual(autosave, nextAutosave)) { toggleVisible() this.setTimer() } } + componentWillUnmount() { + clearTimeout(this.timer) + } + setTimer = () => { const { toggleVisible, delay = 2000 } = this.props if (this.timer) { -- GitLab