Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to restart the timer ? #33

Open
shafarizkyf opened this issue Feb 28, 2020 · 1 comment · May be fixed by #36
Open

How to restart the timer ? #33

shafarizkyf opened this issue Feb 28, 2020 · 1 comment · May be fixed by #36
Labels
enhancement New feature or request @next-release Functionality will be fixed/added in next release

Comments

@shafarizkyf
Copy link

No description provided.

@crup
Copy link
Contributor

crup commented Feb 28, 2020

For now you can restart the timer by updating the key.
Here's the sample code below:

import React, { useState } from "react";
import ReactTimer from "@xendora/react-timer";
import "./styles.css";

export default function App() {
  const [isRestarted, setIsRestarted] = useState(false);
  return (
    <div className="App">
      <ReactTimer
        start={0}
        key={isRestarted}
        end={value => value === 30}
        onEnd={value => console.log("ENDED WITH VALUE", value)}
        onTick={value => value + 1}
      >
        {time => <div>{time}</div>}
      </ReactTimer>
      <button
        onClick={() => {
          setIsRestarted(!isRestarted);
        }}
      >
        Restart
      </button>
    </div>
  );
}

https://codesandbox.io/s/autumn-feather-fhxyb

@Bryze Let's evaluate if the need restart functionality as a prop.
@shafarizkyf Any suggestions regarding api for restarting the timer are most welcome.

@crup crup linked a pull request Apr 29, 2020 that will close this issue
9 tasks
@crup crup added enhancement New feature or request @next-release Functionality will be fixed/added in next release labels Apr 29, 2020
@crup crup linked a pull request Apr 29, 2020 that will close this issue
9 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request @next-release Functionality will be fixed/added in next release
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants