diff options
author | bobzel <zzzman@gmail.com> | 2019-02-28 09:21:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-28 09:21:10 -0500 |
commit | 5875fa1622a1270aebb56f18b17b553f10bed9dd (patch) | |
tree | c938fd15367ac5ec135347654baf8e3cd387309a /src/fields/KVPField.ts | |
parent | 9c9aea92d9a330f5826735c3c3e07ec35b325cc2 (diff) | |
parent | f3085f427ec7c324d0a21d710555e79e8a9704b5 (diff) |
Merge pull request #14 from browngraphicslab/kvp
Kvp
Diffstat (limited to 'src/fields/KVPField.ts')
-rw-r--r-- | src/fields/KVPField.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/fields/KVPField.ts b/src/fields/KVPField.ts new file mode 100644 index 000000000..a7ecc0768 --- /dev/null +++ b/src/fields/KVPField.ts @@ -0,0 +1,30 @@ +import { BasicField } from "./BasicField" +import { FieldId } from "./Field"; +import { Types } from "../server/Message"; +import { Document } from "./Document" + +export class KVPField extends BasicField<Document> { + constructor(data: Document | undefined = undefined, id?: FieldId, save: boolean = true) { + super(data == undefined ? new Document() : data, save, id); + } + + toString(): string { + return this.Data.Title; + } + + ToScriptString(): string { + return `new KVPField("${this.Data}")`; + } + + Copy() { + return new KVPField(this.Data); + } + + ToJson(): { type: Types, data: Document, _id: string } { + return { + type: Types.Text, + data: this.Data, + _id: this.Id + } + } +}
\ No newline at end of file |