Mobile graphs no longer show the zoom function.

This commit is contained in:
Pico2x 2022-10-05 13:57:45 +01:00
parent e9050973e1
commit e4d7d0a232

View File

@ -9,6 +9,7 @@ import clsx from 'clsx'
import { Contract } from 'common/contract' import { Contract } from 'common/contract'
import { useMeasureSize } from 'web/hooks/use-measure-size' import { useMeasureSize } from 'web/hooks/use-measure-size'
import { useIsMobile } from 'web/hooks/use-is-mobile'
export type Point<X, Y, T = unknown> = { x: X; y: Y; obj?: T } export type Point<X, Y, T = unknown> = { x: X; y: Y; obj?: T }
@ -168,6 +169,7 @@ export const SVGChart = <X, TT>(props: {
const innerW = w - (margin.left + margin.right) const innerW = w - (margin.left + margin.right)
const innerH = h - (margin.top + margin.bottom) const innerH = h - (margin.top + margin.bottom)
const clipPathId = useMemo(() => nanoid(), []) const clipPathId = useMemo(() => nanoid(), [])
const isMobile = useIsMobile()
const justSelected = useRef(false) const justSelected = useRef(false)
useEffect(() => { useEffect(() => {
@ -207,6 +209,15 @@ export const SVGChart = <X, TT>(props: {
} }
} }
const onTouchMove = (ev: React.TouchEvent) => {
if (onMouseOver) {
const touch = ev.touches[0]
const x = touch.pageX - ev.currentTarget.getBoundingClientRect().left
const y = touch.pageY - ev.currentTarget.getBoundingClientRect().top
onMouseOver(x, y)
}
}
const onPointerLeave = () => { const onPointerLeave = () => {
onMouseLeave?.() onMouseLeave?.()
} }
@ -242,6 +253,7 @@ export const SVGChart = <X, TT>(props: {
<XAxis axis={xAxis} w={innerW} h={innerH} /> <XAxis axis={xAxis} w={innerW} h={innerH} />
<YAxis axis={yAxis} w={innerW} h={innerH} /> <YAxis axis={yAxis} w={innerW} h={innerH} />
<g clipPath={`url(#${clipPathId})`}>{children}</g> <g clipPath={`url(#${clipPathId})`}>{children}</g>
{!isMobile ? (
<g <g
ref={overlayRef} ref={overlayRef}
x="0" x="0"
@ -254,6 +266,17 @@ export const SVGChart = <X, TT>(props: {
onPointerMove={onPointerMove} onPointerMove={onPointerMove}
onPointerLeave={onPointerLeave} onPointerLeave={onPointerLeave}
/> />
) : (
<rect
x="0"
y="0"
width={innerW}
height={innerH}
fill="transparent"
onTouchMove={onTouchMove}
onTouchEnd={onPointerLeave}
/>
)}
</g> </g>
</svg> </svg>
</div> </div>