-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.js
93 lines (72 loc) · 1.6 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
var util = require('util');
var plugins = require('base-plugins');
function Factory(config) {
this.use = function(fn) {
fn.call(this, this);
return this;
};
this.use(plugins());
}
function Multi() {
Factory.call(this);
this.isMulti = true;
this.apps = {};
}
util.inherits(Factory, Multi);
Multi.prototype.app = function(name) {
var app = this.apps[name] = new App();
this.run(app);
return app;
};
function App() {
Factory.call(this);
this.isApp = true;
this.collections = {};
}
util.inherits(Factory, App);
App.prototype.collection = function(name) {
var collection = this.collections[name] = new Collection();
this.run(collection);
return collection;
};
function Collection() {
Factory.call(this);
this.isCollection = true;
this.items = {};
}
util.inherits(Factory, Collection);
Collection.prototype.item = function(name) {
var item = this.items[name] = new Item();
this.run(item);
return item;
};
function Item() {
Factory.call(this);
this.isItem = true;
this.fields = {};
}
util.inherits(Factory, Item);
Item.prototype.field = function(name) {
var field = this.fields[name] = new Field();
this.run(field);
return field;
};
function Field() {
Factory.call(this);
this.isField = true;
}
util.inherits(Factory, Field);
Field.prototype.field = function(key, val) {
this[key] = val;
this.run(val);
return this;
};
var multi = new Multi();
multi.use(function fn(app) {
if (!app.isItem) return fn;
console.log(app)
});
var app = multi.app('b');
var collection = app.collection('c');
var item = collection.item('d');
var field = item.field('e');