diff options
author | yipstanley <stanley_yip@brown.edu> | 2019-07-14 20:02:42 -0400 |
---|---|---|
committer | yipstanley <stanley_yip@brown.edu> | 2019-07-14 20:02:42 -0400 |
commit | 226ca7f09c22e7290a70fc850312ead90acfca12 (patch) | |
tree | 390651edb7258af4fc1370eac4405ffedddeeac9 /src/client/views/nodes/DocumentView.tsx | |
parent | d2d19d6e87111eb011b61ba352d0b39eb8ba2250 (diff) |
annotation button can now drag onto documents
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index fcb38487d..2c1813482 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -421,6 +421,18 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu @undoBatch @action drop = async (e: Event, de: DragManager.DropEvent) => { + if (de.data instanceof DragManager.AnnotationDragData) { + e.stopPropagation(); + let annotationDoc = de.data.annotationDocument; + annotationDoc.linkedToDoc = true; + let targetDoc = this.props.Document; + let annotations = await DocListCastAsync(annotationDoc.annotations); + if (annotations) { + annotations.forEach(anno => { + anno.target = targetDoc; + }); + } + } if (de.data instanceof DragManager.LinkDragData) { let sourceDoc = de.data.linkSourceDocument; let destDoc = this.props.Document; |