Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-clock

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-clock

An analog clock for your React app.

  • 2.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
114K
decreased by-18.4%
Maintainers
2
Weekly downloads
 
Created
Source

downloads build dependencies dev dependencies tested with jest

React-Clock

An analog clock for your React app.

tl;dr

  • Install by executing npm install react-clock or yarn add react-clock.
  • Import by adding import Clock from 'react-clock'.
  • Use by adding <Clock />.

Demo

Minimal demo page is included in sample directory.

Online demo is also available!

Installation

Add React-Clock to your project by executing npm install react-clock or yarn add react-clock.

Usage

Here's an example of basic usage:

import React, { Component } from 'react';
import Clock from 'react-clock';

class MyApp extends Component {
  state = {
    date: new Date(),
  }

  componentDidMount() {
    setInterval(
      () => this.setState({ date: new Date() }),
      1000
    );
  }

  render() {
    return (
      <div>
        <p>Current time:</p>
        <Clock
          value={this.state.date}
        />
      </div>
    );
  }
}

Custom styling

If you don't want to use default React-Clock styling to build upon it, you can import React-Clock by using import Clock from 'react-clock/dist/entry.nostyle'; instead.

User guide

Clock

Displays a complete clock.

Props
Prop nameDescriptionDefault valueExample values
classNameClass name(s) that will be added along with "react-clock" to the main React-Clock <time> element.n/a
  • String: "class1 class2"
  • Array of strings: ["class1", "class2 class3"]
hourHandLengthHour hand length, in %.5080
hourHandOppositeLengthThe length of the part of an hour hand on the opposite side the hand is pointing to, in %.1020
hourHandWidthHour hand width, in pixels.43
hourMarksLengthHour marks length, in %.108
hourMarksWidthHour marks width, in pixels.32
minuteHandLengthMinute hand length, in %.7080
minuteHandOppositeLengthThe length of the part of a minute hand on the opposite side the hand is pointing to, in %.1020
minuteHandWidthMinute hand width, in pixels.23
minuteMarksLengthMinute marks length, in %.68
minuteMarksWidthMinute marks width, in pixels.12
renderHourMarksWhether hour marks shall be rendered.truefalse
renderMinuteHandWhether minute hand shall be rendered.truefalse
renderMinuteMarksWhether minute marks shall be rendered.truefalse
renderNumbersWhether numbers shall be rendered.falsetrue
renderSecondHandWhether second hand shall be rendered.truefalse
secondHandLengthSecond hand length, in %.9080
secondHandOppositeLengthThe length of the part of a second hand on the opposite side the hand is pointing to, in %.1020
secondHandWidthSecond hand width, in pixels.12
sizeClock size, in pixels.150250
valueClock value. Must be provided.n/aDate: new Date()

License

The MIT License.

Author

Wojciech Maj
kontakt@wojtekmaj.pl
http://wojtekmaj.pl

Keywords

FAQs

Package last updated on 28 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc