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

@farango/calendar_library

v0.0.22

Published

The **Event Calendar** is a simple and responsive React component that displays a **monthly calendar** with support for events. This component is built with React and SCSS and can be easily integrated into your React applications.

Downloads

1,622

Readme

Event Calendar Component

The Event Calendar is a simple and responsive React component that displays a monthly calendar with support for events. This component is built with React and SCSS and can be easily integrated into your React applications.

Overview

The Event Calendar component provides a visual representation of a calendar month, where users can see events for each day. It highlights the current day, handles long event titles by truncating them, and separates event times to ensure a clean layout.

Preview

Event Calendar Preview

Key Features

  • Monthly View: Displays a complete month with days and events.
  • Current Day Highlighting: Highlights the current day with a circular background.
  • Event Handling:
    • Events are displayed under each day.
    • Event titles are truncated with ellipses to prevent overflow.
    • Each event occupies a single line, with the title taking up 60% of the width and the time taking up 40%.
  • Responsive Design: Adjusts the layout and font size based on screen size to maintain readability and usability.
  • Customizable Title and Button: Allows setting custom titles for the calendar and the "Add Event" button.

Table of Contents

Installation

Install the @farango/calendar_library package:

npm install @farango/calendar_library

Basic Usage

Here's how to use the EventCalendar component with default settings:

import React from 'react';
import { EventCalendar } from '@farango/calendar_library';

const App = () => {
  const events = [
    { date: '2024-10-21', title: 'Meeting', time: '10:00 AM' },
    { date: '2024-10-22', title: 'Workshop', time: '2:00 PM' },
    { date: '2024-10-23', title: 'Webinar', time: '11:00 AM' },
  ];

  return (
    <div>
      <EventCalendar eventsData={events} />
    </div>
  );
};

export default App;

Customizing Styles

You can customize the appearance of the calendar by passing a styles object as a prop:

const customStyles = {
  colorActualDay: '#FF5733',
  colorFontTitle: '#1E90FF',
  colorFontButtons: '#2ECC71',
  colorFontNameDays: '#34495E',
  colorFontDays: '#000',
  sizeFontAppointment: '1rem',
  sizeFontButtons: '0.9rem',
  sizeFontNameDays: '0.8rem',
  sizeFontDays: '0.85rem',
  bgHeader: '#E0E0E0',
  bgDaysNames: '#F8F8F8',
  bgCells: '#FFFFFF',
  bgActualDay: '#FFC107',
  visibilityOptions: {
    todayButton: true,
    dropdownFilter: true,
    addEventButton: false,
    header: true,
    daysNames: true,
  },
};

<EventCalendar eventsData={events} styles={customStyles} />

Visibility Options

The component allows you to toggle visibility for specific elements:

  • todayButton: Shows/hides the "Today" button.
  • dropdownFilter: Shows/hides the filter dropdown.
  • addEventButton: Shows/hides the "Add Event" button.
  • header: Shows/hides the calendar header.
  • daysNames: Shows/hides the row of day names.

Additional Props

title

  • Type: String
  • Default: "Event Calendar"
  • Description: Sets a custom title for the calendar.
  • Example:
    <EventCalendar title="My Custom Calendar" />

titleButton

  • Type: String
  • Default: "Add Event"
  • Description: Sets a custom label for the "Add Event" button.
  • Example:
    <EventCalendar titleButton="Create New Event" />

onSelectedEvent

  • Type: Function
  • Default: () => {}
  • Description: Callback function triggered when an event is selected.
  • Example:
    const handleEventSelection = (event) => {
      console.log('Selected Event:', event);
    };
    
    <EventCalendar onSelectedEvent={handleEventSelection} />

addEvent

  • Type: Function
  • Default: () => {}
  • Description: Callback function triggered when the "Add Event" button is clicked.
  • Example:
    const handleAddEvent = () => {
      console.log('Add Event clicked');
    };
    
    <EventCalendar addEvent={handleAddEvent} />

Props

eventsData

  • Type: Array

  • Default: []

  • Description: An array of event objects. Each event should have:

    • date (in YYYY-MM-DD format)
    • title (string)
    • time (string)
  • Example:

    const events = [
      { date: '2024-10-21', title: 'Meeting', time: '10:00 AM' },
      { date: '2024-10-22', title: 'Workshop', time: '2:00 PM' },
    ];

styles

  • Type: Object
  • Default: See defaultStyles in the component
  • Description: An object to customize the appearance of the calendar. It contains properties for colors, font sizes, background colors, and visibility options.

Examples

Example 1: Simple Calendar with Default Styles

<EventCalendar eventsData={events} />

Example 2: Calendar with Custom Styles

<EventCalendar eventsData={events} styles={customStyles} />

Example 3: Custom Title and Add Event Callback

<EventCalendar
  title="Team Calendar"
  titleButton="Schedule Event"
  addEvent={() => alert('Add Event clicked')}
/>

License and Author Information

License

  • Type: MIT Lic

Author

  • Name: Andrés Arango