2015-10-28 17:37:17 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-21 20:25:12 +00:00
|
|
|
const constants = require('./constants');
|
|
|
|
const util = require('./util');
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-21 20:25:12 +00:00
|
|
|
const {keys} = constants;
|
|
|
|
const registeredConstructors = {};
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
module.exports = {
|
|
|
|
create,
|
|
|
|
registerConstructors,
|
|
|
|
};
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
function create(realmId, info) {
|
|
|
|
let schema = info.schema;
|
2015-10-06 07:52:15 +00:00
|
|
|
let constructor = (registeredConstructors[realmId] || {})[schema.name];
|
2015-10-02 05:56:47 +00:00
|
|
|
let object = constructor ? Object.create(constructor.prototype) : {};
|
|
|
|
let props = {};
|
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
object[keys.realm] = realmId;
|
|
|
|
object[keys.id] = info.id;
|
|
|
|
object[keys.type] = info.type;
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
for (let prop of schema.properties) {
|
|
|
|
let name = prop.name;
|
|
|
|
|
|
|
|
props[name] = {
|
2015-10-19 22:26:42 +00:00
|
|
|
get: util.getterForProperty(name),
|
|
|
|
set: util.setterForProperty(name),
|
2015-10-02 05:56:47 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.defineProperties(object, props);
|
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2015-10-06 07:52:15 +00:00
|
|
|
function registerConstructors(realmId, constructors) {
|
|
|
|
registeredConstructors[realmId] = constructors;
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|