import 'react-image-lightbox/style.css'; // This only needs to be imported once in your app import "./KeyValueBox.scss"; import "./KeyValuePair.scss"; import React = require("react"); import { FieldViewProps, FieldView } from './FieldView'; import { Opt, Field } from '../../../fields/Field'; import { observer } from "mobx-react"; import { observable, action } from 'mobx'; import { Document } from '../../../fields/Document'; import { Key } from '../../../fields/Key'; import { Server } from "../../Server"; import { EditableView } from "../EditableView"; import { CompileScript, ToField } from "../../util/Scripting"; import { Transform } from '../../util/Transform'; import { returnFalse, emptyFunction, emptyDocFunction } from '../../../Utils'; // Represents one row in a key value plane export interface KeyValuePairProps { rowStyle: string; fieldId: string; doc: Document; keyWidth: number; } @observer export class KeyValuePair extends React.Component { @observable private key: Opt; constructor(props: KeyValuePairProps) { super(props); Server.GetField(this.props.fieldId, action((field: Opt) => { if (field) { this.key = field as Key; } })); } render() { if (!this.key) { return error; } let props: FieldViewProps = { Document: this.props.doc, fieldKey: this.key, isSelected: returnFalse, select: emptyFunction, isTopMost: false, selectOnLoad: false, active: returnFalse, onActiveChanged: emptyFunction, ScreenToLocalTransform: Transform.Identity, focus: emptyDocFunction, }; let contents = ( ); return (
{this.key.Name}
{ let field = props.Document.Get(props.fieldKey); if (field && field instanceof Field) { return field.ToScriptString(); } return field || ""; }} SetValue={(value: string) => { let script = CompileScript(value, { addReturn: true }); if (!script.compiled) { return false; } let res = script.run(); if (!res.success) return false; const field = res.result; if (field instanceof Field) { props.Document.Set(props.fieldKey, field); return true; } else { let dataField = ToField(field); if (dataField) { props.Document.Set(props.fieldKey, dataField); return true; } } return false; }}> ); } }