npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-lightweight-calendar

v1.3.6

Published

Customizable calendar component to visualize entities.

Downloads

80

Readme

React Lightweight Calendar Component Documentation

Information

The Calendar component allows you to visualize entities. It provides various customization options to tailor the appearance and behavior of the calendar to your needs.

It can be customized for displaying various entities such as events, orders, activity calendars, reservations, bookings, rentals etc. It can be used for any entity that has at least one field in the ISO 8601 format. Each element on the calendar can be positioned based on a single field, based on any field that the data array contains, or based on any interval defined by separating two time date fields with a -.

Documentation

Storybook usage example

CodeSandbox typescript example

CodeSandbox javascript example

The component is written in TypeScript and is covered by tests. The calendar was developed using pure html, css and js (ts). The only library the calendar relies on during development is date-fns. The plan is to continue developing additional views and functionalities. The priority for developing other features is based on the emerging needs.

Images

| WEEK_TIME | DAY | DAY_REVERSE | MONTH | WEEK | WEEK_IN_PLACE | DAY_IN_PLACE | | :---: | :---: | :---: | :---: | :---: | :---: | :---: | | IMAGE LINK | IMAGE LINK | IMAGE LINK | IMAGE LINK | IMAGE LINK | IMAGE LINK | IMAGE_LINK

Props

