blob: 1dfad462fbcf347d295d130d08a13383f6e6d730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
import Lightbox from 'react-image-lightbox';
import 'react-image-lightbox/style.css'; // This only needs to be imported once in your app
import { SelectionManager } from "../../util/SelectionManager";
import { DocumentFieldViewProps } from "./DocumentView";
import "./ImageBox.scss";
import React = require("react")
interface ImageBoxState {
photoIndex: number,
isOpen: boolean,
};
export class ImageBox extends React.Component<DocumentFieldViewProps, ImageBoxState> {
public static LayoutString() { return "<ImageBox doc={Document} containingDocumentView={ContainingDocumentView} fieldKey={DataKey} />"; }
private _ref: React.RefObject<HTMLDivElement>;
private _downX: number = 0;
private _downY: number = 0;
private _lastTap: number = 0;
constructor(props: DocumentFieldViewProps) {
super(props);
this._ref = React.createRef();
this.state = {
photoIndex: 0,
isOpen: false,
};
}
componentDidMount() {
}
componentWillUnmount() {
}
onPointerDown = (e: React.PointerEvent): void => {
if (Date.now() - this._lastTap < 300) {
if (e.buttons === 1 && SelectionManager.IsSelected(this.props.containingDocumentView)) {
e.stopPropagation();
this._downX = e.clientX;
this._downY = e.clientY;
document.removeEventListener("pointerup", this.onPointerUp);
document.addEventListener("pointerup", this.onPointerUp);
}
} else {
this._lastTap = Date.now();
}
}
onPointerUp = (e: PointerEvent): void => {
document.removeEventListener("pointerup", this.onPointerUp);
if (Math.abs(e.clientX - this._downX) < 2 && Math.abs(e.clientY - this._downY) < 2) {
this.setState({ isOpen: true })
}
e.stopPropagation();
}
render() {
const images = [this.props.doc.GetTextField(this.props.fieldKey, ""),];
var lightbox = () => {
const { photoIndex } = this.state;
if (this.state.isOpen && SelectionManager.IsSelected(this.props.containingDocumentView)) {
return (<Lightbox
mainSrc={images[photoIndex]}
nextSrc={photoIndex + 1 < images.length ? images[(photoIndex + 1) % images.length] : undefined}
prevSrc={photoIndex - 1 > 0 ? images[(photoIndex + images.length - 1) % images.length] : undefined}
onCloseRequest={() => this.setState({ isOpen: false })}
onMovePrevRequest={() =>
this.setState({ photoIndex: (photoIndex + images.length - 1) % images.length, })
}
onMoveNextRequest={() =>
this.setState({ photoIndex: (photoIndex + 1) % images.length, })
}
/>)
}
}
return (
<div className="imageBox-cont" onPointerDown={this.onPointerDown} ref={this._ref} >
<img src={images[0]} width="100%" alt="Image not found" />
{lightbox()}
</div>)
}
}
|