134 lines
3.1 KiB
JavaScript
134 lines
3.1 KiB
JavaScript
|
import { buildMatchFn } from "../../_lib/buildMatchFn.mjs";
|
||
|
import { buildMatchPatternFn } from "../../_lib/buildMatchPatternFn.mjs";
|
||
|
|
||
|
const matchOrdinalNumberPattern = /^(\d+)(º)?/i;
|
||
|
const parseOrdinalNumberPattern = /\d+/i;
|
||
|
|
||
|
const matchEraPatterns = {
|
||
|
narrow: /^(aC|dC)/i,
|
||
|
abbreviated: /^(a\.?\s?C\.?|a\.?\s?e\.?\s?v\.?|d\.?\s?C\.?|e\.?\s?v\.?)/i,
|
||
|
wide: /^(avanti Cristo|avanti Era Volgare|dopo Cristo|Era Volgare)/i,
|
||
|
};
|
||
|
const parseEraPatterns = {
|
||
|
any: [/^a/i, /^(d|e)/i],
|
||
|
};
|
||
|
|
||
|
const matchQuarterPatterns = {
|
||
|
narrow: /^[1234]/i,
|
||
|
abbreviated: /^t[1234]/i,
|
||
|
wide: /^[1234](º)? trimestre/i,
|
||
|
};
|
||
|
const parseQuarterPatterns = {
|
||
|
any: [/1/i, /2/i, /3/i, /4/i],
|
||
|
};
|
||
|
|
||
|
const matchMonthPatterns = {
|
||
|
narrow: /^[gfmalsond]/i,
|
||
|
abbreviated: /^(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic)/i,
|
||
|
wide: /^(gennaio|febbraio|marzo|aprile|maggio|giugno|luglio|agosto|settembre|ottobre|novembre|dicembre)/i,
|
||
|
};
|
||
|
const parseMonthPatterns = {
|
||
|
narrow: [
|
||
|
/^g/i,
|
||
|
/^f/i,
|
||
|
/^m/i,
|
||
|
/^a/i,
|
||
|
/^m/i,
|
||
|
/^g/i,
|
||
|
/^l/i,
|
||
|
/^a/i,
|
||
|
/^s/i,
|
||
|
/^o/i,
|
||
|
/^n/i,
|
||
|
/^d/i,
|
||
|
],
|
||
|
|
||
|
any: [
|
||
|
/^ge/i,
|
||
|
/^f/i,
|
||
|
/^mar/i,
|
||
|
/^ap/i,
|
||
|
/^mag/i,
|
||
|
/^gi/i,
|
||
|
/^l/i,
|
||
|
/^ag/i,
|
||
|
/^s/i,
|
||
|
/^o/i,
|
||
|
/^n/i,
|
||
|
/^d/i,
|
||
|
],
|
||
|
};
|
||
|
|
||
|
const matchDayPatterns = {
|
||
|
narrow: /^[dlmgvs]/i,
|
||
|
short: /^(do|lu|ma|me|gi|ve|sa)/i,
|
||
|
abbreviated: /^(dom|lun|mar|mer|gio|ven|sab)/i,
|
||
|
wide: /^(domenica|luned[i|ì]|marted[i|ì]|mercoled[i|ì]|gioved[i|ì]|venerd[i|ì]|sabato)/i,
|
||
|
};
|
||
|
const parseDayPatterns = {
|
||
|
narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^g/i, /^v/i, /^s/i],
|
||
|
any: [/^d/i, /^l/i, /^ma/i, /^me/i, /^g/i, /^v/i, /^s/i],
|
||
|
};
|
||
|
|
||
|
const matchDayPeriodPatterns = {
|
||
|
narrow:
|
||
|
/^(a|m\.|p|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,
|
||
|
any: /^([ap]\.?\s?m\.?|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,
|
||
|
};
|
||
|
const parseDayPeriodPatterns = {
|
||
|
any: {
|
||
|
am: /^a/i,
|
||
|
pm: /^p/i,
|
||
|
midnight: /^mezza/i,
|
||
|
noon: /^mezzo/i,
|
||
|
morning: /mattina/i,
|
||
|
afternoon: /pomeriggio/i,
|
||
|
evening: /sera/i,
|
||
|
night: /notte/i,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const match = {
|
||
|
ordinalNumber: buildMatchPatternFn({
|
||
|
matchPattern: matchOrdinalNumberPattern,
|
||
|
parsePattern: parseOrdinalNumberPattern,
|
||
|
valueCallback: (value) => parseInt(value, 10),
|
||
|
}),
|
||
|
|
||
|
era: buildMatchFn({
|
||
|
matchPatterns: matchEraPatterns,
|
||
|
defaultMatchWidth: "wide",
|
||
|
parsePatterns: parseEraPatterns,
|
||
|
defaultParseWidth: "any",
|
||
|
}),
|
||
|
|
||
|
quarter: buildMatchFn({
|
||
|
matchPatterns: matchQuarterPatterns,
|
||
|
defaultMatchWidth: "wide",
|
||
|
parsePatterns: parseQuarterPatterns,
|
||
|
defaultParseWidth: "any",
|
||
|
valueCallback: (index) => index + 1,
|
||
|
}),
|
||
|
|
||
|
month: buildMatchFn({
|
||
|
matchPatterns: matchMonthPatterns,
|
||
|
defaultMatchWidth: "wide",
|
||
|
parsePatterns: parseMonthPatterns,
|
||
|
defaultParseWidth: "any",
|
||
|
}),
|
||
|
|
||
|
day: buildMatchFn({
|
||
|
matchPatterns: matchDayPatterns,
|
||
|
defaultMatchWidth: "wide",
|
||
|
parsePatterns: parseDayPatterns,
|
||
|
defaultParseWidth: "any",
|
||
|
}),
|
||
|
|
||
|
dayPeriod: buildMatchFn({
|
||
|
matchPatterns: matchDayPeriodPatterns,
|
||
|
defaultMatchWidth: "any",
|
||
|
parsePatterns: parseDayPeriodPatterns,
|
||
|
defaultParseWidth: "any",
|
||
|
}),
|
||
|
};
|