123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.82
- */
- import { Component, Element, Prop, Event, h, State, Watch, Fragment } from "@stencil/core";
- import { dateFromRange, nextMonth, prevMonth, localizeNumber, parseNumber, getOrder } from "../../utils/date";
- import { Heading } from "../functional/Heading";
- export class DatePickerMonthHeader {
- constructor() {
- //--------------------------------------------------------------------------
- //
- // Private Methods
- //
- //--------------------------------------------------------------------------
- /**
- * Increment year on UP/DOWN keys
- */
- this.onYearKey = (e) => {
- const localizedYear = e.target.value;
- switch (e.key) {
- case "ArrowDown":
- e.preventDefault();
- this.setYear({ localizedYear, offset: -1 });
- break;
- case "ArrowUp":
- e.preventDefault();
- this.setYear({ localizedYear, offset: 1 });
- break;
- }
- };
- this.onYearChange = (event) => {
- this.setYear({ localizedYear: event.target.value });
- };
- this.onYearInput = (event) => {
- this.setYear({ localizedYear: event.target.value, commit: false });
- };
- this.prevMonthClick = (e) => {
- this.handleArrowClick(e, this.prevMonthDate);
- };
- this.prevMonthKeydown = (e) => {
- const key = e.key;
- if (key === " " || key === "Enter") {
- this.prevMonthClick(e);
- }
- };
- this.nextMonthClick = (e) => {
- this.handleArrowClick(e, this.nextMonthDate);
- };
- this.nextMonthKeydown = (e) => {
- const key = e.key;
- if (key === " " || key === "Enter") {
- this.nextMonthClick(e);
- }
- };
- /*
- * Update active month on clicks of left/right arrows
- */
- this.handleArrowClick = (e, date) => {
- e === null || e === void 0 ? void 0 : e.preventDefault();
- e.stopPropagation();
- this.calciteDatePickerSelect.emit(date);
- };
- }
- //--------------------------------------------------------------------------
- //
- // Lifecycle
- //
- //--------------------------------------------------------------------------
- connectedCallback() {
- this.setNextPrevMonthDates();
- }
- render() {
- return h("div", { class: "header" }, this.renderContent());
- }
- renderContent() {
- var _a;
- if (!this.activeDate || !this.localeData) {
- return null;
- }
- const activeMonth = this.activeDate.getMonth();
- const { months, unitOrder } = this.localeData;
- const localizedMonth = (months.wide || months.narrow || months.abbreviated)[activeMonth];
- const localizedYear = localizeNumber(this.activeDate.getFullYear(), this.localeData);
- const iconScale = this.scale === "l" ? "m" : "s";
- const order = getOrder(unitOrder);
- const reverse = order.indexOf("y") < order.indexOf("m");
- const suffix = (_a = this.localeData.year) === null || _a === void 0 ? void 0 : _a.suffix;
- return (h(Fragment, null,
- h("a", { "aria-disabled": (this.prevMonthDate.getMonth() === activeMonth).toString(), "aria-label": this.intlPrevMonth, class: "chevron", href: "#", onClick: this.prevMonthClick, onKeyDown: this.prevMonthKeydown, role: "button", tabindex: this.prevMonthDate.getMonth() === activeMonth ? -1 : 0 },
- h("calcite-icon", { "flip-rtl": true, icon: "chevron-left", scale: iconScale })),
- h("div", { class: { text: true, "text--reverse": reverse } },
- h(Heading, { class: "month", level: this.headingLevel }, localizedMonth),
- h("span", { class: "year-wrap" },
- h("input", { "aria-label": this.intlYear, class: {
- year: true,
- "year--suffix": !!suffix
- }, inputmode: "numeric", maxlength: "4", minlength: "1", onChange: this.onYearChange, onInput: this.onYearInput, onKeyDown: this.onYearKey, pattern: "\\d*", ref: (el) => (this.yearInput = el), type: "text", value: localizedYear }),
- suffix && (h("span", { class: "suffix" },
- h("span", { "aria-hidden": "true", class: "suffix__invisible" }, localizedYear),
- " " + suffix)))),
- h("a", { "aria-disabled": (this.nextMonthDate.getMonth() === activeMonth).toString(), "aria-label": this.intlNextMonth, class: "chevron", href: "#", onClick: this.nextMonthClick, onKeyDown: this.nextMonthKeydown, role: "button", tabindex: this.nextMonthDate.getMonth() === activeMonth ? -1 : 0 },
- h("calcite-icon", { "flip-rtl": true, icon: "chevron-right", scale: iconScale }))));
- }
- setNextPrevMonthDates() {
- if (!this.activeDate) {
- return;
- }
- this.nextMonthDate = dateFromRange(nextMonth(this.activeDate), this.min, this.max);
- this.prevMonthDate = dateFromRange(prevMonth(this.activeDate), this.min, this.max);
- }
- getInRangeDate({ localizedYear, offset = 0 }) {
- const { min, max, activeDate, localeData } = this;
- const parsedYear = parseNumber(localizedYear, localeData);
- const length = parsedYear.toString().length;
- const year = isNaN(parsedYear) ? false : parsedYear + offset;
- const inRange = year && (!min || min.getFullYear() <= year) && (!max || max.getFullYear() >= year);
- // if you've supplied a year and it's in range
- if (year && inRange && length === localizedYear.length) {
- const nextDate = new Date(activeDate);
- nextDate.setFullYear(year);
- return dateFromRange(nextDate, min, max);
- }
- }
- /**
- * Parse localized year string from input,
- * set to active if in range
- */
- setYear({ localizedYear, commit = true, offset = 0 }) {
- const { yearInput, activeDate, localeData } = this;
- const inRangeDate = this.getInRangeDate({ localizedYear, offset });
- // if you've supplied a year and it's in range, update active date
- if (inRangeDate) {
- this.calciteDatePickerSelect.emit(inRangeDate);
- }
- if (commit) {
- yearInput.value = localizeNumber((inRangeDate || activeDate).getFullYear(), localeData);
- }
- }
- static get is() { return "calcite-date-picker-month-header"; }
- static get encapsulation() { return "shadow"; }
- static get originalStyleUrls() { return {
- "$": ["date-picker-month-header.scss"]
- }; }
- static get styleUrls() { return {
- "$": ["date-picker-month-header.css"]
- }; }
- static get properties() { return {
- "selectedDate": {
- "type": "unknown",
- "mutable": false,
- "complexType": {
- "original": "Date",
- "resolved": "Date",
- "references": {
- "Date": {
- "location": "global"
- }
- }
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Already selected date."
- }
- },
- "activeDate": {
- "type": "unknown",
- "mutable": false,
- "complexType": {
- "original": "Date",
- "resolved": "Date",
- "references": {
- "Date": {
- "location": "global"
- }
- }
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Focused date with indicator (will become selected date if user proceeds)"
- }
- },
- "headingLevel": {
- "type": "number",
- "mutable": false,
- "complexType": {
- "original": "HeadingLevel",
- "resolved": "1 | 2 | 3 | 4 | 5 | 6",
- "references": {
- "HeadingLevel": {
- "location": "import",
- "path": "../functional/Heading"
- }
- }
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Number at which section headings should start for this component."
- },
- "attribute": "heading-level",
- "reflect": false
- },
- "min": {
- "type": "unknown",
- "mutable": false,
- "complexType": {
- "original": "Date",
- "resolved": "Date",
- "references": {
- "Date": {
- "location": "global"
- }
- }
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Minimum date of the calendar below which is disabled."
- }
- },
- "max": {
- "type": "unknown",
- "mutable": false,
- "complexType": {
- "original": "Date",
- "resolved": "Date",
- "references": {
- "Date": {
- "location": "global"
- }
- }
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Maximum date of the calendar above which is disabled."
- }
- },
- "locale": {
- "type": "string",
- "mutable": false,
- "complexType": {
- "original": "string",
- "resolved": "string",
- "references": {}
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "User's language and region as BCP 47 formatted string."
- },
- "attribute": "locale",
- "reflect": false
- },
- "intlPrevMonth": {
- "type": "string",
- "mutable": false,
- "complexType": {
- "original": "string",
- "resolved": "string",
- "references": {}
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Localized string for previous month."
- },
- "attribute": "intl-prev-month",
- "reflect": false
- },
- "intlNextMonth": {
- "type": "string",
- "mutable": false,
- "complexType": {
- "original": "string",
- "resolved": "string",
- "references": {}
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Localized string for next month."
- },
- "attribute": "intl-next-month",
- "reflect": false
- },
- "intlYear": {
- "type": "string",
- "mutable": false,
- "complexType": {
- "original": "string",
- "resolved": "string",
- "references": {}
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "Localized string for year."
- },
- "attribute": "intl-year",
- "reflect": false
- },
- "scale": {
- "type": "string",
- "mutable": false,
- "complexType": {
- "original": "Scale",
- "resolved": "\"l\" | \"m\" | \"s\"",
- "references": {
- "Scale": {
- "location": "import",
- "path": "../interfaces"
- }
- }
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "specify the scale of the date picker"
- },
- "attribute": "scale",
- "reflect": true
- },
- "localeData": {
- "type": "unknown",
- "mutable": false,
- "complexType": {
- "original": "DateLocaleData",
- "resolved": "DateLocaleData",
- "references": {
- "DateLocaleData": {
- "location": "import",
- "path": "../date-picker/utils"
- }
- }
- },
- "required": false,
- "optional": false,
- "docs": {
- "tags": [],
- "text": "CLDR locale data for translated calendar info"
- }
- }
- }; }
- static get states() { return {
- "nextMonthDate": {},
- "prevMonthDate": {}
- }; }
- static get events() { return [{
- "method": "calciteDatePickerSelect",
- "name": "calciteDatePickerSelect",
- "bubbles": true,
- "cancelable": true,
- "composed": true,
- "docs": {
- "tags": [],
- "text": "Changes to active date"
- },
- "complexType": {
- "original": "Date",
- "resolved": "Date",
- "references": {
- "Date": {
- "location": "global"
- }
- }
- }
- }]; }
- static get elementRef() { return "el"; }
- static get watchers() { return [{
- "propName": "min",
- "methodName": "setNextPrevMonthDates"
- }, {
- "propName": "max",
- "methodName": "setNextPrevMonthDates"
- }, {
- "propName": "activeDate",
- "methodName": "setNextPrevMonthDates"
- }]; }
- }
|