foam-framework
Version:
MVC metaprogramming framework
63 lines (50 loc) • 1.52 kB
JavaScript
/**
* @license
* Copyright 2012 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var smodels;
(function() {
var ps = {};
var ms = [];
function typeToModel(key) {
var type = schemas.types[key];
if ( ! type.model_ ) {
var mps = [];
for ( var i = 0 ; i < type.properties.length ; i++ ) {
mps.push(ps[type.properties[i]]);
}
ms.push(Model.create({
name: type.id,
extendsModel: type.ancestors.length ? type.ancestors[type.ancestors.length-1] : '',
label: type.label,
help: type.comment_plain,
properties: mps
}));
console.log('model:', type.id);
}
return type.model_;
}
for ( var key in schemas.properties ) {
var p = schemas.properties[key];
ps[p.id] = Property.create({
name: p.id,
label: p.label,
help: p.comment_plain
});
console.log(p.id);
}
for ( var key in schemas.types ) typeToModel(key);
smodels = ms;
})();