Browse Source

更新proxy

es6
guy 3 years ago
parent
commit
f3459b564e
  1. 127
      dist/fix/fix.js
  2. 933
      dist/fix/fix.proxy.js
  3. 4
      src/less/lib/background.less

127
dist/fix/fix.js vendored

@ -90,12 +90,13 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
} }
} }
var bailRE = /[^\w.$]/; // const bailRE = /[^\w.$]/
function parsePath(path) { function parsePath(path) {
if (bailRE.test(path)) { // 正常表达式比较慢,能不要的就不要了
return; // if (bailRE.test(path)) {
} // return
// }
var segments = path.split('.'); var segments = path.split('.');
return function (obj) { return function (obj) {
for (var i = 0; i < segments.length; i++) { for (var i = 0; i < segments.length; i++) {
@ -975,7 +976,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
options = options || {}; options = options || {};
options.user = true; options.user = true;
var exps = void 0; var exps = void 0;
if (_.isFunction(expOrFn) || !(exps = expOrFn.match(/[a-zA-Z0-9_.*]+|[|][|]|[&][&]|[(]|[)]/g)) || exps.length === 1 && !/\*/.test(expOrFn)) { if (_.isFunction(expOrFn) || !(exps = expOrFn.match(/[a-zA-Z0-9_.*]+|[|][|]|[&][&]|[(]|[)]/g)) || exps.length === 1 && expOrFn.indexOf("*") < 0) {
var watcher = new Watcher(model, expOrFn, cb, options); var watcher = new Watcher(model, expOrFn, cb, options);
if (options.immediate) { if (options.immediate) {
cb(watcher.value); cb(watcher.value);
@ -1016,9 +1017,10 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
if (_.has(operators, exp)) { if (_.has(operators, exp)) {
return; return;
} }
if (exp.indexOf("*") >= 0) {
//a.**或a.*形式 //a.**或a.*形式
if (/^[1-9a-zA-Z.]+(\*\*$|\*$)/.test(exp) || exp === "**") { if (/^[1-9a-zA-Z.]+(\*\*$|\*$)/.test(exp) || exp === "**" || exp === "*") {
var isGlobal = /\*\*$/.test(exp); var isGlobal = exp.indexOf("**") >= 0;
if (isGlobal) { if (isGlobal) {
//a.**的形式 //a.**的形式
exp = exp.replace(".**", ""); exp = exp.replace(".**", "");
@ -1026,115 +1028,114 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
//a.*的形式 //a.*的形式
exp = exp.replace(".*", ""); exp = exp.replace(".*", "");
} }
var getter = exp === "**" ? function (m) { var getter = exp === "**" || exp === "*" ? function (m) {
return m; return m;
} : parsePath(exp); } : parsePath(exp);
var v = getter.call(model, model); var v = getter.call(model, model);
var dep = new Dep(); var _dep = new Dep();
if (isGlobal) { if (isGlobal) {
(v.__ob__._scopeDeps || (v.__ob__._scopeDeps = [])).push(dep); (v.__ob__._scopeDeps || (v.__ob__._scopeDeps = [])).push(_dep);
} else { } else {
(v.__ob__._deps || (v.__ob__._deps = [])).push(dep); (v.__ob__._deps || (v.__ob__._deps = [])).push(_dep);
} }
var w = new Watcher(model, function () { var _w = new Watcher(model, function () {
dep.depend(); _dep.depend();
return NaN; return NaN;
}, function (newValue, oldValue, attrs) { }, function (newValue, oldValue, attrs) {
callback(i, newValue, oldValue, _.extend({ index: i }, attrs)); callback(i, newValue, oldValue, _.extend({ index: i }, attrs));
}, options); }, options);
watchers.push(function unwatchFn() { watchers.push(function unwatchFn() {
w.teardown(); _w.teardown();
v.__ob__._scopeDeps && remove(v.__ob__._scopeDeps, dep); v.__ob__._scopeDeps && remove(v.__ob__._scopeDeps, _dep);
v.__ob__._deps && remove(v.__ob__._deps, dep); v.__ob__._deps && remove(v.__ob__._deps, _dep);
}); });
return; return;
} }
// **.a.**的情况,场景:a.b.c, 如果用b.**监听, a被重新赋值b上的_scopeDes就不存在了 // **.a.**的情况,场景:a.b.c, 如果用b.**监听, a被重新赋值b上的_scopeDes就不存在了
if (/^(\*\*\.)+[1-9a-zA-Z]+(\.\*\*$)/.test(exp)) { if (/^(\*\*\.)+[1-9a-zA-Z]+(\.\*\*$)/.test(exp)) {
//先获取到能获取到的对象 //先获取到能获取到的对象
var paths = exp.split("."); var _paths = exp.split(".");
var currentModel = model[paths[1]]; var _currentModel = model[_paths[1]];
exp = paths[1] + ".**"; exp = _paths[1] + ".**";
//补全路径 //补全路径
var parent = currentModel.__ob__.parent, var _parent = _currentModel.__ob__.parent,
root = currentModel.__ob__; _root = _currentModel.__ob__;
while (parent) { while (_parent) {
exp = '*.' + exp; exp = '*.' + exp;
root = parent; _root = _parent;
parent = parent.parent; _parent = _parent.parent;
} }
var regStr = routeToRegExp(exp); var _regStr = routeToRegExp(exp);
var _dep = new Dep(); var _dep2 = new Dep();
root._globalDeps || (root._globalDeps = {}); _root._globalDeps || (_root._globalDeps = {});
if (_.isArray(root._globalDeps[regStr])) { if (_.isArray(_root._globalDeps[_regStr])) {
root._globalDeps[regStr].push(_dep); _root._globalDeps[_regStr].push(_dep2);
} else { } else {
root._globalDeps[regStr] = [_dep]; _root._globalDeps[_regStr] = [_dep2];
} }
var _w = new Watcher(currentModel, function () { var _w2 = new Watcher(_currentModel, function () {
_dep.depend(); _dep2.depend();
return NaN; return NaN;
}, function (newValue, oldValue, attrs) { }, function (newValue, oldValue, attrs) {
callback(i, newValue, oldValue, _.extend({ index: i }, attrs)); callback(i, newValue, oldValue, _.extend({ index: i }, attrs));
}, options); }, options);
watchers.push(function unwatchFn() { watchers.push(function unwatchFn() {
if (root._globalDeps) { if (_root._globalDeps) {
remove(root._globalDeps[regStr], _dep); remove(_root._globalDeps[_regStr], _dep2);
if (root._globalDeps[regStr].length === 0) { if (_root._globalDeps[_regStr].length === 0) {
delete root._globalDeps[regStr]; delete _root._globalDeps[_regStr];
_w.teardown(); _w2.teardown();
} }
} }
}); });
return; return;
} }
if (/\*\*$|\*$/.test(exp)) { // 再有结尾有*的就不支持了
if (exp[exp.length - 1] === "*") {
throw new Error('not support'); throw new Error('not support');
} }
//其他含有*的情况,如*.a,*.*.a,a.*.a //其他含有*的情况,如*.a,*.*.a,a.*.a
if (/\*/.test(exp)) { var currentModel = model;
var _currentModel = model;
//先获取到能获取到的对象 //先获取到能获取到的对象
var _paths = exp.split("."); var paths = exp.split(".");
for (var _i = 0, len = _paths.length; _i < len; _i++) { for (var _i = 0, len = paths.length; _i < len; _i++) {
if (_paths[_i] === "*") { if (paths[_i] === "*") {
break; break;
} }
_currentModel = model[_paths[_i]]; currentModel = model[paths[_i]];
} }
exp = exp.substr(exp.indexOf("*")); exp = exp.substr(exp.indexOf("*"));
//补全路径 //补全路径
var _parent = _currentModel.__ob__.parent, var parent = currentModel.__ob__.parent,
_root = _currentModel.__ob__; root = currentModel.__ob__;
while (_parent) { while (parent) {
exp = '*.' + exp; exp = '*.' + exp;
_root = _parent; root = parent;
_parent = _parent.parent; parent = parent.parent;
} }
var _regStr = routeToRegExp(exp); var regStr = routeToRegExp(exp);
var _dep2 = new Dep(); var dep = new Dep();
_root._globalDeps || (_root._globalDeps = {}); root._globalDeps || (root._globalDeps = {});
if (_.isArray(_root._globalDeps[_regStr])) { if (_.isArray(root._globalDeps[regStr])) {
_root._globalDeps[_regStr].push(_dep2); root._globalDeps[regStr].push(dep);
} else { } else {
_root._globalDeps[_regStr] = [_dep2]; root._globalDeps[regStr] = [dep];
} }
var _w2 = new Watcher(_currentModel, function () { var w = new Watcher(currentModel, function () {
_dep2.depend(); dep.depend();
return NaN; return NaN;
}, function (newValue, oldValue, attrs) { }, function (newValue, oldValue, attrs) {
callback(i, newValue, oldValue, _.extend({ index: i }, attrs)); callback(i, newValue, oldValue, _.extend({ index: i }, attrs));
}, options); }, options);
watchers.push(function unwatchFn() { watchers.push(function unwatchFn() {
if (_root._globalDeps) { if (root._globalDeps) {
remove(_root._globalDeps[_regStr], _dep2); remove(root._globalDeps[regStr], dep);
if (root._globalDeps[regStr].length === 0) {
if (_root._globalDeps[_regStr].length === 0) { delete root._globalDeps[regStr];
delete _root._globalDeps[_regStr]; w.teardown();
_w2.teardown();
} }
} }
}); });

933
dist/fix/fix.proxy.js vendored

File diff suppressed because it is too large Load Diff

4
src/less/lib/background.less

@ -8,7 +8,3 @@
@background-trans-color-disabled: "background/trans_disable.png"; @background-trans-color-disabled: "background/trans_disable.png";
@background-auto-color-square-normal: "icon/auto_square_normal.png"; @background-auto-color-square-normal: "icon/auto_square_normal.png";
@background-auto-color-no-square-normal: "icon/auto_no_square_normal.png"; @background-auto-color-no-square-normal: "icon/auto_no_square_normal.png";
@background-farbtastic-wheel:"background/wheel.png";
@background-farbtastic-overlay:"background/mask.png";
@background-farbtastic-marker:"background/marker.png";

Loading…
Cancel
Save