fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
5.5 KiB

7 years ago
;(function () {
7 years ago
function initWatch (vm, watch) {
7 years ago
vm._watchers || (vm._watchers = []);
for (var key in watch) {
7 years ago
var handler = watch[key];
7 years ago
if (BI.isArray(handler)) {
for (var i = 0; i < handler.length; i++) {
7 years ago
vm._watchers.push(createWatcher(vm, key, handler[i]));
7 years ago
}
} else {
7 years ago
vm._watchers.push(createWatcher(vm, key, handler));
7 years ago
}
}
}
7 years ago
function createWatcher (vm, keyOrFn, handler) {
return Fix.watch(vm.model, keyOrFn, _.bind(handler, vm), {
store: vm.store
7 years ago
});
7 years ago
}
7 years ago
var target = null;
7 years ago
var targetStack = [];
7 years ago
7 years ago
function pushTarget (_target) {
if (target) targetStack.push(target);
Fix.Model.target = target = _target;
7 years ago
}
7 years ago
function popTarget () {
Fix.Model.target = target = targetStack.pop();
7 years ago
}
var oldWatch = Fix.watch;
Fix.watch = function (model, expOrFn, cb, options) {
if (BI.isPlainObject(cb)) {
7 years ago
options = cb;
cb = cb.handler;
}
7 years ago
if (typeof cb === "string") {
cb = model[cb];
}
return oldWatch.call(this, model, expOrFn, function () {
7 years ago
options && options.store && pushTarget(options.store);
var res = cb.apply(this, arguments);
7 years ago
options && options.store && popTarget();
return res;
}, options);
7 years ago
};
function findStore (widget) {
var p = widget;
while (p) {
7 years ago
if (p.store || p.__cacheStore) {
7 years ago
break;
}
p = p._parent || (p.options && p.options.element);
}
if (p) {
7 years ago
widget.__cacheStore = p.store;
return p.__cacheStore || p.store;
7 years ago
}
}
7 years ago
var _init = BI.Widget.prototype._init;
BI.Widget.prototype._init = function () {
7 years ago
var self = this;
7 years ago
var needPop = false;
7 years ago
if (window.Fix && this._store) {
7 years ago
var store = findStore(this.options.element);
if (store) {
pushTarget(store);
needPop = true;
}
7 years ago
this.store = this._store();
7 years ago
needPop && popTarget();
needPop = false;
7 years ago
pushTarget(this.store);
7 years ago
if (this.store instanceof Fix.Model) {
7 years ago
this.model = this.store.model;
} else {
this.model = this.store;
}
7 years ago
needPop = true;
7 years ago
}
_init.apply(this, arguments);
7 years ago
needPop && popTarget();
7 years ago
};
7 years ago
var _init = BI.Widget.prototype._render;
BI.Widget.prototype._render = function () {
if (window.Fix && this._store) {
initWatch(this, this.watch);
}
_render.apply(this, arguments);
};
7 years ago
var unMount = BI.Widget.prototype.__d;
BI.Widget.prototype.__d = function () {
7 years ago
unMount.apply(this, arguments);
this.store && BI.isFunction(this.store.destroy) && this.store.destroy();
7 years ago
BI.each(this._watchers, function (i, unwatches) {
unwatches = BI.isArray(unwatches) ? unwatches : [unwatches];
BI.each(unwatches, function (j, unwatch) {
unwatch();
7 years ago
});
7 years ago
});
this._watchers && (this._watchers = []);
7 years ago
if (this.store) {
this.store._parent && (this.store._parent = null);
this.store = null;
}
7 years ago
};
7 years ago
7 years ago
_.each(["_mount"], function (name) {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
7 years ago
this.store && pushTarget(this.store);
7 years ago
var res = old.apply(this, arguments);
7 years ago
this.store && popTarget();
7 years ago
return res;
});
7 years ago
});
7 years ago
if (BI.isIE9Below()) {
_.each(["each", "map", "reduce", "reduceRight", "find", "filter", "reject", "every", "all", "some", "any", "max", "min",
"sortBy", "groupBy", "indexBy", "countBy", "partition",
"keys", "allKeys", "values", "pairs", "invert",
"mapObject", "findKey", "pick", "omit", "tap"], function (name) {
var old = BI[name];
BI[name] = function (obj, fn) {
return typeof fn === "function" ? old(obj, function (key, value) {
if (!(key in Fix.$$skipArray)) {
return fn.apply(this, arguments);
}
}) : old.apply(this, arguments);
};
});
7 years ago
BI.isEmpty = function (ob) {
if (BI.isPlainObject(ob) && ob.__ob__) {
return BI.keys(ob).length === 0;
}
return _.isEmpty(ob);
};
BI.keys = function (ob) {
var keys = _.keys(ob);
var nKeys = [];
for (var i = 0; i < keys.length; i++) {
if (!(keys[i] in Fix.$$skipArray)) {
nKeys.push(keys[i]);
}
}
return nKeys;
};
BI.values = function (ob) {
var keys = BI.keys(obj);
var length = keys.length;
var values = [];
for (var i = 0; i < length; i++) {
values[i] = obj[keys[i]];
}
return values;
};
BI.size = function (ob) {
if (BI.isPlainObject(ob) && ob.__ob__) {
return BI.keys(ob).length;
}
return _.size(ob);
};
BI.isEmptyObject = function (ob) {
return BI.size(ob) === 0;
};
7 years ago
}
7 years ago
BI.watch = Fix.watch;
7 years ago
}());