@lemoncode/fonk-later-date-validator
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

fonk-later-date-validator

CircleCI NPM Version bundle-size

This is a fonk microlibrary that brings validation capabilities to:

  • Validate if a field of a form is later than a specified date.

How to install it:

npm install @lemoncode/fonk-later-date-validator --save

How to add it to an existing form validation schema:

We have the following form model:

const myFormValues = {
  product: 'shoes',
  purchaseDate: new Date(),
}

The validator must be configured with the following required arguments:

export interface CustomArgs {
  date: Date;
  parseStringToDateFn?: (value: string) => Date;
  inclusive?: boolean;
}

These are the default arguments:

let defaultCustomArgs: CustomArgs = {
  date: null,
  parseStringToDateFn: null,
  inclusive: false,
};

We can add a laterDate validation to the myFormValues

import { laterDate } from '@lemoncode/fonk-later-date-validator';

const validationSchema = {
  field: {
    purchaseDate: [
      {
        validator: laterDate.validator,
        customArgs: { date: new Date('2019-02-10') },
      },
    ],
  },
};

You can customize the error message displayed in two ways:

  • Globally, replace the default error message in all validationSchemas (e.g. porting to spanish):
import { laterDate } from '@lemoncode/fonk-later-date-validator';

laterDate.setErrorMessage('El campo debe de ser numérico');
  • Locally just override the error message for this validationSchema:
import { laterDate } from '@lemoncode/fonk-later-date-validator';

const validationSchema = {
  field: {
    purchaseDate: [
      {
        validator: laterDate.validator,
        message: 'Error message only updated for the validation schema',
        customArgs: { date: new Date('2019-02-10') },
      },
    ],
  },
};

This validator compare Date values. If your model use dates as string format, you can provide the parseStringToDateFn method.

import { laterDate } from '@lemoncode/fonk-later-date-validator';

const validationSchema = {
  field: {
    purchaseDate: [
      {
        validator: laterDate.validator,
        customArgs: {
          date: new Date('2019-03-10T00:00:00'),
          parseStringToDateFn: value => new Date(value),
        },
      },
    ],
  },
};

Or if you are using some third party library like moment, date-fns, etc:

import { laterDate } from '@lemoncode/fonk-later-date-validator';
+ import parse from 'date-fns/parse'

const validationSchema = {
  field: {
    purchaseDate: [
      {
        validator: laterDate.validator,
        customArgs: {
          date: new Date('2019-03-10T00:00:00'),
-         parseStringToDateFn: value => new Date(value),
+         parseStringToDateFn: value => parse(value, 'yyyy-MM-dd HH:mm:ss', new Date()),
        },
      },
    ],
  },
};

You can specify the custom arguments in two ways:

  • Locally just customize the arguments for this validationSchema:
import { laterDate } from '@lemoncode/fonk-later-date-validator';

const validationSchema = {
  field: {
    purchaseDate: [
      {
        validator: laterDate.validator,
        customArgs: {
          date: new Date('2019-03-10'),
          parseStringToDateFn: value => new Date(value),
        },
      },
    ],
  },
};
  • Globally, replace the default custom arguments in all validationSchemas (e.g. enable strict types):
import { laterDate } from '@lemoncode/fonk-later-date-validator';

laterDate.setCustomArgs({ parseStringToDateFn: (value) => new Date(value) ) });

// OR

laterDate.setCustomArgs({ date: new Date() });

// OR

laterDate.setCustomArgs({ inclusive: true });

// OR

laterDate.setCustomArgs({ date: new Date(), parseStringToDateFn: (value) => new Date(value)), inclusive: true });

Please, refer to fonk to know more.

License

MIT

About Basefactor + Lemoncode

We are an innovating team of Javascript experts, passionate about turning your ideas into robust products.

Basefactor, consultancy by Lemoncode provides consultancy and coaching services.

Lemoncode provides training services.

For the LATAM/Spanish audience we are running an Online Front End Master degree, more info: http://lemoncode.net/master-frontend

Package Sidebar

Install

npm i @lemoncode/fonk-later-date-validator

Weekly Downloads

18

Version

1.0.0

License

MIT

Unpacked Size

18.5 kB

Total Files

8

Last publish

Collaborators

  • lemoncode