Skip to content

Instantly share code, notes, and snippets.

@clc80
Last active May 23, 2018 04:20
Show Gist options
  • Save clc80/131a5e7226759a8dafff5b0c2f782401 to your computer and use it in GitHub Desktop.
Save clc80/131a5e7226759a8dafff5b0c2f782401 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
class Clock extends React.Component {
constructor(props) {
super(props);
const currentTime = new Date()
this.state = {
hours: currentTime.getHours(),
minutes: currentTime.getMinutes(),
seconds: currentTime.getSeconds(),
ampm: currentTime.getHours() >= 12 ? 'pm': 'am'
};
this.setTimer();
}
setTimer() {
//will run for 1 second and then call updateClock
setTimeout(this.updateClock.bind(this), 1000);
}
updateClock() {
//After one second it will update the Clock by one second
}
render() {
const {hours, minutes, seconds, ampm} = this.state;
return(
<div className="clock"> {
hours == 0 ? 12: (hours > 12) ?
hours - 12: hours
}:
{
minutes > 9 ? minutes: `0${minutes}`
}:
{
seconds > 0 ? seconds: `0${seconds}`
}
{ampm}
</div>
)
}
}
export default Clock;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment