aboutsummaryrefslogtreecommitdiff
path: root/src/views/collections/CollectionFreeFormView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-02-01 14:36:41 -0500
committerbob <bcz@cs.brown.edu>2019-02-01 14:36:41 -0500
commit588e1edf046aea0f280117f4aaa5b9853258c05b (patch)
tree8085ad763f8af34b1c794a44af069ae42f80e556 /src/views/collections/CollectionFreeFormView.tsx
parent30c8a29abae61a47d0b17b86727729f0e55f7f69 (diff)
fixed zordering of dragged items. image lightbox shows on double tap now.
Diffstat (limited to 'src/views/collections/CollectionFreeFormView.tsx')
-rw-r--r--src/views/collections/CollectionFreeFormView.tsx21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/views/collections/CollectionFreeFormView.tsx b/src/views/collections/CollectionFreeFormView.tsx
index ffb39426d..24daa2fbc 100644
--- a/src/views/collections/CollectionFreeFormView.tsx
+++ b/src/views/collections/CollectionFreeFormView.tsx
@@ -19,6 +19,7 @@ import { CollectionDockingView } from "./CollectionDockingView";
export class CollectionFreeFormView extends React.Component<CollectionViewProps> {
private _containerRef = React.createRef<HTMLDivElement>();
private _canvasRef = React.createRef<HTMLDivElement>();
+ private _nodeContainerRef = React.createRef<HTMLDivElement>();
constructor(props: CollectionViewProps) {
super(props);
@@ -51,10 +52,28 @@ export class CollectionFreeFormView extends React.Component<CollectionViewProps>
const docY = (screenY - translateY) / sscale / scale;
doc.x = docX;
doc.y = docY;
+ this.bringToFront(doc);
}
e.stopPropagation();
}
+ private bringToFront(doc: DocumentView) {
+ const { fieldKey, Document: Document } = this.props;
+
+ const value: Document[] = Document.GetListField<Document>(fieldKey, []);
+ var topmost = value.reduce((topmost, d) => Math.max(d.GetNumberField(KeyStore.ZIndex, 0), topmost), -1000);
+ value.map(d => {
+ var zind = d.GetNumberField(KeyStore.ZIndex, 0);
+ if (zind != topmost - 1 - (topmost - zind) && d != doc.props.Document) {
+ d.SetFieldValue(KeyStore.ZIndex, topmost - 1 - (topmost - zind), NumberField);
+ }
+ })
+
+ if (doc.props.Document.GetNumberField(KeyStore.ZIndex, 0) != 0) {
+ doc.props.Document.SetFieldValue(KeyStore.ZIndex, 0, NumberField);
+ }
+ }
+
componentDidMount() {
if (this._containerRef.current) {
DragManager.MakeDropTarget(this._containerRef.current, {
@@ -191,7 +210,7 @@ export class CollectionFreeFormView extends React.Component<CollectionViewProps>
}} onDrop={this.onDrop} onDragOver={this.onDragOver} ref={this._containerRef}>
<div className="collectionfreeformview" style={{ transform: `translate(${panx}px, ${pany}px) scale(${currScale}, ${currScale})`, transformOrigin: `left, top` }} ref={this._canvasRef}>
- <div className="node-container">
+ <div className="node-container" ref={this._nodeContainerRef}>
{value.map(doc => {
return (<DocumentView key={doc.Id} ContainingCollectionView={this} Document={doc} ContainingDocumentView={this.props.ContainingDocumentView} />);
})}