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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
|
import React = require("react");
import { library } from '@fortawesome/fontawesome-svg-core';
import { faCaretUp, faChartBar, faFile, faFilePdf, faFilm, faFingerprint, faGlobeAsia, faImage, faLink, faMusic, faObjectGroup, faStickyNote } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { action, computed, observable, runInAction, IReactionDisposer, reaction } from "mobx";
import { observer } from "mobx-react";
import { Doc, DocCastAsync } from "../../../fields/Doc";
import { Id } from "../../../fields/FieldSymbols";
import { Cast, NumCast, StrCast } from "../../../fields/Types";
import { emptyFunction, emptyPath, returnFalse, Utils, returnTrue, returnOne, returnZero } from "../../../Utils";
import { DocumentType } from "../../documents/DocumentTypes";
import { DocumentManager } from "../../util/DocumentManager";
import { DragManager, SetupDrag } from "../../util/DragManager";
import { SearchUtil } from "../../util/SearchUtil";
import { Transform } from "../../util/Transform";
import { SEARCH_THUMBNAIL_SIZE } from "../../views/globalCssVariables.scss";
import { CollectionDockingView } from "../collections/CollectionDockingView";
import { CollectionViewType, CollectionView } from "../collections/CollectionView";
import { ParentDocSelector } from "../collections/ParentDocumentSelector";
import { ContextMenu } from "../ContextMenu";
import { ContentFittingDocumentView } from "../nodes/ContentFittingDocumentView";
import { SearchBox } from "./SearchBox";
import "./SearchItem.scss";
import "./SelectorContextMenu.scss";
import { FieldViewProps, FieldView } from "../nodes/FieldView";
import { ViewBoxBaseComponent } from "../DocComponent";
import { makeInterface, createSchema, listSpec } from "../../../fields/Schema";
import { documentSchema } from "../../../fields/documentSchemas";
import { PrefetchProxy } from "../../../fields/Proxy";
import { Docs } from "../../documents/Documents";
import { ScriptField } from "../../../fields/ScriptField";
import { CollectionStackingView } from "../collections/CollectionStackingView";
export interface SearchItemProps {
doc: Doc;
query: string;
highlighting: string[];
lines: string[];
}
library.add(faCaretUp);
library.add(faObjectGroup);
library.add(faStickyNote);
library.add(faFile);
library.add(faFilePdf);
library.add(faFilm);
library.add(faMusic);
library.add(faLink);
library.add(faChartBar);
library.add(faGlobeAsia, faFingerprint);
@observer
export class SelectorContextMenu extends React.Component<SearchItemProps> {
@observable private _docs: { col: Doc, target: Doc }[] = [];
@observable private _otherDocs: { col: Doc, target: Doc }[] = [];
constructor(props: SearchItemProps) {
super(props);
this.fetchDocuments();
}
async fetchDocuments() {
const aliases = (await SearchUtil.GetViewsOfDocument(this.props.doc)).filter(doc => doc !== this.props.doc);
const { docs } = await SearchUtil.Search("", true, { fq: `data_l:"${this.props.doc[Id]}"` });
const map: Map<Doc, Doc> = new Map;
const allDocs = await Promise.all(aliases.map(doc => SearchUtil.Search("", true, { fq: `data_l:"${doc[Id]}"` }).then(result => result.docs)));
allDocs.forEach((docs, index) => docs.forEach(doc => map.set(doc, aliases[index])));
docs.forEach(doc => map.delete(doc));
runInAction(() => {
this._docs = docs.filter(doc => !Doc.AreProtosEqual(doc, CollectionDockingView.Instance.props.Document)).map(doc => ({ col: doc, target: this.props.doc }));
this._otherDocs = Array.from(map.entries()).filter(entry => !Doc.AreProtosEqual(entry[0], CollectionDockingView.Instance.props.Document)).map(([col, target]) => ({ col, target }));
});
}
getOnClick({ col, target }: { col: Doc, target: Doc }) {
return () => {
col = Doc.IsPrototype(col) ? Doc.MakeDelegate(col) : col;
if (col._viewType === CollectionViewType.Freeform) {
const newPanX = NumCast(target.x) + NumCast(target._width) / 2;
const newPanY = NumCast(target.y) + NumCast(target._height) / 2;
col._panX = newPanX;
col._panY = newPanY;
}
CollectionDockingView.AddRightSplit(col);
};
}
render() {
return (
<div className="parents">
<p className="contexts">Contexts:</p>
{[...this._docs, ...this._otherDocs].map(doc => {
const item = React.createRef<HTMLDivElement>();
return <div className="collection" key={doc.col[Id] + doc.target[Id]} ref={item}>
<div className="collection-item" onPointerDown={
SetupDrag(item, () => doc.col, undefined, undefined, undefined, undefined, () => SearchBox.Instance.closeSearch())}>
<FontAwesomeIcon icon={faStickyNote} />
</div>
<a onClick={this.getOnClick(doc)}>{doc.col.title}</a>
</div>;
})}
</div>
);
}
}
export interface LinkMenuProps {
doc1: Doc;
doc2: Doc;
}
@observer
export class LinkContextMenu extends React.Component<LinkMenuProps> {
highlightDoc = (doc: Doc) => () => Doc.BrushDoc(doc);
unHighlightDoc = (doc: Doc) => () => Doc.UnBrushDoc(doc);
getOnClick = (col: Doc) => () => CollectionDockingView.AddRightSplit(col);
render() {
return (
<div className="parents">
<p className="contexts">Anchors:</p>
<div className="collection"><a onMouseEnter={this.highlightDoc(this.props.doc1)} onMouseLeave={this.unHighlightDoc(this.props.doc1)} onClick={this.getOnClick(this.props.doc1)}>Doc 1: {this.props.doc2.title}</a></div>
<div><a onMouseEnter={this.highlightDoc(this.props.doc2)} onMouseLeave={this.unHighlightDoc(this.props.doc2)} onClick={this.getOnClick(this.props.doc2)}>Doc 2: {this.props.doc1.title}</a></div>
</div>
);
}
}
type SearchSchema = makeInterface<[typeof documentSchema]>;
export const SearchSchema = createSchema({
targetDoc: Doc,
});
const SearchDocument = makeInterface(documentSchema);
@observer
export class SearchItem extends ViewBoxBaseComponent<FieldViewProps, SearchSchema>(SearchDocument) {
public static LayoutString(fieldKey: string) { return FieldView.LayoutString(SearchItem, fieldKey); }
constructor(props:any){
super(props);
this.rootDoc._viewType= CollectionViewType.Stacking;
this.rootDoc._viewType = CollectionViewType.Stacking;
this.props.Document._height=46;
if (!this.searchItemTemplate) { // create exactly one presElmentBox template to use by any and all presentations.
Doc.UserDoc().searchItemTemplate = new PrefetchProxy(Docs.Create.SearchItemBoxDocument({ title: "search item template", backgroundColor: "transparent", _xMargin: 5, _height: 46, isTemplateDoc: true, isTemplateForField: "data" }));
// this script will be called by each presElement to get rendering-specific info that the PresBox knows about but which isn't written to the PresElement
// this is a design choice -- we could write this data to the presElements which would require a reaction to keep it up to date, and it would prevent
// the preselement docs from being part of multiple presentations since they would all have the same field, or we'd have to keep per-presentation data
// stored on each pres element.
(this.searchItemTemplate as Doc).lookupField = ScriptField.MakeFunction("lookupSearchBoxField(container, field, data)",
{ field: "string", data: Doc.name, container: Doc.name });
}
}
@observable _selected: boolean = false;
onClick = () => {
DocumentManager.Instance.jumpToDocument(this.rootDoc, false);
}
@observable _useIcons = true;
@observable _displayDim = 50;
@computed get query() { return StrCast(this.lookupField("query")); }
private _oldHeight: number = 46;
componentDidMount() {
let parent: Doc |undefined = undefined;
let height = 0;
if (this.rootDoc.parent){
parent = Cast(this.rootDoc.parent, Doc, null);
if (parent!== undefined){
height=(NumCast(parent._height));
}
}
this._reactionDisposer = reaction(
() => this.rootDoc.searchIndex,
search => {console.log(NumCast(search));this.searchPos=NumCast(search) },{ fireImmediately: true }
);
this._reactionDisposer2 = reaction(
() => this._useIcons,
el=> {
if (this.rootDoc.parent){
parent = Cast(this.rootDoc.parent, Doc, null) as Doc;
height=(NumCast(parent._height));
};
console.log(height);
console.log(this._oldHeight);
setTimeout(() =>{this._mainRef.current?.getBoundingClientRect()? this.props.Document._height= this._mainRef.current?.getBoundingClientRect().height : null;
parent!==undefined? this._mainRef.current?.getBoundingClientRect()? parent._height= -this._oldHeight + height +this._mainRef.current?.getBoundingClientRect().height : null: null;
this._mainRef.current?.getBoundingClientRect()? this._oldHeight= this._mainRef.current?.getBoundingClientRect().height : null;
// this._oldHeight 55? this._oldHeight =55:null;
}, 1);
}
);
this._reactionDisposer3 = reaction(
() => this._displayLines,
el=> {
if (this.rootDoc.parent){
parent = Cast(this.rootDoc.parent, Doc, null) as Doc;
height=(NumCast(parent._height));
};
setTimeout(() =>{this._mainRef.current?.getBoundingClientRect()? this.props.Document._height= this._mainRef.current?.getBoundingClientRect().height : null;
parent!==undefined? this._mainRef.current?.getBoundingClientRect()? parent._height= -this._oldHeight + height +this._mainRef.current?.getBoundingClientRect().height : null: null;
this._mainRef.current?.getBoundingClientRect()? this._oldHeight= this._mainRef.current?.getBoundingClientRect().height : null;
}, 1);
}
);
Doc.SetSearchQuery(this.query);
this.rootDoc.searchMatch = true;
}
componentWillUnmount() {
this.rootDoc.searchMatch = undefined;
this._reactionDisposer && this._reactionDisposer();
this._reactionDisposer2 && this._reactionDisposer2();
this._reactionDisposer3 && this._reactionDisposer3();
}
@observable searchPos: number|undefined =0;
private _reactionDisposer?: IReactionDisposer;
private _reactionDisposer2?: IReactionDisposer;
private _reactionDisposer3?: IReactionDisposer;
@computed get highlightPos(){return NumCast(this.rootDoc.searchIndex)}
@action
public DocumentIcon() {
const layoutresult = StrCast(this.rootDoc.type);
if (!this._useIcons) {
const returnXDimension = () => this._useIcons ? 50 : Number(SEARCH_THUMBNAIL_SIZE);
const returnYDimension = () => this._displayDim;
const docview = <div
onPointerDown={action(() => {
this._useIcons = !this._useIcons;
this._displayDim = this._useIcons ? 50 : Number(SEARCH_THUMBNAIL_SIZE);
})}
onPointerEnter={action(() => this._displayDim = this._useIcons ? 50 : Number(SEARCH_THUMBNAIL_SIZE))} >
<ContentFittingDocumentView
Document={this.rootDoc}
LibraryPath={emptyPath}
rootSelected={returnFalse}
fitToBox={StrCast(this.rootDoc.type).indexOf(DocumentType.COL) !== -1}
addDocument={returnFalse}
removeDocument={returnFalse}
addDocTab={returnFalse}
pinToPres={returnFalse}
ContainingCollectionDoc={undefined}
ContainingCollectionView={undefined}
ScreenToLocalTransform={Transform.Identity}
renderDepth={1}
PanelWidth={returnXDimension}
PanelHeight={returnYDimension}
NativeWidth={returnZero}
NativeHeight={returnZero}
focus={emptyFunction}
moveDocument={returnFalse}
parentActive={returnFalse}
whenActiveChanged={returnFalse}
bringToFront={returnFalse}
ContentScaling={returnOne}
/>
</div>;
return docview;
}
const button = layoutresult.indexOf(DocumentType.PDF) !== -1 ? faFilePdf :
layoutresult.indexOf(DocumentType.IMG) !== -1 ? faImage :
layoutresult.indexOf(DocumentType.RTF) !== -1 ? faStickyNote :
layoutresult.indexOf(DocumentType.VID) !== -1 ? faFilm :
layoutresult.indexOf(DocumentType.COL) !== -1 ? faObjectGroup :
layoutresult.indexOf(DocumentType.AUDIO) !== -1 ? faMusic :
layoutresult.indexOf(DocumentType.LINK) !== -1 ? faLink :
layoutresult.indexOf(DocumentType.WEB) !== -1 ? faGlobeAsia :
faCaretUp;
return <div><div onClick={action(() => { this._useIcons = false; this._displayDim = Number(SEARCH_THUMBNAIL_SIZE); })} >
<FontAwesomeIcon icon={button} size="2x" />
</div>
<div className="searchItem-label">{this.rootDoc.type ? this.rootDoc.type : "Other"}</div>
</div>
;
}
collectionRef = React.createRef<HTMLDivElement>();
@action
pointerDown = (e: React.PointerEvent) => { e.preventDefault(); e.button === 0 && SearchBox.Instance.openSearch(e); }
@action
nextHighlight = (e: React.MouseEvent) => {
e.preventDefault();
e.stopPropagation();
//e.button === 0 && SearchBox.Instance.openSearch(e);
this.rootDoc!.searchMatch = false;
setTimeout(() => this.rootDoc!.searchMatch = true, 0);
this.rootDoc.searchIndex=NumCast(this.rootDoc.searchIndex);
this.searchPos=NumCast(this.rootDoc!.searchIndex);
this.length=NumCast(this.rootDoc!.length);
}
@action
nextHighlight2 = (e: React.MouseEvent) => {
e.preventDefault();
e.stopPropagation();
//e.button === 0 && SearchBox.Instance.openSearch(e);
this.rootDoc!.searchMatch2 = false;
setTimeout(() => this.rootDoc!.searchMatch2 = true, 0);
this.rootDoc.searchIndex=NumCast(this.rootDoc.searchIndex);
this.searchPos=NumCast(this.rootDoc!.searchIndex);
this.length=NumCast(this.rootDoc!.length);
}
@observable length:number|undefined = 0;
highlightDoc = (e: React.PointerEvent) => {
if (this.rootDoc!.type === DocumentType.LINK) {
if (this.rootDoc!.anchor1 && this.rootDoc!.anchor2) {
const doc1 = Cast(this.rootDoc!.anchor1, Doc, null);
const doc2 = Cast(this.rootDoc!.anchor2, Doc, null);
Doc.BrushDoc(doc1);
Doc.BrushDoc(doc2);
}
} else {
Doc.BrushDoc(this.rootDoc!);
}
e.stopPropagation();
}
unHighlightDoc = (e: React.PointerEvent) => {
if (this.rootDoc!.type === DocumentType.LINK) {
if (this.rootDoc!.anchor1 && this.rootDoc!.anchor2) {
const doc1 = Cast(this.rootDoc!.anchor1, Doc, null);
const doc2 = Cast(this.rootDoc!.anchor2, Doc, null);
Doc.UnBrushDoc(doc1);
Doc.UnBrushDoc(doc2);
}
} else {
Doc.UnBrushDoc(this.rootDoc!);
}
}
onContextMenu = (e: React.MouseEvent) => {
e.preventDefault();
e.stopPropagation();
ContextMenu.Instance.clearItems();
ContextMenu.Instance.addItem({
description: "Copy ID", event: () => {
Utils.CopyText(StrCast(this.rootDoc[Id]));
},
icon: "fingerprint"
});
ContextMenu.Instance.displayMenu(e.clientX, e.clientY);
}
_downX = 0;
_downY = 0;
_target: any;
onPointerDown = (e: React.PointerEvent<HTMLDivElement>) => {
this._downX = e.clientX;
this._downY = e.clientY;
e.stopPropagation();
this._target = e.currentTarget;
document.removeEventListener("pointermove", this.onPointerMoved);
document.removeEventListener("pointerup", this.onPointerUp);
document.addEventListener("pointermove", this.onPointerMoved);
document.addEventListener("pointerup", this.onPointerUp);
}
onPointerMoved = (e: PointerEvent) => {
if (Math.abs(e.clientX - this._downX) > Utils.DRAG_THRESHOLD ||
Math.abs(e.clientY - this._downY) > Utils.DRAG_THRESHOLD) {
document.removeEventListener("pointermove", this.onPointerMoved);
document.removeEventListener("pointerup", this.onPointerUp);
const doc = Doc.IsPrototype(this.rootDoc) ? Doc.MakeDelegate(this.rootDoc) : this.rootDoc;
DragManager.StartDocumentDrag([this._target], new DragManager.DocumentDragData([doc]), e.clientX, e.clientY);
}
}
onPointerUp = (e: PointerEvent) => {
document.removeEventListener("pointermove", this.onPointerMoved);
document.removeEventListener("pointerup", this.onPointerUp);
}
@computed
get contextButton() {
return <ParentDocSelector Document={this.rootDoc} addDocTab={(doc, where) => CollectionDockingView.AddRightSplit(doc)} />;
}
@computed get searchElementDoc() { return this.rootDoc; }
// @computed get targetDoc() { return this.searchElementDoc?.targetDoc as Doc; }
@computed get searchItemTemplate() { return Cast(Doc.UserDoc().searchItemTemplate, Doc, null); }
childLayoutTemplate = () => this.layoutDoc._viewType === CollectionViewType.Stacking ? this.searchItemTemplate: undefined;
getTransform = () => {
return this.props.ScreenToLocalTransform().translate(-5, -65);// listBox padding-left and pres-box-cont minHeight
}
panelHeight = () => {
return this.props.PanelHeight();
}
selectElement = (doc: Doc) => {
//this.gotoDocument(this.childDocs.indexOf(doc), NumCast(this.layoutDoc._itemIndex));
}
newsearch(){
runInAction(()=>{
if (StrCast(this.rootDoc.bucketfield)!=="results"){
SearchBox.Instance._icons=[StrCast(this.rootDoc.bucketfield)];
SearchBox.Instance._icons=SearchBox.Instance._icons;
}
SearchBox.Instance.expandedBucket= true;
SearchBox.Instance.submitSearch();
})
}
@action
returnLines(){
if ((Cast(this.rootDoc.lines, listSpec("string")))!.length>1){
if (!this._displayLines) {
console.log(Cast(this.rootDoc.lines, listSpec("string")));
return <div style={{width: 10}}
onPointerDown={action(() => {
this._displayLines = !this._displayLines;
//this._displayDim = this._useIcons ? 50 : Number(SEARCH_THUMBNAIL_SIZE);
})}
//onPointerEnter={action(() => this._displayDim = this._useIcons ? 50 : Number(SEARCH_THUMBNAIL_SIZE))}
>
{Cast(this.rootDoc.lines, listSpec("string"))!.filter((m, i) => i).map((l, i) => <div style={{overflow:"visible"}}id={i.toString()} className="searchItem-highlighting">{l}</div>)}
</div>;;
}
}
}
//this._displayDim = Number(SEARCH_THUMBNAIL_SIZE);
@observable _displayLines: boolean = true;
returnButtons(){
return <div>
<div onClick={action(() => { this.rootDoc!.type === DocumentType.PDF? this._displayLines = !this._displayLines : null;
})}>
{this.rootDoc!.type === DocumentType.PDF?"Expand Lines": null}
{NumCast(this.rootDoc!.length)>1?`Instance ${NumCast(this.rootDoc.searchIndex)===0? NumCast(this.rootDoc.length):NumCast(this.rootDoc.searchIndex) } of ${NumCast(this.rootDoc.length)}`: null}
<button onClick={this.nextHighlight} style={{padding:2, position:"absolute", left:77}}>
<FontAwesomeIcon icon="arrow-up" size="sm" />
</button>
<button onClick={this.nextHighlight2} style={{padding:2, position:"absolute", left:87}}>
<FontAwesomeIcon icon="arrow-down" size="sm" />
</button>
</div>
<div>
<div style={{background: "lightgrey"}}>
{this.returnLines()}
</div>
</div>
</div>
}
private _mainRef: React.RefObject<HTMLDivElement> = React.createRef();
render() {
const doc1 = Cast(this.rootDoc!.anchor1, Doc);
const doc2 = Cast(this.rootDoc!.anchor2, Doc);
if (this.rootDoc.isBucket === true){
this.props.Document._viewType=CollectionViewType.Stacking;
this.props.Document._chromeStatus='disabled';
this.props.Document._height=this.rootDoc._height;
return <div>
<CollectionView {...this.props}
Document={this.props.Document}
PanelHeight={this.panelHeight}
whenActiveChanged={emptyFunction}
onClick={undefined}
moveDocument={returnFalse}
childLayoutTemplate={this.childLayoutTemplate}
addDocument={undefined}
removeDocument={returnFalse}
focus={this.selectElement}
ScreenToLocalTransform={this.getTransform} />
<button onClick={()=>this.newsearch()}className="bucket-expand" style={{transform:"none", fontSize:"100%",textTransform:"none", background: "lightgray",color: "black", bottom: 8, marginBottom:-2, paddingTop:2,fontFamily:"Arial, sans-serif"}}>See all {StrCast(this.rootDoc.bucketfield)}...
</button>
</div>
}
else if (this.rootDoc.isBucket === false){
this.props.Document._chromeStatus='disabled';
return <div className="searchItem">
<div className="searchItem-body" >
<div className="searchItem-title-container">
<div className="searchItem-title" style={{height:"10px", overflow:"hidden", textOverflow:"ellipsis"}}>No Search Results</div>
</div>
</div>
</div>
}
else {
return <div className="searchItem-overview" onPointerDown={this.pointerDown} onContextMenu={this.onContextMenu}>
<div ref={this._mainRef} className="searchItem" onPointerEnter={this.highlightDoc} onPointerLeave={this.unHighlightDoc}>
<div className="searchItem-body" onClick={this.onClick}>
<div className="searchItem-title-container">
<div className="searchItem-title" style={{height:"10px", overflow:"hidden", textOverflow:"ellipsis"}}>{StrCast(this.rootDoc.title)}</div>
<div className="searchItem-highlighting">
{this.rootDoc.highlighting? StrCast(this.rootDoc.highlighting).length ? "Matched fields:" + StrCast(this.rootDoc.highlighting) : Cast(this.rootDoc.lines, listSpec("string"))!.length ? Cast(this.rootDoc.lines, listSpec("string"))![0] : "":null}</div>
<div className={`icon-${this._displayLines ? "q" : "a"}`}>
{NumCast(this.rootDoc.length) > 1 || this.rootDoc!.type === DocumentType.PDF?this.returnButtons(): null}
</div>
</div>
</div>
<div className="searchItem-info" style={{ width: this._useIcons ? "30px" : "100%" }}>
<div className={`icon-${this._useIcons ? "icons" : "live"}`}>
<div className="searchItem-type" title="Click to Preview" onPointerDown={this.onPointerDown}>{this.DocumentIcon()}</div>
</div>
</div>
<div className="searchItem-context" title="Drag as document">
{(doc1 instanceof Doc && doc2 instanceof Doc) && this.rootDoc!.type === DocumentType.LINK ? <LinkContextMenu doc1={doc1} doc2={doc2} /> :
this.contextButton}
</div>
</div>
</div>;
}
}
}
|