making the construction of the mockview lazy
This commit is contained in:
parent
a933a419dd
commit
8df8168d1c
|
@ -7,4 +7,4 @@
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
|
|
||||||
(define version "1.191")
|
(define version "1.192")
|
||||||
|
|
|
@ -140,7 +140,8 @@
|
||||||
// includes a cursor to the currently focused dom, the pending
|
// includes a cursor to the currently focused dom, the pending
|
||||||
// actions to perform on the actual view, and a nonce to detect
|
// actions to perform on the actual view, and a nonce to detect
|
||||||
// freshness of the MockView.
|
// freshness of the MockView.
|
||||||
var MockView = function(cursor, pendingActions, eventHandlers, nonce) {
|
var MockView = function(lazyCursor, cursor, pendingActions, eventHandlers, nonce) {
|
||||||
|
this.lazyCursor = lazyCursor;
|
||||||
this.cursor = cursor;
|
this.cursor = cursor;
|
||||||
|
|
||||||
// (listof (view -> void))
|
// (listof (view -> void))
|
||||||
|
@ -152,6 +153,13 @@
|
||||||
|
|
||||||
var isMockView = plt.baselib.makeClassPredicate(MockView);
|
var isMockView = plt.baselib.makeClassPredicate(MockView);
|
||||||
|
|
||||||
|
MockView.prototype.getCursor = function() {
|
||||||
|
if (this.cursor === void(0)) {
|
||||||
|
this.cursor = this.lazyCursor();
|
||||||
|
}
|
||||||
|
return this.cursor;
|
||||||
|
};
|
||||||
|
|
||||||
MockView.prototype.toString = function() {
|
MockView.prototype.toString = function() {
|
||||||
return "<#view>";
|
return "<#view>";
|
||||||
};
|
};
|
||||||
|
@ -163,7 +171,8 @@
|
||||||
|
|
||||||
MockView.prototype.act = function(actionForCursor, actionForEventHandlers, actionForReal) {
|
MockView.prototype.act = function(actionForCursor, actionForEventHandlers, actionForReal) {
|
||||||
if (arguments.length !== 3) { throw new Error("act: insufficient arguments"); }
|
if (arguments.length !== 3) { throw new Error("act: insufficient arguments"); }
|
||||||
return new MockView(actionForCursor(this.cursor),
|
return new MockView(undefined,
|
||||||
|
actionForCursor(this.getCursor()),
|
||||||
plt.baselib.lists.makePair(actionForReal, this.pendingActions),
|
plt.baselib.lists.makePair(actionForReal, this.pendingActions),
|
||||||
actionForEventHandlers(this.eventHandlers),
|
actionForEventHandlers(this.eventHandlers),
|
||||||
this.nonce);
|
this.nonce);
|
||||||
|
@ -194,7 +203,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.getText = function() {
|
MockView.prototype.getText = function() {
|
||||||
var tree = this.cursor.node;
|
var tree = this.getCursor().node;
|
||||||
return treeText(tree);
|
return treeText(tree);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -212,11 +221,11 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.getAttr = function(name) {
|
MockView.prototype.getAttr = function(name) {
|
||||||
return $(this.cursor.node[0]).attr(name);
|
return $(this.getCursor().node[0]).attr(name);
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.hasAttr = function(name) {
|
MockView.prototype.hasAttr = function(name) {
|
||||||
return $(this.cursor.node[0]).attr(name) !== undefined;
|
return $(this.getCursor().node[0]).attr(name) !== undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -256,7 +265,7 @@
|
||||||
|
|
||||||
|
|
||||||
MockView.prototype.getCss = function(name) {
|
MockView.prototype.getCss = function(name) {
|
||||||
return $(this.cursor.node[0]).css(name);
|
return $(this.getCursor().node[0]).css(name);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -278,7 +287,7 @@
|
||||||
|
|
||||||
|
|
||||||
MockView.prototype.getFormValue = function() {
|
MockView.prototype.getFormValue = function() {
|
||||||
return $(this.cursor.node[0]).val();
|
return $(this.getCursor().node[0]).val();
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.updateFormValue = function(value) {
|
MockView.prototype.updateFormValue = function(value) {
|
||||||
|
@ -412,8 +421,8 @@
|
||||||
|
|
||||||
// HACK: every node that is bound needs to have an id. We
|
// HACK: every node that is bound needs to have an id. We
|
||||||
// enforce this by mutating the node.
|
// enforce this by mutating the node.
|
||||||
if (! this.cursor.node[0].id) {
|
if (! this.getCursor().node[0].id) {
|
||||||
this.cursor.node[0].id = ("__webWorldId_" + mockViewIdGensym++);
|
this.getCursor().node[0].id = ("__webWorldId_" + mockViewIdGensym++);
|
||||||
}
|
}
|
||||||
return this.act(
|
return this.act(
|
||||||
function(cursor) {
|
function(cursor) {
|
||||||
|
@ -423,7 +432,7 @@
|
||||||
var handler = new EventHandler(name,
|
var handler = new EventHandler(name,
|
||||||
new DomEventSource(
|
new DomEventSource(
|
||||||
name,
|
name,
|
||||||
that.cursor.node[0].id),
|
that.getCursor().node[0].id),
|
||||||
worldF);
|
worldF);
|
||||||
var newHandlers = eventHandlers.concat([handler]);
|
var newHandlers = eventHandlers.concat([handler]);
|
||||||
return newHandlers;
|
return newHandlers;
|
||||||
|
@ -548,31 +557,31 @@
|
||||||
|
|
||||||
|
|
||||||
MockView.prototype.id = function() {
|
MockView.prototype.id = function() {
|
||||||
return this.cursor.node[0].id;
|
return this.getCursor().node[0].id;
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.isUpMovementOk = function() {
|
MockView.prototype.isUpMovementOk = function() {
|
||||||
return this.cursor.canUp();
|
return this.getCursor().canUp();
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.isDownMovementOk = function() {
|
MockView.prototype.isDownMovementOk = function() {
|
||||||
return this.cursor.canDown();
|
return this.getCursor().canDown();
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.isLeftMovementOk = function() {
|
MockView.prototype.isLeftMovementOk = function() {
|
||||||
return this.cursor.canLeft();
|
return this.getCursor().canLeft();
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.isRightMovementOk = function() {
|
MockView.prototype.isRightMovementOk = function() {
|
||||||
return this.cursor.canRight();
|
return this.getCursor().canRight();
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.isForwardMovementOk = function() {
|
MockView.prototype.isForwardMovementOk = function() {
|
||||||
return this.cursor.canSucc();
|
return this.getCursor().canSucc();
|
||||||
};
|
};
|
||||||
|
|
||||||
MockView.prototype.isBackwardMovementOk = function() {
|
MockView.prototype.isBackwardMovementOk = function() {
|
||||||
return this.cursor.canPred();
|
return this.getCursor().canPred();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -636,7 +645,9 @@
|
||||||
|
|
||||||
View.prototype.getMockAndResetFocus = function(nonce) {
|
View.prototype.getMockAndResetFocus = function(nonce) {
|
||||||
this.focus = this.top;
|
this.focus = this.top;
|
||||||
return new MockView(domToArrayTreeCursor($(this.top).get(0)),
|
var that = this;
|
||||||
|
return new MockView(function() { return domToArrayTreeCursor($(that.top).get(0)); },
|
||||||
|
undefined,
|
||||||
EMPTY_PENDING_ACTIONS,
|
EMPTY_PENDING_ACTIONS,
|
||||||
this.eventHandlers.slice(0),
|
this.eventHandlers.slice(0),
|
||||||
nonce);
|
nonce);
|
||||||
|
@ -695,7 +706,7 @@
|
||||||
}
|
}
|
||||||
return onSuccess(new View(dom.get(0), []));
|
return onSuccess(new View(dom.get(0), []));
|
||||||
} else if (isMockView(x)) {
|
} else if (isMockView(x)) {
|
||||||
return onSuccess(new View(arrayTreeToDomNode(x.cursor.top().node),
|
return onSuccess(new View(arrayTreeToDomNode(x.getCursor().top().node),
|
||||||
x.eventHandlers.slice(0)));
|
x.eventHandlers.slice(0)));
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
|
@ -721,7 +732,8 @@
|
||||||
} catch (exn1) {
|
} catch (exn1) {
|
||||||
return onFail(exn1);
|
return onFail(exn1);
|
||||||
}
|
}
|
||||||
return onSuccess(new MockView(domToArrayTreeCursor(dom.get(0)),
|
return onSuccess(new MockView(undefined,
|
||||||
|
domToArrayTreeCursor(dom.get(0)),
|
||||||
EMPTY_PENDING_ACTIONS,
|
EMPTY_PENDING_ACTIONS,
|
||||||
[],
|
[],
|
||||||
undefined));
|
undefined));
|
||||||
|
@ -731,7 +743,8 @@
|
||||||
} catch (exn2) {
|
} catch (exn2) {
|
||||||
return onFail(exn2);
|
return onFail(exn2);
|
||||||
}
|
}
|
||||||
return onSuccess(new MockView(domToArrayTreeCursor(dom),
|
return onSuccess(new MockView(undefined,
|
||||||
|
domToArrayTreeCursor(dom),
|
||||||
EMPTY_PENDING_ACTIONS,
|
EMPTY_PENDING_ACTIONS,
|
||||||
[],
|
[],
|
||||||
undefined));
|
undefined));
|
||||||
|
@ -759,7 +772,7 @@
|
||||||
}
|
}
|
||||||
return onSuccess(dom.get(0));
|
return onSuccess(dom.get(0));
|
||||||
} else if (isMockView(x)) {
|
} else if (isMockView(x)) {
|
||||||
return onSuccess(arrayTreeToDomNode(x.cursor.top().node));
|
return onSuccess(arrayTreeToDomNode(x.getCursor().top().node));
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
dom = plt.baselib.format.toDomNode(x);
|
dom = plt.baselib.format.toDomNode(x);
|
||||||
|
@ -1310,7 +1323,7 @@
|
||||||
actions[i](view);
|
actions[i](view);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
view.top = arrayTreeToDomNode(newMockView.cursor.top().node);
|
view.top = arrayTreeToDomNode(newMockView.getCursor().top().node);
|
||||||
view.initialRender(top);
|
view.initialRender(top);
|
||||||
eventHandlers = newMockView.eventHandlers.slice(0);
|
eventHandlers = newMockView.eventHandlers.slice(0);
|
||||||
view.eventHandlers = eventHandlers;
|
view.eventHandlers = eventHandlers;
|
||||||
|
@ -1604,7 +1617,7 @@
|
||||||
|
|
||||||
var checkMockViewOnElement = plt.baselib.check.makeCheckArgumentType(
|
var checkMockViewOnElement = plt.baselib.check.makeCheckArgumentType(
|
||||||
function(x) {
|
function(x) {
|
||||||
return isMockView(x) && (!(x.cursor.isOnAtomicElement()));
|
return isMockView(x) && (!(x.getCursor().isOnAtomicElement()));
|
||||||
},
|
},
|
||||||
'element-focused view');
|
'element-focused view');
|
||||||
|
|
||||||
|
@ -2182,7 +2195,7 @@
|
||||||
1,
|
1,
|
||||||
function(MACHINE) {
|
function(MACHINE) {
|
||||||
var mockView = checkMockView(MACHINE, 'view-hide', 0);
|
var mockView = checkMockView(MACHINE, 'view-hide', 0);
|
||||||
var domNode = arrayTreeToDomNode(mockView.cursor.top().node);
|
var domNode = arrayTreeToDomNode(mockView.getCursor().top().node);
|
||||||
return domToXexp(domNode);
|
return domToXexp(domNode);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user