UNPKG

chrono-node

Version:

A natural language date parser in Javascript

64 lines (54 loc) 2.01 kB
import { FULL_MONTH_NAME_DICTIONARY, MONTH_DICTIONARY } from "../constants"; import { ParsingContext } from "../../../chrono"; import { findYearClosestToRef } from "../../../calculation/years"; import { matchAnyPattern } from "../../../utils/pattern"; import { YEAR_PATTERN, parseYear } from "../constants"; import { AbstractParserWithWordBoundaryChecking } from "../../../common/parsers/AbstractParserWithWordBoundary"; const PATTERN = new RegExp( `((?:a|in|di|del)\\s*)?` + `(${matchAnyPattern(MONTH_DICTIONARY)})` + `\\s*` + `(?:` + `(?:,|-|del)?\\s*(${YEAR_PATTERN})?` + ")?" + "(?=[^\\s\\w]|\\s+[^0-9]|\\s+$|$)", "i" ); const PREFIX_GROUP = 1; const MONTH_NAME_GROUP = 2; const YEAR_GROUP = 3; /** * The parser for parsing month name and year. * - Gennaio, 2012 * - Gennaio 2012 * - Gennaio * (a/in/di/del) Gen */ export default class ITMonthNameParser extends AbstractParserWithWordBoundaryChecking { innerPattern(): RegExp { return PATTERN; } innerExtract(context: ParsingContext, match: RegExpMatchArray) { const monthName = match[MONTH_NAME_GROUP].toLowerCase(); // skip some unlikely words "gen", "mar", .. if (match[0].length <= 3 && !FULL_MONTH_NAME_DICTIONARY[monthName]) { return null; } const result = context.createParsingResult( match.index + (match[PREFIX_GROUP] || "").length, match.index + match[0].length ); result.start.imply("day", 1); result.start.addTag("parser/ITMonthNameParser"); const month = MONTH_DICTIONARY[monthName]; result.start.assign("month", month); if (match[YEAR_GROUP]) { const year = parseYear(match[YEAR_GROUP]); result.start.assign("year", year); } else { const year = findYearClosestToRef(context.refDate, 1, month); result.start.imply("year", year); } return result; } }