@acpaas-ui/js-date-utils
v2.0.1
Published
[![js-date-utils-status]][js-date-utils-package]
Downloads
60
Keywords
Readme
ACPaaS UI JS Date Utils
The @acpaas-ui/js-date-utils
package provides some basic support for handling JS Date objects. Besides the DateHelper
class, a DateGenerator
class is included to generate weeks, months and date ranges from a Date Object.
Installation
NPM
npm install @acpaas-ui/js-date-utils --save
Yarn
yarn add @acpaas-ui/js-date-utils
Import
// CommonJS
const DateHelper = require('@acpaas-ui/js-date-utils').DateHelper;
const DateGenerator = require('@acpaas-ui/js-date-utils').DateGenerator;
// ES2015
import { DateHelper, DateGenerator } from '@acpaas-ui/js-date-utils';
All methods included in both the Datehelper
and DateGenerator
can also be imported individually:
import { parseDate } from '@acpaas-ui/js-date-utils';
A note about JS and dates
The JavaScript Date object can get quite clunky and confusing to work with, especially across timezones. To keep this package lean and fast, there are no dependencies on helper libraries like moment.js and the included functionality is limited to what is necessary to support the generator.
To ensure date formates are respected, it is advised to create and use dates in the YYYY-MM-DD
format:
const today = new Date('2017-10-03'); // this will always be the 3th October, 2017
DateHelper
Available methods and properties
parseDate(...args, format?)
: parse the input to a date object, returnsnull
for an invalid date. Format is an optional strict formatting parameter, using momentjs formats.getWeekday(date, startOfWeek)
: return the weekday for the provided date, offset by the (optionally) provided startOfWeek param, returns-1
for an invalid dategetMonthLength(date)
: return the length of the month for the provided date, returns-1
for an invalid dategetFirstWeekdayOfMonth(date, startOfWeek)
: return the weekday for the first day of the month for the provided date, offset by the (optionally) provided startOfWeek param, returns-1
for invalid datesgetLastWeekdayOfMonth(date, startOfWeek)
: return the weekday for the last day of the month for the provided date, offset by the (optionally) provided startOfWeek param, returns-1
for invalid datesdatesAreEqual(dates, specifier)
: compare the provided dates array with an optional specifierdates (Date[])
: an array of dates to comparespecifier (string | string[])
: a specifier to compare against, can be one or a multitude of:Y
: yearM
: monthD
: dateh
: hoursm
: minutess
: secondsms
: millisecondsvalue
: integer value (valueOf
)
dateValuesAreEqual(dates, comparator)
: helper method for thedatesAreEqual
method, compares date values by the selected comparatordates (Date[])
: an array of dates to comparecomparator (string)
: a date getter method to determine the value to compare (e.g.:getMonths
)
updateDate(date, day)
: update the date value of a date, within the limits of the month (negative values will result in 1, values exceeding the month length will result in the month length), returnsthe provided value
for an invalid dateupdateMonth(date, month)
: update the month value of a date, adjusting the year value if necessary, returnsthe provided value
for an invalid dateformatDate(date, format, options)
: format a date to a (limited set of) date format(s), returnsnull
for an invalid datedate (Date)
: the date to formatformat (string)
: the target format, can consist of:YY
: shorthand year notation, e.g.:89
for 2017YYYY
: the full year notation, e.g.:2017
MM
: the numerical month notation, e.g.:05
for mayMMMM
: the written month notation, e.g.:may
DD
: the numerical month notation, e.g.:01
DDDD
: the written day notation, e.g.:monday
hh
: the hours notation, e.g.:03
mm
: the minutes notation, e.g.:39
ss
: the seconds notation, e.g.:44
ms
: the milliseconds notation, e.g.:393
options ({})
: the formatting optionsleadingZero (Boolean)
: add leading zerosstartOfWeek (number)
: the first day of the weekweekdayLabels (string[])
: a custom set of weekday labelsmonthLabels (string[])
: a custom set of month labels
addLeadingZero(value, addLeadingZero)
return the stringvalue of the provided value with a leading zero if addLeadingZero is true, returns the original string value if it is longer than 2dateOutOfRange(date, range)
: verify wether the provided date is outside of the provided range (an array of integers representing days in a month)closestDateForRange(date, range)
: return the closest date before or after the provided date that is not in the provided range (an array of integers representing days in a month)
Usage
Formatting examples
const date = new Date('2017-05-01 03:39:44.393');
DateHelper.format(date, 'hh:mm:ss (ms), DDDD DD MMMM YYYY', {
addLeadingZero: true,
startOfWeek: 1,
weekdayLabels: [
'Maandag',
'Dinsdag',
'Woensdag',
'Donderdag',
'Vrijdag',
'Zaterdag',
'Zondag'
],
monthLabels: [
'Januari',
'Februari',
'Maart',
'April',
'Mei',
'Juni',
'Juli',
'Augustus',
'September',
'Oktober',
'November',
'December'
]
});
will result in
03:39:44 (393), Maandag 01 Mei 2017
Ranges
A date range consist of an array of dates or weekdays:
const dateRange = [
new Date('2017-05-03'),
new Date('2017-05-20'),
5, 6
];
which translates to all 5th and 6th weekdays (friday and saturday by default) and the 3rd and 20th of may.
The dateOutOfRange
and closestDateForRange
methods expect a parsed date range, an array of integer values representing the days in the month that make up the range. For the above range in the month may, this would be:
[ 3, 5, 6, 12, 13, 19, 20, 26, 27 ]
The dateOutOfRange
method will return true
for the following dates:
[
new Date('2017-05-02'), // a tuesday
new Date('2017-18-03'), // a thursday
new Date('2017-31-03'), // a wednesday
]
and false
for these dates:
[
new Date('2017-05-03'), // specific date in the range
new Date('2017-05-05'), // a friday
new Date('2017-05-27') // a saturday
]
The closestDateForRange
method will return the closest date outside of the provided range, wether it is before or after the provided date:
const range = [ 3, 5, 6, 12, 13, 19, 20, 26, 27 ];
closestDateForRange(new Date('2017-05-13'), range);
=> 2017-05-14
closestDateForRange(new Date('2017-05-12'), range);
=> 2017-05-11
DateGenerator
Available methods
generateMonth(date, options)
: generate an array of day values representing the month for the provided date, returns[]
for an invalid datedate (Date)
: the target dateoptions (Object)
: the generator optionsstartOfWeek (number)
: the first day of the weekpadding (boolean)
: add padding for the first & last week (empty values)generatePadding (boolean)
: use actual day values for the padding
generateWeek(start, options, padding)
: generate a week of day valuesstart (number)
: the day to start fromoptions (Object)
: the generator optionsoffset (number)
: offset the startdayOffset (number)
: offset the day valuespadding (boolean)
: add padding at the start/endfromStart (boolean)
: add padding at the start
padding number[]
: values to be used for padding
generatePadding(date, count, fromStart)
: generate a value of integer values to be used as padding, returns[]
for an invalid datedate (Date)
: the target datecount (number)
: the amount of padding to generatefromStart (boolean)
: generate padding from the start of the month
generateRange(date, ranges, options)
: parse aDateRange
to a flat array of integers representing the day values, returns[]
for an invalid datedate (Date)
: the target daterange (Array<number|Date>)
: a range of dates to parse, can be either a Date object or a number representing a weekdayoptions (Object)
: the range optionsstartOfWeek (number)
: the first day of the week