Sha256: 26058917f6411bb0c66e7ac3c44d76a203c5ed0ae1392018d2f54063400d243c
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
const mongoose = require('mongoose/browser'); const Code = require('./Code.js'); const cql = require('cql-execution'); const Id = require('../Id'); const [Schema] = [mongoose.Schema]; function DataElementSchema(add, options) { const extended = new Schema({ dataElementCodes: { type: [] }, description: { type: String }, codeListId: { type: String }, id: { type: Id.IdSchema, default() { return new Id.Id({ value: (this._id ? this._id.toString() : mongoose.Types.ObjectId().toString()), namingSystem: null }); }, }, }, options); if (add) { extended.add(add); } // Returns all of the codes on this data element in a format usable by // the cql-execution framework. extended.methods.getCode = function getCode() { return this.dataElementCodes.map(code => new cql.Code(code.code, code.codeSystem, code.version, code.descriptor)); }; // Return the first code on this data element in a format usable by // the cql-execution framework. extended.methods.code = function code() { if (this.dataElementCodes && this.dataElementCodes[0]) { const qdmCode = this.dataElementCodes[0]; return new cql.Code(qdmCode.code, qdmCode.codeSystem, qdmCode.version, qdmCode.descriptor); } return null; }; return extended; } module.exports.DataElementSchema = DataElementSchema;
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cqm-models-1.1.1.0 | app/assets/javascripts/basetypes/DataElement.js |