jiti-meet/react/features/base/participants
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 [RN] Add color scheme support - Components 2019-02-08 11:43:21 +01:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js Centralise display name normalisation 2019-01-16 11:03:29 +01:00
constants.js feat: add join/leave sounds on mobile 2018-03-13 16:57:28 -05:00
functions.js Extract shouldRenderParticipantVideo from ParticipantView 2019-01-28 18:34:12 +01:00
index.js ref(avatar): Move Avatar and Participant view to base/participants 2017-03-02 16:57:43 -06:00
middleware.js feat(App): refactor App and split it into BaseApp and App 2018-07-12 11:28:19 -05:00
reducer.js ref: js-utils for random and room name generator (#3975) 2019-03-19 10:35:36 -07:00
sounds.js fix(RN): bundle sound files in release build 2018-04-10 10:59:52 +02:00