jiti-meet/react/features/chat
Saúl Ibarra Corretgé 0e92e73789 chore: use strings as action types
Using anything non-serializable for action types is discouraged:
https://redux.js.org/faq/actions#actions

In fact, this is the Flow definition for dispatching actions:

declare export type DispatchAPI<A> = (action: A) => A;
declare export type Dispatch<A: { type: $Subtype<string> }> = DispatchAPI<A>;

Note how the `type` field is defined as a subtype of string, which Symbol isn’t.
2019-03-21 14:47:55 +01:00
..
components fix(chat): prevent empty messages 2019-03-09 12:09:29 +01:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js [RN] Add chat functionality 2019-01-15 11:33:12 +01:00
constants.js flow(AbstractAudio): specific function types 2018-03-13 16:57:29 -05:00
functions.js feat(new-toolbars): initial implementation 2018-03-27 00:54:30 -05:00
index.js feat(new-toolbars): initial implementation 2018-03-27 00:54:30 -05:00
middleware.js [RN] Add chat functionality 2019-01-15 11:33:12 +01:00
reducer.js ref(hangup): clean up some UI state on hangup 2019-01-02 09:54:05 -08:00
smileys.js Replaces smileys and the logic of replacing links/emails. (#3560) 2018-12-03 18:01:40 +00:00
sounds.js [RN] Add chat functionality 2019-01-15 11:33:12 +01:00