{"ast":null,"code":"import _extends from \"@babel/runtime/helpers/extends\";\nimport _createForOfIteratorHelperLoose from \"@babel/runtime/helpers/createForOfIteratorHelperLoose\";\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/objectWithoutPropertiesLoose\";\nimport _objectSpread from \"@babel/runtime/helpers/objectSpread2\";\nvar _excluded = [\"ItemSeparatorComponent\", \"SectionSeparatorComponent\", \"renderItem\", \"renderSectionFooter\", \"renderSectionHeader\", \"sections\", \"stickySectionHeadersEnabled\"];\nimport View from \"../../../exports/View\";\nimport VirtualizedList from \"../VirtualizedList\";\nimport { keyExtractor as defaultKeyExtractor } from \"../VirtualizeUtils\";\nimport invariant from 'fbjs/lib/invariant';\nimport * as React from 'react';\nclass VirtualizedSectionList extends React.PureComponent {\n  constructor() {\n    super(...arguments);\n    this._keyExtractor = (item, index) => {\n      var info = this._subExtractor(index);\n      return info && info.key || String(index);\n    };\n    this._convertViewable = viewable => {\n      var _info$index;\n      invariant(viewable.index != null, 'Received a broken ViewToken');\n      var info = this._subExtractor(viewable.index);\n      if (!info) {\n        return null;\n      }\n      var keyExtractorWithNullableIndex = info.section.keyExtractor;\n      var keyExtractorWithNonNullableIndex = this.props.keyExtractor || defaultKeyExtractor;\n      var key = keyExtractorWithNullableIndex != null ? keyExtractorWithNullableIndex(viewable.item, info.index) : keyExtractorWithNonNullableIndex(viewable.item, (_info$index = info.index) !== null && _info$index !== void 0 ? _info$index : 0);\n      return _objectSpread(_objectSpread({}, viewable), {}, {\n        index: info.index,\n        key,\n        section: info.section\n      });\n    };\n    this._onViewableItemsChanged = _ref => {\n      var viewableItems = _ref.viewableItems,\n        changed = _ref.changed;\n      var onViewableItemsChanged = this.props.onViewableItemsChanged;\n      if (onViewableItemsChanged != null) {\n        onViewableItemsChanged({\n          viewableItems: viewableItems.map(this._convertViewable, this).filter(Boolean),\n          changed: changed.map(this._convertViewable, this).filter(Boolean)\n        });\n      }\n    };\n    this._renderItem = listItemCount => _ref2 => {\n      var item = _ref2.item,\n        index = _ref2.index;\n      var info = this._subExtractor(index);\n      if (!info) {\n        return null;\n      }\n      var infoIndex = info.index;\n      if (infoIndex == null) {\n        var section = info.section;\n        if (info.header === true) {\n          var renderSectionHeader = this.props.renderSectionHeader;\n          return renderSectionHeader ? renderSectionHeader({\n            section\n          }) : null;\n        } else {\n          var renderSectionFooter = this.props.renderSectionFooter;\n          return renderSectionFooter ? renderSectionFooter({\n            section\n          }) : null;\n        }\n      } else {\n        var renderItem = info.section.renderItem || this.props.renderItem;\n        var SeparatorComponent = this._getSeparatorComponent(index, info, listItemCount);\n        invariant(renderItem, 'no renderItem!');\n        return React.createElement(ItemWithSeparator, {\n          SeparatorComponent: SeparatorComponent,\n          LeadingSeparatorComponent: infoIndex === 0 ? this.props.SectionSeparatorComponent : undefined,\n          cellKey: info.key,\n          index: infoIndex,\n          item: item,\n          leadingItem: info.leadingItem,\n          leadingSection: info.leadingSection,\n          prevCellKey: (this._subExtractor(index - 1) || {}).key,\n          setSelfHighlightCallback: this._setUpdateHighlightFor,\n          setSelfUpdatePropsCallback: this._setUpdatePropsFor,\n          updateHighlightFor: this._updateHighlightFor,\n          updatePropsFor: this._updatePropsFor,\n          renderItem: renderItem,\n          section: info.section,\n          trailingItem: info.trailingItem,\n          trailingSection: info.trailingSection,\n          inverted: !!this.props.inverted\n        });\n      }\n    };\n    this._updatePropsFor = (cellKey, value) => {\n      var updateProps = this._updatePropsMap[cellKey];\n      if (updateProps != null) {\n        updateProps(value);\n      }\n    };\n    this._updateHighlightFor = (cellKey, value) => {\n      var updateHighlight = this._updateHighlightMap[cellKey];\n      if (updateHighlight != null) {\n        updateHighlight(value);\n      }\n    };\n    this._setUpdateHighlightFor = (cellKey, updateHighlightFn) => {\n      if (updateHighlightFn != null) {\n        this._updateHighlightMap[cellKey] = updateHighlightFn;\n      } else {\n        delete this._updateHighlightFor[cellKey];\n      }\n    };\n    this._setUpdatePropsFor = (cellKey, updatePropsFn) => {\n      if (updatePropsFn != null) {\n        this._updatePropsMap[cellKey] = updatePropsFn;\n      } else {\n        delete this._updatePropsMap[cellKey];\n      }\n    };\n    this._updateHighlightMap = {};\n    this._updatePropsMap = {};\n    this._captureRef = ref => {\n      this._listRef = ref;\n    };\n  }\n  scrollToLocation(params) {\n    var index = params.itemIndex;\n    for (var i = 0; i < params.sectionIndex; i++) {\n      index += this.props.getItemCount(this.props.sections[i].data) + 2;\n    }\n    var viewOffset = params.viewOffset || 0;\n    if (this._listRef == null) {\n      return;\n    }\n    if (params.itemIndex > 0 && this.props.stickySectionHeadersEnabled) {\n      var frame = this._listRef.__getFrameMetricsApprox(index - params.itemIndex, this._listRef.props);\n      viewOffset += frame.length;\n    }\n    var toIndexParams = _objectSpread(_objectSpread({}, params), {}, {\n      viewOffset,\n      index\n    });\n    this._listRef.scrollToIndex(toIndexParams);\n  }\n  getListRef() {\n    return this._listRef;\n  }\n  render() {\n    var _this$props = this.props,\n      ItemSeparatorComponent = _this$props.ItemSeparatorComponent,\n      SectionSeparatorComponent = _this$props.SectionSeparatorComponent,\n      _renderItem = _this$props.renderItem,\n      renderSectionFooter = _this$props.renderSectionFooter,\n      renderSectionHeader = _this$props.renderSectionHeader,\n      _sections = _this$props.sections,\n      stickySectionHeadersEnabled = _this$props.stickySectionHeadersEnabled,\n      passThroughProps = _objectWithoutPropertiesLoose(_this$props, _excluded);\n    var listHeaderOffset = this.props.ListHeaderComponent ? 1 : 0;\n    var stickyHeaderIndices = this.props.stickySectionHeadersEnabled ? [] : undefined;\n    var itemCount = 0;\n    for (var _iterator = _createForOfIteratorHelperLoose(this.props.sections), _step; !(_step = _iterator()).done;) {\n      var section = _step.value;\n      if (stickyHeaderIndices != null) {\n        stickyHeaderIndices.push(itemCount + listHeaderOffset);\n      }\n      itemCount += 2;\n      itemCount += this.props.getItemCount(section.data);\n    }\n    var renderItem = this._renderItem(itemCount);\n    return React.createElement(VirtualizedList, _extends({}, passThroughProps, {\n      keyExtractor: this._keyExtractor,\n      stickyHeaderIndices: stickyHeaderIndices,\n      renderItem: renderItem,\n      data: this.props.sections,\n      getItem: (sections, index) => this._getItem(this.props, sections, index),\n      getItemCount: () => itemCount,\n      onViewableItemsChanged: this.props.onViewableItemsChanged ? this._onViewableItemsChanged : undefined,\n      ref: this._captureRef\n    }));\n  }\n  _getItem(props, sections, index) {\n    if (!sections) {\n      return null;\n    }\n    var itemIdx = index - 1;\n    for (var i = 0; i < sections.length; i++) {\n      var section = sections[i];\n      var sectionData = section.data;\n      var itemCount = props.getItemCount(sectionData);\n      if (itemIdx === -1 || itemIdx === itemCount) {\n        return section;\n      } else if (itemIdx < itemCount) {\n        return props.getItem(sectionData, itemIdx);\n      } else {\n        itemIdx -= itemCount + 2;\n      }\n    }\n    return null;\n  }\n  _subExtractor(index) {\n    var itemIndex = index;\n    var _this$props2 = this.props,\n      getItem = _this$props2.getItem,\n      getItemCount = _this$props2.getItemCount,\n      keyExtractor = _this$props2.keyExtractor,\n      sections = _this$props2.sections;\n    for (var i = 0; i < sections.length; i++) {\n      var section = sections[i];\n      var sectionData = section.data;\n      var key = section.key || String(i);\n      itemIndex -= 1;\n      if (itemIndex >= getItemCount(sectionData) + 1) {\n        itemIndex -= getItemCount(sectionData) + 1;\n      } else if (itemIndex === -1) {\n        return {\n          section,\n          key: key + ':header',\n          index: null,\n          header: true,\n          trailingSection: sections[i + 1]\n        };\n      } else if (itemIndex === getItemCount(sectionData)) {\n        return {\n          section,\n          key: key + ':footer',\n          index: null,\n          header: false,\n          trailingSection: sections[i + 1]\n        };\n      } else {\n        var extractor = section.keyExtractor || keyExtractor || defaultKeyExtractor;\n        return {\n          section,\n          key: key + ':' + extractor(getItem(sectionData, itemIndex), itemIndex),\n          index: itemIndex,\n          leadingItem: getItem(sectionData, itemIndex - 1),\n          leadingSection: sections[i - 1],\n          trailingItem: getItem(sectionData, itemIndex + 1),\n          trailingSection: sections[i + 1]\n        };\n      }\n    }\n  }\n  _getSeparatorComponent(index, info, listItemCount) {\n    info = info || this._subExtractor(index);\n    if (!info) {\n      return null;\n    }\n    var ItemSeparatorComponent = info.section.ItemSeparatorComponent || this.props.ItemSeparatorComponent;\n    var SectionSeparatorComponent = this.props.SectionSeparatorComponent;\n    var isLastItemInList = index === listItemCount - 1;\n    var isLastItemInSection = info.index === this.props.getItemCount(info.section.data) - 1;\n    if (SectionSeparatorComponent && isLastItemInSection) {\n      return SectionSeparatorComponent;\n    }\n    if (ItemSeparatorComponent && !isLastItemInSection && !isLastItemInList) {\n      return ItemSeparatorComponent;\n    }\n    return null;\n  }\n}\nfunction ItemWithSeparator(props) {\n  var LeadingSeparatorComponent = props.LeadingSeparatorComponent,\n    SeparatorComponent = props.SeparatorComponent,\n    cellKey = props.cellKey,\n    prevCellKey = props.prevCellKey,\n    setSelfHighlightCallback = props.setSelfHighlightCallback,\n    updateHighlightFor = props.updateHighlightFor,\n    setSelfUpdatePropsCallback = props.setSelfUpdatePropsCallback,\n    updatePropsFor = props.updatePropsFor,\n    item = props.item,\n    index = props.index,\n    section = props.section,\n    inverted = props.inverted;\n  var _React$useState = React.useState(false),\n    leadingSeparatorHiglighted = _React$useState[0],\n    setLeadingSeparatorHighlighted = _React$useState[1];\n  var _React$useState2 = React.useState(false),\n    separatorHighlighted = _React$useState2[0],\n    setSeparatorHighlighted = _React$useState2[1];\n  var _React$useState3 = React.useState({\n      leadingItem: props.leadingItem,\n      leadingSection: props.leadingSection,\n      section: props.section,\n      trailingItem: props.item,\n      trailingSection: props.trailingSection\n    }),\n    leadingSeparatorProps = _React$useState3[0],\n    setLeadingSeparatorProps = _React$useState3[1];\n  var _React$useState4 = React.useState({\n      leadingItem: props.item,\n      leadingSection: props.leadingSection,\n      section: props.section,\n      trailingItem: props.trailingItem,\n      trailingSection: props.trailingSection\n    }),\n    separatorProps = _React$useState4[0],\n    setSeparatorProps = _React$useState4[1];\n  React.useEffect(() => {\n    setSelfHighlightCallback(cellKey, setSeparatorHighlighted);\n    setSelfUpdatePropsCallback(cellKey, setSeparatorProps);\n    return () => {\n      setSelfUpdatePropsCallback(cellKey, null);\n      setSelfHighlightCallback(cellKey, null);\n    };\n  }, [cellKey, setSelfHighlightCallback, setSeparatorProps, setSelfUpdatePropsCallback]);\n  var separators = {\n    highlight: () => {\n      setLeadingSeparatorHighlighted(true);\n      setSeparatorHighlighted(true);\n      if (prevCellKey != null) {\n        updateHighlightFor(prevCellKey, true);\n      }\n    },\n    unhighlight: () => {\n      setLeadingSeparatorHighlighted(false);\n      setSeparatorHighlighted(false);\n      if (prevCellKey != null) {\n        updateHighlightFor(prevCellKey, false);\n      }\n    },\n    updateProps: (select, newProps) => {\n      if (select === 'leading') {\n        if (LeadingSeparatorComponent != null) {\n          setLeadingSeparatorProps(_objectSpread(_objectSpread({}, leadingSeparatorProps), newProps));\n        } else if (prevCellKey != null) {\n          updatePropsFor(prevCellKey, _objectSpread(_objectSpread({}, leadingSeparatorProps), newProps));\n        }\n      } else if (select === 'trailing' && SeparatorComponent != null) {\n        setSeparatorProps(_objectSpread(_objectSpread({}, separatorProps), newProps));\n      }\n    }\n  };\n  var element = props.renderItem({\n    item,\n    index,\n    section,\n    separators\n  });\n  var leadingSeparator = LeadingSeparatorComponent != null && React.createElement(LeadingSeparatorComponent, _extends({\n    highlighted: leadingSeparatorHiglighted\n  }, leadingSeparatorProps));\n  var separator = SeparatorComponent != null && React.createElement(SeparatorComponent, _extends({\n    highlighted: separatorHighlighted\n  }, separatorProps));\n  return leadingSeparator || separator ? React.createElement(View, null, inverted === false ? leadingSeparator : separator, element, inverted === false ? separator : leadingSeparator) : element;\n}\nexport default VirtualizedSectionList;","map":{"version":3,"names":["_extends","_createForOfIteratorHelperLoose","_objectWithoutPropertiesLoose","_objectSpread","_excluded","View","VirtualizedList","keyExtractor","defaultKeyExtractor","invariant","React","VirtualizedSectionList","PureComponent","constructor","arguments","_keyExtractor","item","index","info","_subExtractor","key","String","_convertViewable","viewable","_info$index","keyExtractorWithNullableIndex","section","keyExtractorWithNonNullableIndex","props","_onViewableItemsChanged","_ref","viewableItems","changed","onViewableItemsChanged","map","filter","Boolean","_renderItem","listItemCount","_ref2","infoIndex","header","renderSectionHeader","renderSectionFooter","renderItem","SeparatorComponent","_getSeparatorComponent","createElement","ItemWithSeparator","LeadingSeparatorComponent","SectionSeparatorComponent","undefined","cellKey","leadingItem","leadingSection","prevCellKey","setSelfHighlightCallback","_setUpdateHighlightFor","setSelfUpdatePropsCallback","_setUpdatePropsFor","updateHighlightFor","_updateHighlightFor","updatePropsFor","_updatePropsFor","trailingItem","trailingSection","inverted","value","updateProps","_updatePropsMap","updateHighlight","_updateHighlightMap","updateHighlightFn","updatePropsFn","_captureRef","ref","_listRef","scrollToLocation","params","itemIndex","i","sectionIndex","getItemCount","sections","data","viewOffset","stickySectionHeadersEnabled","frame","__getFrameMetricsApprox","length","toIndexParams","scrollToIndex","getListRef","render","_this$props","ItemSeparatorComponent","_sections","passThroughProps","listHeaderOffset","ListHeaderComponent","stickyHeaderIndices","itemCount","_iterator","_step","done","push","getItem","_getItem","itemIdx","sectionData","_this$props2","extractor","isLastItemInList","isLastItemInSection","_React$useState","useState","leadingSeparatorHiglighted","setLeadingSeparatorHighlighted","_React$useState2","separatorHighlighted","setSeparatorHighlighted","_React$useState3","leadingSeparatorProps","setLeadingSeparatorProps","_React$useState4","separatorProps","setSeparatorProps","useEffect","separators","highlight","unhighlight","select","newProps","element","leadingSeparator","highlighted","separator"],"sources":["/Users/pmouli/Documents/GitHub.nosync/boots-strapper/mobile/node_modules/react-native-web/dist/vendor/react-native/VirtualizedSectionList/index.js"],"sourcesContent":["import _extends from \"@babel/runtime/helpers/extends\";\nimport _createForOfIteratorHelperLoose from \"@babel/runtime/helpers/createForOfIteratorHelperLoose\";\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/objectWithoutPropertiesLoose\";\nimport _objectSpread from \"@babel/runtime/helpers/objectSpread2\";\nvar _excluded = [\"ItemSeparatorComponent\", \"SectionSeparatorComponent\", \"renderItem\", \"renderSectionFooter\", \"renderSectionHeader\", \"sections\", \"stickySectionHeadersEnabled\"];\n/**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n\nimport View from '../../../exports/View';\nimport VirtualizedList from '../VirtualizedList';\nimport { keyExtractor as defaultKeyExtractor } from '../VirtualizeUtils';\nimport invariant from 'fbjs/lib/invariant';\nimport * as React from 'react';\n/**\n * Right now this just flattens everything into one list and uses VirtualizedList under the\n * hood. The only operation that might not scale well is concatting the data arrays of all the\n * sections when new props are received, which should be plenty fast for up to ~10,000 items.\n */\nclass VirtualizedSectionList extends React.PureComponent {\n  constructor() {\n    super(...arguments);\n    this._keyExtractor = (item, index) => {\n      var info = this._subExtractor(index);\n      return info && info.key || String(index);\n    };\n    this._convertViewable = viewable => {\n      var _info$index;\n      invariant(viewable.index != null, 'Received a broken ViewToken');\n      var info = this._subExtractor(viewable.index);\n      if (!info) {\n        return null;\n      }\n      var keyExtractorWithNullableIndex = info.section.keyExtractor;\n      var keyExtractorWithNonNullableIndex = this.props.keyExtractor || defaultKeyExtractor;\n      var key = keyExtractorWithNullableIndex != null ? keyExtractorWithNullableIndex(viewable.item, info.index) : keyExtractorWithNonNullableIndex(viewable.item, (_info$index = info.index) !== null && _info$index !== void 0 ? _info$index : 0);\n      return _objectSpread(_objectSpread({}, viewable), {}, {\n        index: info.index,\n        key,\n        section: info.section\n      });\n    };\n    this._onViewableItemsChanged = _ref => {\n      var viewableItems = _ref.viewableItems,\n        changed = _ref.changed;\n      var onViewableItemsChanged = this.props.onViewableItemsChanged;\n      if (onViewableItemsChanged != null) {\n        onViewableItemsChanged({\n          viewableItems: viewableItems.map(this._convertViewable, this).filter(Boolean),\n          changed: changed.map(this._convertViewable, this).filter(Boolean)\n        });\n      }\n    };\n    this._renderItem = listItemCount =>\n    // eslint-disable-next-line react/no-unstable-nested-components\n    _ref2 => {\n      var item = _ref2.item,\n        index = _ref2.index;\n      var info = this._subExtractor(index);\n      if (!info) {\n        return null;\n      }\n      var infoIndex = info.index;\n      if (infoIndex == null) {\n        var section = info.section;\n        if (info.header === true) {\n          var renderSectionHeader = this.props.renderSectionHeader;\n          return renderSectionHeader ? renderSectionHeader({\n            section\n          }) : null;\n        } else {\n          var renderSectionFooter = this.props.renderSectionFooter;\n          return renderSectionFooter ? renderSectionFooter({\n            section\n          }) : null;\n        }\n      } else {\n        var renderItem = info.section.renderItem || this.props.renderItem;\n        var SeparatorComponent = this._getSeparatorComponent(index, info, listItemCount);\n        invariant(renderItem, 'no renderItem!');\n        return /*#__PURE__*/React.createElement(ItemWithSeparator, {\n          SeparatorComponent: SeparatorComponent,\n          LeadingSeparatorComponent: infoIndex === 0 ? this.props.SectionSeparatorComponent : undefined,\n          cellKey: info.key,\n          index: infoIndex,\n          item: item,\n          leadingItem: info.leadingItem,\n          leadingSection: info.leadingSection,\n          prevCellKey: (this._subExtractor(index - 1) || {}).key\n          // Callback to provide updateHighlight for this item\n          ,\n          setSelfHighlightCallback: this._setUpdateHighlightFor,\n          setSelfUpdatePropsCallback: this._setUpdatePropsFor\n          // Provide child ability to set highlight/updateProps for previous item using prevCellKey\n          ,\n          updateHighlightFor: this._updateHighlightFor,\n          updatePropsFor: this._updatePropsFor,\n          renderItem: renderItem,\n          section: info.section,\n          trailingItem: info.trailingItem,\n          trailingSection: info.trailingSection,\n          inverted: !!this.props.inverted\n        });\n      }\n    };\n    this._updatePropsFor = (cellKey, value) => {\n      var updateProps = this._updatePropsMap[cellKey];\n      if (updateProps != null) {\n        updateProps(value);\n      }\n    };\n    this._updateHighlightFor = (cellKey, value) => {\n      var updateHighlight = this._updateHighlightMap[cellKey];\n      if (updateHighlight != null) {\n        updateHighlight(value);\n      }\n    };\n    this._setUpdateHighlightFor = (cellKey, updateHighlightFn) => {\n      if (updateHighlightFn != null) {\n        this._updateHighlightMap[cellKey] = updateHighlightFn;\n      } else {\n        // $FlowFixMe[prop-missing]\n        delete this._updateHighlightFor[cellKey];\n      }\n    };\n    this._setUpdatePropsFor = (cellKey, updatePropsFn) => {\n      if (updatePropsFn != null) {\n        this._updatePropsMap[cellKey] = updatePropsFn;\n      } else {\n        delete this._updatePropsMap[cellKey];\n      }\n    };\n    this._updateHighlightMap = {};\n    this._updatePropsMap = {};\n    this._captureRef = ref => {\n      this._listRef = ref;\n    };\n  }\n  scrollToLocation(params) {\n    var index = params.itemIndex;\n    for (var i = 0; i < params.sectionIndex; i++) {\n      index += this.props.getItemCount(this.props.sections[i].data) + 2;\n    }\n    var viewOffset = params.viewOffset || 0;\n    if (this._listRef == null) {\n      return;\n    }\n    if (params.itemIndex > 0 && this.props.stickySectionHeadersEnabled) {\n      var frame = this._listRef.__getFrameMetricsApprox(index - params.itemIndex, this._listRef.props);\n      viewOffset += frame.length;\n    }\n    var toIndexParams = _objectSpread(_objectSpread({}, params), {}, {\n      viewOffset,\n      index\n    });\n    // $FlowFixMe[incompatible-use]\n    this._listRef.scrollToIndex(toIndexParams);\n  }\n  getListRef() {\n    return this._listRef;\n  }\n  render() {\n    var _this$props = this.props,\n      ItemSeparatorComponent = _this$props.ItemSeparatorComponent,\n      SectionSeparatorComponent = _this$props.SectionSeparatorComponent,\n      _renderItem = _this$props.renderItem,\n      renderSectionFooter = _this$props.renderSectionFooter,\n      renderSectionHeader = _this$props.renderSectionHeader,\n      _sections = _this$props.sections,\n      stickySectionHeadersEnabled = _this$props.stickySectionHeadersEnabled,\n      passThroughProps = _objectWithoutPropertiesLoose(_this$props, _excluded);\n    var listHeaderOffset = this.props.ListHeaderComponent ? 1 : 0;\n    var stickyHeaderIndices = this.props.stickySectionHeadersEnabled ? [] : undefined;\n    var itemCount = 0;\n    for (var _iterator = _createForOfIteratorHelperLoose(this.props.sections), _step; !(_step = _iterator()).done;) {\n      var section = _step.value;\n      // Track the section header indices\n      if (stickyHeaderIndices != null) {\n        stickyHeaderIndices.push(itemCount + listHeaderOffset);\n      }\n\n      // Add two for the section header and footer.\n      itemCount += 2;\n      itemCount += this.props.getItemCount(section.data);\n    }\n    var renderItem = this._renderItem(itemCount);\n    return /*#__PURE__*/React.createElement(VirtualizedList, _extends({}, passThroughProps, {\n      keyExtractor: this._keyExtractor,\n      stickyHeaderIndices: stickyHeaderIndices,\n      renderItem: renderItem,\n      data: this.props.sections,\n      getItem: (sections, index) => this._getItem(this.props, sections, index),\n      getItemCount: () => itemCount,\n      onViewableItemsChanged: this.props.onViewableItemsChanged ? this._onViewableItemsChanged : undefined,\n      ref: this._captureRef\n    }));\n  }\n  _getItem(props, sections, index) {\n    if (!sections) {\n      return null;\n    }\n    var itemIdx = index - 1;\n    for (var i = 0; i < sections.length; i++) {\n      var section = sections[i];\n      var sectionData = section.data;\n      var itemCount = props.getItemCount(sectionData);\n      if (itemIdx === -1 || itemIdx === itemCount) {\n        // We intend for there to be overflow by one on both ends of the list.\n        // This will be for headers and footers. When returning a header or footer\n        // item the section itself is the item.\n        return section;\n      } else if (itemIdx < itemCount) {\n        // If we are in the bounds of the list's data then return the item.\n        return props.getItem(sectionData, itemIdx);\n      } else {\n        itemIdx -= itemCount + 2; // Add two for the header and footer\n      }\n    }\n    return null;\n  }\n\n  // $FlowFixMe[missing-local-annot]\n\n  _subExtractor(index) {\n    var itemIndex = index;\n    var _this$props2 = this.props,\n      getItem = _this$props2.getItem,\n      getItemCount = _this$props2.getItemCount,\n      keyExtractor = _this$props2.keyExtractor,\n      sections = _this$props2.sections;\n    for (var i = 0; i < sections.length; i++) {\n      var section = sections[i];\n      var sectionData = section.data;\n      var key = section.key || String(i);\n      itemIndex -= 1; // The section adds an item for the header\n      if (itemIndex >= getItemCount(sectionData) + 1) {\n        itemIndex -= getItemCount(sectionData) + 1; // The section adds an item for the footer.\n      } else if (itemIndex === -1) {\n        return {\n          section,\n          key: key + ':header',\n          index: null,\n          header: true,\n          trailingSection: sections[i + 1]\n        };\n      } else if (itemIndex === getItemCount(sectionData)) {\n        return {\n          section,\n          key: key + ':footer',\n          index: null,\n          header: false,\n          trailingSection: sections[i + 1]\n        };\n      } else {\n        var extractor = section.keyExtractor || keyExtractor || defaultKeyExtractor;\n        return {\n          section,\n          key: key + ':' + extractor(getItem(sectionData, itemIndex), itemIndex),\n          index: itemIndex,\n          leadingItem: getItem(sectionData, itemIndex - 1),\n          leadingSection: sections[i - 1],\n          trailingItem: getItem(sectionData, itemIndex + 1),\n          trailingSection: sections[i + 1]\n        };\n      }\n    }\n  }\n  _getSeparatorComponent(index, info, listItemCount) {\n    info = info || this._subExtractor(index);\n    if (!info) {\n      return null;\n    }\n    var ItemSeparatorComponent = info.section.ItemSeparatorComponent || this.props.ItemSeparatorComponent;\n    var SectionSeparatorComponent = this.props.SectionSeparatorComponent;\n    var isLastItemInList = index === listItemCount - 1;\n    var isLastItemInSection = info.index === this.props.getItemCount(info.section.data) - 1;\n    if (SectionSeparatorComponent && isLastItemInSection) {\n      return SectionSeparatorComponent;\n    }\n    if (ItemSeparatorComponent && !isLastItemInSection && !isLastItemInList) {\n      return ItemSeparatorComponent;\n    }\n    return null;\n  }\n}\nfunction ItemWithSeparator(props) {\n  var LeadingSeparatorComponent = props.LeadingSeparatorComponent,\n    SeparatorComponent = props.SeparatorComponent,\n    cellKey = props.cellKey,\n    prevCellKey = props.prevCellKey,\n    setSelfHighlightCallback = props.setSelfHighlightCallback,\n    updateHighlightFor = props.updateHighlightFor,\n    setSelfUpdatePropsCallback = props.setSelfUpdatePropsCallback,\n    updatePropsFor = props.updatePropsFor,\n    item = props.item,\n    index = props.index,\n    section = props.section,\n    inverted = props.inverted;\n  var _React$useState = React.useState(false),\n    leadingSeparatorHiglighted = _React$useState[0],\n    setLeadingSeparatorHighlighted = _React$useState[1];\n  var _React$useState2 = React.useState(false),\n    separatorHighlighted = _React$useState2[0],\n    setSeparatorHighlighted = _React$useState2[1];\n  var _React$useState3 = React.useState({\n      leadingItem: props.leadingItem,\n      leadingSection: props.leadingSection,\n      section: props.section,\n      trailingItem: props.item,\n      trailingSection: props.trailingSection\n    }),\n    leadingSeparatorProps = _React$useState3[0],\n    setLeadingSeparatorProps = _React$useState3[1];\n  var _React$useState4 = React.useState({\n      leadingItem: props.item,\n      leadingSection: props.leadingSection,\n      section: props.section,\n      trailingItem: props.trailingItem,\n      trailingSection: props.trailingSection\n    }),\n    separatorProps = _React$useState4[0],\n    setSeparatorProps = _React$useState4[1];\n  React.useEffect(() => {\n    setSelfHighlightCallback(cellKey, setSeparatorHighlighted);\n    // $FlowFixMe[incompatible-call]\n    setSelfUpdatePropsCallback(cellKey, setSeparatorProps);\n    return () => {\n      setSelfUpdatePropsCallback(cellKey, null);\n      setSelfHighlightCallback(cellKey, null);\n    };\n  }, [cellKey, setSelfHighlightCallback, setSeparatorProps, setSelfUpdatePropsCallback]);\n  var separators = {\n    highlight: () => {\n      setLeadingSeparatorHighlighted(true);\n      setSeparatorHighlighted(true);\n      if (prevCellKey != null) {\n        updateHighlightFor(prevCellKey, true);\n      }\n    },\n    unhighlight: () => {\n      setLeadingSeparatorHighlighted(false);\n      setSeparatorHighlighted(false);\n      if (prevCellKey != null) {\n        updateHighlightFor(prevCellKey, false);\n      }\n    },\n    updateProps: (select, newProps) => {\n      if (select === 'leading') {\n        if (LeadingSeparatorComponent != null) {\n          setLeadingSeparatorProps(_objectSpread(_objectSpread({}, leadingSeparatorProps), newProps));\n        } else if (prevCellKey != null) {\n          // update the previous item's separator\n          updatePropsFor(prevCellKey, _objectSpread(_objectSpread({}, leadingSeparatorProps), newProps));\n        }\n      } else if (select === 'trailing' && SeparatorComponent != null) {\n        setSeparatorProps(_objectSpread(_objectSpread({}, separatorProps), newProps));\n      }\n    }\n  };\n  var element = props.renderItem({\n    item,\n    index,\n    section,\n    separators\n  });\n  var leadingSeparator = LeadingSeparatorComponent != null && /*#__PURE__*/React.createElement(LeadingSeparatorComponent, _extends({\n    highlighted: leadingSeparatorHiglighted\n  }, leadingSeparatorProps));\n  var separator = SeparatorComponent != null && /*#__PURE__*/React.createElement(SeparatorComponent, _extends({\n    highlighted: separatorHighlighted\n  }, separatorProps));\n  return leadingSeparator || separator ? /*#__PURE__*/React.createElement(View, null, inverted === false ? leadingSeparator : separator, element, inverted === false ? separator : leadingSeparator) : element;\n}\n\n/* $FlowFixMe[class-object-subtyping] added when improving typing for this\n * parameters */\n// $FlowFixMe[method-unbinding]\nexport default VirtualizedSectionList;"],"mappings":"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","ignoreList":[]},"metadata":{"hasCjsExports":false},"sourceType":"module","externalDependencies":[]}