267abdb9f8a5f7346e4848f2533ac9a3b1828918285086df167bdab78bfc75fc.json 70 KB

1
  1. {"ast":null,"code":"import _asyncToGenerator from \"F:/workspace/202226701027/huinongbao-app/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js\";\n/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\nimport { proxyCustomElement, HTMLElement, createEvent, writeTask, h, Host } from '@stencil/core/internal/client';\nimport { r as raf } from './helpers.js';\nimport { i as isRTL } from './dir.js';\nimport { c as createColorClasses, h as hostContext } from './theme.js';\nimport { b as getIonMode } from './ionic-global.js';\nconst segmentIosCss = \":host{--ripple-color:currentColor;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:grid;grid-auto-columns:1fr;position:relative;-ms-flex-align:stretch;align-items:stretch;-ms-flex-pack:center;justify-content:center;width:100%;background:var(--background);font-family:var(--ion-font-family, inherit);text-align:center;contain:paint;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host(.segment-scrollable){-ms-flex-pack:start;justify-content:start;width:auto;overflow-x:auto;grid-auto-columns:minmax(-webkit-min-content, 1fr);grid-auto-columns:minmax(min-content, 1fr)}:host(.segment-scrollable::-webkit-scrollbar){display:none}:host{--background:rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.065);border-radius:8px;overflow:hidden;z-index:0}:host(.ion-color){background:rgba(var(--ion-color-base-rgb), 0.065)}:host(.in-toolbar){-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;width:auto}:host(.in-toolbar:not(.ion-color)){background:var(--ion-toolbar-segment-background, var(--background))}:host(.in-toolbar-color:not(.ion-color)){background:rgba(var(--ion-color-contrast-rgb), 0.11)}\";\nconst IonSegmentIosStyle0 = segmentIosCss;\nconst segmentMdCss = \":host{--ripple-color:currentColor;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:grid;grid-auto-columns:1fr;position:relative;-ms-flex-align:stretch;align-items:stretch;-ms-flex-pack:center;justify-content:center;width:100%;background:var(--background);font-family:var(--ion-font-family, inherit);text-align:center;contain:paint;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host(.segment-scrollable){-ms-flex-pack:start;justify-content:start;width:auto;overflow-x:auto;grid-auto-columns:minmax(-webkit-min-content, 1fr);grid-auto-columns:minmax(min-content, 1fr)}:host(.segment-scrollable::-webkit-scrollbar){display:none}:host{--background:transparent;grid-auto-columns:minmax(auto, 360px)}:host(.in-toolbar){min-height:var(--min-height)}:host(.segment-scrollable) ::slotted(ion-segment-button){min-width:auto}\";\nconst IonSegmentMdStyle0 = segmentMdCss;\nconst Segment = /*@__PURE__*/proxyCustomElement(class Segment extends HTMLElement {\n constructor() {\n super();\n this.__registerHost();\n this.__attachShadow();\n this.ionChange = createEvent(this, \"ionChange\", 7);\n this.ionSelect = createEvent(this, \"ionSelect\", 7);\n this.ionStyle = createEvent(this, \"ionStyle\", 7);\n this.segmentViewEl = null;\n this.onClick = ev => {\n const current = ev.target;\n const previous = this.checked;\n // If the current element is a segment then that means\n // the user tried to swipe to a segment button and\n // click a segment button at the same time so we should\n // not update the checked segment button\n if (current.tagName === 'ION-SEGMENT') {\n return;\n }\n this.value = current.value;\n if (current !== previous) {\n this.emitValueChange();\n }\n if (this.segmentViewEl) {\n this.updateSegmentView();\n if (this.scrollable && previous) {\n this.checkButton(previous, current);\n }\n } else if (this.scrollable || !this.swipeGesture) {\n if (previous) {\n this.checkButton(previous, current);\n } else {\n this.setCheckedClasses();\n }\n }\n };\n this.onSlottedItemsChange = () => {\n /**\n * When the slotted segment buttons change we need to\n * ensure that the new segment buttons are checked if\n * the value matches the segment button value.\n */\n this.valueChanged(this.value);\n };\n this.getSegmentButton = selector => {\n var _a, _b;\n const buttons = this.getButtons().filter(button => !button.disabled);\n const currIndex = buttons.findIndex(button => button === document.activeElement);\n switch (selector) {\n case 'first':\n return buttons[0];\n case 'last':\n return buttons[buttons.length - 1];\n case 'next':\n return (_a = buttons[currIndex + 1]) !== null && _a !== void 0 ? _a : buttons[0];\n case 'previous':\n return (_b = buttons[currIndex - 1]) !== null && _b !== void 0 ? _b : buttons[buttons.length - 1];\n default:\n return null;\n }\n };\n this.activated = false;\n this.color = undefined;\n this.disabled = false;\n this.scrollable = false;\n this.swipeGesture = true;\n this.value = undefined;\n this.selectOnFocus = false;\n }\n colorChanged(value, oldValue) {\n /**\n * If color is set after not having\n * previously been set (or vice versa),\n * we need to emit style so the segment-buttons\n * can apply their color classes properly.\n */\n if (oldValue === undefined && value !== undefined || oldValue !== undefined && value === undefined) {\n this.emitStyle();\n }\n }\n swipeGestureChanged() {\n this.gestureChanged();\n }\n valueChanged(value, oldValue) {\n // Force a value to exist if we're using a segment view\n if (this.segmentViewEl && value === undefined) {\n this.value = this.getButtons()[0].value;\n return;\n }\n if (oldValue !== undefined && value !== undefined) {\n const buttons = this.getButtons();\n const previous = buttons.find(button => button.value === oldValue);\n const current = buttons.find(button => button.value === value);\n if (previous && current) {\n if (!this.segmentViewEl) {\n this.checkButton(previous, current);\n } else if (this.triggerScrollOnValueChange !== false) {\n this.updateSegmentView();\n }\n }\n } else if (value !== undefined && oldValue === undefined && this.segmentViewEl) {\n this.updateSegmentView();\n }\n /**\n * `ionSelect` is emitted every time the value changes (internal or external changes).\n * Used by `ion-segment-button` to determine if the button should be checked.\n */\n this.ionSelect.emit({\n value\n });\n // The scroll listener should handle scrolling the active button into view as needed\n if (!this.segmentViewEl) {\n this.scrollActiveButtonIntoView();\n }\n this.triggerScrollOnValueChange = undefined;\n }\n disabledChanged() {\n this.gestureChanged();\n if (!this.segmentViewEl) {\n const buttons = this.getButtons();\n for (const button of buttons) {\n button.disabled = this.disabled;\n }\n } else {\n this.segmentViewEl.disabled = this.disabled;\n }\n }\n gestureChanged() {\n if (this.gesture) {\n this.gesture.enable(!this.scrollable && !this.disabled && this.swipeGesture);\n }\n }\n connectedCallback() {\n this.emitStyle();\n this.segmentViewEl = this.getSegmentView();\n }\n disconnectedCallback() {\n this.segmentViewEl = null;\n }\n componentWillLoad() {\n this.emitStyle();\n }\n componentDidLoad() {\n var _this = this;\n return _asyncToGenerator(function* () {\n _this.setCheckedClasses();\n /**\n * We need to wait for the buttons to all be rendered\n * before we can scroll.\n */\n raf(() => {\n /**\n * When the segment loads for the first\n * time we just want to snap the active button into\n * place instead of scroll. Smooth scrolling should only\n * happen when the user interacts with the segment.\n */\n _this.scrollActiveButtonIntoView(false);\n });\n _this.gesture = (yield import('./index3.js')).createGesture({\n el: _this.el,\n gestureName: 'segment',\n gesturePriority: 100,\n threshold: 0,\n passive: false,\n onStart: ev => _this.onStart(ev),\n onMove: ev => _this.onMove(ev),\n onEnd: ev => _this.onEnd(ev)\n });\n _this.gestureChanged();\n if (_this.disabled) {\n _this.disabledChanged();\n }\n // Update segment view based on the initial value,\n // but do not animate the scroll\n _this.updateSegmentView(false);\n })();\n }\n onStart(detail) {\n this.valueBeforeGesture = this.value;\n this.activate(detail);\n }\n onMove(detail) {\n this.setNextIndex(detail);\n }\n onEnd(detail) {\n this.setActivated(false);\n this.setNextIndex(detail, true);\n detail.event.stopImmediatePropagation();\n const value = this.value;\n if (value !== undefined) {\n if (this.valueBeforeGesture !== value) {\n this.emitValueChange();\n this.updateSegmentView();\n }\n }\n this.valueBeforeGesture = undefined;\n }\n /**\n * Emits an `ionChange` event.\n *\n * This API should be called for user committed changes.\n * This API should not be used for external value changes.\n */\n emitValueChange() {\n const {\n value\n } = this;\n this.ionChange.emit({\n value\n });\n }\n getButtons() {\n return Array.from(this.el.querySelectorAll('ion-segment-button'));\n }\n get checked() {\n return this.getButtons().find(button => button.value === this.value);\n }\n /*\n * Activate both the segment and the buttons\n * due to a bug with ::slotted in Safari\n */\n setActivated(activated) {\n const buttons = this.getButtons();\n buttons.forEach(button => {\n button.classList.toggle('segment-button-activated', activated);\n });\n this.activated = activated;\n }\n activate(detail) {\n const clicked = detail.event.target;\n const buttons = this.getButtons();\n const checked = buttons.find(button => button.value === this.value);\n // Make sure we are only checking for activation on a segment button\n // since disabled buttons will get the click on the segment\n if (clicked.tagName !== 'ION-SEGMENT-BUTTON') {\n return;\n }\n // If there are no checked buttons, set the current button to checked\n if (!checked) {\n this.value = clicked.value;\n this.setCheckedClasses();\n }\n // If the gesture began on the clicked button with the indicator\n // then we should activate the indicator\n if (this.value === clicked.value) {\n this.setActivated(true);\n }\n }\n getIndicator(button) {\n const root = button.shadowRoot || button;\n return root.querySelector('.segment-button-indicator');\n }\n checkButton(previous, current) {\n const previousIndicator = this.getIndicator(previous);\n const currentIndicator = this.getIndicator(current);\n if (previousIndicator === null || currentIndicator === null) {\n return;\n }\n const previousClientRect = previousIndicator.getBoundingClientRect();\n const currentClientRect = currentIndicator.getBoundingClientRect();\n const widthDelta = previousClientRect.width / currentClientRect.width;\n const xPosition = previousClientRect.left - currentClientRect.left;\n // Scale the indicator width to match the previous indicator width\n // and translate it on top of the previous indicator\n const transform = `translate3d(${xPosition}px, 0, 0) scaleX(${widthDelta})`;\n writeTask(() => {\n // Remove the transition before positioning on top of the previous indicator\n currentIndicator.classList.remove('segment-button-indicator-animated');\n currentIndicator.style.setProperty('transform', transform);\n // Force a repaint to ensure the transform happens\n currentIndicator.getBoundingClientRect();\n // Add the transition to move the indicator into place\n currentIndicator.classList.add('segment-button-indicator-animated');\n // Remove the transform to slide the indicator back to the button clicked\n currentIndicator.style.setProperty('transform', '');\n this.scrollActiveButtonIntoView(true);\n });\n this.value = current.value;\n this.setCheckedClasses();\n }\n setCheckedClasses() {\n const buttons = this.getButtons();\n const index = buttons.findIndex(button => button.value === this.value);\n const next = index + 1;\n for (const button of buttons) {\n button.classList.remove('segment-button-after-checked');\n }\n if (next < buttons.length) {\n buttons[next].classList.add('segment-button-after-checked');\n }\n }\n getSegmentView() {\n const buttons = this.getButtons();\n // Get the first button with a contentId\n const firstContentId = buttons.find(button => button.contentId);\n // Get the segment content with an id matching the button's contentId\n const segmentContent = document.querySelector(`ion-segment-content[id=\"${firstContentId === null || firstContentId === void 0 ? void 0 : firstContentId.contentId}\"]`);\n // Return the segment view for that matching segment content\n return segmentContent === null || segmentContent === void 0 ? void 0 : segmentContent.closest('ion-segment-view');\n }\n handleSegmentViewScroll(ev) {\n const {\n scrollRatio,\n isManualScroll\n } = ev.detail;\n if (!isManualScroll) {\n return;\n }\n const dispatchedFrom = ev.target;\n const segmentViewEl = this.segmentViewEl;\n const segmentEl = this.el;\n // Only update the indicator if the event was dispatched from the correct segment view\n if (ev.composedPath().includes(segmentViewEl) || (dispatchedFrom === null || dispatchedFrom === void 0 ? void 0 : dispatchedFrom.contains(segmentEl))) {\n const buttons = this.getButtons();\n // If no buttons are found or there is no value set then do nothing\n if (!buttons.length) return;\n const index = buttons.findIndex(button => button.value === this.value);\n const current = buttons[index];\n const nextIndex = Math.round(scrollRatio * (buttons.length - 1));\n if (this.lastNextIndex === undefined || this.lastNextIndex !== nextIndex) {\n this.lastNextIndex = nextIndex;\n this.triggerScrollOnValueChange = false;\n this.checkButton(current, buttons[nextIndex]);\n this.emitValueChange();\n }\n }\n }\n /**\n * Finds the related segment view and sets its current content\n * based on the selected segment button. This method\n * should be called on initial load of the segment,\n * after the gesture is completed (if dragging between segments)\n * and when a segment button is clicked directly.\n */\n updateSegmentView(smoothScroll = true) {\n const buttons = this.getButtons();\n const button = buttons.find(btn => btn.value === this.value);\n // If the button does not have a contentId then there is\n // no associated segment view to update\n if (!(button === null || button === void 0 ? void 0 : button.contentId)) {\n return;\n }\n const segmentView = this.segmentViewEl;\n if (segmentView) {\n segmentView.setContent(button.contentId, smoothScroll);\n }\n }\n scrollActiveButtonIntoView(smoothScroll = true) {\n const {\n scrollable,\n value,\n el\n } = this;\n if (scrollable) {\n const buttons = this.getButtons();\n const activeButton = buttons.find(button => button.value === value);\n if (activeButton !== undefined) {\n const scrollContainerBox = el.getBoundingClientRect();\n const activeButtonBox = activeButton.getBoundingClientRect();\n /**\n * Subtract the active button x position from the scroll\n * container x position. This will give us the x position\n * of the active button within the scroll container.\n */\n const activeButtonLeft = activeButtonBox.x - scrollContainerBox.x;\n /**\n * If we just used activeButtonLeft, then the active button\n * would be aligned with the left edge of the scroll container.\n * Instead, we want the segment button to be centered. As a result,\n * we subtract half of the scroll container width. This will position\n * the left edge of the active button at the midpoint of the scroll container.\n * We then add half of the active button width. This will position the active\n * button such that the midpoint of the active button is at the midpoint of the\n * scroll container.\n */\n const centeredX = activeButtonLeft - scrollContainerBox.width / 2 + activeButtonBox.width / 2;\n /**\n * newScrollPosition is the absolute scroll position that the\n * container needs to move to in order to center the active button.\n * It is calculated by adding the current scroll position\n * (scrollLeft) to the offset needed to center the button\n * (centeredX).\n */\n const newScrollPosition = el.scrollLeft + centeredX;\n /**\n * We intentionally use scrollTo here instead of scrollIntoView\n * to avoid a WebKit bug where accelerated animations break\n * when using scrollIntoView. Using scrollIntoView will cause the\n * segment container to jump during the transition and then snap into place.\n * This is because scrollIntoView can potentially cause parent element\n * containers to also scroll. scrollTo does not have this same behavior, so\n * we use this API instead.\n *\n * scrollTo is used instead of scrollBy because there is a\n * Webkit bug that causes scrollBy to not work smoothly when\n * the active button is near the edge of the scroll container.\n * This leads to the buttons to jump around during the transition.\n *\n * Note that if there is not enough scrolling space to center the element\n * within the scroll container, the browser will attempt\n * to center by as much as it can.\n */\n el.scrollTo({\n top: 0,\n left: newScrollPosition,\n behavior: smoothScroll ? 'smooth' : 'instant'\n });\n }\n }\n }\n setNextIndex(detail, isEnd = false) {\n const rtl = isRTL(this.el);\n const activated = this.activated;\n const buttons = this.getButtons();\n const index = buttons.findIndex(button => button.value === this.value);\n const previous = buttons[index];\n let current;\n let nextIndex;\n if (index === -1) {\n return;\n }\n // Get the element that the touch event started on in case\n // it was the checked button, then we will move the indicator\n const rect = previous.getBoundingClientRect();\n const left = rect.left;\n const width = rect.width;\n // Get the element that the gesture is on top of based on the currentX of the\n // gesture event and the Y coordinate of the starting element, since the gesture\n // can move up and down off of the segment\n const currentX = detail.currentX;\n const previousY = rect.top + rect.height / 2;\n /**\n * Segment can be used inside the shadow dom\n * so doing document.elementFromPoint would never\n * return a segment button in that instance.\n * We use getRootNode to which will return the parent\n * shadow root if used inside a shadow component and\n * returns document otherwise.\n */\n const root = this.el.getRootNode();\n const nextEl = root.elementFromPoint(currentX, previousY);\n const decreaseIndex = rtl ? currentX > left + width : currentX < left;\n const increaseIndex = rtl ? currentX < left : currentX > left + width;\n // If the indicator is currently activated then we have started the gesture\n // on top of the checked button so we need to slide the indicator\n // by checking the button next to it as we move\n if (activated && !isEnd) {\n // Decrease index, move left in LTR & right in RTL\n if (decreaseIndex) {\n const newIndex = index - 1;\n if (newIndex >= 0) {\n nextIndex = newIndex;\n }\n // Increase index, moves right in LTR & left in RTL\n } else if (increaseIndex) {\n if (activated && !isEnd) {\n const newIndex = index + 1;\n if (newIndex < buttons.length) {\n nextIndex = newIndex;\n }\n }\n }\n if (nextIndex !== undefined && !buttons[nextIndex].disabled) {\n current = buttons[nextIndex];\n }\n }\n // If the indicator is not activated then we will just set the indicator\n // to the element where the gesture ended\n if (!activated && isEnd) {\n current = nextEl;\n }\n if (current != null) {\n /**\n * If current element is ion-segment then that means\n * user tried to select a disabled ion-segment-button,\n * and we should not update the ripple.\n */\n if (current.tagName === 'ION-SEGMENT') {\n return false;\n }\n if (previous !== current) {\n this.checkButton(previous, current);\n }\n }\n return true;\n }\n emitStyle() {\n this.ionStyle.emit({\n segment: true\n });\n }\n onKeyDown(ev) {\n const rtl = isRTL(this.el);\n let keyDownSelectsButton = this.selectOnFocus;\n let current;\n switch (ev.key) {\n case 'ArrowRight':\n ev.preventDefault();\n current = rtl ? this.getSegmentButton('previous') : this.getSegmentButton('next');\n break;\n case 'ArrowLeft':\n ev.preventDefault();\n current = rtl ? this.getSegmentButton('next') : this.getSegmentButton('previous');\n break;\n case 'Home':\n ev.preventDefault();\n current = this.getSegmentButton('first');\n break;\n case 'End':\n ev.preventDefault();\n current = this.getSegmentButton('last');\n break;\n case ' ':\n case 'Enter':\n ev.preventDefault();\n current = document.activeElement;\n keyDownSelectsButton = true;\n }\n if (!current) {\n return;\n }\n if (keyDownSelectsButton) {\n const previous = this.checked;\n this.checkButton(previous || current, current);\n if (current !== previous) {\n this.emitValueChange();\n }\n }\n current.setFocus();\n }\n render() {\n const mode = getIonMode(this);\n return h(Host, {\n key: '66bd7a565ba73540b3bbe56dd23b95e59bcef9bc',\n role: \"tablist\",\n onClick: this.onClick,\n class: createColorClasses(this.color, {\n [mode]: true,\n 'in-toolbar': hostContext('ion-toolbar', this.el),\n 'in-toolbar-color': hostContext('ion-toolbar[color]', this.el),\n 'segment-activated': this.activated,\n 'segment-disabled': this.disabled,\n 'segment-scrollable': this.scrollable\n })\n }, h(\"slot\", {\n key: '782c521b1a33729b8eab1c4b879bc3f2ff48ae1b',\n onSlotchange: this.onSlottedItemsChange\n }));\n }\n get el() {\n return this;\n }\n static get watchers() {\n return {\n \"color\": [\"colorChanged\"],\n \"swipeGesture\": [\"swipeGestureChanged\"],\n \"value\": [\"valueChanged\"],\n \"disabled\": [\"disabledChanged\"]\n };\n }\n static get style() {\n return {\n ios: IonSegmentIosStyle0,\n md: IonSegmentMdStyle0\n };\n }\n}, [33, \"ion-segment\", {\n \"color\": [513],\n \"disabled\": [4],\n \"scrollable\": [4],\n \"swipeGesture\": [4, \"swipe-gesture\"],\n \"value\": [1032],\n \"selectOnFocus\": [4, \"select-on-focus\"],\n \"activated\": [32]\n}, [[16, \"ionSegmentViewScroll\", \"handleSegmentViewScroll\"], [0, \"keydown\", \"onKeyDown\"]], {\n \"color\": [\"colorChanged\"],\n \"swipeGesture\": [\"swipeGestureChanged\"],\n \"value\": [\"valueChanged\"],\n \"disabled\": [\"disabledChanged\"]\n}]);\nfunction defineCustomElement$1() {\n if (typeof customElements === \"undefined\") {\n return;\n }\n const components = [\"ion-segment\"];\n components.forEach(tagName => {\n switch (tagName) {\n case \"ion-segment\":\n if (!customElements.get(tagName)) {\n customElements.define(tagName, Segment);\n }\n break;\n }\n });\n}\nconst IonSegment = Segment;\nconst defineCustomElement = defineCustomElement$1;\nexport { IonSegment, defineCustomElement };","map":{"version":3,"names":["proxyCustomElement","HTMLElement","createEvent","writeTask","h","Host","r","raf","i","isRTL","c","createColorClasses","hostContext","b","getIonMode","segmentIosCss","IonSegmentIosStyle0","segmentMdCss","IonSegmentMdStyle0","Segment","constructor","__registerHost","__attachShadow","ionChange","ionSelect","ionStyle","segmentViewEl","onClick","ev","current","target","previous","checked","tagName","value","emitValueChange","updateSegmentView","scrollable","checkButton","swipeGesture","setCheckedClasses","onSlottedItemsChange","valueChanged","getSegmentButton","selector","_a","_b","buttons","getButtons","filter","button","disabled","currIndex","findIndex","document","activeElement","length","activated","color","undefined","selectOnFocus","colorChanged","oldValue","emitStyle","swipeGestureChanged","gestureChanged","find","triggerScrollOnValueChange","emit","scrollActiveButtonIntoView","disabledChanged","gesture","enable","connectedCallback","getSegmentView","disconnectedCallback","componentWillLoad","componentDidLoad","_this","_asyncToGenerator","createGesture","el","gestureName","gesturePriority","threshold","passive","onStart","onMove","onEnd","detail","valueBeforeGesture","activate","setNextIndex","setActivated","event","stopImmediatePropagation","Array","from","querySelectorAll","forEach","classList","toggle","clicked","getIndicator","root","shadowRoot","querySelector","previousIndicator","currentIndicator","previousClientRect","getBoundingClientRect","currentClientRect","widthDelta","width","xPosition","left","transform","remove","style","setProperty","add","index","next","firstContentId","contentId","segmentContent","closest","handleSegmentViewScroll","scrollRatio","isManualScroll","dispatchedFrom","segmentEl","composedPath","includes","contains","nextIndex","Math","round","lastNextIndex","smoothScroll","btn","segmentView","setContent","activeButton","scrollContainerBox","activeButtonBox","activeButtonLeft","x","centeredX","newScrollPosition","scrollLeft","scrollTo","top","behavior","isEnd","rtl","rect","currentX","previousY","height","getRootNode","nextEl","elementFromPoint","decreaseIndex","increaseIndex","newIndex","segment","onKeyDown","keyDownSelectsButton","key","preventDefault","setFocus","render","mode","role","class","onSlotchange","watchers","ios","md","defineCustomElement$1","customElements","components","get","define","IonSegment","defineCustomElement"],"sources":["F:/workspace/202226701027/huinongbao-app/node_modules/@ionic/core/components/ion-segment.js"],"sourcesContent":["/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\nimport { proxyCustomElement, HTMLElement, createEvent, writeTask, h, Host } from '@stencil/core/internal/client';\nimport { r as raf } from './helpers.js';\nimport { i as isRTL } from './dir.js';\nimport { c as createColorClasses, h as hostContext } from './theme.js';\nimport { b as getIonMode } from './ionic-global.js';\n\nconst segmentIosCss = \":host{--ripple-color:currentColor;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:grid;grid-auto-columns:1fr;position:relative;-ms-flex-align:stretch;align-items:stretch;-ms-flex-pack:center;justify-content:center;width:100%;background:var(--background);font-family:var(--ion-font-family, inherit);text-align:center;contain:paint;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host(.segment-scrollable){-ms-flex-pack:start;justify-content:start;width:auto;overflow-x:auto;grid-auto-columns:minmax(-webkit-min-content, 1fr);grid-auto-columns:minmax(min-content, 1fr)}:host(.segment-scrollable::-webkit-scrollbar){display:none}:host{--background:rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.065);border-radius:8px;overflow:hidden;z-index:0}:host(.ion-color){background:rgba(var(--ion-color-base-rgb), 0.065)}:host(.in-toolbar){-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;width:auto}:host(.in-toolbar:not(.ion-color)){background:var(--ion-toolbar-segment-background, var(--background))}:host(.in-toolbar-color:not(.ion-color)){background:rgba(var(--ion-color-contrast-rgb), 0.11)}\";\nconst IonSegmentIosStyle0 = segmentIosCss;\n\nconst segmentMdCss = \":host{--ripple-color:currentColor;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:grid;grid-auto-columns:1fr;position:relative;-ms-flex-align:stretch;align-items:stretch;-ms-flex-pack:center;justify-content:center;width:100%;background:var(--background);font-family:var(--ion-font-family, inherit);text-align:center;contain:paint;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host(.segment-scrollable){-ms-flex-pack:start;justify-content:start;width:auto;overflow-x:auto;grid-auto-columns:minmax(-webkit-min-content, 1fr);grid-auto-columns:minmax(min-content, 1fr)}:host(.segment-scrollable::-webkit-scrollbar){display:none}:host{--background:transparent;grid-auto-columns:minmax(auto, 360px)}:host(.in-toolbar){min-height:var(--min-height)}:host(.segment-scrollable) ::slotted(ion-segment-button){min-width:auto}\";\nconst IonSegmentMdStyle0 = segmentMdCss;\n\nconst Segment = /*@__PURE__*/ proxyCustomElement(class Segment extends HTMLElement {\n constructor() {\n super();\n this.__registerHost();\n this.__attachShadow();\n this.ionChange = createEvent(this, \"ionChange\", 7);\n this.ionSelect = createEvent(this, \"ionSelect\", 7);\n this.ionStyle = createEvent(this, \"ionStyle\", 7);\n this.segmentViewEl = null;\n this.onClick = (ev) => {\n const current = ev.target;\n const previous = this.checked;\n // If the current element is a segment then that means\n // the user tried to swipe to a segment button and\n // click a segment button at the same time so we should\n // not update the checked segment button\n if (current.tagName === 'ION-SEGMENT') {\n return;\n }\n this.value = current.value;\n if (current !== previous) {\n this.emitValueChange();\n }\n if (this.segmentViewEl) {\n this.updateSegmentView();\n if (this.scrollable && previous) {\n this.checkButton(previous, current);\n }\n }\n else if (this.scrollable || !this.swipeGesture) {\n if (previous) {\n this.checkButton(previous, current);\n }\n else {\n this.setCheckedClasses();\n }\n }\n };\n this.onSlottedItemsChange = () => {\n /**\n * When the slotted segment buttons change we need to\n * ensure that the new segment buttons are checked if\n * the value matches the segment button value.\n */\n this.valueChanged(this.value);\n };\n this.getSegmentButton = (selector) => {\n var _a, _b;\n const buttons = this.getButtons().filter((button) => !button.disabled);\n const currIndex = buttons.findIndex((button) => button === document.activeElement);\n switch (selector) {\n case 'first':\n return buttons[0];\n case 'last':\n return buttons[buttons.length - 1];\n case 'next':\n return (_a = buttons[currIndex + 1]) !== null && _a !== void 0 ? _a : buttons[0];\n case 'previous':\n return (_b = buttons[currIndex - 1]) !== null && _b !== void 0 ? _b : buttons[buttons.length - 1];\n default:\n return null;\n }\n };\n this.activated = false;\n this.color = undefined;\n this.disabled = false;\n this.scrollable = false;\n this.swipeGesture = true;\n this.value = undefined;\n this.selectOnFocus = false;\n }\n colorChanged(value, oldValue) {\n /**\n * If color is set after not having\n * previously been set (or vice versa),\n * we need to emit style so the segment-buttons\n * can apply their color classes properly.\n */\n if ((oldValue === undefined && value !== undefined) || (oldValue !== undefined && value === undefined)) {\n this.emitStyle();\n }\n }\n swipeGestureChanged() {\n this.gestureChanged();\n }\n valueChanged(value, oldValue) {\n // Force a value to exist if we're using a segment view\n if (this.segmentViewEl && value === undefined) {\n this.value = this.getButtons()[0].value;\n return;\n }\n if (oldValue !== undefined && value !== undefined) {\n const buttons = this.getButtons();\n const previous = buttons.find((button) => button.value === oldValue);\n const current = buttons.find((button) => button.value === value);\n if (previous && current) {\n if (!this.segmentViewEl) {\n this.checkButton(previous, current);\n }\n else if (this.triggerScrollOnValueChange !== false) {\n this.updateSegmentView();\n }\n }\n }\n else if (value !== undefined && oldValue === undefined && this.segmentViewEl) {\n this.updateSegmentView();\n }\n /**\n * `ionSelect` is emitted every time the value changes (internal or external changes).\n * Used by `ion-segment-button` to determine if the button should be checked.\n */\n this.ionSelect.emit({ value });\n // The scroll listener should handle scrolling the active button into view as needed\n if (!this.segmentViewEl) {\n this.scrollActiveButtonIntoView();\n }\n this.triggerScrollOnValueChange = undefined;\n }\n disabledChanged() {\n this.gestureChanged();\n if (!this.segmentViewEl) {\n const buttons = this.getButtons();\n for (const button of buttons) {\n button.disabled = this.disabled;\n }\n }\n else {\n this.segmentViewEl.disabled = this.disabled;\n }\n }\n gestureChanged() {\n if (this.gesture) {\n this.gesture.enable(!this.scrollable && !this.disabled && this.swipeGesture);\n }\n }\n connectedCallback() {\n this.emitStyle();\n this.segmentViewEl = this.getSegmentView();\n }\n disconnectedCallback() {\n this.segmentViewEl = null;\n }\n componentWillLoad() {\n this.emitStyle();\n }\n async componentDidLoad() {\n this.setCheckedClasses();\n /**\n * We need to wait for the buttons to all be rendered\n * before we can scroll.\n */\n raf(() => {\n /**\n * When the segment loads for the first\n * time we just want to snap the active button into\n * place instead of scroll. Smooth scrolling should only\n * happen when the user interacts with the segment.\n */\n this.scrollActiveButtonIntoView(false);\n });\n this.gesture = (await import('./index3.js')).createGesture({\n el: this.el,\n gestureName: 'segment',\n gesturePriority: 100,\n threshold: 0,\n passive: false,\n onStart: (ev) => this.onStart(ev),\n onMove: (ev) => this.onMove(ev),\n onEnd: (ev) => this.onEnd(ev),\n });\n this.gestureChanged();\n if (this.disabled) {\n this.disabledChanged();\n }\n // Update segment view based on the initial value,\n // but do not animate the scroll\n this.updateSegmentView(false);\n }\n onStart(detail) {\n this.valueBeforeGesture = this.value;\n this.activate(detail);\n }\n onMove(detail) {\n this.setNextIndex(detail);\n }\n onEnd(detail) {\n this.setActivated(false);\n this.setNextIndex(detail, true);\n detail.event.stopImmediatePropagation();\n const value = this.value;\n if (value !== undefined) {\n if (this.valueBeforeGesture !== value) {\n this.emitValueChange();\n this.updateSegmentView();\n }\n }\n this.valueBeforeGesture = undefined;\n }\n /**\n * Emits an `ionChange` event.\n *\n * This API should be called for user committed changes.\n * This API should not be used for external value changes.\n */\n emitValueChange() {\n const { value } = this;\n this.ionChange.emit({ value });\n }\n getButtons() {\n return Array.from(this.el.querySelectorAll('ion-segment-button'));\n }\n get checked() {\n return this.getButtons().find((button) => button.value === this.value);\n }\n /*\n * Activate both the segment and the buttons\n * due to a bug with ::slotted in Safari\n */\n setActivated(activated) {\n const buttons = this.getButtons();\n buttons.forEach((button) => {\n button.classList.toggle('segment-button-activated', activated);\n });\n this.activated = activated;\n }\n activate(detail) {\n const clicked = detail.event.target;\n const buttons = this.getButtons();\n const checked = buttons.find((button) => button.value === this.value);\n // Make sure we are only checking for activation on a segment button\n // since disabled buttons will get the click on the segment\n if (clicked.tagName !== 'ION-SEGMENT-BUTTON') {\n return;\n }\n // If there are no checked buttons, set the current button to checked\n if (!checked) {\n this.value = clicked.value;\n this.setCheckedClasses();\n }\n // If the gesture began on the clicked button with the indicator\n // then we should activate the indicator\n if (this.value === clicked.value) {\n this.setActivated(true);\n }\n }\n getIndicator(button) {\n const root = button.shadowRoot || button;\n return root.querySelector('.segment-button-indicator');\n }\n checkButton(previous, current) {\n const previousIndicator = this.getIndicator(previous);\n const currentIndicator = this.getIndicator(current);\n if (previousIndicator === null || currentIndicator === null) {\n return;\n }\n const previousClientRect = previousIndicator.getBoundingClientRect();\n const currentClientRect = currentIndicator.getBoundingClientRect();\n const widthDelta = previousClientRect.width / currentClientRect.width;\n const xPosition = previousClientRect.left - currentClientRect.left;\n // Scale the indicator width to match the previous indicator width\n // and translate it on top of the previous indicator\n const transform = `translate3d(${xPosition}px, 0, 0) scaleX(${widthDelta})`;\n writeTask(() => {\n // Remove the transition before positioning on top of the previous indicator\n currentIndicator.classList.remove('segment-button-indicator-animated');\n currentIndicator.style.setProperty('transform', transform);\n // Force a repaint to ensure the transform happens\n currentIndicator.getBoundingClientRect();\n // Add the transition to move the indicator into place\n currentIndicator.classList.add('segment-button-indicator-animated');\n // Remove the transform to slide the indicator back to the button clicked\n currentIndicator.style.setProperty('transform', '');\n this.scrollActiveButtonIntoView(true);\n });\n this.value = current.value;\n this.setCheckedClasses();\n }\n setCheckedClasses() {\n const buttons = this.getButtons();\n const index = buttons.findIndex((button) => button.value === this.value);\n const next = index + 1;\n for (const button of buttons) {\n button.classList.remove('segment-button-after-checked');\n }\n if (next < buttons.length) {\n buttons[next].classList.add('segment-button-after-checked');\n }\n }\n getSegmentView() {\n const buttons = this.getButtons();\n // Get the first button with a contentId\n const firstContentId = buttons.find((button) => button.contentId);\n // Get the segment content with an id matching the button's contentId\n const segmentContent = document.querySelector(`ion-segment-content[id=\"${firstContentId === null || firstContentId === void 0 ? void 0 : firstContentId.contentId}\"]`);\n // Return the segment view for that matching segment content\n return segmentContent === null || segmentContent === void 0 ? void 0 : segmentContent.closest('ion-segment-view');\n }\n handleSegmentViewScroll(ev) {\n const { scrollRatio, isManualScroll } = ev.detail;\n if (!isManualScroll) {\n return;\n }\n const dispatchedFrom = ev.target;\n const segmentViewEl = this.segmentViewEl;\n const segmentEl = this.el;\n // Only update the indicator if the event was dispatched from the correct segment view\n if (ev.composedPath().includes(segmentViewEl) || (dispatchedFrom === null || dispatchedFrom === void 0 ? void 0 : dispatchedFrom.contains(segmentEl))) {\n const buttons = this.getButtons();\n // If no buttons are found or there is no value set then do nothing\n if (!buttons.length)\n return;\n const index = buttons.findIndex((button) => button.value === this.value);\n const current = buttons[index];\n const nextIndex = Math.round(scrollRatio * (buttons.length - 1));\n if (this.lastNextIndex === undefined || this.lastNextIndex !== nextIndex) {\n this.lastNextIndex = nextIndex;\n this.triggerScrollOnValueChange = false;\n this.checkButton(current, buttons[nextIndex]);\n this.emitValueChange();\n }\n }\n }\n /**\n * Finds the related segment view and sets its current content\n * based on the selected segment button. This method\n * should be called on initial load of the segment,\n * after the gesture is completed (if dragging between segments)\n * and when a segment button is clicked directly.\n */\n updateSegmentView(smoothScroll = true) {\n const buttons = this.getButtons();\n const button = buttons.find((btn) => btn.value === this.value);\n // If the button does not have a contentId then there is\n // no associated segment view to update\n if (!(button === null || button === void 0 ? void 0 : button.contentId)) {\n return;\n }\n const segmentView = this.segmentViewEl;\n if (segmentView) {\n segmentView.setContent(button.contentId, smoothScroll);\n }\n }\n scrollActiveButtonIntoView(smoothScroll = true) {\n const { scrollable, value, el } = this;\n if (scrollable) {\n const buttons = this.getButtons();\n const activeButton = buttons.find((button) => button.value === value);\n if (activeButton !== undefined) {\n const scrollContainerBox = el.getBoundingClientRect();\n const activeButtonBox = activeButton.getBoundingClientRect();\n /**\n * Subtract the active button x position from the scroll\n * container x position. This will give us the x position\n * of the active button within the scroll container.\n */\n const activeButtonLeft = activeButtonBox.x - scrollContainerBox.x;\n /**\n * If we just used activeButtonLeft, then the active button\n * would be aligned with the left edge of the scroll container.\n * Instead, we want the segment button to be centered. As a result,\n * we subtract half of the scroll container width. This will position\n * the left edge of the active button at the midpoint of the scroll container.\n * We then add half of the active button width. This will position the active\n * button such that the midpoint of the active button is at the midpoint of the\n * scroll container.\n */\n const centeredX = activeButtonLeft - scrollContainerBox.width / 2 + activeButtonBox.width / 2;\n /**\n * newScrollPosition is the absolute scroll position that the\n * container needs to move to in order to center the active button.\n * It is calculated by adding the current scroll position\n * (scrollLeft) to the offset needed to center the button\n * (centeredX).\n */\n const newScrollPosition = el.scrollLeft + centeredX;\n /**\n * We intentionally use scrollTo here instead of scrollIntoView\n * to avoid a WebKit bug where accelerated animations break\n * when using scrollIntoView. Using scrollIntoView will cause the\n * segment container to jump during the transition and then snap into place.\n * This is because scrollIntoView can potentially cause parent element\n * containers to also scroll. scrollTo does not have this same behavior, so\n * we use this API instead.\n *\n * scrollTo is used instead of scrollBy because there is a\n * Webkit bug that causes scrollBy to not work smoothly when\n * the active button is near the edge of the scroll container.\n * This leads to the buttons to jump around during the transition.\n *\n * Note that if there is not enough scrolling space to center the element\n * within the scroll container, the browser will attempt\n * to center by as much as it can.\n */\n el.scrollTo({\n top: 0,\n left: newScrollPosition,\n behavior: smoothScroll ? 'smooth' : 'instant',\n });\n }\n }\n }\n setNextIndex(detail, isEnd = false) {\n const rtl = isRTL(this.el);\n const activated = this.activated;\n const buttons = this.getButtons();\n const index = buttons.findIndex((button) => button.value === this.value);\n const previous = buttons[index];\n let current;\n let nextIndex;\n if (index === -1) {\n return;\n }\n // Get the element that the touch event started on in case\n // it was the checked button, then we will move the indicator\n const rect = previous.getBoundingClientRect();\n const left = rect.left;\n const width = rect.width;\n // Get the element that the gesture is on top of based on the currentX of the\n // gesture event and the Y coordinate of the starting element, since the gesture\n // can move up and down off of the segment\n const currentX = detail.currentX;\n const previousY = rect.top + rect.height / 2;\n /**\n * Segment can be used inside the shadow dom\n * so doing document.elementFromPoint would never\n * return a segment button in that instance.\n * We use getRootNode to which will return the parent\n * shadow root if used inside a shadow component and\n * returns document otherwise.\n */\n const root = this.el.getRootNode();\n const nextEl = root.elementFromPoint(currentX, previousY);\n const decreaseIndex = rtl ? currentX > left + width : currentX < left;\n const increaseIndex = rtl ? currentX < left : currentX > left + width;\n // If the indicator is currently activated then we have started the gesture\n // on top of the checked button so we need to slide the indicator\n // by checking the button next to it as we move\n if (activated && !isEnd) {\n // Decrease index, move left in LTR & right in RTL\n if (decreaseIndex) {\n const newIndex = index - 1;\n if (newIndex >= 0) {\n nextIndex = newIndex;\n }\n // Increase index, moves right in LTR & left in RTL\n }\n else if (increaseIndex) {\n if (activated && !isEnd) {\n const newIndex = index + 1;\n if (newIndex < buttons.length) {\n nextIndex = newIndex;\n }\n }\n }\n if (nextIndex !== undefined && !buttons[nextIndex].disabled) {\n current = buttons[nextIndex];\n }\n }\n // If the indicator is not activated then we will just set the indicator\n // to the element where the gesture ended\n if (!activated && isEnd) {\n current = nextEl;\n }\n if (current != null) {\n /**\n * If current element is ion-segment then that means\n * user tried to select a disabled ion-segment-button,\n * and we should not update the ripple.\n */\n if (current.tagName === 'ION-SEGMENT') {\n return false;\n }\n if (previous !== current) {\n this.checkButton(previous, current);\n }\n }\n return true;\n }\n emitStyle() {\n this.ionStyle.emit({\n segment: true,\n });\n }\n onKeyDown(ev) {\n const rtl = isRTL(this.el);\n let keyDownSelectsButton = this.selectOnFocus;\n let current;\n switch (ev.key) {\n case 'ArrowRight':\n ev.preventDefault();\n current = rtl ? this.getSegmentButton('previous') : this.getSegmentButton('next');\n break;\n case 'ArrowLeft':\n ev.preventDefault();\n current = rtl ? this.getSegmentButton('next') : this.getSegmentButton('previous');\n break;\n case 'Home':\n ev.preventDefault();\n current = this.getSegmentButton('first');\n break;\n case 'End':\n ev.preventDefault();\n current = this.getSegmentButton('last');\n break;\n case ' ':\n case 'Enter':\n ev.preventDefault();\n current = document.activeElement;\n keyDownSelectsButton = true;\n }\n if (!current) {\n return;\n }\n if (keyDownSelectsButton) {\n const previous = this.checked;\n this.checkButton(previous || current, current);\n if (current !== previous) {\n this.emitValueChange();\n }\n }\n current.setFocus();\n }\n render() {\n const mode = getIonMode(this);\n return (h(Host, { key: '66bd7a565ba73540b3bbe56dd23b95e59bcef9bc', role: \"tablist\", onClick: this.onClick, class: createColorClasses(this.color, {\n [mode]: true,\n 'in-toolbar': hostContext('ion-toolbar', this.el),\n 'in-toolbar-color': hostContext('ion-toolbar[color]', this.el),\n 'segment-activated': this.activated,\n 'segment-disabled': this.disabled,\n 'segment-scrollable': this.scrollable,\n }) }, h(\"slot\", { key: '782c521b1a33729b8eab1c4b879bc3f2ff48ae1b', onSlotchange: this.onSlottedItemsChange })));\n }\n get el() { return this; }\n static get watchers() { return {\n \"color\": [\"colorChanged\"],\n \"swipeGesture\": [\"swipeGestureChanged\"],\n \"value\": [\"valueChanged\"],\n \"disabled\": [\"disabledChanged\"]\n }; }\n static get style() { return {\n ios: IonSegmentIosStyle0,\n md: IonSegmentMdStyle0\n }; }\n}, [33, \"ion-segment\", {\n \"color\": [513],\n \"disabled\": [4],\n \"scrollable\": [4],\n \"swipeGesture\": [4, \"swipe-gesture\"],\n \"value\": [1032],\n \"selectOnFocus\": [4, \"select-on-focus\"],\n \"activated\": [32]\n }, [[16, \"ionSegmentViewScroll\", \"handleSegmentViewScroll\"], [0, \"keydown\", \"onKeyDown\"]], {\n \"color\": [\"colorChanged\"],\n \"swipeGesture\": [\"swipeGestureChanged\"],\n \"value\": [\"valueChanged\"],\n \"disabled\": [\"disabledChanged\"]\n }]);\nfunction defineCustomElement$1() {\n if (typeof customElements === \"undefined\") {\n return;\n }\n const components = [\"ion-segment\"];\n components.forEach(tagName => { switch (tagName) {\n case \"ion-segment\":\n if (!customElements.get(tagName)) {\n customElements.define(tagName, Segment);\n }\n break;\n } });\n}\n\nconst IonSegment = Segment;\nconst defineCustomElement = defineCustomElement$1;\n\nexport { IonSegment, defineCustomElement };\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}