-
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.
- Loading branch information
1 parent
e38f309
commit 19a2519
Showing
6 changed files
with
85 additions
and
9 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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import { action } from 'typesafe-actions'; | ||
import { DataActionTypes } from './types'; | ||
import { Stream } from '../../client'; | ||
import { Data } from '../../client'; | ||
|
||
export const fetchRequest = (key: string) => action(DataActionTypes.FETCH_REQUEST, key); | ||
export const fetchSuccess = (data: Stream[]) => action(DataActionTypes.FETCH_SUCCESS, data); | ||
export const fetchSuccess = (data: Data[]) => action(DataActionTypes.FETCH_SUCCESS, data); | ||
export const fetchError = (message: string) => action(DataActionTypes.FETCH_ERROR, message); | ||
export const startSubscription = (key: string) => action(DataActionTypes.START_SUBSCRIPTION, key); | ||
export const endSubscription = (key: string) => action(DataActionTypes.END_SUBSCRIPTION, key); | ||
export const newMessage = (data: Data) => action(DataActionTypes.NEW_MESSAGE, data); |
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
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
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
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,7 @@ | ||
export function log(...args: any[]) { | ||
console.log('[dlphn]', ...args); | ||
} | ||
|
||
export function debug(...args: any[]) { | ||
console.debug('[dlphn]', ...args); | ||
} |