This repository was archived by the owner on Apr 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
WIP: Rewrite #67
Merged
WIP: Rewrite #67
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Closed
Excellent list of changes! Are you sure you want to adopt rxjs v5 when it's not stable yet? I've been told that it's not ready for even simple production use-cases atm. Not sure what the eta is on it becoming stable. |
@jadbox I'm anticipating that this will take me longer to complete than RxJS 😛 |
72fdedd
to
30dd2cd
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rewriting Yolk because I've learned some shit.
Notable changes will be:
(need to be able to destroy subscriptions)createEventHandler
as a top-level function?createEventHandler
will be just a wrapper for a Subject. allows anyone to use Subjects as eventhandlers. Wrap Subject in a function if injected as a prop to an event handler.(push to a later version)createCursor
will create an overloaded Subject that will add an additionalrefine
method to scope data. Possibly also create acreateContext
which wraps a cursor allowing you access it from where ever in the tree, e.g.move DOM diffing to Web Worker threads(push to a later version. should be pretty easy though)