@tarojs/components-react 4.0.1 → 4.0.3-alpah.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/LICENSE +8 -8
  2. package/dist/components/button/index.js +78 -103
  3. package/dist/components/button/index.js.map +1 -1
  4. package/dist/components/icon/index.js +26 -17
  5. package/dist/components/icon/index.js.map +1 -1
  6. package/dist/components/image/index.js +76 -101
  7. package/dist/components/image/index.js.map +1 -1
  8. package/dist/components/input/index.js +183 -206
  9. package/dist/components/input/index.js.map +1 -1
  10. package/dist/components/pull-down-refresh/index.js +195 -211
  11. package/dist/components/pull-down-refresh/index.js.map +1 -1
  12. package/dist/components/scroll-view/index.js +137 -167
  13. package/dist/components/scroll-view/index.js.map +1 -1
  14. package/dist/components/swiper/index.js +248 -268
  15. package/dist/components/swiper/index.js.map +1 -1
  16. package/dist/components/text/index.js +22 -31
  17. package/dist/components/text/index.js.map +1 -1
  18. package/dist/components/view/index.js +72 -97
  19. package/dist/components/view/index.js.map +1 -1
  20. package/dist/index.css +1 -1
  21. package/dist/solid/components/button/index.js +95 -0
  22. package/dist/solid/components/button/index.js.map +1 -0
  23. package/dist/solid/components/button/style/index.scss.js +4 -0
  24. package/dist/solid/components/button/style/index.scss.js.map +1 -0
  25. package/dist/solid/components/icon/index.js +39 -0
  26. package/dist/solid/components/icon/index.js.map +1 -0
  27. package/dist/solid/components/icon/style/index.scss.js +4 -0
  28. package/dist/solid/components/icon/style/index.scss.js.map +1 -0
  29. package/dist/solid/components/image/index.js +94 -0
  30. package/dist/solid/components/image/index.js.map +1 -0
  31. package/dist/solid/components/input/index.js +256 -0
  32. package/dist/solid/components/input/index.js.map +1 -0
  33. package/dist/solid/components/input/style/index.scss.js +4 -0
  34. package/dist/solid/components/input/style/index.scss.js.map +1 -0
  35. package/dist/solid/components/pull-down-refresh/index.js +334 -0
  36. package/dist/solid/components/pull-down-refresh/index.js.map +1 -0
  37. package/dist/solid/components/pull-down-refresh/style/index.css.js +4 -0
  38. package/dist/solid/components/pull-down-refresh/style/index.css.js.map +1 -0
  39. package/dist/solid/components/scroll-view/index.js +188 -0
  40. package/dist/solid/components/scroll-view/index.js.map +1 -0
  41. package/dist/solid/components/scroll-view/style/index.css.js +4 -0
  42. package/dist/solid/components/scroll-view/style/index.css.js.map +1 -0
  43. package/dist/solid/components/swiper/index.js +307 -0
  44. package/dist/solid/components/swiper/index.js.map +1 -0
  45. package/dist/solid/components/swiper/style/index.css.js +4 -0
  46. package/dist/solid/components/swiper/style/index.css.js.map +1 -0
  47. package/dist/solid/components/text/index.js +32 -0
  48. package/dist/solid/components/text/index.js.map +1 -0
  49. package/dist/solid/components/text/style/index.css.js +4 -0
  50. package/dist/solid/components/text/style/index.css.js.map +1 -0
  51. package/dist/solid/components/view/index.js +88 -0
  52. package/dist/solid/components/view/index.js.map +1 -0
  53. package/dist/solid/index.css +1 -0
  54. package/dist/solid/index.js +13 -0
  55. package/dist/solid/index.js.map +1 -0
  56. package/dist/solid/utils/hooks.solid.js +54 -0
  57. package/dist/solid/utils/hooks.solid.js.map +1 -0
  58. package/dist/solid/utils/index.js +58 -0
  59. package/dist/solid/utils/index.js.map +1 -0
  60. package/dist/utils/hooks.react.js +15 -0
  61. package/dist/utils/hooks.react.js.map +1 -0
  62. package/dist/utils/index.js +26 -15
  63. package/dist/utils/index.js.map +1 -1
  64. package/package.json +19 -18
  65. package/types/index.d.ts +17 -0
  66. /package/dist/{components/view → solid/components/image}/style/index.css.js +0 -0
  67. /package/dist/{components/view → solid/components/image}/style/index.css.js.map +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../src/components/swiper/index.tsx"],"sourcesContent":["import 'swiper/swiper-bundle.min.css'\nimport './style/index.css'\n\nimport classNames from 'classnames'\nimport React from 'react'\nimport Swipers from 'swiper/swiper-bundle.esm.js'\n\nimport { debounce } from '../../utils'\n\nimport type ISwiper from 'swiper'\n\nlet INSTANCE_ID = 0\n\ninterface SwiperItemProps extends React.HTMLAttributes<HTMLDivElement> {\n itemId: string\n}\n\ninterface SwiperProps extends React.HTMLAttributes<HTMLDivElement> {\n autoplay?: boolean\n interval?: number\n duration?: number\n current?: number\n displayMultipleItems?: number\n circular?: boolean\n vertical?: boolean\n spaceBetween?: any\n previousMargin?: string\n nextMargin?: string\n indicatorColor?: string\n indicatorActiveColor?: string\n indicatorDots?: boolean\n onAnimationFinish?: (e: TouchEvent) => void\n}\n\nconst createEvent = (type: string) => {\n let e\n try {\n e = new TouchEvent(type)\n } catch (err) {\n e = document.createEvent('Event')\n e.initEvent(type, true, true)\n }\n return e\n}\n\nclass SwiperItem extends React.Component<SwiperItemProps, Record<string, unknown>> {\n render () {\n const { className, style, itemId, children, ...restProps } = this.props\n const cls = classNames('swiper-slide', className)\n return (\n <div\n className={cls}\n style={style}\n item-id={itemId}\n {...restProps}\n >\n {children}\n </div>\n )\n }\n}\n\nclass Swiper extends React.Component<SwiperProps, Record<string, unknown>> {\n _id = 1 + INSTANCE_ID++\n _$current = 0\n _$width = 0\n _$height = 0\n $el: HTMLDivElement | null\n mySwiper: ISwiper\n observer: MutationObserver\n observerFirst: MutationObserver\n observerLast: MutationObserver\n\n componentDidMount () {\n const {\n autoplay = false,\n circular = true,\n current = 0,\n displayMultipleItems = 1,\n duration = 500,\n interval = 5000,\n spaceBetween,\n vertical\n } = this.props\n\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const that = this\n const opt: Record<string, any> = {\n // 指示器\n pagination: { el: `.taro-swiper-${this._id} > .swiper-container > .swiper-pagination` },\n direction: vertical ? 'vertical' : 'horizontal',\n loop: circular,\n slidesPerView: parseFloat(String(displayMultipleItems)),\n initialSlide: parseInt(String(current), 10),\n speed: parseInt(String(duration), 10),\n observer: true,\n observeParents: true,\n on: {\n slideChange () {\n const e = createEvent('touchend')\n try {\n Object.defineProperty(e, 'detail', {\n enumerable: true,\n value: {\n current: this.realIndex\n }\n })\n } catch (err) {} // eslint-disable-line no-empty\n that._$current = this.realIndex\n that.handleOnChange(e)\n },\n transitionEnd () {\n const e = createEvent('touchend')\n try {\n Object.defineProperty(e, 'detail', {\n enumerable: true,\n value: {\n current: this.mySwiper.realIndex\n }\n })\n if (this.mySwiper.isBeginning) {\n this.mySwiper.slideToLoop((this.props.children as any).length - 1, 0)\n } else if (this.mySwiper.isEnd) {\n this.mySwiper.slideToLoop(0, 0)\n }\n } catch (err) {} // eslint-disable-line no-empty\n that.handleOnAnimationFinish(e)\n },\n observerUpdate (_swiper: ISwiper, e) {\n const target = e.target\n const className = target && typeof target.className === 'string' ? target.className : ''\n if (className.includes('taro_page') && target.style.display !== 'none') {\n if (that.props.autoplay && target.contains(_swiper.$el[0])) {\n if (that.props.circular) {\n _swiper.slideToLoop(this.realIndex, 0) // 更新下标\n } else {\n _swiper.slideTo(this.realIndex)\n }\n }\n }\n }\n }\n }\n\n // 自动播放\n if (autoplay) {\n opt.autoplay = {\n delay: parseInt(String(interval), 10),\n disableOnInteraction: false\n }\n }\n\n // 两端距离\n if (spaceBetween) {\n opt.spaceBetween = spaceBetween\n }\n\n this.mySwiper = new Swipers(this.$el!, opt)\n setTimeout(() => {\n this.mySwiper.update()\n }, 500)\n\n if (!this.mySwiper || !this.props.circular) return\n\n const wrapper = this.mySwiper.$wrapperEl[0]\n this.observer = new MutationObserver(this.handleSwiperLoopListen)\n\n this.observer.observe(wrapper, {\n childList: true\n })\n }\n\n UNSAFE_componentWillReceiveProps (nextProps) {\n if (this.mySwiper) {\n const nextCurrent = typeof nextProps.current === 'number' ? nextProps.current : this._$current || 0\n\n this.handleSwiperLoop()\n // 是否衔接滚动模式\n if (nextProps.circular) {\n if (!this.mySwiper.isBeginning && !this.mySwiper.isEnd) {\n this.mySwiper.slideToLoop(parseInt(nextCurrent, 10)) // 更新下标\n }\n } else {\n this.mySwiper.slideTo(parseInt(nextCurrent, 10) + 1) // 更新下标\n }\n\n const autoplay = this.mySwiper.autoplay\n // 判断是否需要停止或开始自动轮播\n if (autoplay.running !== nextProps.autoplay) {\n if (nextProps.autoplay) {\n if (typeof this.mySwiper.params.autoplay === 'object') {\n this.mySwiper.params.autoplay.disableOnInteraction = false\n this.mySwiper.params.autoplay.delay = parseInt(String(this.props.interval) || '3000', 10)\n }\n autoplay.start()\n } else {\n autoplay.stop()\n }\n }\n\n this.mySwiper.update() // 更新子元素\n }\n }\n\n componentDidUpdate (preProps) {\n if (preProps.children.length === 0 && (this.props.children as any).length > 0) {\n (this.mySwiper as any).loopDestroy()\n ;(this.mySwiper as any).loopCreate()\n }\n if (!this.mySwiper) return\n if (this.props.autoplay) {\n if (this._$width !== this.mySwiper.width || this._$height !== this.mySwiper.height) {\n this.mySwiper.autoplay.start()\n }\n }\n this._$width = this.mySwiper.width\n this._$height = this.mySwiper.height\n }\n\n componentWillUnmount () {\n this.$el = null\n if (this.mySwiper) this.mySwiper.destroy()\n this.observer?.disconnect?.()\n this.observerFirst?.disconnect?.()\n this.observerLast?.disconnect?.()\n }\n\n handleOnChange (e: React.FormEvent<HTMLDivElement>) {\n const func = this.props.onChange\n typeof func === 'function' && func(e)\n }\n\n handleOnAnimationFinish (e: TouchEvent) {\n const func = this.props.onAnimationFinish\n typeof func === 'function' && func(e)\n }\n\n parsePX (s = '0px') {\n return parseFloat(s.replace(/r*px/i, ''))\n }\n\n handleSwiperLoopListen = () => {\n this.observerFirst?.disconnect?.()\n this.observerLast?.disconnect?.()\n this.observerFirst = new MutationObserver(this.handleSwiperLoop)\n this.observerLast = new MutationObserver(this.handleSwiperLoop)\n const wrapper = this.mySwiper.$wrapperEl[0]\n const list = wrapper.querySelectorAll('taro-swiper-item-core:not(.swiper-slide-duplicate)')\n if (list.length >= 1) {\n this.observerFirst.observe(list[0], {\n characterData: true\n })\n } else if (list.length >= 2) {\n this.observerLast.observe(list[list.length - 1], {\n characterData: true\n })\n }\n }\n\n handleSwiperLoop = debounce(() => {\n if (this.mySwiper && this.mySwiper.$wrapperEl && this.props.circular) {\n // @ts-ignore\n this.mySwiper.loopDestroy()\n // @ts-ignore\n this.mySwiper.loopCreate()\n }\n }, 500)\n\n render () {\n const {\n className,\n style,\n vertical,\n previousMargin,\n nextMargin,\n indicatorColor,\n indicatorActiveColor\n } = this.props\n const defaultIndicatorColor = indicatorColor || 'rgba(0, 0, 0, .3)'\n const defaultIndicatorActiveColor = indicatorActiveColor || '#000'\n const cls = classNames(`taro-swiper-${this._id}`, className)\n const sty = Object.assign({\n paddingTop: vertical ? this.parsePX(previousMargin) : 0,\n paddingRight: vertical ? 0 : this.parsePX(nextMargin),\n paddingBottom: vertical ? this.parsePX(nextMargin) : 0,\n paddingLeft: vertical ? 0 : this.parsePX(previousMargin),\n overflow: 'hidden'\n }, style)\n const paginationCls = classNames(\n 'swiper-pagination',\n {\n 'swiper-pagination-hidden': !this.props.indicatorDots,\n 'swiper-pagination-bullets': this.props.indicatorDots\n }\n )\n return (\n <div className={`swiper-container-wrapper ${cls}`} style={sty}>\n <div className='swiper-container' style={{ overflow: 'visible' }} ref={(el) => { this.$el = el }}>\n <div\n dangerouslySetInnerHTML={{\n __html: `<style type='text/css'>\n .taro-swiper-${this._id} > .swiper-container > .swiper-pagination > .swiper-pagination-bullet { background: ${defaultIndicatorColor} }\n .taro-swiper-${this._id} > .swiper-container > .swiper-pagination > .swiper-pagination-bullet-active { background: ${defaultIndicatorActiveColor} }\n </style>`\n }}\n />\n <div className='swiper-wrapper'>{this.props.children}</div>\n <div className={paginationCls} />\n </div>\n </div>\n )\n }\n}\n\nexport { Swiper, SwiperItem }\n"],"names":["INSTANCE_ID","createEvent","type","e","TouchEvent","err","document","initEvent","SwiperItem","_React$Component","_inherits","_super","_createSuper","_classCallCheck","apply","arguments","_createClass","key","value","render","_a","props","className","style","itemId","children","restProps","__rest","cls","classNames","React","createElement","Object","assign","Component","Swiper","_React$Component2","_super2","_this","_id","_$current","_$width","_$height","handleSwiperLoopListen","_b","observerFirst","disconnect","_d","observerLast","_c","MutationObserver","handleSwiperLoop","wrapper","mySwiper","$wrapperEl","list","querySelectorAll","length","observe","characterData","debounce","circular","loopDestroy","loopCreate","componentDidMount","_this2","_this$props","_this$props$autoplay","autoplay","_this$props$circular","_this$props$current","current","_this$props$displayMu","displayMultipleItems","_this$props$duration","duration","_this$props$interval","interval","spaceBetween","vertical","that","opt","pagination","el","concat","direction","loop","slidesPerView","parseFloat","String","initialSlide","parseInt","speed","observer","observeParents","on","slideChange","defineProperty","enumerable","realIndex","handleOnChange","transitionEnd","isBeginning","slideToLoop","isEnd","handleOnAnimationFinish","observerUpdate","_swiper","target","includes","display","contains","$el","slideTo","delay","disableOnInteraction","Swipers","setTimeout","update","childList","UNSAFE_componentWillReceiveProps","nextProps","nextCurrent","running","_typeof","params","start","stop","componentDidUpdate","preProps","width","height","componentWillUnmount","destroy","_f","_e","func","onChange","onAnimationFinish","parsePX","s","undefined","replace","_this3","_this$props2","previousMargin","nextMargin","indicatorColor","indicatorActiveColor","defaultIndicatorColor","defaultIndicatorActiveColor","sty","paddingTop","paddingRight","paddingBottom","paddingLeft","overflow","paginationCls","indicatorDots","ref","dangerouslySetInnerHTML","__html"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../../../src/components/swiper/index.tsx"],"sourcesContent":["import 'swiper/swiper-bundle.min.css'\nimport './style/index.css'\n\nimport classNames from 'classnames'\nimport React from 'react'\nimport Swipers from 'swiper/swiper-bundle.esm.js'\n\nimport { createForwardRefComponent, debounce } from '../../utils'\n\nimport type ISwiper from 'swiper'\n\nlet INSTANCE_ID = 0\n\ninterface SwiperItemProps extends React.HTMLAttributes<HTMLDivElement> {\n itemId: string\n forwardedRef?: React.MutableRefObject<HTMLDivElement>\n}\n\ninterface SwiperProps extends React.HTMLAttributes<HTMLDivElement> {\n autoplay?: boolean\n interval?: number\n duration?: number\n current?: number\n displayMultipleItems?: number\n circular?: boolean\n vertical?: boolean\n spaceBetween?: any\n previousMargin?: string\n nextMargin?: string\n indicatorColor?: string\n indicatorActiveColor?: string\n indicatorDots?: boolean\n forwardedRef?: React.MutableRefObject<HTMLDivElement>\n onAnimationFinish?: (e: TouchEvent) => void\n}\n\nconst createEvent = (type: string) => {\n let e\n try {\n e = new TouchEvent(type)\n } catch (err) {\n e = document.createEvent('Event')\n e.initEvent(type, true, true)\n }\n return e\n}\n\nclass SwiperItemInner extends React.Component<SwiperItemProps, Record<string, unknown>> {\n render () {\n const { className, style, itemId, children, forwardedRef, ...restProps } = this.props\n const cls = classNames('swiper-slide', className)\n return (\n <div\n ref={(e) => {\n if (e && forwardedRef) {\n forwardedRef.current = e\n }\n }}\n className={cls}\n style={style}\n item-id={itemId}\n {...restProps}\n >\n {children}\n </div>\n )\n }\n}\n\nclass SwiperInner extends React.Component<SwiperProps, Record<string, unknown>> {\n _id = 1 + INSTANCE_ID++\n _$current = 0\n _$width = 0\n _$height = 0\n $el: HTMLDivElement | null\n mySwiper: ISwiper\n observer: MutationObserver\n observerFirst: MutationObserver\n observerLast: MutationObserver\n\n componentDidMount () {\n const {\n autoplay = false,\n circular = true,\n current = 0,\n displayMultipleItems = 1,\n duration = 500,\n interval = 5000,\n spaceBetween,\n vertical\n } = this.props\n\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const that = this\n const opt: Record<string, any> = {\n // 指示器\n pagination: { el: `.taro-swiper-${this._id} > .swiper-container > .swiper-pagination` },\n direction: vertical ? 'vertical' : 'horizontal',\n loop: circular,\n slidesPerView: parseFloat(String(displayMultipleItems)),\n initialSlide: parseInt(String(current), 10),\n speed: parseInt(String(duration), 10),\n observer: true,\n observeParents: true,\n on: {\n slideChange () {\n const e = createEvent('touchend')\n try {\n Object.defineProperty(e, 'detail', {\n enumerable: true,\n value: {\n current: this.realIndex\n }\n })\n } catch (err) {} // eslint-disable-line no-empty\n that._$current = this.realIndex\n that.handleOnChange(e)\n },\n transitionEnd () {\n const e = createEvent('touchend')\n try {\n Object.defineProperty(e, 'detail', {\n enumerable: true,\n value: {\n current: this.mySwiper.realIndex\n }\n })\n if (this.mySwiper.isBeginning) {\n this.mySwiper.slideToLoop((this.props.children as any).length - 1, 0)\n } else if (this.mySwiper.isEnd) {\n this.mySwiper.slideToLoop(0, 0)\n }\n } catch (err) {} // eslint-disable-line no-empty\n that.handleOnAnimationFinish(e)\n },\n observerUpdate (_swiper: ISwiper, e) {\n const target = e.target\n const className = target && typeof target.className === 'string' ? target.className : ''\n if (className.includes('taro_page') && target.style.display !== 'none') {\n if (that.props.autoplay && target.contains(_swiper.$el[0])) {\n if (that.props.circular) {\n _swiper.slideToLoop(this.realIndex, 0) // 更新下标\n } else {\n _swiper.slideTo(this.realIndex)\n }\n }\n }\n }\n }\n }\n\n // 自动播放\n if (autoplay) {\n opt.autoplay = {\n delay: parseInt(String(interval), 10),\n disableOnInteraction: false\n }\n }\n\n // 两端距离\n if (spaceBetween) {\n opt.spaceBetween = spaceBetween\n }\n\n this.mySwiper = new Swipers(this.$el!, opt)\n setTimeout(() => {\n this.mySwiper.update()\n }, 500)\n\n if (!this.mySwiper || !this.props.circular) return\n\n const wrapper = this.mySwiper.$wrapperEl[0]\n this.observer = new MutationObserver(this.handleSwiperLoopListen)\n\n this.observer.observe(wrapper, {\n childList: true\n })\n }\n\n UNSAFE_componentWillReceiveProps (nextProps) {\n if (this.mySwiper) {\n const nextCurrent = typeof nextProps.current === 'number' ? nextProps.current : this._$current || 0\n\n this.handleSwiperLoop()\n // 是否衔接滚动模式\n if (nextProps.circular) {\n if (!this.mySwiper.isBeginning && !this.mySwiper.isEnd) {\n this.mySwiper.slideToLoop(parseInt(nextCurrent, 10)) // 更新下标\n }\n } else {\n this.mySwiper.slideTo(parseInt(nextCurrent, 10) + 1) // 更新下标\n }\n\n const autoplay = this.mySwiper.autoplay\n // 判断是否需要停止或开始自动轮播\n if (autoplay.running !== nextProps.autoplay) {\n if (nextProps.autoplay) {\n if (typeof this.mySwiper.params.autoplay === 'object') {\n this.mySwiper.params.autoplay.disableOnInteraction = false\n this.mySwiper.params.autoplay.delay = parseInt(String(this.props.interval) || '3000', 10)\n }\n autoplay.start()\n } else {\n autoplay.stop()\n }\n }\n\n this.mySwiper.update() // 更新子元素\n }\n }\n\n componentDidUpdate (preProps) {\n if (preProps.children.length === 0 && (this.props.children as any).length > 0) {\n (this.mySwiper as any).loopDestroy()\n ;(this.mySwiper as any).loopCreate()\n }\n if (!this.mySwiper) return\n if (this.props.autoplay) {\n if (this._$width !== this.mySwiper.width || this._$height !== this.mySwiper.height) {\n this.mySwiper.autoplay.start()\n }\n }\n this._$width = this.mySwiper.width\n this._$height = this.mySwiper.height\n }\n\n componentWillUnmount () {\n this.$el = null\n if (this.mySwiper) this.mySwiper.destroy()\n this.observer?.disconnect?.()\n this.observerFirst?.disconnect?.()\n this.observerLast?.disconnect?.()\n }\n\n handleOnChange (e: React.FormEvent<HTMLDivElement>) {\n const func = this.props.onChange\n typeof func === 'function' && func(e)\n }\n\n handleOnAnimationFinish (e: TouchEvent) {\n const func = this.props.onAnimationFinish\n typeof func === 'function' && func(e)\n }\n\n parsePX (s = '0px') {\n return parseFloat(s.replace(/r*px/i, ''))\n }\n\n handleSwiperLoopListen = () => {\n this.observerFirst?.disconnect?.()\n this.observerLast?.disconnect?.()\n this.observerFirst = new MutationObserver(this.handleSwiperLoop)\n this.observerLast = new MutationObserver(this.handleSwiperLoop)\n const wrapper = this.mySwiper.$wrapperEl[0]\n const list = wrapper.querySelectorAll('taro-swiper-item-core:not(.swiper-slide-duplicate)')\n if (list.length >= 1) {\n this.observerFirst.observe(list[0], {\n characterData: true\n })\n } else if (list.length >= 2) {\n this.observerLast.observe(list[list.length - 1], {\n characterData: true\n })\n }\n }\n\n handleSwiperLoop = debounce(() => {\n if (this.mySwiper && this.mySwiper.$wrapperEl && this.props.circular) {\n // @ts-ignore\n this.mySwiper.loopDestroy()\n // @ts-ignore\n this.mySwiper.loopCreate()\n }\n }, 500)\n\n render () {\n const {\n className,\n style,\n vertical,\n previousMargin,\n nextMargin,\n indicatorColor,\n indicatorActiveColor,\n forwardedRef\n } = this.props\n const defaultIndicatorColor = indicatorColor || 'rgba(0, 0, 0, .3)'\n const defaultIndicatorActiveColor = indicatorActiveColor || '#000'\n const cls = classNames(`taro-swiper-${this._id}`, className)\n const sty = Object.assign({\n paddingTop: vertical ? this.parsePX(previousMargin) : 0,\n paddingRight: vertical ? 0 : this.parsePX(nextMargin),\n paddingBottom: vertical ? this.parsePX(nextMargin) : 0,\n paddingLeft: vertical ? 0 : this.parsePX(previousMargin),\n overflow: 'hidden'\n }, style)\n const paginationCls = classNames(\n 'swiper-pagination',\n {\n 'swiper-pagination-hidden': !this.props.indicatorDots,\n 'swiper-pagination-bullets': this.props.indicatorDots\n }\n )\n return (\n <div className={`swiper-container-wrapper ${cls}`} style={sty} ref={(e) => {\n if (forwardedRef && e) {\n forwardedRef.current = e\n }\n }}>\n <div className='swiper-container' style={{ overflow: 'visible' }} ref={(el) => { this.$el = el }}>\n <div\n dangerouslySetInnerHTML={{\n __html: `<style type='text/css'>\n .taro-swiper-${this._id} > .swiper-container > .swiper-pagination > .swiper-pagination-bullet { background: ${defaultIndicatorColor} }\n .taro-swiper-${this._id} > .swiper-container > .swiper-pagination > .swiper-pagination-bullet-active { background: ${defaultIndicatorActiveColor} }\n </style>`\n }}\n />\n <div className='swiper-wrapper'>{this.props.children}</div>\n <div className={paginationCls} />\n </div>\n </div>\n )\n }\n}\n\nexport const Swiper = createForwardRefComponent(SwiperInner)\nexport const SwiperItem = createForwardRefComponent(SwiperItemInner)\n"],"names":["INSTANCE_ID","createEvent","type","e","TouchEvent","err","document","initEvent","SwiperItemInner","React","Component","render","_a","props","className","style","itemId","children","forwardedRef","restProps","__rest","cls","classNames","_jsx","ref","current","SwiperInner","constructor","_id","_$current","_$width","_$height","handleSwiperLoopListen","_b","observerFirst","disconnect","_d","observerLast","_c","MutationObserver","handleSwiperLoop","wrapper","mySwiper","$wrapperEl","list","querySelectorAll","length","observe","characterData","debounce","circular","loopDestroy","loopCreate","componentDidMount","autoplay","displayMultipleItems","duration","interval","spaceBetween","vertical","that","opt","pagination","el","direction","loop","slidesPerView","parseFloat","String","initialSlide","parseInt","speed","observer","observeParents","on","slideChange","Object","defineProperty","enumerable","value","realIndex","handleOnChange","transitionEnd","isBeginning","slideToLoop","isEnd","handleOnAnimationFinish","observerUpdate","_swiper","target","includes","display","contains","$el","slideTo","delay","disableOnInteraction","Swipers","setTimeout","update","childList","UNSAFE_componentWillReceiveProps","nextProps","nextCurrent","running","params","start","stop","componentDidUpdate","preProps","width","height","componentWillUnmount","destroy","_f","_e","func","onChange","onAnimationFinish","parsePX","s","arguments","undefined","replace","previousMargin","nextMargin","indicatorColor","indicatorActiveColor","defaultIndicatorColor","defaultIndicatorActiveColor","sty","assign","paddingTop","paddingRight","paddingBottom","paddingLeft","overflow","paginationCls","indicatorDots","_jsxs","dangerouslySetInnerHTML","__html","Swiper","createForwardRefComponent","SwiperItem"],"mappings":"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"}
@@ -1,37 +1,28 @@
1
- import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
2
- import _createClass from '@babel/runtime/helpers/createClass';
3
- import _inherits from '@babel/runtime/helpers/inherits';
4
- import _createSuper from '@babel/runtime/helpers/createSuper';
5
1
  import { __rest } from 'tslib';
6
2
  import './style/index.css.js';
7
3
  import classNames from 'classnames';
8
- import React from 'react';
4
+ import 'react';
5
+ import { createForwardRefComponent } from '../../utils/index.js';
6
+ import { jsx } from 'react/jsx-runtime';
9
7
 
10
- var Text = /*#__PURE__*/function (_React$Component) {
11
- _inherits(Text, _React$Component);
12
- var _super = _createSuper(Text);
13
- function Text() {
14
- _classCallCheck(this, Text);
15
- return _super.apply(this, arguments);
16
- }
17
- _createClass(Text, [{
18
- key: "render",
19
- value: function render() {
20
- var _a = this.props,
21
- className = _a.className,
22
- _a$selectable = _a.selectable,
23
- selectable = _a$selectable === void 0 ? false : _a$selectable,
24
- restProps = __rest(_a, ["className", "selectable"]);
25
- var cls = classNames('taro-text', {
26
- 'taro-text__selectable': selectable
27
- }, className);
28
- return React.createElement("span", Object.assign({}, restProps, {
29
- className: cls
30
- }), this.props.children);
31
- }
32
- }]);
33
- return Text;
34
- }(React.Component);
8
+ function Text(props) {
9
+ const {
10
+ className,
11
+ selectable = false,
12
+ forwardedRef
13
+ } = props,
14
+ restProps = __rest(props, ["className", "selectable", "forwardedRef"]);
15
+ const cls = classNames('taro-text', {
16
+ 'taro-text__selectable': selectable
17
+ }, className);
18
+ return /*#__PURE__*/jsx("span", {
19
+ ...restProps,
20
+ className: cls,
21
+ ref: forwardedRef,
22
+ children: props.children
23
+ });
24
+ }
25
+ var index = createForwardRefComponent(Text);
35
26
 
36
- export { Text as default };
27
+ export { index as default };
37
28
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../src/components/text/index.tsx"],"sourcesContent":["import './style/index.css'\n\nimport classNames from 'classnames'\nimport React from 'react'\n\ninterface IProps extends React.HTMLAttributes<HTMLSpanElement> {\n selectable?: boolean\n}\n\nclass Text extends React.Component<IProps, Record<string, unknown>> {\n render () {\n const { className, selectable = false, ...restProps } = this.props\n const cls = classNames(\n 'taro-text',\n {\n 'taro-text__selectable': selectable\n },\n className\n )\n return (\n <span {...restProps} className={cls}>\n {this.props.children}\n </span>\n )\n }\n}\n\nexport default Text\n"],"names":["Text","_React$Component","_inherits","_super","_createSuper","_classCallCheck","apply","arguments","_createClass","key","value","render","_a","props","className","_a$selectable","selectable","restProps","__rest","cls","classNames","React","createElement","Object","assign","children","Component"],"mappings":";;;;;;;;;AASMA,IAAAA,IAAK,0BAAAC,gBAAA,EAAA;EAAAC,SAAA,CAAAF,IAAA,EAAAC,gBAAA,CAAA,CAAA;AAAA,EAAA,IAAAE,MAAA,GAAAC,YAAA,CAAAJ,IAAA,CAAA,CAAA;AAAA,EAAA,SAAAA,IAAA,GAAA;AAAAK,IAAAA,eAAA,OAAAL,IAAA,CAAA,CAAA;AAAA,IAAA,OAAAG,MAAA,CAAAG,KAAA,CAAA,IAAA,EAAAC,SAAA,CAAA,CAAA;AAAA,GAAA;AAAAC,EAAAA,YAAA,CAAAR,IAAA,EAAA,CAAA;IAAAS,GAAA,EAAA,QAAA;IAAAC,KAAA,EACT,SAAAC,MAAAA,GAAM;AACE,MAAA,IAAAC,KAAkD,IAAI,CAACC,KAAK;QAA1DC,SAAS,GAAiDF,EAAA,CAA1DE,SAAS;QAAAC,aAAA,GAAiDH,EAAA,CAA/CI,UAAU;AAAVA,QAAAA,UAAU,GAAAD,aAAA,KAAG,KAAA,CAAA,GAAA,KAAK,GAAAA,aAAA;QAAKE,SAAS,GAA7CC,MAAA,CAAAN,EAAA,EAAA,CAAA,WAAA,EAAA,YAAA,CAA+C,CAAa,CAAA;AAClE,MAAA,IAAMO,GAAG,GAAGC,UAAU,CACpB,WAAW,EACX;AACE,QAAA,uBAAuB,EAAEJ,UAAAA;OAC1B,EACDF,SAAS,CACV,CAAA;AACD,MAAA,OACEO,KAAA,CAAAC,aAAA,CAAA,MAAA,EAAAC,MAAA,CAAAC,MAAA,CAAA,EAAA,EAAUP,SAAS,EAAA;AAAEH,QAAAA,SAAS,EAAEK,GAAAA;AAC7B,OAAA,CAAA,EAAA,IAAI,CAACN,KAAK,CAACY,QAAQ,CACf,CAAA;AAEX,KAAA;AAAC,GAAA,CAAA,CAAA,CAAA;AAAA,EAAA,OAAAzB,IAAA,CAAA;AAAA,CAfgBqB,CAAAA,KAAK,CAACK,SAA0C;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../../../src/components/text/index.tsx"],"sourcesContent":["import './style/index.css'\n\nimport classNames from 'classnames'\nimport React from 'react'\n\nimport { createForwardRefComponent } from '../../utils'\n\ninterface IProps extends React.HTMLAttributes<HTMLSpanElement> {\n selectable?: boolean\n forwardedRef?: React.MutableRefObject<HTMLSpanElement>\n}\n\nfunction Text (props: IProps) {\n const { className, selectable = false, forwardedRef, ...restProps } = props\n const cls = classNames(\n 'taro-text',\n {\n 'taro-text__selectable': selectable\n },\n className\n )\n return (\n <span {...restProps} className={cls} ref={forwardedRef}>\n {props.children}\n </span>\n )\n}\n\nexport default createForwardRefComponent(Text)\n"],"names":["Text","props","className","selectable","forwardedRef","restProps","__rest","cls","classNames","_jsx","ref","children","createForwardRefComponent"],"mappings":";;;;;;;AAYA,SAASA,IAAIA,CAAEC,KAAa,EAAA;EAC1B,MAAM;MAAEC,SAAS;AAAEC,MAAAA,UAAU,GAAG,KAAK;AAAEC,MAAAA,YAAAA;AAA+B,KAAA,GAAAH,KAAK;AAAnBI,IAAAA,SAAS,GAAAC,MAAA,CAAKL,KAAK,EAArE,CAAA,WAAA,EAAA,YAAA,EAAA,cAAA,CAA6D,CAAQ,CAAA;AAC3E,EAAA,MAAMM,GAAG,GAAGC,UAAU,CACpB,WAAW,EACX;AACE,IAAA,uBAAuB,EAAEL,UAAAA;GAC1B,EACDD,SAAS,CACV,CAAA;AACD,EAAA,oBACEO,GAAA,CAAA,MAAA,EAAA;AAAA,IAAA,GAAUJ,SAAS;AAAEH,IAAAA,SAAS,EAAEK,GAAI;AAACG,IAAAA,GAAG,EAAEN,YAAa;IAAAO,QAAA,EACpDV,KAAK,CAACU,QAAAA;AAAQ,GACX,CAAC,CAAA;AAEX,CAAA;AAEA,YAAeC,yBAAyB,CAACZ,IAAI,CAAC;;;;"}
@@ -1,105 +1,80 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
3
- import _createClass from '@babel/runtime/helpers/createClass';
4
- import _inherits from '@babel/runtime/helpers/inherits';
5
- import _createSuper from '@babel/runtime/helpers/createSuper';
6
1
  import { __rest } from 'tslib';
7
- import './style/index.css.js';
8
2
  import classNames from 'classnames';
9
- import React from 'react';
3
+ import { useState, useEffect } from '../../utils/hooks.react.js';
4
+ import { createForwardRefComponent } from '../../utils/index.js';
5
+ import { jsx } from 'react/jsx-runtime';
10
6
 
11
- var View = /*#__PURE__*/function (_React$Component) {
12
- _inherits(View, _React$Component);
13
- var _super = _createSuper(View);
14
- function View() {
15
- var _this;
16
- _classCallCheck(this, View);
17
- _this = _super.apply(this, arguments);
18
- _this.state = {
19
- hover: false,
20
- touch: false
21
- };
22
- _this.startTime = 0;
23
- return _this;
24
- }
25
- _createClass(View, [{
26
- key: "render",
27
- value: function render() {
28
- var _this2 = this;
29
- var _a = this.props,
30
- className = _a.className,
31
- hoverClass = _a.hoverClass,
32
- onTouchStart = _a.onTouchStart,
33
- onTouchEnd = _a.onTouchEnd,
34
- onTouchMove = _a.onTouchMove,
35
- _a$hoverStartTime = _a.hoverStartTime,
36
- hoverStartTime = _a$hoverStartTime === void 0 ? 50 : _a$hoverStartTime,
37
- _a$hoverStayTime = _a.hoverStayTime,
38
- hoverStayTime = _a$hoverStayTime === void 0 ? 400 : _a$hoverStayTime,
39
- other = __rest(_a, ["className", "hoverClass", "onTouchStart", "onTouchEnd", "onTouchMove", "hoverStartTime", "hoverStayTime"]);
40
- var cls = classNames('', _defineProperty({}, "".concat(hoverClass), this.state.hover), className);
41
- var _onTouchStart = function _onTouchStart(e) {
42
- if (hoverClass) {
43
- _this2.setState(function () {
44
- return {
45
- touch: true
46
- };
47
- });
48
- setTimeout(function () {
49
- if (_this2.state.touch) {
50
- _this2.setState(function () {
51
- return {
52
- hover: true
53
- };
54
- });
55
- }
56
- }, hoverStartTime);
7
+ function View(_a) {
8
+ var {
9
+ className,
10
+ hoverClass,
11
+ forwardedRef,
12
+ onTouchStart,
13
+ onTouchEnd,
14
+ onTouchMove,
15
+ hoverStartTime = 50,
16
+ hoverStayTime = 400
17
+ } = _a,
18
+ other = __rest(_a, ["className", "hoverClass", "forwardedRef", "onTouchStart", "onTouchEnd", "onTouchMove", "hoverStartTime", "hoverStayTime"]);
19
+ let timeoutEvent;
20
+ let startTime = 0;
21
+ const [hover, setHover] = useState(false);
22
+ const [touch, setTouch] = useState(false);
23
+ const [cls, setCls] = useState(classNames('', {
24
+ [`${hoverClass}`]: "react" === 'solid' ? hover() : hover
25
+ }, className));
26
+ const _onTouchStart = e => {
27
+ if (hoverClass) {
28
+ setTouch(true);
29
+ setTimeout(() => {
30
+ if ("react" === 'solid' ? touch() : touch) {
31
+ setHover(true);
57
32
  }
58
- onTouchStart && onTouchStart(e);
59
- if (_this2.props.onLongPress) {
60
- _this2.timeoutEvent = setTimeout(function () {
61
- _this2.props.onLongPress();
62
- }, 350);
63
- _this2.startTime = new Date().getTime();
64
- }
65
- };
66
- var _onTouchMove = function _onTouchMove(e) {
67
- clearTimeout(_this2.timeoutEvent);
68
- onTouchMove && onTouchMove(e);
69
- };
70
- var _onTouchEnd = function _onTouchEnd(e) {
71
- var spanTime = new Date().getTime() - _this2.startTime;
72
- if (spanTime < 350) {
73
- clearTimeout(_this2.timeoutEvent);
74
- }
75
- if (hoverClass) {
76
- _this2.setState(function () {
77
- return {
78
- touch: false
79
- };
80
- });
81
- setTimeout(function () {
82
- if (!_this2.state.touch) {
83
- _this2.setState(function () {
84
- return {
85
- hover: false
86
- };
87
- });
88
- }
89
- }, hoverStayTime);
33
+ }, hoverStartTime);
34
+ }
35
+ onTouchStart && onTouchStart(e);
36
+ if (other.onLongPress) {
37
+ timeoutEvent = setTimeout(() => {
38
+ other.onLongPress();
39
+ }, 350);
40
+ startTime = new Date().getTime();
41
+ }
42
+ };
43
+ const _onTouchMove = e => {
44
+ clearTimeout(timeoutEvent);
45
+ onTouchMove && onTouchMove(e);
46
+ };
47
+ const _onTouchEnd = e => {
48
+ const spanTime = new Date().getTime() - startTime;
49
+ if (spanTime < 350) {
50
+ clearTimeout(timeoutEvent);
51
+ }
52
+ if (hoverClass) {
53
+ setTouch(false);
54
+ setTimeout(() => {
55
+ if ("react" === 'solid' ? touch() : touch) {
56
+ setHover(false);
90
57
  }
91
- onTouchEnd && onTouchEnd(e);
92
- };
93
- return React.createElement("div", Object.assign({
94
- className: cls,
95
- onTouchStart: _onTouchStart,
96
- onTouchEnd: _onTouchEnd,
97
- onTouchMove: _onTouchMove
98
- }, other), this.props.children);
58
+ }, hoverStayTime);
99
59
  }
100
- }]);
101
- return View;
102
- }(React.Component);
60
+ onTouchEnd && onTouchEnd(e);
61
+ };
62
+ useEffect(() => {
63
+ setCls(classNames('', {
64
+ [`${hoverClass}`]: "react" === 'solid' ? hover() : hover
65
+ }, className));
66
+ }, [hover, className]);
67
+ return /*#__PURE__*/jsx("div", {
68
+ ref: forwardedRef,
69
+ className: "react" === 'solid' ? cls() : cls,
70
+ onTouchStart: _onTouchStart,
71
+ onTouchEnd: _onTouchEnd,
72
+ onTouchMove: _onTouchMove,
73
+ ...other,
74
+ children: other.children
75
+ });
76
+ }
77
+ var index = createForwardRefComponent(View);
103
78
 
104
- export { View as default };
79
+ export { index as default };
105
80
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../src/components/view/index.tsx"],"sourcesContent":["import './style/index.css'\n\nimport classNames from 'classnames'\nimport React from 'react'\n\ninterface IProps extends React.HTMLAttributes<HTMLDivElement> {\n hoverClass?: string\n hoverStartTime?: number\n hoverStayTime?: number\n onTouchStart?(e: React.TouchEvent<HTMLDivElement>): void\n onTouchEnd?(e: React.TouchEvent<HTMLDivElement>): void\n onTouchMove?(e: React.TouchEvent<HTMLDivElement>): void\n onLongPress?(): void\n}\n\ninterface IState {\n hover: boolean\n touch: boolean\n}\n\nclass View extends React.Component<IProps, IState> {\n state = {\n hover: false,\n touch: false\n }\n\n timeoutEvent: ReturnType<typeof setTimeout>\n startTime = 0\n\n render () {\n const {\n className,\n hoverClass,\n onTouchStart,\n onTouchEnd,\n onTouchMove,\n hoverStartTime = 50,\n hoverStayTime = 400,\n ...other\n } = this.props\n\n const cls = classNames(\n '',\n {\n [`${hoverClass}`]: this.state.hover\n },\n className\n )\n\n const _onTouchStart = e => {\n if (hoverClass) {\n this.setState(() => ({\n touch: true\n }))\n setTimeout(() => {\n if (this.state.touch) {\n this.setState(() => ({\n hover: true\n }))\n }\n }, hoverStartTime)\n }\n onTouchStart && onTouchStart(e)\n if (this.props.onLongPress) {\n this.timeoutEvent = setTimeout(() => {\n this.props.onLongPress!()\n }, 350)\n this.startTime = new Date().getTime()\n }\n }\n\n const _onTouchMove = e => {\n clearTimeout(this.timeoutEvent)\n onTouchMove && onTouchMove(e)\n }\n\n const _onTouchEnd = e => {\n const spanTime = new Date().getTime() - this.startTime\n if (spanTime < 350) {\n clearTimeout(this.timeoutEvent)\n }\n if (hoverClass) {\n this.setState(() => ({\n touch: false\n }))\n setTimeout(() => {\n if (!this.state.touch) {\n this.setState(() => ({\n hover: false\n }))\n }\n }, hoverStayTime)\n }\n onTouchEnd && onTouchEnd(e)\n }\n\n return (\n <div\n className={cls}\n onTouchStart={_onTouchStart}\n onTouchEnd={_onTouchEnd}\n onTouchMove={_onTouchMove}\n {...other}\n >\n {this.props.children}\n </div>\n )\n }\n}\n\nexport default View\n"],"names":["View","_React$Component","_inherits","_super","_createSuper","_this","_classCallCheck","state","hover","touch","startTime","_createClass","key","value","render","_this2","_a","props","className","hoverClass","onTouchStart","onTouchEnd","onTouchMove","_a$hoverStartTime","hoverStartTime","_a$hoverStayTime","hoverStayTime","other","__rest","cls","classNames","_defineProperty","concat","_onTouchStart","e","setState","setTimeout","onLongPress","timeoutEvent","Date","getTime","_onTouchMove","clearTimeout","_onTouchEnd","spanTime","React","createElement","Object","assign","children","Component"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../../../src/components/view/index.tsx"],"sourcesContent":["import classNames from 'classnames'\n\nimport { useEffect, useState } from '../../utils/hooks'\nimport { createForwardRefComponent } from '../../utils/index'\n\nimport type { TFunc } from '@tarojs/runtime/dist/runtime.esm'\nimport type React from 'react'\n\ninterface IProps extends React.HTMLAttributes<HTMLDivElement> {\n hoverClass?: string\n hoverStartTime?: number\n hoverStayTime?: number\n onTouchStart?(e: React.TouchEvent<HTMLDivElement>): void\n onTouchEnd?(e: React.TouchEvent<HTMLDivElement>): void\n onTouchMove?(e: React.TouchEvent<HTMLDivElement>): void\n onLongPress?(): void\n forwardedRef?: React.MutableRefObject<HTMLDivElement>\n}\n\nfunction View ({\n className,\n hoverClass,\n forwardedRef,\n onTouchStart,\n onTouchEnd,\n onTouchMove,\n hoverStartTime = 50,\n hoverStayTime = 400,\n ...other\n}: IProps) {\n let timeoutEvent: ReturnType<typeof setTimeout>\n let startTime = 0\n const [hover, setHover] = useState<boolean>(false)\n const [touch, setTouch] = useState<boolean>(false)\n\n const [cls, setCls] = useState<string>(classNames(\n '',\n {\n [`${hoverClass}`]: process.env.FRAMEWORK === 'solid' ? (hover as unknown as TFunc)() : hover\n },\n className\n ))\n\n const _onTouchStart = e => {\n if (hoverClass) {\n setTouch(true)\n setTimeout(() => {\n if (process.env.FRAMEWORK === 'solid' ? (touch as unknown as TFunc)() : touch) {\n setHover(true)\n }\n }, hoverStartTime)\n }\n onTouchStart && onTouchStart(e)\n if (other.onLongPress) {\n timeoutEvent = setTimeout(() => {\n other.onLongPress!()\n }, 350)\n startTime = new Date().getTime()\n }\n }\n\n const _onTouchMove = e => {\n clearTimeout(timeoutEvent)\n onTouchMove && onTouchMove(e)\n }\n\n const _onTouchEnd = e => {\n const spanTime = new Date().getTime() - startTime\n if (spanTime < 350) {\n clearTimeout(timeoutEvent)\n }\n if (hoverClass) {\n setTouch(false)\n setTimeout(() => {\n if (process.env.FRAMEWORK === 'solid' ? (touch as unknown as TFunc)() : touch) {\n setHover(false)\n }\n }, hoverStayTime)\n }\n onTouchEnd && onTouchEnd(e)\n }\n\n useEffect(() => {\n setCls(classNames(\n '',\n {\n [`${hoverClass}`]: process.env.FRAMEWORK === 'solid' ? (hover as unknown as TFunc)() : hover\n },\n className\n ))\n }, [hover, className])\n\n return (\n <div\n ref={forwardedRef}\n className={process.env.FRAMEWORK === 'solid' ? (cls as unknown as TFunc)() : cls as string}\n onTouchStart={_onTouchStart}\n onTouchEnd={_onTouchEnd}\n onTouchMove={_onTouchMove}\n {...other}\n >\n {other.children}\n </div>\n )\n}\n\n\nexport default createForwardRefComponent(View)\n"],"names":["View","_a","className","hoverClass","forwardedRef","onTouchStart","onTouchEnd","onTouchMove","hoverStartTime","hoverStayTime","other","__rest","timeoutEvent","startTime","hover","setHover","useState","touch","setTouch","cls","setCls","classNames","process","_onTouchStart","e","setTimeout","onLongPress","Date","getTime","_onTouchMove","clearTimeout","_onTouchEnd","spanTime","useEffect","_jsx","ref","children","createForwardRefComponent"],"mappings":"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"}
package/dist/index.css CHANGED
@@ -1 +1 @@
1
- @-webkit-keyframes weuiLoading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes weuiLoading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.taro-button-core[loading]>.weui-loading{animation:weuiLoading 1s steps(12) infinite;background:transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;background-size:100%;display:inline-block;height:20px;vertical-align:middle;width:20px}.taro-button-core[loading]>.weui-loading.weui-btn_primary,.taro-button-core[loading]>.weui-loading.weui-btn_warn{color:hsla(0,0%,100%,.6)}.taro-button-core[loading]>.weui-loading.weui-btn_primary{background-color:#179b16}.taro-button-core[loading]>.weui-loading.weui-btn_warn{background-color:#ce3c39}.taro-button-core{-webkit-tap-highlight-color:rgba(0,0,0,0);appearance:none;background-color:#f8f8f8;border-radius:5px;border-width:0;box-sizing:border-box;color:#000;display:block;font-size:18px;line-height:2.55555556;margin-left:auto;margin-right:auto;outline:0;overflow:hidden;padding-left:14px;padding-right:14px;position:relative;text-align:center;text-decoration:none;width:100%}.taro-button-core:focus{outline:0}.taro-button-core:not([disabled]):active{background-color:#dedede;color:rgba(0,0,0,.6)}.taro-button-core:after{border:1px solid rgba(0,0,0,.2);border-radius:10px;box-sizing:border-box;content:" ";height:200%;left:0;position:absolute;top:0;transform:scale(.5);transform-origin:0 0;width:200%}.taro-button-core+.taro-button-core{margin-top:15px}.taro-button-core[type=default]{background-color:#f8f8f8;color:#000}.taro-button-core[type=default]:not([disabled]):visited{color:#000}.taro-button-core[type=default]:not([disabled]):active{background-color:#dedede;color:rgba(0,0,0,.6)}.taro-button-core[size=mini]{display:inline-block;font-size:13px;line-height:2.3;padding:0 1.32em;width:auto}.taro-button-core[plain],.taro-button-core[plain][type=default],.taro-button-core[plain][type=primary]{background-color:transparent;border-width:1px}.taro-button-core[disabled]{color:hsla(0,0%,100%,.6)}.taro-button-core[disabled][type=default]{background-color:#f7f7f7;color:rgba(0,0,0,.3)}.taro-button-core[disabled][type=primary]{background-color:#9ed99d}.taro-button-core[disabled][type=warn]{background-color:#ec8b89}.taro-button-core[loading] .weui-loading{margin:-.2em .34em 0 0}.taro-button-core[loading][type=primary],.taro-button-core[loading][type=warn]{color:hsla(0,0%,100%,.6)}.taro-button-core[loading][type=primary]{background-color:#179b16}.taro-button-core[loading][type=warn]{background-color:#ce3c39}.taro-button-core[plain][type=primary]{border:1px solid #1aad19;color:#1aad19}.taro-button-core[plain][type=primary]:not([disabled]):active{background-color:transparent;border-color:rgba(26,173,25,.6);color:rgba(26,173,25,.6)}.taro-button-core[plain][type=primary]:after{border-width:0}.taro-button-core[plain][type=warn]{border:1px solid #e64340;color:#e64340}.taro-button-core[plain][type=warn]:not([disabled]):active{background-color:transparent;border-color:rgba(230,67,64,.6);color:rgba(230,67,64,.6)}.taro-button-core[plain][type=warn]:after{border-width:0}.taro-button-core[plain],.taro-button-core[plain][type=default]{border:1px solid #353535;color:#353535}.taro-button-core[plain]:not([disabled]):active,.taro-button-core[plain][type=default]:not([disabled]):active{background-color:transparent;border-color:rgba(53,53,53,.6);color:rgba(53,53,53,.6)}.taro-button-core[plain]:after,.taro-button-core[plain][type=default]:after{border-width:0}.taro-button-core[type=primary]{background-color:#1aad19;color:#fff}.taro-button-core[type=primary]:not([disabled]):visited{color:#fff}.taro-button-core[type=primary]:not([disabled]):active{background-color:#179b16;color:hsla(0,0%,100%,.6)}.taro-button-core[type=warn]{background-color:#e64340;color:#fff}.taro-button-core[type=warn]:not([disabled]):visited{color:#fff}.taro-button-core[type=warn]:not([disabled]):active{background-color:#ce3c39;color:hsla(0,0%,100%,.6)}.taro-button-core[plain][disabled],.taro-button-core[plain][disabled][type=primary]{background-color:#f7f7f7;border:1px solid rgba(0,0,0,.2);color:rgba(0,0,0,.3)}.weui-icon-circle:before{content:"\ea01"}.weui-icon-download:before{content:"\ea02"}.weui-icon-info:before{content:"\ea03"}.weui-icon-safe-success:before{content:"\ea04"}.weui-icon-safe-warn:before{content:"\ea05"}.weui-icon-success:before{content:"\ea06"}.weui-icon-success-circle:before{content:"\ea07"}.weui-icon-success-no-circle:before{content:"\ea08"}.weui-icon-waiting:before{content:"\ea09"}.weui-icon-waiting-circle:before{content:"\ea0a"}.weui-icon-warn:before{content:"\ea0b"}.weui-icon-info-circle:before{content:"\ea0c"}.weui-icon-cancel:before{content:"\ea0d"}.weui-icon-search:before{content:"\ea0e"}.weui-icon-clear:before{content:"\ea0f"}.weui-icon-back:before{content:"\ea10"}.weui-icon-delete:before{content:"\ea11"}.weui-icon-success{color:#09bb07;font-size:23px}.weui-icon-waiting{color:#10aeff;font-size:23px}.weui-icon-warn{color:#f43530;font-size:23px}.weui-icon-info{color:#10aeff;font-size:23px}.weui-icon-success-circle,.weui-icon-success-no-circle{color:#09bb07;font-size:23px}.weui-icon-waiting-circle{color:#10aeff;font-size:23px}.weui-icon-circle{color:#c9c9c9;font-size:23px}.weui-icon-download,.weui-icon-info-circle{color:#09bb07;font-size:23px}.weui-icon-safe-success{color:#09bb07}.weui-icon-safe-warn{color:#ffbe00}.weui-icon-cancel{color:#f43530;font-size:22px}.weui-icon-clear,.weui-icon-search{color:#b2b2b2;font-size:14px}.weui-icon-delete.weui-icon_gallery-delete{color:#fff;font-size:22px}.weui-icon_msg{font-size:93px}.weui-icon_msg.weui-icon-warn{color:#f76260}.weui-icon_msg-primary{font-size:93px}.weui-icon_msg-primary.weui-icon-warn{color:#ffbe00}img[src=""]{opacity:0}.taro-img{display:inline-block;font-size:0;height:240px;overflow:hidden;position:relative;width:320px}.taro-img.taro-img__widthfix{height:100%}.taro-img__mode-aspectfit,.taro-img__mode-scaletofill{height:100%;object-fit:contain;width:100%}.taro-img__mode-aspectfill{height:100%;object-fit:cover;width:100%}.taro-img__mode-top,.taro-img__mode-widthfix{width:100%}.taro-img__mode-bottom{bottom:0;position:absolute;width:100%}.taro-img__mode-left{height:100%}.taro-img__mode-right{height:100%}.taro-img__mode-right,.taro-img__mode-topright{position:absolute;right:0}.taro-img__mode-bottomleft{bottom:0;position:absolute}.taro-img__mode-bottomright{bottom:0;position:absolute;right:0}.taro-input-core,input{display:block}input{height:1.4rem;overflow:hidden;text-align:inherit;text-overflow:clip;white-space:nowrap}.weui-input{-webkit-appearance:none;background-color:transparent;border:0;color:inherit;font-size:inherit;height:1.4705882353em;line-height:1.4705882353;outline:0;width:100%}.weui-input::-webkit-inner-spin-button,.weui-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.rmc-pull-to-refresh-content{transform-origin:left top 0}.rmc-pull-to-refresh-content-wrapper{min-height:100%}.rmc-pull-to-refresh-transition{transition:transform .3s}@keyframes rmc-pull-to-refresh-indicator{50%{opacity:.2}to{opacity:1}}.rmc-pull-to-refresh-indicator{height:30px;line-height:10px;text-align:center}.rmc-pull-to-refresh-indicator>div{animation-fill-mode:both;animation:rmc-pull-to-refresh-indicator .5s linear 0s infinite;background-color:grey;border-radius:100%;display:inline-block;height:6px;margin:3px;width:6px}.rmc-pull-to-refresh-indicator>div:nth-child(0){animation-delay:-.1s!important}.rmc-pull-to-refresh-indicator>div:first-child{animation-delay:-.2s!important}.rmc-pull-to-refresh-indicator>div:nth-child(2){animation-delay:-.3s!important}.rmc-pull-to-refresh-down .rmc-pull-to-refresh-indicator{margin-top:-25px}.taro-scroll{-webkit-overflow-scrolling:auto}.taro-scroll::-webkit-scrollbar{display:none}.taro-scroll-view{overflow:hidden}.taro-scroll-view__scroll-x{overflow-x:scroll;overflow-y:hidden}.taro-scroll-view__scroll-y{overflow-x:hidden;overflow-y:scroll}.swiper-container-wrapper{height:150px}.swiper-container{height:100%}.swiper-pagination{font-size:0}.swiper-pagination-bullet{opacity:1}.taro-text{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.taro-text__selectable{-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text}body,html{-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}
1
+ @-webkit-keyframes weuiLoading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes weuiLoading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.taro-button-core[loading]>.weui-loading{animation:weuiLoading 1s steps(12) infinite;background:transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;background-size:100%;display:inline-block;height:20px;vertical-align:middle;width:20px}.taro-button-core[loading]>.weui-loading.weui-btn_primary,.taro-button-core[loading]>.weui-loading.weui-btn_warn{color:hsla(0,0%,100%,.6)}.taro-button-core[loading]>.weui-loading.weui-btn_primary{background-color:#179b16}.taro-button-core[loading]>.weui-loading.weui-btn_warn{background-color:#ce3c39}.taro-button-core{-webkit-tap-highlight-color:rgba(0,0,0,0);appearance:none;background-color:#f8f8f8;border-radius:5px;border-width:0;box-sizing:border-box;color:#000;display:block;font-size:18px;line-height:2.55555556;margin-left:auto;margin-right:auto;outline:0;overflow:hidden;padding-left:14px;padding-right:14px;position:relative;text-align:center;text-decoration:none;width:100%}.taro-button-core:focus{outline:0}.taro-button-core:not([disabled]):active{background-color:#dedede;color:rgba(0,0,0,.6)}.taro-button-core:after{border:1px solid rgba(0,0,0,.2);border-radius:10px;box-sizing:border-box;content:" ";height:200%;left:0;position:absolute;top:0;transform:scale(.5);transform-origin:0 0;width:200%}.taro-button-core+.taro-button-core{margin-top:15px}.taro-button-core[type=default]{background-color:#f8f8f8;color:#000}.taro-button-core[type=default]:not([disabled]):visited{color:#000}.taro-button-core[type=default]:not([disabled]):active{background-color:#dedede;color:rgba(0,0,0,.6)}.taro-button-core[size=mini]{display:inline-block;font-size:13px;line-height:2.3;padding:0 1.32em;width:auto}.taro-button-core[plain],.taro-button-core[plain][type=default],.taro-button-core[plain][type=primary]{background-color:transparent;border-width:1px}.taro-button-core[disabled]{color:hsla(0,0%,100%,.6)}.taro-button-core[disabled][type=default]{background-color:#f7f7f7;color:rgba(0,0,0,.3)}.taro-button-core[disabled][type=primary]{background-color:#9ed99d}.taro-button-core[disabled][type=warn]{background-color:#ec8b89}.taro-button-core[loading] .weui-loading{margin:-.2em .34em 0 0}.taro-button-core[loading][type=primary],.taro-button-core[loading][type=warn]{color:hsla(0,0%,100%,.6)}.taro-button-core[loading][type=primary]{background-color:#179b16}.taro-button-core[loading][type=warn]{background-color:#ce3c39}.taro-button-core[plain][type=primary]{border:1px solid #1aad19;color:#1aad19}.taro-button-core[plain][type=primary]:not([disabled]):active{background-color:transparent;border-color:rgba(26,173,25,.6);color:rgba(26,173,25,.6)}.taro-button-core[plain][type=primary]:after{border-width:0}.taro-button-core[plain][type=warn]{border:1px solid #e64340;color:#e64340}.taro-button-core[plain][type=warn]:not([disabled]):active{background-color:transparent;border-color:rgba(230,67,64,.6);color:rgba(230,67,64,.6)}.taro-button-core[plain][type=warn]:after{border-width:0}.taro-button-core[plain],.taro-button-core[plain][type=default]{border:1px solid #353535;color:#353535}.taro-button-core[plain]:not([disabled]):active,.taro-button-core[plain][type=default]:not([disabled]):active{background-color:transparent;border-color:rgba(53,53,53,.6);color:rgba(53,53,53,.6)}.taro-button-core[plain]:after,.taro-button-core[plain][type=default]:after{border-width:0}.taro-button-core[type=primary]{background-color:#1aad19;color:#fff}.taro-button-core[type=primary]:not([disabled]):visited{color:#fff}.taro-button-core[type=primary]:not([disabled]):active{background-color:#179b16;color:hsla(0,0%,100%,.6)}.taro-button-core[type=warn]{background-color:#e64340;color:#fff}.taro-button-core[type=warn]:not([disabled]):visited{color:#fff}.taro-button-core[type=warn]:not([disabled]):active{background-color:#ce3c39;color:hsla(0,0%,100%,.6)}.taro-button-core[plain][disabled],.taro-button-core[plain][disabled][type=primary]{background-color:#f7f7f7;border:1px solid rgba(0,0,0,.2);color:rgba(0,0,0,.3)}.weui-icon-circle:before{content:"\ea01"}.weui-icon-download:before{content:"\ea02"}.weui-icon-info:before{content:"\ea03"}.weui-icon-safe-success:before{content:"\ea04"}.weui-icon-safe-warn:before{content:"\ea05"}.weui-icon-success:before{content:"\ea06"}.weui-icon-success-circle:before{content:"\ea07"}.weui-icon-success-no-circle:before{content:"\ea08"}.weui-icon-waiting:before{content:"\ea09"}.weui-icon-waiting-circle:before{content:"\ea0a"}.weui-icon-warn:before{content:"\ea0b"}.weui-icon-info-circle:before{content:"\ea0c"}.weui-icon-cancel:before{content:"\ea0d"}.weui-icon-search:before{content:"\ea0e"}.weui-icon-clear:before{content:"\ea0f"}.weui-icon-back:before{content:"\ea10"}.weui-icon-delete:before{content:"\ea11"}.weui-icon-success{color:#09bb07;font-size:23px}.weui-icon-waiting{color:#10aeff;font-size:23px}.weui-icon-warn{color:#f43530;font-size:23px}.weui-icon-info{color:#10aeff;font-size:23px}.weui-icon-success-circle,.weui-icon-success-no-circle{color:#09bb07;font-size:23px}.weui-icon-waiting-circle{color:#10aeff;font-size:23px}.weui-icon-circle{color:#c9c9c9;font-size:23px}.weui-icon-download,.weui-icon-info-circle{color:#09bb07;font-size:23px}.weui-icon-safe-success{color:#09bb07}.weui-icon-safe-warn{color:#ffbe00}.weui-icon-cancel{color:#f43530;font-size:22px}.weui-icon-clear,.weui-icon-search{color:#b2b2b2;font-size:14px}.weui-icon-delete.weui-icon_gallery-delete{color:#fff;font-size:22px}.weui-icon_msg{font-size:93px}.weui-icon_msg.weui-icon-warn{color:#f76260}.weui-icon_msg-primary{font-size:93px}.weui-icon_msg-primary.weui-icon-warn{color:#ffbe00}img[src=""]{opacity:0}.taro-img{display:inline-block;font-size:0;height:240px;overflow:hidden;position:relative;width:320px}.taro-img.taro-img__widthfix{height:100%}.taro-img__mode-aspectfit,.taro-img__mode-scaletofill{height:100%;object-fit:contain;width:100%}.taro-img__mode-aspectfill{height:100%;object-fit:cover;width:100%}.taro-img__mode-top,.taro-img__mode-widthfix{width:100%}.taro-img__mode-bottom{bottom:0;position:absolute;width:100%}.taro-img__mode-left{height:100%}.taro-img__mode-right{height:100%}.taro-img__mode-right,.taro-img__mode-topright{position:absolute;right:0}.taro-img__mode-bottomleft{bottom:0;position:absolute}.taro-img__mode-bottomright{bottom:0;position:absolute;right:0}.taro-input-core{display:block}.weui-input{-webkit-appearance:none;background-color:transparent;border:0;color:inherit;font-size:inherit;height:1.4705882353em;line-height:1.4705882353;outline:0;width:100%}.weui-input::-webkit-inner-spin-button,.weui-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.rmc-pull-to-refresh-content{transform-origin:left top 0}.rmc-pull-to-refresh-content-wrapper{min-height:100%}.rmc-pull-to-refresh-transition{transition:transform .3s}@keyframes rmc-pull-to-refresh-indicator{50%{opacity:.2}to{opacity:1}}.rmc-pull-to-refresh-indicator{height:30px;line-height:10px;text-align:center}.rmc-pull-to-refresh-indicator>div{animation-fill-mode:both;animation:rmc-pull-to-refresh-indicator .5s linear 0s infinite;background-color:grey;border-radius:100%;display:inline-block;height:6px;margin:3px;width:6px}.rmc-pull-to-refresh-indicator>div:nth-child(0){animation-delay:-.1s!important}.rmc-pull-to-refresh-indicator>div:first-child{animation-delay:-.2s!important}.rmc-pull-to-refresh-indicator>div:nth-child(2){animation-delay:-.3s!important}.rmc-pull-to-refresh-down .rmc-pull-to-refresh-indicator{margin-top:-25px}.taro-scroll{-webkit-overflow-scrolling:auto}.taro-scroll::-webkit-scrollbar{display:none}.taro-scroll-view{overflow:hidden}.taro-scroll-view__scroll-x{overflow-x:scroll;overflow-y:hidden}.taro-scroll-view__scroll-y{overflow-x:hidden;overflow-y:scroll}.swiper-container-wrapper{height:150px}.swiper-container{height:100%}.swiper-pagination{font-size:0}.swiper-pagination-bullet{opacity:1}.taro-text{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.taro-text__selectable{-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text}
@@ -0,0 +1,95 @@
1
+ import { template, use, spread, mergeProps, insert } from 'solid-js/web';
2
+ import { __rest } from 'tslib';
3
+ import './style/index.scss.js';
4
+ import classNames from 'classnames';
5
+ import { omit, createForwardRefComponent } from '../../utils/index.js';
6
+ import { useRef, useState, useEffect } from '../../utils/hooks.solid.js';
7
+
8
+ var _tmpl$ = /*#__PURE__*/template(`<button>`),
9
+ _tmpl$2 = /*#__PURE__*/template(`<i class=weui-loading>`);
10
+ function Button(props) {
11
+ const startTimer = useRef();
12
+ const endTimer = useRef();
13
+ const [state, setState] = useState({
14
+ hover: false,
15
+ touch: false
16
+ });
17
+ useEffect(() => {
18
+ return () => {
19
+ startTimer.current && clearTimeout(startTimer.current);
20
+ endTimer.current && clearTimeout(endTimer.current);
21
+ };
22
+ }, []);
23
+ const _onTouchStart = e => {
24
+ setState(e => Object.assign(Object.assign({}, e), {
25
+ touch: true
26
+ }));
27
+ if (props.hoverClass && props.hoverClass !== 'none' && !props.disabled) {
28
+ startTimer.current = setTimeout(() => {
29
+ if (state.touch) {
30
+ setState(e => Object.assign(Object.assign({}, e), {
31
+ hover: true
32
+ }));
33
+ }
34
+ }, props.hoverStartTime || 20);
35
+ }
36
+ props.onTouchStart && props.onTouchStart(e);
37
+ };
38
+ const _onTouchEnd = e => {
39
+ setState(e => Object.assign(Object.assign({}, e), {
40
+ touch: false
41
+ }));
42
+ if (props.hoverClass && props.hoverClass !== 'none' && !props.disabled) {
43
+ endTimer.current = setTimeout(() => {
44
+ if (!state.touch) {
45
+ setState(e => Object.assign(Object.assign({}, e), {
46
+ hover: false
47
+ }));
48
+ }
49
+ }, props.hoverStayTime || 70);
50
+ }
51
+ props.onTouchEnd && props.onTouchEnd(e);
52
+ };
53
+ const {
54
+ forwardedRef,
55
+ plain = false,
56
+ children,
57
+ disabled = false,
58
+ className,
59
+ style,
60
+ onClick,
61
+ hoverClass = 'button-hover',
62
+ loading = false,
63
+ type
64
+ } = props,
65
+ restProps = __rest(props, ["forwardedRef", "plain", "children", "disabled", "className", "style", "onClick", "hoverClass", "loading", "type"]);
66
+ const cls = classNames(className, 'taro-button-core', {
67
+ [`${hoverClass}`]: state.hover && !disabled
68
+ });
69
+ return (() => {
70
+ var _el$ = _tmpl$();
71
+ use(forwardedRef, _el$);
72
+ spread(_el$, mergeProps(() => omit(restProps, ['hoverClass', 'onTouchStart', 'onTouchEnd', 'type', 'loading', 'forwardedRef']), {
73
+ "type": type,
74
+ "className": cls,
75
+ "style": style,
76
+ "onClick": onClick,
77
+ "disabled": disabled,
78
+ "onTouchStart": _onTouchStart,
79
+ "onTouchEnd": _onTouchEnd,
80
+ get loading() {
81
+ return loading.toString();
82
+ },
83
+ get plain() {
84
+ return plain.toString();
85
+ }
86
+ }), false, true);
87
+ insert(_el$, !!loading && _tmpl$2(), null);
88
+ insert(_el$, children, null);
89
+ return _el$;
90
+ })();
91
+ }
92
+ var index = createForwardRefComponent(Button);
93
+
94
+ export { index as default };
95
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../../../src/components/button/index.tsx"],"sourcesContent":["import './style/index.scss'\n\nimport classNames from 'classnames'\n\nimport { createForwardRefComponent, omit } from '../../utils'\nimport { useEffect, useRef, useState } from '../../utils/hooks'\n\nimport type React from 'react'\n\ninterface IProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'type'> {\n size?: string\n plain?: boolean\n hoverClass?: string\n hoverStartTime?: number\n hoverStayTime?: number\n disabled?: boolean\n loading?: boolean\n type?: string\n className?: string\n forwardedRef?: React.MutableRefObject<HTMLButtonElement>\n}\n\ninterface IState {\n hover:boolean\n touch: boolean\n}\n\nfunction Button (props: IProps) {\n const startTimer = useRef<ReturnType<typeof setTimeout>>()\n const endTimer = useRef<ReturnType<typeof setTimeout>>()\n const [state, setState] = useState<IState>({\n hover: false,\n touch: false\n })\n\n useEffect(() => {\n return () => {\n startTimer.current && clearTimeout(startTimer.current)\n endTimer.current && clearTimeout(endTimer.current)\n }\n }, [])\n\n const _onTouchStart = (e: React.TouchEvent<HTMLButtonElement>) => {\n setState((e) => ({\n ...e,\n touch: true\n }))\n if (props.hoverClass && props.hoverClass !== 'none' && !props.disabled) {\n startTimer.current = setTimeout(() => {\n if ((state as IState).touch) {\n setState((e) => ({\n ...e,\n hover: true\n }))\n }\n }, props.hoverStartTime || 20)\n }\n props.onTouchStart && props.onTouchStart(e)\n }\n\n const _onTouchEnd = (e: React.TouchEvent<HTMLButtonElement>) => {\n setState((e) => ({\n ...e,\n touch: false\n }))\n if (props.hoverClass && props.hoverClass !== 'none' && !props.disabled) {\n endTimer.current = setTimeout(() => {\n if (!(state as IState).touch) {\n setState((e) => ({\n ...e,\n hover: false\n }))\n }\n }, props.hoverStayTime || 70)\n }\n props.onTouchEnd && props.onTouchEnd(e)\n }\n\n const { forwardedRef, plain = false, children, disabled = false, className, style, onClick, hoverClass = 'button-hover', loading = false, type, ...restProps } = props\n\n const cls = classNames(\n className,\n 'taro-button-core',\n {\n [`${hoverClass}`]: (state as IState).hover && !disabled\n }\n )\n\n return (\n <button\n {...omit(restProps, ['hoverClass', 'onTouchStart', 'onTouchEnd', 'type', 'loading', 'forwardedRef'])}\n type={type}\n ref={forwardedRef}\n className={cls}\n style={style}\n onClick={onClick}\n disabled={disabled}\n onTouchStart={_onTouchStart}\n onTouchEnd={_onTouchEnd}\n loading={loading.toString()}\n plain={plain.toString()}\n >\n {!!loading && <i className='weui-loading' />}\n {children}\n </button>\n )\n}\n\nexport default createForwardRefComponent(Button)\n"],"names":["Button","props","startTimer","useRef","endTimer","state","setState","useState","hover","touch","useEffect","current","clearTimeout","_onTouchStart","e","Object","assign","hoverClass","disabled","setTimeout","hoverStartTime","onTouchStart","_onTouchEnd","hoverStayTime","onTouchEnd","forwardedRef","plain","children","className","style","onClick","loading","type","restProps","__rest","cls","classNames","_el$","_tmpl$","_$use","_$spread","_$mergeProps","omit","toString","_$insert","_tmpl$2","createForwardRefComponent"],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ var undefined$1 = undefined;
2
+
3
+ export { undefined$1 as default };
4
+ //# sourceMappingURL=index.scss.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}