// import { InfoWindow } from '@react-google-maps/api'; // import { action } from 'mobx'; // import { observer } from 'mobx-react'; // import * as React from 'react'; // import { Doc } from '../../../../fields/Doc'; // import { Id } from '../../../../fields/FieldSymbols'; // import { emptyFunction, returnAll, returnEmptyFilter, returnFalse, returnOne, returnTrue, returnZero, setupMoveUpEvents } from '../../../../Utils'; // import { Docs } from '../../../documents/Documents'; // import { CollectionViewType, DocumentType } from '../../../documents/DocumentTypes'; // import { CollectionNoteTakingView } from '../../collections/CollectionNoteTakingView'; // import { CollectionStackingView } from '../../collections/CollectionStackingView'; // import { FieldViewProps } from '../FieldView'; // import { FormattedTextBox } from '../formattedText/FormattedTextBox'; // import './MapBox.scss'; // interface MapBoxInfoWindowProps extends FieldViewProps { // place: Doc; // renderDepth: number; // markerMap: { [id: string]: google.maps.Marker }; // isAnyChildContentActive: () => boolean; // } // @observer // export class MapBoxInfoWindow extends React.Component { // @action // private handleInfoWindowClose = () => { // if (this.props.place.infoWindowOpen) { // this.props.place.infoWindowOpen = false; // } // this.props.place.infoWindowOpen = false; // }; // addNoteClick = (e: React.PointerEvent) => { // setupMoveUpEvents(this, e, returnFalse, emptyFunction, e => { // const newDoc = Docs.Create.TextDocument('Note', { _layout_autoHeight: true }); // Doc.SetSelectOnLoad(newDoc); // track the new text box so we can give it a prop that tells it to focus itself when it's displayed // Doc.AddDocToList(this.props.place, 'data', newDoc); // this._stack?.scrollToBottom(); // e.stopPropagation(); // e.preventDefault(); // }); // }; // _stack: CollectionStackingView | CollectionNoteTakingView | null | undefined; // childLayoutFitWidth = (doc: Doc) => doc.type === DocumentType.RTF; // addDoc = (doc: Doc | Doc[]) => (doc instanceof Doc ? [doc] : doc).reduce((p, d) => p && Doc.AddDocToList(this.props.place, 'data', d), true as boolean); // removeDoc = (doc: Doc | Doc[]) => (doc instanceof Doc ? [doc] : doc).reduce((p, d) => p && Doc.RemoveDocFromList(this.props.place, 'data', d), true as boolean); // render() { // return ( // //
//
// (this._stack = r)} // {...this.props} // setContentView={emptyFunction} // Document={this.props.place} // TemplateDataDocument={undefined} // fieldKey="data" // NativeWidth={returnZero} // NativeHeight={returnZero} // childFilters={returnEmptyFilter} // setHeight={emptyFunction} // isAnnotationOverlay={false} // select={emptyFunction} // NativeDimScaling={returnOne} // isContentActive={returnTrue} // chromeHidden={true} // childHideResizeHandles={true} // childHideDecorationTitle={true} // childLayoutFitWidth={this.childLayoutFitWidth} // // childDocumentsActive={returnFalse} // removeDocument={this.removeDoc} // addDocument={this.addDoc} // renderDepth={this.props.renderDepth + 1} // type_collection={CollectionViewType.Stacking} // pointerEvents={returnAll} // /> //
//
//
{ // e.stopPropagation(); // e.preventDefault(); // }}> // Add Note //
//
//
// ); // } // }