octonom
Version:
Object Document Mapper for any database
36 lines • 1.54 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
class Collection {
constructor(model, options = {}) {
this.model = model;
this.options = options;
this.modelIdField = options.modelIdField || 'id';
// check id field in schema
const idSchema = model.schemaMap[this.modelIdField];
if (!idSchema) {
throw new Error(`Id field ${this.modelIdField} not found in model schema.`);
}
}
// trivial implementation, should be implemented efficiently for specific database
findByIds(ids) {
return __awaiter(this, void 0, void 0, function* () {
return Promise.all(ids.map(id => this.findById(id)));
});
}
toDb(model) {
return model.toObject({ unpopulate: true });
}
fromDb(doc) {
return new this.model(doc);
}
}
exports.Collection = Collection;
//# sourceMappingURL=collection.js.map