import { computed, observable, action } from 'mobx'; import * as React from "react"; import { Doc, DocListCast } from '../../../../fields/Doc'; import { documentSchema } from '../../../../fields/documentSchemas'; import { makeInterface } from '../../../../fields/Schema'; import { BoolCast, NumCast, ScriptCast } from '../../../../fields/Types'; import { Transform } from '../../../util/Transform'; import { undoBatch } from '../../../util/UndoManager'; import { ContentFittingDocumentView } from '../../nodes/ContentFittingDocumentView'; import { CollectionSubView } from '../CollectionSubView'; import { SubCollectionViewProps } from '../CollectionSubView'; import { List } from '../../../../fields/List'; import { returnZero } from '../../../../Utils'; import Grid, { Layout } from "./Grid"; import { Id } from '../../../../fields/FieldSymbols'; import { observer } from 'mobx-react'; import "./CollectionGridView.scss"; import { SnappingManager } from '../../../util/SnappingManager'; type GridSchema = makeInterface<[typeof documentSchema]>; const GridSchema = makeInterface(documentSchema); @observer export class CollectionGridView extends CollectionSubView(GridSchema) { private containerRef: React.RefObject; @observable private _scroll: number = 0; constructor(props: Readonly) { super(props); this.props.Document.numCols = this.props.Document.numCols ? this.props.Document.numCols : 10; this.props.Document.rowHeight = this.props.Document.rowHeight ? this.props.Document.rowHeight : 100; this.props.Document.flexGrid = (this.props.Document.flexGrid !== undefined) ? this.props.Document.flexGrid : true; this.setLayout = this.setLayout.bind(this); this.deleteInContext = this.deleteInContext.bind(this); this.containerRef = React.createRef(); } componentDidMount() { if (!(this.props.Document.gridLayouts as List)?.length) { console.log("no layouts stored on doc"); this.props.Document.gridLayouts = new List(); for (let i = 0; i < this.childLayoutPairs.length; i++) { const layoutDoc: Doc = new Doc(); layoutDoc.i = this.childLayoutPairs[i].layout[Id]; layoutDoc.x = 2 * (i % Math.floor(this.props.Document.numCols as number / 2)); layoutDoc.y = 2 * Math.floor(i / Math.floor(this.props.Document.numCols as number / 2)); layoutDoc.w = 2; layoutDoc.h = 2; (this.props.Document.gridLayouts as List).push(layoutDoc); // use childlayoutpairs length instead } } } /** * @returns the transform that will correctly place * the document decorations box, shifted to the right by * the sum of all the resolved column widths of the * documents before the target. */ private lookupIndividualTransform = (doc: Doc) => { const yTranslation = this.rowHeightPlusGap * NumCast(doc.y) + 10 - this._scroll; console.log("CollectionGridView -> privatelookupIndividualTransform -> this.containerRef.current!.scrollTop", this.containerRef.current!.scrollTop) const xTranslation = this.colWidthPlusGap * NumCast(doc.x) + 10; return this.props.ScreenToLocalTransform().translate(-xTranslation, -yTranslation); } @computed get colWidthPlusGap() { return (this.props.PanelWidth() - 10) / NumCast(this.props.Document.numCols); } @computed get rowHeightPlusGap() { return NumCast(this.props.Document.rowHeight) + 10; } @computed get onChildClickHandler() { return ScriptCast(this.Document.onChildClick); } /** * Sets the width of the decorating box. * @param Doc doc */ @observable private width = (doc: Doc) => NumCast(doc.w) * this.colWidthPlusGap - 10; /** * Sets the height of the decorating box. * @param doc `Doc` */ @observable private height = (doc: Doc) => NumCast(doc.h) * this.rowHeightPlusGap - 10; addDocTab = (doc: Doc, where: string) => { if (where === "inPlace" && this.layoutDoc.isInPlaceContainer) { this.dataDoc[this.props.fieldKey] = new List([doc]); return true; } return this.props.addDocTab(doc, where); } getDisplayDoc(layout: Doc, dxf: () => Transform, width: () => number, height: () => number) { console.log(layout[Id]); return ; } @undoBatch deleteInContext(doc: Doc | Doc[]): boolean { if (!(this.props.Document.flexGrid as boolean)) { this.props.removeDocument(doc); } else { const docList: Doc[] = DocListCast(this.props.Document.gridLayouts); const newDocList: Doc[] = []; if (doc instanceof Doc) { for (const savedDoc of docList) { if (savedDoc.i !== doc[Id]) { console.log("compare"); console.log(savedDoc.i); console.log(doc[Id]); newDocList.push(savedDoc); } } this.props.Document.gridLayouts = new List(newDocList); this.props.removeDocument(doc); } // else { // console.log("doc is list"); // this.props.removeDocument(doc); // } } console.log("here???? in deletei n conte"); return true; } /** * Saves the layouts received from the Grid to the Document. * @param layouts `Layout[]` */ @undoBatch setLayout(layouts: Layout[]) { if (this.props.Document.flexGrid) { const docList: Doc[] = []; for (const layout of layouts) { const layoutDoc = new Doc(); layoutDoc.i = layout.i; layoutDoc.x = layout.x; layoutDoc.y = layout.y; layoutDoc.w = layout.w; layoutDoc.h = layout.h; docList.push(layoutDoc); } this.props.Document.gridLayouts = new List(docList); } } /** * @returns a list of `ContentFittingDocumentView`s inside wrapper divs. * The key of the wrapper div must be the same as the `i` value of the corresponding layout. */ @computed private get contents(): JSX.Element[] { const { childLayoutPairs } = this; const collector: JSX.Element[] = []; //const layoutArray: Layout[] = []; const docList: Doc[] = DocListCast(this.props.Document.gridLayouts); const previousLength = docList.length; // layoutArray.push(...this.layout); if (!previousLength) { // console.log("early return"); return []; } for (let i = 0; i < childLayoutPairs.length; i++) { const { layout } = childLayoutPairs[i]; const dxf = () => this.lookupIndividualTransform(docList[i]); const width = () => this.width(docList[i]); const height = () => this.height(docList[i]); collector.push(
{this.getDisplayDoc(layout, dxf, width, height)}
); } return collector; } /** * @returns a list of Layouts from a list of Docs * @param docLayoutList `Doc[]` */ toLayoutList(docLayoutList: Doc[]): Layout[] { const layouts: Layout[] = []; if (this.props.Document.flexGrid) { for (const layout of docLayoutList) { layouts.push( { i: layout.i as string, x: layout.x as number, y: layout.y as number, w: layout.w as number, h: layout.h as number, static: !(this.props.Document.flexGrid as boolean) } ); } } else { for (let i = 0; i < docLayoutList.length; i++) { layouts.push( { i: docLayoutList[i].i as string, x: 2 * (i % Math.floor(this.props.Document.numCols as number / 2)), y: 2 * Math.floor(i / Math.floor(this.props.Document.numCols as number / 2)), w: 2, h: 2, static: true } ); } } return layouts; } /** * Checks whether a new node has been added to the grid and updates the Document accordingly. */ @undoBatch checkUpdate() { const previousLength = (this.props.Document.gridLayouts as List)?.length; if (this.childLayoutPairs.length > previousLength) { console.log("adding doc"); const layoutDoc: Doc = new Doc(); layoutDoc.i = this.childLayoutPairs[this.childLayoutPairs.length - 1].layout[Id]; layoutDoc.x = 2 * (previousLength % Math.floor(this.props.Document.numCols as number / 2)); layoutDoc.y = 2 * Math.floor(previousLength / Math.floor(this.props.Document.numCols as number / 2)); layoutDoc.w = 2; layoutDoc.h = 2; (this.props.Document.gridLayouts as List).push(layoutDoc); } } render(): JSX.Element { this.checkUpdate(); //console.log("here first?"); const docList: Doc[] = DocListCast(this.props.Document.gridLayouts); //console.log("doclist length:::" + docList.length); const contents: JSX.Element[] = this.contents; const layout: Layout[] = this.toLayoutList(docList); // for (const doc of docList) { // console.log(doc.i); // } // if (layout.length === 0) { // console.log("layouts not loaded"); // } // else { // console.log("rendering with this"); // console.log(layout[0].w); // } console.log(this.props.Document.title + " " + this.props.isSelected() + " " + (!this.props.isSelected() && this.props.renderDepth !== 0 && !this.props.ContainingCollectionView?._isChildActive && !SnappingManager.GetIsDragging() ? "none" : undefined)); return (
{ if (this.props.active(true)) { if (this.props.isSelected(true)) { e.stopPropagation(); } } if (this.props.isSelected(true)) { !((e.target as any)?.className.includes("react-resizable-handle")) && e.preventDefault(); } }} // the grid doesn't stopPropagation when its widgets are hit, so we need to otherwise the outer documents will respond >
) => this._scroll = e.currentTarget.scrollTop)} >
); } }