UNPKG

graphql-scalars

Version:

A collection of scalar types not included in base GraphQL.

60 lines (59 loc) 2.5 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GraphQLLocalDate = void 0; const graphql_1 = require("graphql"); const error_js_1 = require("../error.js"); const LOCAL_DATE_FORMAT = /^\d{4}-\d{2}-\d{2}$/; function validateLocalDate(value, ast) { if (typeof value !== 'string') { throw (0, error_js_1.createGraphQLError)(`Value is not string: ${value}`, ast ? { nodes: ast } : undefined); } // check that it's in the `yyyy-MM-dd` format const isValidFormat = LOCAL_DATE_FORMAT.test(value); if (!isValidFormat) { throw (0, error_js_1.createGraphQLError)(`Value is not a valid LocalDate: ${value}`, ast ? { nodes: ast } : undefined); } // check that it appears to be a valid date, e.g., not something like `2020-13-46` const valueAsDate = new Date(value); const isValidDate = !isNaN(valueAsDate.getTime()); if (!isValidDate) { throw (0, error_js_1.createGraphQLError)(`Value is not a valid LocalDate: ${value}`, ast ? { nodes: ast } : undefined); } // some additional logic to catch invalid dates like `2020-02-30` // that we catch by serializing the Date object into an ISO string and checking that our serialized date matches // the original value const isCalendarDate = valueAsDate.toISOString() === `${value}T00:00:00.000Z`; if (!isCalendarDate) { throw (0, error_js_1.createGraphQLError)(`Value is not a valid LocalDate: ${value}`, ast ? { nodes: ast } : undefined); } return value; } exports.GraphQLLocalDate = new graphql_1.GraphQLScalarType({ name: 'LocalDate', description: 'A local date string (i.e., with no associated timezone) in `YYYY-MM-DD` format, e.g. `2020-01-01`.', serialize(value) { // value sent to client as string return validateLocalDate(value); }, parseValue(value) { // value from client as json return validateLocalDate(value); }, parseLiteral(ast) { // value from client in ast if (ast.kind !== graphql_1.Kind.STRING) { throw (0, error_js_1.createGraphQLError)(`Can only validate strings as local dates but got a: ${ast.kind}`, { nodes: ast, }); } return validateLocalDate(ast.value, ast); }, extensions: { codegenScalarType: 'string', jsonSchema: { title: 'LocalDate', type: 'string', pattern: LOCAL_DATE_FORMAT.source, }, }, });