-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable incremental rendering as the default in done-ssr #597
Commits on Jun 6, 2018
-
Configuration menu - View commit details
-
Copy full SHA for e0b88e5 - Browse repository at this point
Copy the full SHA e0b88e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e5ee5f - Browse repository at this point
Copy the full SHA 3e5ee5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c7a373 - Browse repository at this point
Copy the full SHA 4c7a373View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00d15f1 - Browse repository at this point
Copy the full SHA 00d15f1View commit details
Commits on Aug 1, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 9439b4f - Browse repository at this point
Copy the full SHA 9439b4fView commit details
Commits on Aug 2, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 699e71d - Browse repository at this point
Copy the full SHA 699e71dView commit details
Commits on Aug 23, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 65968e1 - Browse repository at this point
Copy the full SHA 65968e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9b27f9 - Browse repository at this point
Copy the full SHA b9b27f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for a38968e - Browse repository at this point
Copy the full SHA a38968eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fa71c3 - Browse repository at this point
Copy the full SHA 3fa71c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2a8b17 - Browse repository at this point
Copy the full SHA e2a8b17View commit details
Commits on Aug 30, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 165de78 - Browse repository at this point
Copy the full SHA 165de78View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa36b61 - Browse repository at this point
Copy the full SHA fa36b61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 808d1de - Browse repository at this point
Copy the full SHA 808d1deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ca7049 - Browse repository at this point
Copy the full SHA 3ca7049View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9b8d02 - Browse repository at this point
Copy the full SHA b9b8d02View commit details -
Configuration menu - View commit details
-
Copy full SHA for 87e4d18 - Browse repository at this point
Copy the full SHA 87e4d18View commit details
Commits on Aug 31, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 33bfa1d - Browse repository at this point
Copy the full SHA 33bfa1dView commit details
Commits on Sep 4, 2018
-
Configuration menu - View commit details
-
Copy full SHA for d2f57e8 - Browse repository at this point
Copy the full SHA d2f57e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4932754 - Browse repository at this point
Copy the full SHA 4932754View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0696684 - Browse repository at this point
Copy the full SHA 0696684View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa56996 - Browse repository at this point
Copy the full SHA fa56996View commit details -
Merge pull request #574 from donejs/done-mutation
Uses new done-mutation for incremental rendering
Configuration menu - View commit details
-
Copy full SHA for a792e0c - Browse repository at this point
Copy the full SHA a792e0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f409106 - Browse repository at this point
Copy the full SHA f409106View commit details
Commits on Sep 6, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 13afaa3 - Browse repository at this point
Copy the full SHA 13afaa3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d22c17d - Browse repository at this point
Copy the full SHA d22c17dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 94ceb64 - Browse repository at this point
Copy the full SHA 94ceb64View commit details -
Configuration menu - View commit details
-
Copy full SHA for 154a6d5 - Browse repository at this point
Copy the full SHA 154a6d5View commit details
Commits on Sep 24, 2018
-
Allow incremental rendering to occur over HTTP/1
This adds support for incremental rendering through HTTP/1. This works by attaching a `<link rel=preload>` to the document which will preload the rendering instructions, which happens in place of the H2 PUSH. Closes #582
Configuration menu - View commit details
-
Copy full SHA for 2555899 - Browse repository at this point
Copy the full SHA 2555899View commit details -
Configuration menu - View commit details
-
Copy full SHA for 05c1a76 - Browse repository at this point
Copy the full SHA 05c1a76View commit details -
Merge pull request #583 from donejs/h1
Allow incremental rendering to occur over HTTP/1
Configuration menu - View commit details
-
Copy full SHA for dc5d303 - Browse repository at this point
Copy the full SHA dc5d303View commit details
Commits on Sep 25, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6e696e4 - Browse repository at this point
Copy the full SHA 6e696e4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e0df7c - Browse repository at this point
Copy the full SHA 0e0df7cView commit details
Commits on Oct 19, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 8a8d228 - Browse repository at this point
Copy the full SHA 8a8d228View commit details -
Configuration menu - View commit details
-
Copy full SHA for 47355c7 - Browse repository at this point
Copy the full SHA 47355c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94e809a - Browse repository at this point
Copy the full SHA 94e809aView commit details
Commits on Oct 22, 2018
-
Before listening to mutations, mark the initial
set of TextNodes. This is a new API provided by done-mutatation. Doing this will ensure that we keep track of when text nodes were part of the original parsed document and which are added layer. This makes it so that we send the correct indices to the client layer.
Configuration menu - View commit details
-
Copy full SHA for 9519858 - Browse repository at this point
Copy the full SHA 9519858View commit details
Commits on Oct 23, 2018
-
Remove use of collapseTextNodes
In done-mutation 2.0 the collapseTextNodes option is no longer necessary. So this removes it and uses ir-clone instead for serialization.
Configuration menu - View commit details
-
Copy full SHA for bef6ca8 - Browse repository at this point
Copy the full SHA bef6ca8View commit details -
Use ir-clone to serialize HTML for IR
For incremental rendering we need to split up TextNodes so that they are in the IR document. This way when we start doing mutations we can correctly identify which Nodes need to be updated.
Configuration menu - View commit details
-
Copy full SHA for 73a8395 - Browse repository at this point
Copy the full SHA 73a8395View commit details -
Merge pull request #589 from donejs/start-mutations
Use ir-clone to serialize incremental rendering document
Configuration menu - View commit details
-
Copy full SHA for b89f964 - Browse repository at this point
Copy the full SHA b89f964View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8522a2 - Browse repository at this point
Copy the full SHA b8522a2View commit details -
We should be serializing the iframe document using ir-clone in order to ensure that its comment nodes are injected.
Configuration menu - View commit details
-
Copy full SHA for 6c036f4 - Browse repository at this point
Copy the full SHA 6c036f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7341a67 - Browse repository at this point
Copy the full SHA 7341a67View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70f7f4b - Browse repository at this point
Copy the full SHA 70f7f4bView commit details -
Disable nodeIndex observer when we start our own
When we start out own MutationObserver stop listening to mutations using nodeIndex. This prevents us from getting indices that are updated too soon.
Configuration menu - View commit details
-
Copy full SHA for 2c784c4 - Browse repository at this point
Copy the full SHA 2c784c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for cee32ff - Browse repository at this point
Copy the full SHA cee32ffView commit details
Commits on Oct 26, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6cd9407 - Browse repository at this point
Copy the full SHA 6cd9407View commit details -
Configuration menu - View commit details
-
Copy full SHA for 682b685 - Browse repository at this point
Copy the full SHA 682b685View commit details
Commits on Oct 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6fdb17f - Browse repository at this point
Copy the full SHA 6fdb17fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b01d1a - Browse repository at this point
Copy the full SHA 0b01d1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for adbe340 - Browse repository at this point
Copy the full SHA adbe340View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9173a48 - Browse repository at this point
Copy the full SHA 9173a48View commit details -
Merge pull request #595 from donejs/reindex
Use nodeIndex.reindex() to reindex after creating the IR frame
Configuration menu - View commit details
-
Copy full SHA for 9511bbf - Browse repository at this point
Copy the full SHA 9511bbfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1900900 - Browse repository at this point
Copy the full SHA 1900900View commit details
Commits on Oct 30, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 5a29761 - Browse repository at this point
Copy the full SHA 5a29761View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25134d4 - Browse repository at this point
Copy the full SHA 25134d4View commit details
Commits on Oct 31, 2018
-
Make incremental rendering the default
This switches the toggle so that incremental rendering is the default.
Configuration menu - View commit details
-
Copy full SHA for f2a1917 - Browse repository at this point
Copy the full SHA f2a1917View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23ac16a - Browse repository at this point
Copy the full SHA 23ac16aView commit details