@zendeskgarden/container-schedule
TypeScript icon, indicating that this package has built-in type declarations

2.0.9 • Public • Published

@zendeskgarden/container-schedule npm version

This package includes containers relating to schedule in the Garden Design System.

Installation

npm install @zendeskgarden/container-schedule

Usage

Check out storybook for live examples.

As a hook

The useSchedule hook implements a schedule (timer) and communicates when it has elapsed.

import { useSchedule } from '@zendeskgarden/container-schedule';

const Animation = () => {
  const elapsed = useSchedule({ duration: 1000, delayMS: 0 });

  return <p>Percentage: {(elapsed * 100).toFixed(0)}%</p>;
};

As a Render Prop Component

import { ScheduleContainer } from '@zendeskgarden/container-schedule';

<ScheduleContainer duration={1000} delayMS={0}>
  {elapsed => <p>Percentage: {(elapsed * 100).toFixed(0)}%</p>}
</ScheduleContainer>;

Info

See react-loaders component as a non-trivial use of this.

Package Sidebar

Install

npm i @zendeskgarden/container-schedule

Weekly Downloads

5,636

Version

2.0.9

License

Apache-2.0

Unpacked Size

18.4 kB

Total Files

8

Last publish

Collaborators

  • zendesk-garden