import { action, observable } from 'mobx'; import { observer } from "mobx-react"; import { Doc, Field, Opt } from '../../../new_fields/Doc'; import { emptyFunction, returnFalse, returnOne, returnZero } from '../../../Utils'; import { Docs } from '../../documents/Documents'; import { Transform } from '../../util/Transform'; import { undoBatch } from '../../util/UndoManager'; import { ContextMenu } from '../ContextMenu'; import { EditableView } from "../EditableView"; import { FieldView, FieldViewProps } from './FieldView'; import { KeyValueBox } from './KeyValueBox'; import "./KeyValueBox.scss"; import "./KeyValuePair.scss"; import React = require("react"); // Represents one row in a key value plane export interface KeyValuePairProps { rowStyle: string; keyName: string; doc: Doc; keyWidth: number; PanelHeight: () => number; PanelWidth: () => number; addDocTab: (doc: Doc, data: Opt, where: string) => boolean; } @observer export class KeyValuePair extends React.Component { @observable private isPointerOver = false; @observable public isChecked = false; private checkbox = React.createRef(); @action handleCheck = (e: React.ChangeEvent) => { this.isChecked = e.currentTarget.checked; } @action uncheck = () => { this.checkbox.current!.checked = false; this.isChecked = false; } onContextMenu = (e: React.MouseEvent) => { const value = this.props.doc[this.props.keyName]; if (value instanceof Doc) { e.stopPropagation(); e.preventDefault(); ContextMenu.Instance.addItem({ description: "Open Fields", event: () => this.props.addDocTab(Docs.Create.KVPDocument(value, { _width: 300, _height: 300 }), undefined, "onRight"), icon: "layer-group" }); ContextMenu.Instance.displayMenu(e.clientX, e.clientY); } } render() { const props: FieldViewProps = { Document: this.props.doc, DataDoc: this.props.doc, LibraryPath: [], ContainingCollectionView: undefined, ContainingCollectionDoc: undefined, fieldKey: this.props.keyName, isSelected: returnFalse, select: emptyFunction, renderDepth: 1, active: returnFalse, whenActiveChanged: emptyFunction, ScreenToLocalTransform: Transform.Identity, focus: emptyFunction, PanelWidth: this.props.PanelWidth, PanelHeight: this.props.PanelHeight, addDocTab: returnFalse, pinToPres: returnZero, ContentScaling: returnOne }; const contents = ; // let fieldKey = Object.keys(props.Document).indexOf(props.fieldKey) !== -1 ? props.fieldKey : "(" + props.fieldKey + ")"; let protoCount = 0; let doc: Doc | undefined = props.Document; while (doc) { if (Object.keys(doc).includes(props.fieldKey)) { break; } protoCount++; doc = doc.proto; } const parenCount = Math.max(0, protoCount - 1); const keyStyle = protoCount === 0 ? "black" : "blue"; const hover = { transition: "0.3s ease opacity", opacity: this.isPointerOver || this.isChecked ? 1 : 0 }; return ( this.isPointerOver = true)} onPointerLeave={action(() => this.isPointerOver = false)}>
{"(".repeat(parenCount)}{props.fieldKey}{")".repeat(parenCount)}
{ return Field.toKeyValueString(props.Document, props.fieldKey); }} SetValue={(value: string) => KeyValueBox.SetField(props.Document, props.fieldKey, value)}>
); } }