Socket
Socket
Sign inDemoInstall

argon-calendar-core

Package Overview
Dependencies
0
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    argon-calendar-core

Argon calendar core provides set of APIs to build your own calendar


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

Source

CodeQL

Argon Calendar Core

"Argon Calendar Core" is a JavaScript library that provides a robust set of core APIs specifically designed for building customizable calendars. As a developer, you have the freedom to choose any view engine that suits your needs, allowing you to dive right into the development process. Moreover, this library provides a set of handy functions that greatly simplify the calendar building process, enabling you to create dynamic and interactive calendars effortlessly.

Install

npm i argon-calendar-core

Usage

Calendar object:

Generate a calendar using calendar object.

import { calendar } from "argon-calendar-core";
console.log(
  calendar.create().output(),
);

/**
 *  Output:
 * [{
 *   year: '2023',
 *   month: 'june',
 *   monthIndex: 5,
 *   weekLabels: ['sunday', 'monday', 'tuesday', ...],
 *   dates: [2023-05-27T18:30:00.000Z, 2023-05-28T18:30:00.000Z, 2023-05-29T18:30:00.000Z, ...]
 * }]
 */

Calendar class:

Customize a calendar using Calendar class.

import { Calendar, Week } from "argon-calendar-core";
const calendar = new Calendar({
  visibleMonthCount: 1, // Show one month at a time. The default value is 1.
  visibleWeekCount: 6, // Show 6 weeks in a month. The default value is 6.
  weekStartsOn: Week.SUN, // Start the week on "sunday". The default value is "sunday".
});
console.log(
  calendar.create().output(),
);

/**
 *  Output:
 * [{
 *   year: '2023',
 *   month: 'june',
 *   monthIndex: 5,
 *   weekLabels: ['sunday', 'monday', 'tuesday', ...],
 *   dates: [2023-05-27T18:30:00.000Z, 2023-05-28T18:30:00.000Z, 2023-05-29T18:30:00.000Z, ...]
 * }]
 */

Formatting:

The API allows to format output as per your preference. The default output contains list of dates in a raw Date format. The following example converts date to string format.

import { Calendar, Week } from "argon-calendar-core";
const calendar = new Calendar({
  visibleMonthCount: 1, // Show one month at a time
  visibleWeekCount: 6, // Show 6 weeks in a month
  weekStartsOn: Week.SUN, // Start the week on "sunday"
});
console.log(
  calendar.create().map<string>((dt) => dt.toString()),
);

/**
 *  Output:
 * [{
 *   year: '2023',
 *   month: 'june',
 *   monthIndex: 5,
 *   weekLabels: ['sunday', 'monday', 'tuesday', ...],
 *   dates: [
 *     'Sun May 28 2023 00:00:00 GMT+0530 (India Standard Time)',
 *     'Mon May 29 2023 00:00:00 GMT+0530 (India Standard Time)',
 *     'Tue May 30 2023 00:00:00 GMT+0530 (India Standard Time)',
 *     ...
 *   ]
 * }]
 */

Generate previous or next month(s)

Use an offset parameter to generate previous or next month's data.

// Assuming current month is June 2023
// ...
console.log(
  calendar.create(+1).output(),
); // Outputs month of July

console.log(
  calendar.create(+2).output(),
); // Outputs month of August

console.log(
  calendar.create(-1).output(),
); // Outputs month of May

console.log(
  calendar.create(-2).output(),
); // Outputs month of April

Helper methods

MethodDescription
static getDate(offset: number): DateReturns current or offset date
static today(): DateReturns current date
static isToday(inputDate: Date): booleanReturns true if provided date is same as today's date
static compare(inputDate: Date, comparisonDate: Date): booleanReturns true if input dates are the same

Support

Calendar core API has support for both nodejs as well as browser environments. You can also use it with bundlers such as webpack, parcel and rollup.

Contributing

We welcome contributions from the community to enhance the plugin's functionality and address any issues. If you have any feedback, bug reports, or feature requests, please don't hesitate to open an issue or submit a pull request.

Keywords

FAQs

Last updated on 30 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc