react-revised-week-scheduler

![Travis (.org)](https://img.shields.io/travis/remotelock/react-week-scheduler.svg) ![npm](https://img.shields.io/npm/v/@remotelock/react-week-scheduler.svg)

Usage no npm install needed!

<script type="module">
  import reactRevisedWeekScheduler from 'https://cdn.skypack.dev/react-revised-week-scheduler';
</script>

README

react-revised-week-scheduler

Demo

Edit mmj3xzk4x

Installation

This is based on @remotelock/react-week-scheduler but with a few improvements in css and in this we can delete a schedule by selecting a time slot and pressing del key. Delete button will be added soon

npm install react-revised-week-scheduler

Basic Usage

import React, { useState } from 'react';
import 'resize-observer-polyfill/dist/ResizeObserver.global';
import { TimeGridScheduler, classes } from 'react-revised-week-scheduler';
import 'react-revised-week-scheduler/index.css';

const rangeStrings = [
  ['2019-03-03T22:45:00.000Z', '2019-03-04T01:15:00.000Z'],
  ['2019-03-04T22:15:00.000Z', '2019-03-05T01:00:00.000Z'],
  ['2019-03-05T22:00:00.000Z', '2019-03-06T01:00:00.000Z'],
  ['2019-03-06T22:00:00.000Z', '2019-03-07T01:00:00.000Z'],
  ['2019-03-07T05:30:00.000Z', '2019-03-07T10:00:00.000Z'],
  ['2019-03-08T22:00:00.000Z', '2019-03-09T01:00:00.000Z'],
  ['2019-03-09T22:00:00.000Z', '2019-03-10T01:00:00.000Z'],
];

const defaultSchedule = rangeStrings.map(range =>
  range.map(dateString => new Date(dateString)),
);

function App() {
  const [schedule, setSchedule] = useState(defaultSchedule);

  return (
    <TimeGridScheduler
      style={{ width: '100%', height: '25rem' }} // this is necessary otherwise time grid doesn't show up height="your custom"
      classes={classes}
      originDate={new Date('2019-03-04')}
      schedule={schedule}
      onChange={setSchedule}
    />
  );
}

Customization

react-week-scheduler ships with a set of default styles for convenience. The styles are compiled as CSS Modules class names. The components exported from the package do not import the styles by default. Instead, they expect a classes prop to be passed.

The class names need to be available at runtime as a regular JS object.

Using the default styles

To use the default styles, import the default classes object as well as the styles file and pass it to the component:

import { TimeGridScheduler, classes } from 'react-revised-week-scheduler';
import 'react-revised-week-scheduler/index.css';

function App() {
  return <TimeGridScheduler classes={classes} {...otherProps} />;
}

The stylesheet react-revised-week-scheduler/index.css has scoped class names precompiled, and the classes object has a mapping of class names to scoped class names. You do not need to have your bundle configured for CSS modules.

Browser Support

This library should work on any modern browser.

However, a global polyfill for ResizeObserver is required since ResizeObserver is currently only supported by Chrome 64+.

The following web platform features are used:

  • Flexbox
  • touch-action: none
  • position: sticky
  • Touch Events
  • CSS containement (optional)
  • Custom CSS Properties (optional)

Mobile Browser Support

Touch events are handled properly, with a 300ms delay on the initial touch start event to allow for scrolling.

The component should work fine on any modern mobile browser. However, due to lack of support for touch-action: none on iOS Safari, dragging or resizing time blocks may not work very well.