123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- import React from 'react';
- import classNames from 'classnames';
- import Photo from './Photo';
- import throttle from './utils/throttle';
- import isMobile from './utils/isMobile';
- import getMultipleTouchPosition from './utils/getMultipleTouchPosition';
- import getPositionOnMoveOrScale from './utils/getPositionOnMoveOrScale';
- import slideToPosition from './utils/slideToPosition';
- import { getReachType, getCloseEdgeResult } from './utils/getCloseEdge';
- import withContinuousTap, { TapFuncType } from './utils/withContinuousTap';
- import getAnimateOrigin from './utils/getAnimateOrigin';
- import {
- maxScale,
- minStartTouchOffset,
- minScale,
- scaleBuffer,
- } from './variables';
- import {
- ReachMoveFunction,
- ReachFunction,
- PhotoTapFunction,
- ReachTypeEnum,
- TouchStartEnum,
- ShowAnimateEnum,
- OriginRectType,
- } from './types';
- import './PhotoView.less';
- export interface IPhotoViewProps {
- // 图片地址
- src: string;
- // 容器类名
- viewClassName?: string;
- // 图片类名
- className?: string;
- // style
- style?: object;
- // 自定义 loading
- loadingElement?: JSX.Element;
- // 加载失败 Element
- brokenElement?: JSX.Element;
- // Photo 点击事件
- onPhotoTap: PhotoTapFunction;
- // Mask 点击事件
- onMaskTap: PhotoTapFunction;
- // 到达边缘滑动事件
- onReachMove: ReachMoveFunction;
- // 触摸解除事件
- onReachUp: ReachFunction;
- // Resize 事件
- onPhotoResize?: () => void;
- // 动画类型
- showAnimateType?: ShowAnimateEnum;
- // 动画源位置
- originRect?: OriginRectType;
- // 进入或结束动画回调
- onShowAnimateEnd?: () => void;
- }
- const initialState = {
- // 真实宽度
- naturalWidth: 1,
- // 真实高度
- naturalHeight: 1,
- // 宽度
- width: 1,
- // 高度
- height: 1,
- // 加载成功状态
- loaded: false,
- // 图片 X 偏移量
- x: 0,
- // 图片 y 偏移量
- y: 0,
- // 图片缩放程度
- scale: 1,
- // 图片处于触摸的状态
- touched: false,
- // 背景处于触摸状态
- maskTouched: false,
- // 触摸开始时 x 原始坐标
- clientX: 0,
- // 触摸开始时 y 原始坐标
- clientY: 0,
- // 触摸开始时图片 x 偏移量
- lastX: 0,
- // 触摸开始时图片 y 偏移量
- lastY: 0,
- // 触摸开始时时间
- touchedTime: 0,
- // 多指触控间距
- lastTouchLength: 0,
- // 当前边缘触发状态
- reachState: ReachTypeEnum.Normal,
- };
- export default class PhotoView extends React.Component<
- IPhotoViewProps,
- typeof initialState
- > {
- static displayName = 'PhotoView';
- readonly state = initialState;
- // 初始响应状态
- private initialTouchState = TouchStartEnum.Normal;
- private readonly handlePhotoTap: TapFuncType<number>;
- constructor(props: IPhotoViewProps) {
- super(props);
- this.onMove = throttle(this.onMove, 8);
- // 单击与双击事件处理
- this.handlePhotoTap = withContinuousTap(
- this.onPhotoTap,
- this.onDoubleTap,
- );
- }
- componentDidMount() {
- if (isMobile) {
- window.addEventListener('touchmove', this.handleTouchMove, { passive: false });
- window.addEventListener('touchend', this.handleTouchEnd, { passive: false });
- } else {
- window.addEventListener('mousemove', this.handleMouseMove);
- window.addEventListener('mouseup', this.handleMouseUp);
- }
- }
- componentWillUnmount() {
- if (isMobile) {
- window.removeEventListener('touchmove', this.handleTouchMove);
- window.removeEventListener('touchend', this.handleTouchEnd);
- } else {
- window.removeEventListener('mousemove', this.handleMouseMove);
- window.removeEventListener('mouseup', this.handleMouseUp);
- }
- }
- handleImageLoad = imageParams => {
- this.setState(imageParams);
- };
- handleStart = (clientX: number, clientY: number, touchLength: number = 0) => {
- this.setState(prevState => ({
- touched: true,
- clientX,
- clientY,
- lastX: prevState.x,
- lastY: prevState.y,
- lastTouchLength: touchLength,
- touchedTime: Date.now(),
- }));
- };
- onMove = (newClientX: number, newClientY: number, touchLength: number = 0) => {
- const {
- width,
- height,
- naturalWidth,
- x,
- y,
- clientX,
- clientY,
- lastX,
- lastY,
- scale,
- lastTouchLength,
- reachState,
- touched,
- maskTouched,
- } = this.state;
- if (touched || maskTouched) {
- // 单指最小缩放下,以初始移动距离来判断意图
- if (touchLength === 0 && scale === minScale && this.initialTouchState === TouchStartEnum.Normal) {
- const isBeyondX = Math.abs(newClientX - clientX) > minStartTouchOffset;
- const isBeyondY = Math.abs(newClientY - clientY) > minStartTouchOffset;
- // 初始移动距离不足则不处理
- if (!(isBeyondX || isBeyondY)) {
- return;
- }
- // 设置响应状态
- this.initialTouchState = isBeyondX
- ? TouchStartEnum.X
- : newClientY > clientY
- ? TouchStartEnum.YPull
- : TouchStartEnum.YPush;
- }
- let currentX = x;
- let currentY = y;
- // 边缘触发状态
- let currentReachState = ReachTypeEnum.Normal;
- if (touchLength === 0) {
- const {
- onReachMove,
- } = this.props;
- currentX = newClientX - clientX + lastX;
- const planY = newClientY - clientY + lastY;
- const touchYOffset = this.initialTouchState === TouchStartEnum.YPush
- ? minStartTouchOffset
- : -minStartTouchOffset;
- // 边缘超出状态
- const { horizontalCloseEdge, verticalCloseEdge } = getCloseEdgeResult({
- initialTouchState: this.initialTouchState,
- planX: currentX,
- planY,
- scale,
- width,
- height,
- });
- // Y 方向在初始响应状态下需要补一个距离
- currentY = planY +
- (this.initialTouchState === TouchStartEnum.Normal ? 0 : touchYOffset);
- // 边缘触发检测
- currentReachState = getReachType({ horizontalCloseEdge, verticalCloseEdge, reachState });
- // 接触边缘
- if (currentReachState != ReachTypeEnum.Normal) {
- onReachMove(currentReachState, newClientX, newClientY, scale);
- }
- }
- // 横向边缘触发、背景触发禁用当前滑动
- if (currentReachState === ReachTypeEnum.XReach || maskTouched) {
- this.setState({
- reachState: ReachTypeEnum.XReach,
- });
- } else {
- // 目标倍数
- const endScale = scale + (touchLength - lastTouchLength) / 100 / 2 * scale;
- // 限制最大倍数和最小倍数
- const toScale = Math.max(
- Math.min(
- endScale,
- Math.max(maxScale, naturalWidth / width)
- ),
- minScale - scaleBuffer,
- );
- this.setState({
- lastTouchLength: touchLength,
- reachState: currentReachState,
- ...getPositionOnMoveOrScale({
- x: currentX,
- y: currentY,
- clientX: newClientX,
- clientY: newClientY,
- fromScale: scale,
- toScale,
- }),
- });
- }
- }
- };
- onPhotoTap = (clientX: number, clientY: number) => {
- const { onPhotoTap } = this.props;
- if (onPhotoTap) {
- onPhotoTap(clientX, clientY);
- }
- };
- onDoubleTap: TapFuncType<number> = (clientX, clientY) => {
- const { width, naturalWidth } = this.state;
- const { x, y, scale } = this.state;
- this.setState({
- clientX,
- clientY,
- ...getPositionOnMoveOrScale({
- x,
- y,
- clientX,
- clientY,
- fromScale: scale,
- // 若图片足够大,则放大适应的倍数
- toScale: scale !== 1 ? 1 : Math.max(2, naturalWidth / width),
- }),
- });
- };
- handleWheel = (e) => {
- const { clientX, clientY, deltaY } = e;
- const { width, naturalWidth } = this.state;
- this.setState(({ x, y, scale }) => {
- const endScale = scale - deltaY / 100 / 2;
- // 限制最大倍数和最小倍数
- const toScale = Math.max(
- Math.min(
- endScale,
- Math.max(maxScale, naturalWidth / width)
- ),
- minScale,
- );
- return {
- clientX,
- clientY,
- ...getPositionOnMoveOrScale({
- x,
- y,
- clientX,
- clientY,
- fromScale: scale,
- toScale,
- }),
- };
- });
- };
- handleMaskStart = (clientX: number, clientY: number) => {
- this.setState(prevState => ({
- maskTouched: true,
- clientX,
- clientY,
- lastX: prevState.x,
- lastY: prevState.y,
- }));
- };
- handleMaskMouseDown = (e) => {
- this.handleMaskStart(e.clientX, e.clientY);
- };
- handleMaskTouchStart = (e) => {
- const { clientX, clientY } = e.touches[0];
- this.handleMaskStart(clientX, clientY);
- };
- handleTouchStart = (e) => {
- const { clientX, clientY, touchLength } = getMultipleTouchPosition(e);
- this.handleStart(clientX, clientY, touchLength);
- };
- handleMouseDown = (e) => {
- e.preventDefault();
- this.handleStart(e.clientX, e.clientY, 0);
- };
- handleTouchMove = (e) => {
- e.preventDefault();
- const { clientX, clientY, touchLength } = getMultipleTouchPosition(e);
- this.onMove(clientX, clientY, touchLength);
- };
- handleMouseMove = (e) => {
- e.preventDefault();
- this.onMove(e.clientX, e.clientY);
- };
- handleUp = (newClientX: number, newClientY: number) => {
- // 重置响应状态
- this.initialTouchState = TouchStartEnum.Normal;
- const {
- width,
- height,
- naturalWidth,
- x,
- y,
- lastX,
- lastY,
- scale,
- touchedTime,
- clientX,
- clientY,
- touched,
- maskTouched,
- } = this.state;
- if (touched || maskTouched) {
- const { onReachUp, onPhotoTap, onMaskTap } = this.props;
- const hasMove = clientX !== newClientX || clientY !== newClientY;
- this.setState({
- touched: false,
- maskTouched: false,
- // 限制缩放
- scale: Math.max(
- Math.min(scale, Math.max(maxScale, naturalWidth / width)),
- minScale,
- ),
- reachState: ReachTypeEnum.Normal, // 重置触发状态
- ...hasMove
- ? slideToPosition({
- x,
- y,
- lastX,
- lastY,
- width,
- height,
- scale,
- touchedTime,
- }) : {
- x,
- y,
- },
- }, () => {
- if (onReachUp) {
- onReachUp(newClientX, newClientY);
- }
- // 触发 Tap 事件
- if (!hasMove) {
- if (touched && onPhotoTap) {
- this.handlePhotoTap(newClientX, newClientY);
- } else if (maskTouched && onMaskTap) {
- onMaskTap(newClientX, newClientY);
- }
- }
- });
- }
- };
- handleTouchEnd = (e) => {
- const { clientX, clientY } = e.changedTouches[0];
- this.handleUp(clientX, clientY);
- };
- handleMouseUp = (e) => {
- const { clientX, clientY } = e;
- this.handleUp(clientX, clientY);
- };
- render() {
- const {
- src,
- viewClassName,
- className,
- style,
- loadingElement,
- brokenElement,
- onPhotoResize,
- showAnimateType,
- originRect,
- onShowAnimateEnd,
- } = this.props;
- const {
- width,
- height,
- naturalWidth,
- naturalHeight,
- loaded,
- x,
- y,
- scale,
- touched,
- } = this.state;
- const transform = `translate3d(${x}px, ${y}px, 0) scale(${scale})`;
- return (
- <div className={classNames('PhotoView__PhotoWrap', viewClassName)} style={style}>
- <div
- className="PhotoView__PhotoMask"
- onMouseDown={isMobile ? undefined : this.handleMaskMouseDown}
- onTouchStart={isMobile ? this.handleMaskTouchStart : undefined}
- />
- <div
- className={classNames({
- PhotoView__animateIn: loaded && showAnimateType === ShowAnimateEnum.In,
- PhotoView__animateOut: loaded && showAnimateType === ShowAnimateEnum.Out,
- })}
- style={{
- transformOrigin: loaded ? getAnimateOrigin(originRect, width, height) : undefined,
- }}
- onAnimationEnd={onShowAnimateEnd}
- >
- <Photo
- className={className}
- src={src}
- width={width}
- height={height}
- naturalWidth={naturalWidth}
- naturalHeight={naturalHeight}
- loaded={loaded}
- onMouseDown={isMobile ? undefined : this.handleMouseDown}
- onTouchStart={isMobile ? this.handleTouchStart : undefined}
- onWheel={this.handleWheel}
- onPhotoResize={onPhotoResize}
- style={{
- WebkitTransform: transform,
- transform,
- transition: touched
- ? undefined
- : 'transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1)',
- }}
- onImageLoad={this.handleImageLoad}
- loadingElement={loadingElement}
- brokenElement={brokenElement}
- />
- </div>
- </div>
- );
- }
- }
|