Post message based queued broadcast.
npm install @wikia/post-quecastPost Quecast - Post Message based Queued Broadcast.
It is callback powered lib for creating semi-distributed communication system between iframes and window instances.
The distinct feature of the lib is ability to remember (queue) messages so that it doesn't matter when a communicator is instantiated it will get full message history.
It is heavily inspired by Redux and NgRx and aims to create similar API.
- Installation
- Usage
- Restrictions
To install post-quecast:
``bash`
npm install @wikia/post-quecast
The most basic usage is:
`typescript
// top window that loads first
import { setupPostQuecast } from '@wikia/post-quecast';
setupPostQuecast();
`
`typescript
// anywhere, including iframes
import { Communicator } from '@wikia/post-quecast';
const communicator = new Communicator();
communicator.addListener(console.log);
communicator.dispatch({ type: 'action name', ...payload });
`
More detailed explanation can be found in API section.
More advanced examples on how to integrate PostQuecast with things like RxJs and be found in Addons Section.
- setupPostQuecast needs to be called before anything else.setupPostQuecast` needs to be called on top level window.
-