aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/search
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-11-30 23:37:49 -0500
committerbobzel <zzzman@gmail.com>2021-11-30 23:37:49 -0500
commit91247d583e5e4c7205a1ed764dd0e3a12af3be25 (patch)
tree57ab31e582d1af356242c1805b7d4d27e91970ac /src/client/views/search
parentf313cfa5ae644eadb57d936bc81bd355e0c88e17 (diff)
fixed warnings/errors. added inkingStroke comments. need to double-click now to add a point to an ink stroke.
Diffstat (limited to 'src/client/views/search')
-rw-r--r--src/client/views/search/SearchBox.tsx18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx
index fe297782c..09cfb2077 100644
--- a/src/client/views/search/SearchBox.tsx
+++ b/src/client/views/search/SearchBox.tsx
@@ -251,7 +251,7 @@ export class SearchBox extends ViewBoxBaseComponent<SearchBoxProps, SearchBoxDoc
this._results.forEach((_, doc) => {
this._pageRanks.set(doc, 1.0 / this._results.size);
- if (Doc.GetProto(doc)[DirectLinksSym].size == 0) {
+ if (Doc.GetProto(doc)[DirectLinksSym].size === 0) {
this._linkedDocsOut.set(doc, new Set(this._results.keys()));
this._results.forEach((_, linkedDoc) => {
@@ -259,20 +259,20 @@ export class SearchBox extends ViewBoxBaseComponent<SearchBoxProps, SearchBoxDoc
});
}
else {
- let linkedDocSet: Set<Doc> = new Set();
+ const linkedDocSet = new Set<Doc>();
Doc.GetProto(doc)[DirectLinksSym].forEach((link) => {
- let d1 = link?.anchor1 as Doc;
- let d2 = link?.anchor2 as Doc;
- if (doc == d1 && this._results.has(d2)) {
+ const d1 = link?.anchor1 as Doc;
+ const d2 = link?.anchor2 as Doc;
+ if (doc === d1 && this._results.has(d2)) {
linkedDocSet.add(d2);
this._linkedDocsIn.get(d2)?.add(doc);
}
- else if (doc == d2 && this._results.has(d1)) {
+ else if (doc === d2 && this._results.has(d1)) {
linkedDocSet.add(d1);
this._linkedDocsIn.get(d1)?.add(doc);
}
- })
+ });
this._linkedDocsOut.set(doc, linkedDocSet);
}
@@ -291,7 +291,7 @@ export class SearchBox extends ViewBoxBaseComponent<SearchBoxProps, SearchBoxDoc
let converged = true;
const pageRankFromAll = (1 - DAMPENING_FACTOR) / this._results.size;
- let nextPageRanks: Map<Doc, number> = new Map<Doc, number>();
+ const nextPageRanks = new Map<Doc, number>();
this._results.forEach((_, doc) => {
let nextPageRank = pageRankFromAll;
@@ -397,7 +397,7 @@ export class SearchBox extends ViewBoxBaseComponent<SearchBoxProps, SearchBoxDoc
const isLinkSearch: boolean = this.props.linkSearch;
- const sortedResults = Array.from(this._results.entries()).sort((a, b) => (this._pageRanks.get(b[0]) ?? 0) - (this._pageRanks.get(a[0]) ?? 0)) // sorted by page rank
+ const sortedResults = Array.from(this._results.entries()).sort((a, b) => (this._pageRanks.get(b[0]) ?? 0) - (this._pageRanks.get(a[0]) ?? 0)); // sorted by page rank
const resultsJSX = Array();