The Calendar component accepts the following props:

  • data (REQUIRED): An array of item (for example event) objects that will be displayed on the calendar. Each item object should have the following properties:

    • id: A unique identifier for the item.
    • startTime: The start time of the item in ISO 8601 format. (it doesn't have to be strictly called the startTime)
    • endTime: The end time of the item in ISO 8601 format. (it doesn't have to be strictly called the endTime)
    • title: The title or label for the item (optional).
    • bgColor: The background color of the item (optional).
    • textColor: The text color of the item (optional).
  • currentView (DEFAULT: MONTH): A string indicating the current view of the calendar. It can be one of the following options:

    • WEEK_TIME: Display the calendar in a week view with a timeline.
    • DAY: Display the calendar in a day view with a timeline (The column is the day and the rows are the hours).
    • DAY_REVERSE: Display the calendar in a day view with a timeline (Columns are hours and row is day).
    • MONTH: Display the calendar in a month view with a timeline .
    • WEEK: Display the calendar in a week view with a timeline (similar as MONTH view).
    • WEEK_IN_PLACE: Display the calendar in a week view without a timeline. It is intended for grouping elements based on the start time interval. It can only be used to show the schedule of elements by hours
    • DAY_IN_PLACE: Display the calendar in a day view without a timeline. It is intended for grouping elements based on the start time interval. It can only be used to show the schedule of elements by hours
  • currentDate (REQUIRED, DEFAULT: now): The current date displayed on the calendar in the format 'YYYY-MM-DD'.

  • setCurrentDate: A callback function that is called when the current date is changed. It receives the new date as a parameter. If not sent, the navigation will not be visible. (In that case, you need to create your own navigation where only the currentDate will be passed to the calendar)

  • activeTimeDateField (required): The field based on which the events will be positioned on the calendar. It can be any time date field from the data array. It can also be an interval separated by a '-'. (startTime, endTime, createdAt, updatedAt, startTime-endTime, createdAt-updated...)

  • weekStartsOn: A number that regulates which day the week starts on. The numbers range from 0 to 6, where 0 represents Sunday, 1 represents Monday, and so on.

  • renderItem: A callback function for custom rendering of each element. It receives the item data and a boolean indicating if the element is currently being hovered over.

  • renderItemText: A callback function for custom rendering of the text content of each element. It receives the item data.

  • renderHeaderItem: A callback function for custom rendering of the header element in the WEEK_TIME and DAY views. It receives the header item data and additional information about the element's position.

  • renderHeaderItemText: A callback function for custom rendering of the text content of the header element in the WEEK_TIME and DAY views. It receives the header item data.

  • disableHoverEffect: A boolean value that determines whether a 'hovered' class name will be added to each hovered element. This can be used to apply custom styling to the hovered elements.

  • colorDots: An array of color dot objects that can be used to mark specific dates on the calendar. Each color dot object should have the following properties:

    • color: The color of the dot.
    • text: Information text associated with the dot.
    • date: The date on which the dot will be positioned.
  • timeDateFormat: An object that defines the format of time units displayed on the calendar. More about acceptable formats: https://date-fns.org/v2.29.3/docs/format.

    • day: The format for displaying the day in the calendar header.
    • hour: The format for displaying the hour on the left side of the calendar.
    • monthYear: The text for displaying the month and year in the navigation.
  • onDayNumberClick: A callback function that is called when a day number is clicked. It receives the clicked day and event as a parameter.

  • onDayStringClick: A callback function that is called when a day text is clicked. It receives the clicked day and event as a parameter.

  • onHourClick: A callback function that is called when an hour on the left side of the calendar is clicked. It receives the clicked hour and event as a parameter.

  • onColorDotClick: A callback function that is called when a color dot is clicked. It receives the clicked color dot information and event as a parameter.

  • onItemClick: A callback function that is called when an item is clicked. It receives the clicked item data and event as a parameter.

  • onCellClick: A callback function that is called when a cell on the calendar is clicked. It receives the clicked cell date information and event as a parameter.

  • onCellHeaderClick: A callback function that is called when a cell header is clicked. It receives the clicked cell date information and event as a parameter. It is the part to the left and right of the day number within cell. In the case of a MONTH and WEEK views, onCellClick method will be called instead of this one.

  • locale (DEFAULT: enUS): Accepts a locale object from the date-fns library. It controls the language used for displaying the names of days and months in the calendar.

  • cellDisplayMode: An object that controls the display mode of the cells in the calendar. It should have the following structure:

    • [CURRENT_VIEW]: The current view of the calendar (e.g., WEEK_TIME, DAY, MONTH, etc.).
      • inactiveCells: An array of inactive cell dates that should be hidden.
      • state: The state of the cell display mode. It can be one of the following options:
        • ALL_EXPANDED: Show all cells expanded (default).
        • ALL_COLLAPSED: Show all cells collapsed.
        • CUSTOM: Use a custom display mode for cells.

Custom Styling

Access any component by className and apply whatever style you want

/* CalendarCustomStyles.css */

.week-time-header__number {
    color: #205c97
}

.week-time-view-inside {
  background-color: #f8faff;
}
    import './CalendarCustomStyles.css';

    ...

    <Calendar
      data={[
        {
          id: '1',
          startTime: '2023-06-02T01:10:00Z',
          endTime: '2023-06-02T03:10:00Z',
          title: 'Conference',
        },
      ]}
      currentView='WEEK_TIME'
      currentDate='2023-06-01'
      activeTimeDateField='startTime-endTime'
    />

  ...

Usage Example

import React from 'react';
import Calendar from 'react-lightweight-calendar';

const MyCalendar = () => {
  const [currentDate, setCurrentDate] = React.useState('2023-06-02');
  return (
    <Calendar
      data={[
        {
          id: '1',
          startTime: '2023-06-02T01:10:00Z',
          endTime: '2023-06-02T03:10:00Z',
          title: 'Conference',
        },
        {
          id: '2',
          startTime: '2023-06-02T01:00:00Z',
          endTime: '2023-06-02T02:00:00Z',
          title: 'Meet up',
        },
        {
          id: '3',
          startTime: '2023-06-02T04:20:00Z',
          endTime: '2023-06-02T05:20:00Z',
          title: 'Codefair',
          bgColor: 'rgb(129, 205, 242)',
          textColor: 'white',
        },
      ]}
      currentView='WEEK_TIME'
      currentDate={currentDate}
      setCurrentDate={setCurrentDate}
      activeTimeDateField='startTime-endTime' // Or just startTime or just endTime
      weekStartsOn={1} // Monday
      // If you want additional customization, uncomment the code and make the appropriate changes
      // renderItem={(data, isHovered) => {
        // Custom rendering of event element
        // return (
              // <>
                // <div>{data.title}</div>
                // <div>{data.id}</div>
              // </>
          // )
        // console.log(data, isHovered);
      // }}
      // renderItemText={(data) => {
        // Custom rendering of event element text
        // return <p>{data.title}</p>;
      // }}
      // renderHeaderItem={(data, extras) => {
        // Custom rendering of header element
        // return <div>{data.startTime}-{date.endTime}</div>;
      // }}
      // renderHeaderItemText={(data) => {
        // Custom rendering of header element text
        // return <p>{data.title}</p>;
      // }}
      enableHoverEffect={true}
      colorDots={[
        {
          color: 'red',
          text: 'Busy day',
          date: '2023-06-02',
        },
      ]}
      timeDateFormat={{
        day: 'EEEE',
        hour: 'hh a',
        monthYear: 'LLLL yyyy',
      }}
      onDayNumberClick={(day) => {
        // Handle day number click
        console.log(day);
      }}
      onDayStringClick={(day) => {
        // Handle day text click
        console.log(day);
      }}
      onHourClick={(value) => {
        // Handle hour click
        console.log(value);
      }}
      onColorDotClick={(value) => {
        // Handle color dot click
        console.log(value);
      }}
      onItemClick={(item) => {
        // Handle event item click
        console.log(item);
      }}
      onCellClick={(value) => {
        // Handle cell click
        console.log(value);
      }}
      cellDisplayMode={{
        WEEK_TIME: {
          inactiveCells: ['2023-05-29'],
          state: 'CUSTOM',
        },
      }}
    />
  );
};
      
export default MyCalendar;

Licence

The MIT License. Unauthorized copying is prohibited under the MIT License.

Contact info

For more information or questions, you can contact me via: