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"; // Represents one row in a key value plane export interface KeyValuePairProps { rowStyle: string; fieldId: string; doc: Document; } @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 = { doc: this.props.doc, fieldKey: this.key, isSelected: () => false, select: () => { }, isTopMost: false, bindings: {}, selectOnLoad: false, } let contents = ( ); return ( {/* */}
{this.key.Name}
{ let field = props.doc.Get(props.fieldKey); if (field && field instanceof Field) { return field.ToScriptString(); } return field || ""; }} SetValue={(value: string) => { let script = CompileScript(value, undefined, true); if (!script.compiled) { return false; } let field = script(); if (field instanceof Field) { props.doc.Set(props.fieldKey, field); return true; } else { let dataField = ToField(field); if (dataField) { props.doc.Set(props.fieldKey, dataField); return true; } } return false; }}> ) } }