-
-
Save asauber/8a64d5f176dcca72aa00320d2674037c to your computer and use it in GitHub Desktop.
new_events_observable.js
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
import * as Rx from 'rxjs/Rx'; | |
import { API_ROOT } from 'src/constants'; | |
import Axios, { AxiosResponse } from 'axios'; | |
import * as moment from 'moment'; | |
function createDatestamp() { | |
return moment().utc().format('YYYY-MM-DDTHH:mm:ss'); | |
} | |
let datestamp = createDatestamp(); | |
type EventResponse = AxiosResponse<Linode.ManyResourceState<Linode.Event>>; | |
const initial$ = Rx.Observable | |
.defer(() => | |
Rx.Observable | |
.fromPromise( | |
Axios.get(`${API_ROOT}/account/events`) | |
.then( | |
(response: EventResponse) => response.data.data, | |
), | |
)); | |
/** Get events. */ | |
const polling$ = Rx.Observable | |
.interval(5000) | |
.flatMap(() => | |
Rx.Observable | |
.fromPromise( | |
Axios.get( | |
`${API_ROOT}/account/events`, | |
{ headers: { 'X-Filter': JSON.stringify({ created: { '+gt': datestamp } }) } }) | |
.then((response: EventResponse) => response.data.data), | |
), | |
); | |
linodeEvents$ = Rx.Observable(); | |
const stream$: Rx.Observable<Linode.Event[]> = Rx.Observable | |
.merge(initial$, polling$) | |
.scan( | |
(_, value: Linode.Event[]) => { | |
if (value[0]) { | |
datestamp = value[0].created; | |
} | |
value.map(lEvent => linodeEvents$.next(lEvent)) | |
return null; /* nothing consumes this */ | |
}, | |
null, | |
); | |
linodeEvents$.publish(); | |
/** Example of how we'd get the events for the dropdown. */ | |
exp$.subscribe( | |
(event: Linode.Event) => console.log('Event: ', event), | |
); | |
/** Example of how we would get the badge count. */ | |
exp$ | |
.map(event => /* use this event to update a leaky bucket in local state*/) | |
exp$.connect(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment