vydimitrov / react-countdown-circle-timer

Lightweight React/React Native countdown timer component with color and progress animation based on SVG
MIT License
692 stars 87 forks source link

need use multiple countdown #182

Closed amirsamani closed 2 years ago

amirsamani commented 3 years ago

hi, i use a countdown in each row of a table I want to delete that row when the each count down timer complete please help me.

vydimitrov commented 3 years ago

Hey, you can hook to the onComplete method and add your logic to delete the row

amirsamani commented 3 years ago

thanks is there any way to access parent tr of completed countdowntimer in onComplete method?

vydimitrov commented 3 years ago

This depends of your implantation. Usually you pass a prop, which is a method/function from the parent to the children. Then in the onComplete you call the prop/method and the parent takes it from there.

vydimitrov commented 2 years ago

Let me know if you need any additional help on this one.