-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🎸 add epic plugin implementation
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const plugin = (epic) => store => { | ||
const observable = (observer) => { | ||
const dispatch = store.dispatch | ||
let live = true | ||
|
||
store.dispatch = (action) => { | ||
dispatch(action) | ||
|
||
if (live) { | ||
observer.next(action) | ||
} | ||
} | ||
|
||
const unsubscribe = () => { | ||
live = false | ||
} | ||
|
||
return unsubscribe | ||
} | ||
|
||
epic(observable)(store.dispatch) | ||
} | ||
|
||
export default plugin |
60c7a78
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.
Build version:
1.4.0-feat-epic.205
🤞feat-epic
on Travis 🎉