-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Live Preview fixes #6889
Live Preview fixes #6889
Changes from 4 commits
0b56e65
d687d68
2740b14
f25ad49
b3d8d34
8904b1d
feda20a
ff4ebab
2a7c1c2
7996e9d
f144591
0e300ad
39de981
e34e931
7bfddd1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -154,6 +154,9 @@ define(function LiveDevelopment(require, exports, module) { | |
| var _liveDocument; // the document open for live editing. | ||
| var _relatedDocuments; // CSS and JS documents that are used by the live HTML document | ||
| var _openDeferred; // promise returned for each call to open() | ||
|
|
||
| // Disallow re-entrancy of loadAgents() | ||
| var _loadAgentsPromise; | ||
|
|
||
| /** | ||
| * Current live preview server | ||
|
|
@@ -545,11 +548,18 @@ define(function LiveDevelopment(require, exports, module) { | |
|
|
||
| /** Load the agents */ | ||
| function loadAgents() { | ||
| // If we're already loading agents return same promise | ||
| if (_loadAgentsPromise) { | ||
| return _loadAgentsPromise; | ||
| } | ||
|
|
||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like a reasonable fix, but why was it getting called twice?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| var result = new $.Deferred(), | ||
| promises = [], | ||
| enableAgentsPromise, | ||
| allAgentsPromise; | ||
|
|
||
| _loadAgentsPromise = result.promise(); | ||
|
|
||
| _setStatus(STATUS_LOADING_AGENTS); | ||
|
|
||
| // load agents in parallel | ||
|
|
@@ -598,21 +608,25 @@ define(function LiveDevelopment(require, exports, module) { | |
|
|
||
| allAgentsPromise.fail(result.reject); | ||
|
|
||
| // show error loading live dev dialog | ||
| result.fail(function () { | ||
| _setStatus(STATUS_ERROR); | ||
|
|
||
| Dialogs.showModalDialog( | ||
| Dialogs.DIALOG_ID_ERROR, | ||
| Strings.LIVE_DEVELOPMENT_ERROR_TITLE, | ||
| Strings.LIVE_DEV_LOADING_ERROR_MESSAGE | ||
| ); | ||
| }); | ||
| result | ||
| .fail(function () { | ||
| // show error loading live dev dialog | ||
| _setStatus(STATUS_ERROR); | ||
|
|
||
| Dialogs.showModalDialog( | ||
| Dialogs.DIALOG_ID_ERROR, | ||
| Strings.LIVE_DEVELOPMENT_ERROR_TITLE, | ||
| Strings.LIVE_DEV_LOADING_ERROR_MESSAGE | ||
| ); | ||
| }) | ||
| .always(function () { | ||
| _loadAgentsPromise = null; | ||
| }); | ||
|
|
||
| // resolve/reject the open() promise after agents complete | ||
| result.then(_openDeferred.resolve, _openDeferred.reject); | ||
|
|
||
| return result.promise(); | ||
| return _loadAgentsPromise; | ||
| } | ||
|
|
||
| /** | ||
|
|
@@ -752,7 +766,12 @@ define(function LiveDevelopment(require, exports, module) { | |
| $(Inspector.Page).off(".livedev"); | ||
| $(Inspector).off(".livedev"); | ||
|
|
||
| unloadAgents(); | ||
| // Wait if agents are loading | ||
| if (_loadAgentsPromise) { | ||
| _loadAgentsPromise.always(unloadAgents); | ||
| } else { | ||
| unloadAgents(); | ||
| } | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jasonsanjose Another case for better handling of |
||
|
|
||
| // Close live documents | ||
| _closeDocuments(); | ||
|
|
@@ -816,11 +835,11 @@ define(function LiveDevelopment(require, exports, module) { | |
| } | ||
|
|
||
| if (_openDeferred) { | ||
| _doInspectorDisconnect(doCloseWindow).done(cleanup); | ||
|
|
||
| if (_openDeferred.state() === "pending") { | ||
| _openDeferred.reject(); | ||
| } | ||
|
|
||
| _doInspectorDisconnect(doCloseWindow).done(cleanup); | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like a pending _openDeferred should be rejected before disconnecting. This makes the scenario I was using seem to be more reliable when switching files. |
||
| } else { | ||
| // Deferred may not be created yet | ||
| // We always close attempt to close the live dev connection on | ||
|
|
@@ -886,10 +905,16 @@ define(function LiveDevelopment(require, exports, module) { | |
|
|
||
| /** | ||
| * Unload and reload agents | ||
| * @return {jQuery.Promise} Resolves once the agents are loaded | ||
| */ | ||
| function reconnect() { | ||
| if (_loadAgentsPromise) { | ||
| // Agents are already loading, so don't unload | ||
| return _loadAgentsPromise; | ||
| } | ||
|
|
||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jasonsanjose I added better handling of |
||
| unloadAgents(); | ||
| loadAgents(); | ||
| return loadAgents(); | ||
| } | ||
|
|
||
| /** | ||
|
|
@@ -905,7 +930,7 @@ define(function LiveDevelopment(require, exports, module) { | |
| * Create a promise that resolves when the interstitial page has | ||
| * finished loading. | ||
| * | ||
| * @return {jQuery.Promise} | ||
| * @return {jQuery.Promise} Resolves once page is loaded | ||
| */ | ||
| function _waitForInterstitialPageLoad() { | ||
| var deferred = $.Deferred(), | ||
|
|
@@ -954,7 +979,8 @@ define(function LiveDevelopment(require, exports, module) { | |
| // navigate to the page first before loading can complete. | ||
| // To accomodate this, we load all agents and navigate in | ||
| // parallel. | ||
| loadAgents(); | ||
| loadAgents(); // TODO - should we use Async.doInParallel() here? | ||
| // We could also separate into preLoadAgents() and postLoadAgents() | ||
|
|
||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jasonsanjose Should we use Async.doInParallel() here? Another option would be to separate into preLoadAgents() and postLoadAgents().
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is effectively already parallel. Load agents will kick off asynchronously, and so does the next statement here
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problem is that you can receive 2 error messages at different times. |
||
| _getInitialDocFromCurrent().done(function (doc) { | ||
| if (doc) { | ||
|
|
@@ -1018,14 +1044,14 @@ define(function LiveDevelopment(require, exports, module) { | |
| var browserStarted = false, | ||
| retryCount = 0; | ||
|
|
||
| // Open the live browser if the connection fails, retry 6 times | ||
| // Open the live browser if the connection fails, retry 3 times | ||
| Inspector.connectToURL(launcherUrl).fail(function onConnectFail(err) { | ||
| if (err === "CANCEL") { | ||
| _openDeferred.reject(err); | ||
| return; | ||
| } | ||
|
|
||
| if (retryCount > 6) { | ||
| if (retryCount > 3) { | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Total tries was decreased because timeout was increased. |
||
| _setStatus(STATUS_ERROR); | ||
|
|
||
| var dialogPromise = Dialogs.showModalDialog( | ||
|
|
@@ -1053,9 +1079,11 @@ define(function LiveDevelopment(require, exports, module) { | |
| _close() | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm questioning now whether or not this is useful. At this point, we've spun up the server and created the main live document, but we just haven't established a connection to Chrome. Either it's not running or we can't connect to the debug port. Does this call to close even make sense? If not, then I think we can remove it and your change below goes back to |
||
| .done(function () { | ||
| browserStarted = false; | ||
| window.setTimeout(function () { | ||
| _openDeferred.resolve(); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove. Seems wrong to resolve this promise since the caller will think live dev is open.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reason for that is that a new It didn't seem like an error case since user clicked OK to Relaunch, but maybe |
||
| var doc = _getCurrentDocument(); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like we should just call
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That was my original thought, but it seemed like too big of a refactor. I'll take another look. |
||
| _prepareServer(doc).done(function () { | ||
| // After browser closes, try to open the interstitial page again | ||
| _openInterstitialPage(); | ||
| _doLaunchAfterServerReady(doc); | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Try to restart after Relaunch dialog is totally broken.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, there are some JSLint errors due to functions getting called before they are defined, but I wanted to make sure this is the right approach before I start changing the order of functions.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How are you forcing
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have a set of 4 pages. The simplest set has no external CSS, JS, images, etc. Actually, text & markup is identical, so I gave each one a different bg color just to see a difference. Let me know if you want me to send you a .zip. Recipe:
Details:
|
||
| }); | ||
| }) | ||
| .fail(function (err) { | ||
|
|
@@ -1119,7 +1147,7 @@ define(function LiveDevelopment(require, exports, module) { | |
| if (exports.status !== STATUS_ERROR) { | ||
| window.setTimeout(function retryConnect() { | ||
| Inspector.connectToURL(launcherUrl).fail(onConnectFail); | ||
| }, 500); | ||
| }, 3000); | ||
| } | ||
| }); | ||
| } | ||
|
|
@@ -1293,10 +1321,10 @@ define(function LiveDevelopment(require, exports, module) { | |
|
|
||
| if (wasRequested) { | ||
| // Unload and reload agents before reloading the page | ||
| reconnect(); | ||
|
|
||
| // Reload HTML page | ||
| Inspector.Page.reload(); | ||
| reconnect().done(function () { | ||
| // Reload HTML page | ||
| Inspector.Page.reload(); | ||
| }); | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In theory, the |
||
| } | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 404 error message provides a url that is not added to error message. This case I saw ended up not being related to this code, but this is good info to display.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.