|
|
|
@ -1,12 +1,13 @@
|
|
|
|
|
!(function () { |
|
|
|
|
import BI from "./2.base"; |
|
|
|
|
|
|
|
|
|
function extend() { |
|
|
|
|
var target = arguments[0] || {}, length = arguments.length, i = 1, options, name, src, copy; |
|
|
|
|
let target = arguments[0] || {}, length = arguments.length, i = 1, name, copy; |
|
|
|
|
for (; i < length; i++) { |
|
|
|
|
// Only deal with non-null/undefined values
|
|
|
|
|
if ((options = arguments[i]) != null) { |
|
|
|
|
const options = arguments[i]; |
|
|
|
|
if (options !== null) { |
|
|
|
|
// Extend the base object
|
|
|
|
|
for (name in options) { |
|
|
|
|
src = target[name]; |
|
|
|
|
copy = options[name]; |
|
|
|
|
|
|
|
|
|
// Prevent never-ending loop
|
|
|
|
@ -14,91 +15,90 @@
|
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (copy !== undefined) { |
|
|
|
|
target[name] = copy; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return target; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 客户端观察者,主要处理事件的添加、删除、执行等 |
|
|
|
|
* @class BI.OB |
|
|
|
|
* @abstract |
|
|
|
|
*/ |
|
|
|
|
var OB = function (config) { |
|
|
|
|
this._constructor(config); |
|
|
|
|
}; |
|
|
|
|
BI._.extend(OB.prototype, { |
|
|
|
|
props: {}, |
|
|
|
|
export default class OB { |
|
|
|
|
// props = {};
|
|
|
|
|
|
|
|
|
|
// init = null;
|
|
|
|
|
|
|
|
|
|
init: null, |
|
|
|
|
// destroyed = null;
|
|
|
|
|
|
|
|
|
|
destroyed: null, |
|
|
|
|
constructor(config) { |
|
|
|
|
this._constructor(config); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_constructor: function (config) { |
|
|
|
|
_constructor(config) { |
|
|
|
|
this._initProps(config); |
|
|
|
|
this._init(); |
|
|
|
|
this._initRef(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_defaultConfig: function (config) { |
|
|
|
|
_defaultConfig(config) { |
|
|
|
|
return {}; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_initProps: function (config) { |
|
|
|
|
var props = this.props; |
|
|
|
|
_initProps(config) { |
|
|
|
|
let props = this.props; |
|
|
|
|
if (BI.isFunction(this.props)) { |
|
|
|
|
props = this.props(config); |
|
|
|
|
} |
|
|
|
|
var defaultProps = extend(this._defaultConfig(config), props); |
|
|
|
|
var modifiedDefaultProps = (config && config.type && BI.OB.configFunctions[config.type + ".props"]) ? BI.reduce(BI.OB.configFunctions[config.type + ".props"], function (value, conf, index) { |
|
|
|
|
const defaultProps = extend(this._defaultConfig(config), props); |
|
|
|
|
const modifiedDefaultProps = (config && config.type && OB.configFunctions[config.type + ".props"]) ? BI.reduce(OB.configFunctions[config.type + ".props"], function (value, conf, index) { |
|
|
|
|
return extend(conf, value.fn(defaultProps, config, value.opt)); |
|
|
|
|
}, {}) : null; |
|
|
|
|
this.options = extend(defaultProps, modifiedDefaultProps, config); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
|
_init() { |
|
|
|
|
this._initListeners(); |
|
|
|
|
this.init && this.init(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_initListeners: function () { |
|
|
|
|
var self = this; |
|
|
|
|
if (this.options.listeners != null) { |
|
|
|
|
BI._.each(this.options.listeners, function (lis, eventName) { |
|
|
|
|
_initListeners() { |
|
|
|
|
if (this.options.listeners !== null) { |
|
|
|
|
BI._.each(this.options.listeners, (lis, eventName) => { |
|
|
|
|
if (BI._.isFunction(lis)) { |
|
|
|
|
self.on(eventName, lis); |
|
|
|
|
this.on(eventName, lis); |
|
|
|
|
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (BI._.isArray(lis)) { |
|
|
|
|
BI._.each(lis, function (l) { |
|
|
|
|
self.on(eventName, l); |
|
|
|
|
BI._.each(lis, (l) => { |
|
|
|
|
this.on(eventName, l); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
(lis.target ? lis.target : self)[lis.once ? "once" : "on"](lis.eventName, BI._.bind(lis.action, self)); |
|
|
|
|
(lis.target ? lis.target : this)[lis.once ? "once" : "on"](lis.eventName, BI._.bind(lis.action, this)); |
|
|
|
|
}); |
|
|
|
|
delete this.options.listeners; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 获得一个当前对象的引用
|
|
|
|
|
_initRef: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
_initRef() { |
|
|
|
|
const o = this.options; |
|
|
|
|
if (o.__ref) { |
|
|
|
|
BI.isFunction(o.__ref) ? o.__ref.call(this, this) : o.__ref.current = this; |
|
|
|
|
} |
|
|
|
|
if (o.ref) { |
|
|
|
|
BI.isFunction(o.ref) ? o.ref.call(this, this) : o.ref.current = this; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 释放当前对象
|
|
|
|
|
_purgeRef: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
_purgeRef() { |
|
|
|
|
const o = this.options; |
|
|
|
|
if (o.__ref) { |
|
|
|
|
BI.isFunction(o.__ref) ? o.__ref.call(null, null) : o.__ref.current = null; |
|
|
|
|
o.__ref = null; |
|
|
|
@ -107,80 +107,78 @@
|
|
|
|
|
BI.isFunction(o.ref) ? o.ref.call(null, null) : o.ref.current = null; |
|
|
|
|
o.ref = null; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_getEvents: function () { |
|
|
|
|
_getEvents() { |
|
|
|
|
if (!BI._.isObject(this.events)) { |
|
|
|
|
this.events = {}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return this.events; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 给观察者绑定一个事件 |
|
|
|
|
* @param {String} eventName 事件的名字 |
|
|
|
|
* @param {Function} fn 事件对应的执行函数 |
|
|
|
|
*/ |
|
|
|
|
on: function (eventName, fn) { |
|
|
|
|
var self = this; |
|
|
|
|
on(eventName, fn) { |
|
|
|
|
eventName = eventName.toLowerCase(); |
|
|
|
|
var fns = this._getEvents()[eventName]; |
|
|
|
|
let fns = this._getEvents()[eventName]; |
|
|
|
|
if (!BI._.isArray(fns)) { |
|
|
|
|
fns = []; |
|
|
|
|
this._getEvents()[eventName] = fns; |
|
|
|
|
} |
|
|
|
|
fns.push(fn); |
|
|
|
|
|
|
|
|
|
return function () { |
|
|
|
|
self.un(eventName, fn); |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
return () => this.un(eventName, fn); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 给观察者绑定一个只执行一次的事件 |
|
|
|
|
* @param {String} eventName 事件的名字 |
|
|
|
|
* @param {Function} fn 事件对应的执行函数 |
|
|
|
|
*/ |
|
|
|
|
once: function (eventName, fn) { |
|
|
|
|
var proxy = function () { |
|
|
|
|
once(eventName, fn) { |
|
|
|
|
const proxy = () => { |
|
|
|
|
fn.apply(this, arguments); |
|
|
|
|
this.un(eventName, proxy); |
|
|
|
|
}; |
|
|
|
|
this.on(eventName, proxy); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 解除观察者绑定的指定事件 |
|
|
|
|
* @param {String} eventName 要解除绑定事件的名字 |
|
|
|
|
* @param {Function} fn 事件对应的执行函数,该参数是可选的,没有该参数时,将解除绑定所有同名字的事件 |
|
|
|
|
*/ |
|
|
|
|
un: function (eventName, fn) { |
|
|
|
|
un(eventName, fn) { |
|
|
|
|
eventName = eventName.toLowerCase(); |
|
|
|
|
|
|
|
|
|
/* alex:如果fn是null,就是把eventName上面所有方法都un掉*/ |
|
|
|
|
if (fn == null) { |
|
|
|
|
if (fn === null) { |
|
|
|
|
delete this._getEvents()[eventName]; |
|
|
|
|
} else { |
|
|
|
|
var fns = this._getEvents()[eventName]; |
|
|
|
|
const fns = this._getEvents()[eventName]; |
|
|
|
|
if (BI._.isArray(fns)) { |
|
|
|
|
var newFns = []; |
|
|
|
|
const newFns = []; |
|
|
|
|
BI._.each(fns, function (ifn) { |
|
|
|
|
if (ifn != fn) { |
|
|
|
|
if (ifn !== fn) { |
|
|
|
|
newFns.push(ifn); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this._getEvents()[eventName] = newFns; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 清除观察者的所有事件绑定 |
|
|
|
|
*/ |
|
|
|
|
purgeListeners: function () { |
|
|
|
|
purgeListeners() { |
|
|
|
|
/* alex:清空events*/ |
|
|
|
|
this.events = {}; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 触发绑定过的事件 |
|
|
|
@ -188,33 +186,36 @@
|
|
|
|
|
* @param {String} eventName 要触发的事件的名字 |
|
|
|
|
* @returns {Boolean} 如果事件函数返回false,则返回false并中断其他同名事件的执行,否则执行所有的同名事件并返回true |
|
|
|
|
*/ |
|
|
|
|
fireEvent: function () { |
|
|
|
|
var eventName = arguments[0].toLowerCase(); |
|
|
|
|
var fns = this._getEvents()[eventName]; |
|
|
|
|
fireEvent() { |
|
|
|
|
const eventName = arguments[0].toLowerCase(); |
|
|
|
|
const fns = this._getEvents()[eventName]; |
|
|
|
|
if (BI.isArray(fns)) { |
|
|
|
|
if (BI.isArguments(arguments[1])) { |
|
|
|
|
for (var i = 0; i < fns.length; i++) { |
|
|
|
|
for (let i = 0; i < fns.length; i++) { |
|
|
|
|
if (fns[i].apply(this, arguments[1]) === false) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
var args = Array.prototype.slice.call(arguments, 1); |
|
|
|
|
for (var i = 0; i < fns.length; i++) { |
|
|
|
|
const args = Array.prototype.slice.call(arguments, 1); |
|
|
|
|
for (let i = 0; i < fns.length; i++) { |
|
|
|
|
if (fns[i].apply(this, args) === false) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return true; |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
destroy: function () { |
|
|
|
|
destroy() { |
|
|
|
|
this.destroyed && this.destroyed(); |
|
|
|
|
this._purgeRef(); |
|
|
|
|
this.purgeListeners(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
BI.OB = BI.OB || OB; |
|
|
|
|
})(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// BI.OB = BI.OB || OB;
|
|
|
|
|
|
|
|
|
|
BI.extend(BI, { OB }); |
|
|
|
|