0.2.7 • Published 5 years ago

@jfschmiechen/react-event-calendar v0.2.7

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

React Event Calendar

Live demo

Installation

npm install @jfschmiechen/react-event-calendar

API

Calendar Props

PropTypeDescriptionDefault
itemsobjectThis is an array of event objects. Each object needs a text, start, and end value.Null
monthintegerDetermines what month the calendar is viewingCurrent month
yearintegerDetermines what year the calendar is viewingCurrent Year
configobjectThe config object contains values that won't be changing often such as event declarations. See next table and examples below.Null

Config Object

KeyTypeDescriptionDefault
heightstringHeight of calendar. Value must be calculable otherwise the calendar frame loses integrity.600px
widthstringWidth of calendar. Value must be calculable otherwise the calendar frame loses integrity.1000px
colorsobjectAllows customization of calendar theme. Object contains primaryColor and secondaryColor fields{ primaryColor: 'slateblue', secondaryColor: 'lightslategray' }
onEventClickfunctionTakes a function that is passed the click event, calendar event, and an array of all events in it's tile.Null
onTileClickfunctionTakes a function that is passed an array of all events in the tile, and the click event.Null
onPlusMoreClickfunctionFunctionally the same as onTileClick, but is triggered when the tile overflow text is clicked.Null
weekDaysstringStarting on Sunday, this array contains names of each week day. If you want the day names to be in another language, override this with an array of the translated names.'Sunday', 'Monday', ...
dateFormatstringThis needs to be set if you are using a different date format than the default value. That way, the calendar can parse dates correctly. See moment.js for more formats.'YYYY-MM-DD'

Event Schema

KeyTypeDescription
textstringThis is the text that appears on the event itself.
startstringThe date / date time the event starts.
endstringThe date / date time the event ends.
colorstringIf this is not set the event will take on the primaryColor defined in the config.
  • If your events have more fields than these, include them when you pass the events to the calendar and they will be available to use when the event listeners fire.

Example

import React from 'react';
import { EventCalendar, eventTypes } from '@jfschmiechen/react-event-calendar';

// Event source (array of event objects)
import events from './lib/resources/events-json';

let parsedEvents = [];
// Create shim so that the calendar can get the correct data from each event.
// In this example, I am using events from a google calendar.
events.items.map(event => {
    let tempObject = {};

    tempObject.start = event.start.dateTime ? event.start.dateTime : event.start.date;
    tempObject.end = event.end.dateTime ? event.end.dateTime : event.end.date;
    tempObject.text = event.summary;

    parsedEvents.push(tempObject);
});

// These colors allow customization to the theme.
// default colors are slateblue and lightslategray.
let colors = {
    primaryColor: 'slateblue',
    secondaryColor: 'lightslategray'
};

// The config contains all settings for the event calendar.
// See the API table to see all possible values.
let config = {
    colors,
    onEventClick: (e, event, eventArray) => console.log(event.type === eventTypes.SINGLE_DAY_TYPE),
    onTileClick: (e, eventArray) => console.log(eventArray),
    onPlusMoreClick: (e, eventArray) => console.log(eventArray)
};

// Lastly, pass the events and config to the calendar, and you are done.
function App() {
  return (
      <EventCalendar items={parsedEvents} month={5} year={2019} config={config} />
  );
}

export default App;

Notes

  • Events passed to this component are deep copied in order to keep immutability.
  • If calendar width is less than 450px OR height is less than 520px, the calendar will enter a mobile view since at that size the full size events are not legible.

Built With

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

0.2.7

5 years ago

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.91

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.61

5 years ago

0.1.6

5 years ago

0.1.55

5 years ago

0.1.54

5 years ago

0.1.53

5 years ago

0.1.52

5 years ago

0.1.51

5 years ago

0.1.5

5 years ago

0.1.41

5 years ago

0.1.4

5 years ago

0.1.32

5 years ago

0.1.31

5 years ago

0.1.3

5 years ago

0.1.243

5 years ago

0.1.242

5 years ago

0.1.241

5 years ago

0.1.24

5 years ago

0.1.231

5 years ago

0.1.230

5 years ago

0.1.23

5 years ago

0.1.22

5 years ago

0.1.21

5 years ago

0.1.20

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago