aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections
diff options
context:
space:
mode:
authorab <abdullah_ahmed@brown.edu>2019-08-09 17:04:25 -0400
committerab <abdullah_ahmed@brown.edu>2019-08-09 17:04:25 -0400
commitb8ab5a823ae22b021c09dfd713b77211a51b3eae (patch)
treef6c6def42f40b6c9e92562ad56d3c0e515cb94e1 /src/client/views/collections
parent116f218c2eeec377fb465027bcfaa7521d9af492 (diff)
idk man
Diffstat (limited to 'src/client/views/collections')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index 2b9f32136..0beb0086b 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -38,6 +38,8 @@ import { MarqueeView } from "./MarqueeView";
import React = require("react");
import v5 = require("uuid/v5");
import { ClientRecommender } from "../../../ClientRecommender";
+import { SearchUtil } from "../../../util/SearchUtil";
+import { SearchBox } from "../../SearchBox";
library.add(faEye, faTable, faPaintBrush, faExpandArrowsAlt, faCompressArrowsAlt, faCompass, faUpload, faBrain);
@@ -603,9 +605,11 @@ export class CollectionFreeFormView extends CollectionSubView(PanZoomDocument) {
event: async () => {
// if (!ClientRecommender.Instance) new ClientRecommender({ title: "Client Recommender" });
let activedocs = this.getActiveDocuments();
+ let allDocs = await SearchUtil.GetAllDocs();
+ allDocs.forEach(doc => console.log(doc.title));
ClientRecommender.Instance.reset_docs();
await Promise.all(activedocs.map((doc: Doc) => {
- console.log(StrCast(doc.title));
+ //console.log(StrCast(doc.title));
const extdoc = doc.data_ext as Doc;
return ClientRecommender.Instance.extractText(doc, extdoc ? extdoc : doc);
}));