UNPKG

@kelvininc/ui-components

Version:
340 lines (335 loc) 22.5 kB
'use strict'; var index = require('./index-DpuMIXDY.js'); var actionButton_types = require('./action-button.types-BYOe6st0.js'); var timePicker_helper = require('./time-picker.helper-BinJe1-U.js'); var components = require('./components-D2lyDQ_a.js'); require('./lib-config-QLtHwxiM.js'); var absoluteTimePickerDropdown_types = require('./absolute-time-picker-dropdown.types-mPwO9zQk.js'); require('./icon.types-B8lvUrX_.js'); require('./summary-card.types-W26sTdH1.js'); require('./toaster.types-DlSCye8T.js'); require('./tree-item.types-C2yRoORC.js'); require('./tag-alarm.types-BeZw-7PT.js'); require('./wizard.types-DTbE-B6d.js'); var relativeTimePicker_config = require('./relative-time-picker.config-BBTpZn3r.js'); var date_helper = require('./date.helper-DwNTBYV0.js'); var absoluteTimePicker_config = require('./absolute-time-picker.config-BF9QIy90.js'); var isEmpty = require('./isEmpty-C_HQvGy-.js'); var isNumber = require('./isNumber-nnoh6LNV.js'); var merge = require('./merge-CkQdj9a0.js'); require('./floating-ui.dom-CxA-aH57.js'); require('./config-TIjltaxO.js'); require('./isNil-B-fGcnNC.js'); require('./_commonjsHelpers-BJu3ubxk.js'); require('./_Set-BIUoGFN6.js'); require('./_Map-DiT24PAz.js'); require('./isObject-COPdF2vE.js'); require('./_baseMerge-wzi7o0GG.js'); require('./identity-Dz5mxHaJ.js'); require('./_MapCache-DqKaXYoi.js'); const timePickerCss = "@property --rotation{syntax:\"<angle>\";initial-value:0deg;inherits:false}@keyframes rotate-border{to{--rotation:360deg}}.time-range-content{background-color:var(--kv-neutral-7, #2a2a2a);border:1px solid var(--kv-neutral-6, #3f3f3f);border-radius:4px;width:max-content}.time-range-content .content-wrapper{position:relative;display:flex;overflow:hidden;transition:all 0.3s ease-in-out}.time-range-content .content-wrapper--relative{height:347px;width:328px}.time-range-content .content-wrapper--absolute{height:377px;width:448px}.time-range-content .content-wrapper--full-view{height:347px;width:779px}.time-range-content .relative-range{position:absolute}.time-range-content .relative-range kv-relative-time-picker{--background-color:transparent}.time-range-content .relative-range--full-view{border-right:1px solid var(--kv-neutral-6, #3f3f3f)}.time-range-content .calendar-range{position:absolute;right:-448px;z-index:1;transition:all 0.3s ease-in-out;background-color:var(--kv-neutral-7, #2a2a2a);border-top-right-radius:4px;border-top-left-radius:4px}.time-range-content .calendar-range--visible{right:0}.time-range-content .calendar-range--full-view{right:0}.time-range-content kv-absolute-time-picker .absolute-time-picker-container{background-color:transparent}.footer{display:flex;justify-content:space-between;padding:var(--kv-spacing-4x, 16px);border-top:1px solid var(--kv-neutral-6, #3f3f3f)}.footer .toggle-wrapper{display:flex}.footer .show-calendar-toggle{display:flex;gap:var(--kv-spacing-2x, 8px);align-items:center}.footer .show-calendar-toggle .toggle-text{font-family:var(--kv-primary-font, \"proxima-nova\", sans-serif, \"Arial\");font-size:14px;font-weight:400;font-stretch:normal;font-style:normal;line-height:21px;letter-spacing:normal;text-transform:none;color:var(--kv-neutral-2, #e5e5e5)}.footer .actions{display:flex;gap:var(--kv-spacing-2x, 8px)}"; const KvTimePicker = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.timeRangeChange = index.createEvent(this, "timeRangeChange", 7); this.dropdownStateChange = index.createEvent(this, "dropdownStateChange", 7); this.cancelClicked = index.createEvent(this, "cancelClicked", 7); this.showCalendarStateChange = index.createEvent(this, "showCalendarStateChange", 7); /** @inheritdoc */ this.inputConfig = {}; /** @inheritdoc */ this.dropdownPositionOptions = timePicker_helper.DEFAULT_TIME_RANGE_DROPDOWN_POSITION_OPTIONS; /** @inheritdoc */ this.disabled = false; /** @inheritdoc */ this.showCalendar = false; /** @inheritdoc */ this.relativeTimePickerOptions = relativeTimePicker_config.DEFAULT_RELATIVE_TIME_OPTIONS_GROUPS; /** @inheritdoc */ this.timezones = date_helper.buildTimezoneByOffset(date_helper.getTimezonesNames()); /** @inheritdoc */ this.disableTimezoneSelection = false; /** @inheritdoc */ this.displayCustomizeInterval = true; /** @inheritdoc */ this.displayTimezoneDropdown = true; /** @inheritdoc */ this.zIndex = timePicker_helper.TIME_PICKER_PORTAL_Z_INDEX; /** @inheritdoc */ this.tooltipPosition = components.ETooltipPosition.TopStart; // Defines what content is being displayed this.timePickerView = timePicker_helper.ETimePickerView.RelativeTimePicker; // Dropdown open state this.dropdownOpen = false; // Apply button tooltip text this.applyButtontooltipText = ''; // Defines if calendar is locked when the user is in full view and clicked customize interval this.calendarViewLocked = false; // Defines if the timezone dropdown is visible in the input wrapper this.timezoneSelectionContentVisible = false; this.internalDropdownsOpen = false; this.resetDefaultSelectedTimeState = () => { this.selectedTimeState = { key: timePicker_helper.DEFAULT_SELECTED_TIME_KEY, range: timePicker_helper.getLast24HoursRange(), timezone: this.getSelectedTimezone() }; }; this.getSelectedTimezone = () => { var _a; if (((_a = this.selectedTimeState) === null || _a === void 0 ? void 0 : _a.timezone) !== undefined) { return this.selectedTimeState.timezone; } const defaultTimezone = date_helper.getDefaultTimezone(); return { name: defaultTimezone, offset: date_helper.getTimezoneOffset(defaultTimezone) }; }; this.onDropdownChange = ({ detail: isDropdownOpen }) => { this.dropdownOpen = isDropdownOpen; this.dropdownStateChange.emit(isDropdownOpen); if (!this.isApplyButtonDisabled() && !isDropdownOpen) { if (isEmpty.isEmpty(this.selectedTimeOption)) { this.resetDefaultSelectedTimeState(); } if (this.timePickerView !== timePicker_helper.ETimePickerView.FullView) { this.timePickerView = timePicker_helper.ETimePickerView.RelativeTimePicker; } } this.timezoneSelectionContentVisible = false; }; this.onSelectedRelativeTimeChange = ({ detail: timeOption }) => { this.selectedTimeState = { key: timeOption.key, range: timeOption.range, timezone: this.getSelectedTimezone() }; this.calendarViewLocked = false; }; this.onClickSeeCustomInterval = ({ detail: key }) => { if (this.selectedTimeState && this.selectedTimeState.key !== relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY) { this.selectedTimeState = { key, range: [], timezone: this.getSelectedTimezone() }; } if (!this.showCalendar) { this.timePickerView = timePicker_helper.ETimePickerView.AbsoluteTimePicker; } else { this.calendarViewLocked = true; } }; this.onSelectedTimezoneChange = ({ detail: timezone }) => { var _a, _b; const previousTimezone = this.getSelectedTimezone().name; const range = this.selectedTimeState.key === relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY && ((_b = (_a = this.selectedTimeState) === null || _a === void 0 ? void 0 : _a.range) === null || _b === void 0 ? void 0 : _b.length) > 0 ? timePicker_helper.getTimestampFromDateRange(this.selectedTimeState.range, previousTimezone, timezone.name) : this.selectedTimeState.range; this.selectedTimeState = Object.assign(Object.assign({}, this.selectedTimeState), { range, timezone }); }; this.onClickApply = () => { const eventPayload = timePicker_helper.getTimePickerEventPayload(this.selectedTimeState, this.getSelectedTimezone()); this.timeRangeChange.emit(eventPayload); this.dropdownStateChange.emit(false); this.dropdownOpen = false; this.timezoneSelectionContentVisible = false; if (this.timePickerView !== timePicker_helper.ETimePickerView.FullView) { this.timePickerView = timePicker_helper.ETimePickerView.RelativeTimePicker; this.calendarViewLocked = false; } }; this.onClickBack = () => { this.undoLastChanges(); this.calendarViewLocked = false; }; this.onClickCancel = (event) => { this.undoLastChanges(); this.cancelClicked.emit(event); this.dropdownOpen = false; this.timezoneSelectionContentVisible = false; }; this.undoLastChanges = () => { if (!isEmpty.isEmpty(this.selectedTimeOption)) { this.selectedTimeState = this.selectedTimeOption; } else { this.resetDefaultSelectedTimeState(); } this.applyButtontooltipText = ''; if (this.timePickerView !== timePicker_helper.ETimePickerView.FullView) { this.calendarViewLocked = false; this.timePickerView = timePicker_helper.ETimePickerView.RelativeTimePicker; } }; this.onShowCalendarClick = () => { if (!this.calendarViewLocked) { this.showCalendarStateChange.emit(!this.showCalendar); } }; this.handleRelativeTimeConfigReset = () => { this.calendarViewLocked = true; this.selectedTimeState = { key: relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY, range: [], timezone: this.getSelectedTimezone() }; }; this.handleAbsoluteDatesChange = ({ detail }) => { const range = detail.range; if (!this.calendarViewLocked) { this.calendarViewLocked = true; } const [from, to] = range; const timezone = this.getSelectedTimezone(); const fromDate = timePicker_helper.createTimestampInTimezoneFromFormattedDate(from, timezone.name, absoluteTimePicker_config.CALENDAR_DATE_TIME_MASK); const toDate = timePicker_helper.createTimestampInTimezoneFromFormattedDate(to, timezone.name, absoluteTimePicker_config.CALENDAR_DATE_TIME_MASK); if (timePicker_helper.hasRangeChanged([fromDate, toDate], this.selectedTimeState.range)) { this.selectedTimeState = { key: relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY, range: range.length === timePicker_helper.FULL_RANGE_SIZE ? [fromDate, toDate] : [fromDate], timezone }; this.updateApplyButtonConfig(range); } }; this.displayInputWrapperContent = () => { this.timezoneSelectionContentVisible = true; }; this.getCalendarLimitDatesFormatted = (date) => { if (!isNumber.isNumber(date)) return; const selectedTimezone = this.getSelectedTimezone(); return date_helper.dayjs(date).tz(selectedTimezone.name).format(absoluteTimePicker_config.DATETIME_INPUT_MASK); }; this.updateApplyButtonConfig = (range) => { if (range && range.length === timePicker_helper.FULL_RANGE_SIZE) { this.applyButtontooltipText = ''; } else { this.applyButtontooltipText = timePicker_helper.APPLY_BUTTON_ERROR_TOOLTIP_TEXT; } }; this.getDropdownInputValue = () => { var _a, _b; if (((_a = this.selectedTimeOption) === null || _a === void 0 ? void 0 : _a.key) === relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY) { return timePicker_helper.buildCustomIntervalTimeRange(this.selectedTimeOption.range, this.selectedTimeOption.timezone.name); } if (!isEmpty.isEmpty(this.selectedTimeOption)) { return timePicker_helper.getRelativeTimeLabel((_b = this.selectedTimeOption) === null || _b === void 0 ? void 0 : _b.key, this.relativeTimePickerOptions); } return ''; }; this.getTextFieldTooltip = () => { var _a; if (((_a = this.selectedTimeState) === null || _a === void 0 ? void 0 : _a.key) === relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY) { return timePicker_helper.buildTooltipText(this.selectedTimeState.range, this.getSelectedTimezone(), this.timezones); } }; this.getFormattedSelectedTime = () => { var _a, _b; if (((_a = this.selectedTimeState) === null || _a === void 0 ? void 0 : _a.key) === relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY) { return absoluteTimePicker_config.DEFAULT_HEADER_TITLE; } return timePicker_helper.getRelativeTimeLabel((_b = this.selectedTimeState) === null || _b === void 0 ? void 0 : _b.key, this.relativeTimePickerOptions); }; this.getInputConfig = () => { return merge.merge({}, timePicker_helper.DEFAULT_TIME_RANGE_PICKER_INPUT_CONFIG, this.inputConfig, { value: this.getDropdownInputValue(), tooltipConfig: { text: this.getTextFieldTooltip(), position: this.tooltipPosition }, inputDisabled: this.disabled }); }; /** * Returns the apply button tooltip helptext * @returns apply button help text */ this.getApplyButtonTooltipText = () => { return this.isApplyButtonDisabled() ? this.applyButtontooltipText : ''; }; /** * Transforms the timestamp into absolute-time-picker dates in the format: YYYY/MM/DD HH:mm:ss * @returns formatted dates to the absolute time picker component */ this.getAbsoluteRange = () => { const defaultTimezone = this.getSelectedTimezone(); return timePicker_helper.getAbsoluteTimePickerRangeDates(this.selectedTimeState, defaultTimezone); }; this.onInternalDropdownsStateChange = ({ detail: openState }) => { this.internalDropdownsOpen = openState; }; } handleSelectTimeStateChange(timeState) { var _a; this.selectedTimeState = Object.assign(Object.assign({}, timeState), { timezone: (_a = timeState === null || timeState === void 0 ? void 0 : timeState.timezone) !== null && _a !== void 0 ? _a : this.getSelectedTimezone() }); } handleShowCalendarChange(value) { this.syncShowCalendarViewState(value); } componentWillLoad() { if (isEmpty.isEmpty(this.selectedTimeOption)) { this.resetDefaultSelectedTimeState(); } else { this.syncTimeStateWithTimeOption(); } this.syncShowCalendarViewState(this.showCalendar); } syncShowCalendarViewState(value) { this.timePickerView = value ? timePicker_helper.ETimePickerView.FullView : timePicker_helper.ETimePickerView.RelativeTimePicker; } syncTimeStateWithTimeOption() { var _a; this.selectedTimeState = Object.assign(Object.assign({}, this.selectedTimeOption), { timezone: (_a = this.selectedTimeOption.timezone) !== null && _a !== void 0 ? _a : this.getSelectedTimezone() }); } getRelativeTimeInputConfig() { var _a; if (((_a = this.selectedTimeState) === null || _a === void 0 ? void 0 : _a.key) !== relativeTimePicker_config.CUSTOMIZE_INTERVAL_KEY) { return timePicker_helper.getRelativeTimeInputText(this.relativeTimePickerOptions, this.selectedTimeState, this.getSelectedTimezone().name); } } // Components config methods isApplyButtonDisabled() { var _a, _b, _c, _d; const { range: stateRange, timezone: selectedTimezone } = this.selectedTimeState; if (stateRange.length > 0 && timePicker_helper.validateNewRange(stateRange)) { if (((_b = (_a = this.selectedTimeOption) === null || _a === void 0 ? void 0 : _a.range) === null || _b === void 0 ? void 0 : _b.length) > 0) { const { range: propRange } = this.selectedTimeOption; if (stateRange.length === timePicker_helper.FULL_RANGE_SIZE && timePicker_helper.hasRangeChanged(stateRange, propRange)) { return false; } } if (((_d = (_c = this.selectedTimeOption) === null || _c === void 0 ? void 0 : _c.timezone) === null || _d === void 0 ? void 0 : _d.name) !== (selectedTimezone === null || selectedTimezone === void 0 ? void 0 : selectedTimezone.name)) { return false; } } return true; } render() { var _a; const dropdownPositionConfig = this.dropdownPositionOptions; const inputConfig = this.getInputConfig(); return (index.h(index.Host, { key: '3a42810f7eb2671de0695eb639d97f7dbb130b71' }, index.h("kv-dropdown", { key: '124305e83b06de2b8bb34ccae05fa7a09054d416', isOpen: this.dropdownOpen, onOpenStateChange: this.onDropdownChange, inputConfig: inputConfig, options: dropdownPositionConfig, disabled: this.disabled, zIndex: this.zIndex, clickOutsideClose: !this.internalDropdownsOpen }, index.h("div", { key: '1fc9f6962abb08c363cf67078fe13211d232cf62', class: "time-range-content" }, index.h("div", { key: '09918ee6025f2b1e10c005c1b5736c653286f0ac', class: { 'content-wrapper': true, 'content-wrapper--relative': this.timePickerView === timePicker_helper.ETimePickerView.RelativeTimePicker, 'content-wrapper--absolute': this.timePickerView === timePicker_helper.ETimePickerView.AbsoluteTimePicker, 'content-wrapper--full-view': this.timePickerView === timePicker_helper.ETimePickerView.FullView } }, index.h("div", { key: '28f1d7d3bb7f6787f8a96a594af76a004817df02', class: { 'relative-range': true, 'relative-range--full-view': this.timePickerView === timePicker_helper.ETimePickerView.FullView } }, index.h("kv-relative-time-picker", { key: 'e7894bd6492a443ad9783c92af3abea3246455b8', options: this.relativeTimePickerOptions, timezones: this.timezones, selectedTimezone: this.getSelectedTimezone().name, selectedTimeKey: (_a = this.selectedTimeState) === null || _a === void 0 ? void 0 : _a.key, customIntervalOptionEnabled: this.displayCustomizeInterval, timezoneSelectionEnabled: this.displayTimezoneDropdown, timezoneContentVisible: this.timezoneSelectionContentVisible, disableTimezoneSelection: this.disableTimezoneSelection, onCustomizeIntervalClicked: this.onClickSeeCustomInterval, onSelectedRelativeTimeChange: this.onSelectedRelativeTimeChange, onTimezoneChange: this.onSelectedTimezoneChange, onTimezoneInputClicked: this.displayInputWrapperContent, onTimezoneDropdownStateChange: this.onInternalDropdownsStateChange })), index.h("div", { key: '019c7c7973539a47b9769fa815229a74eb124717', class: { 'calendar-range': true, 'calendar-range--visible': this.timePickerView === timePicker_helper.ETimePickerView.AbsoluteTimePicker, 'calendar-range--full-view': this.timePickerView === timePicker_helper.ETimePickerView.FullView } }, index.h("kv-absolute-time-picker", { key: '95bebabd624f82e073ed74a054e750bac15ec098', mode: absoluteTimePickerDropdown_types.EAbsoluteTimePickerMode.Range, headerTitle: this.getFormattedSelectedTime(), selectedDates: this.getAbsoluteRange(), relativeTimeConfig: this.getRelativeTimeInputConfig(), displayBackButton: this.timePickerView === timePicker_helper.ETimePickerView.AbsoluteTimePicker, onBackButtonClicked: this.onClickBack, onSelectedDatesChange: this.handleAbsoluteDatesChange, onRelativeTimeConfigReset: this.handleRelativeTimeConfigReset, onRelativeTimeConfigChange: this.handleAbsoluteDatesChange, calendarInputMinDate: this.getCalendarLimitDatesFormatted(this.calendarInputMinDate), calendarInputMaxDate: this.getCalendarLimitDatesFormatted(this.calendarInputMaxDate) }))), index.h("div", { key: '1eb15f82cf5327b64b1426bf172fea9e8c010e39', class: "footer" }, index.h("div", { key: '305f9f7118ebde2f083af623d777f03cf519b91b', class: "toggle-wrapper" }, this.timePickerView !== timePicker_helper.ETimePickerView.AbsoluteTimePicker && (index.h("div", { key: '777afc7719bbc1b99ab7b407c951b35bb4bb1f4e', class: "show-calendar-toggle" }, index.h("kv-switch-button", { key: 'd1723117d7b975ac04b0283d6dbfb7d54ec688c1', checked: this.showCalendar, size: components.EComponentSize.Small, onClick: this.onShowCalendarClick, disabled: this.calendarViewLocked }), index.h("div", { key: '661caba234db94a90a5a5ebdff93807f859d3861', class: "toggle-text" }, "Show Calendar")))), index.h("div", { key: '34adfedcfea37f1cccfd2f448345585f42edb3c4', class: "actions" }, index.h("kv-action-button-text", { key: '81e40074f16c56b20c769bc68ae9713edcb27893', type: actionButton_types.EActionButtonType.Tertiary, size: components.EComponentSize.Small, text: "Cancel", onClickButton: this.onClickCancel }), index.h("kv-tooltip", { key: 'ccb038714dc949eb0153e05051c6d1c7b9834a80', text: this.getApplyButtonTooltipText(), position: components.ETooltipPosition.TopStart }, index.h("kv-action-button-text", { key: '46d559a76cf190ac8968b0f613b190de52bdfc64', type: actionButton_types.EActionButtonType.Primary, size: components.EComponentSize.Small, text: "Apply", disabled: this.isApplyButtonDisabled(), onClickButton: this.onClickApply })))))))); } static get watchers() { return { "selectedTimeOption": ["handleSelectTimeStateChange"], "showCalendar": ["handleShowCalendarChange"] }; } }; KvTimePicker.style = timePickerCss; exports.kv_time_picker = KvTimePicker;