Consistent middleware and reducer imports
This commit is contained in:
parent
e29db31d91
commit
55a8b44224
|
@ -8,7 +8,6 @@ import {
|
|||
_parseURIString,
|
||||
init
|
||||
} from './functions';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Temporary solution. Should dispatch actions related to initial settings of
|
||||
|
|
|
@ -2,3 +2,5 @@ export * from './actions';
|
|||
export * from './actionTypes';
|
||||
export * from './components';
|
||||
export * from './functions';
|
||||
|
||||
import './reducer';
|
||||
|
|
|
@ -5,8 +5,6 @@ import {
|
|||
_SET_BACKGROUND_VIDEO_MUTED,
|
||||
APP_STATE_CHANGED
|
||||
} from './actionTypes';
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Signals that the App state has changed (in terms of execution state). The
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
export * from './actions';
|
||||
export * from './actionTypes';
|
||||
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
|
|
@ -20,8 +20,6 @@ import {
|
|||
} from './actionTypes';
|
||||
import { EMAIL_COMMAND } from './constants';
|
||||
import { _addLocalTracksToConference } from './functions';
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Adds conference (event) listeners.
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
export * from './actions';
|
||||
export * from './actionTypes';
|
||||
export * from './functions';
|
||||
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
|
|
@ -11,7 +11,6 @@ import {
|
|||
CONNECTION_FAILED,
|
||||
SET_DOMAIN
|
||||
} from './actionTypes';
|
||||
import './reducer';
|
||||
|
||||
const JitsiConnectionEvents = JitsiMeetJS.events.connection;
|
||||
|
||||
|
|
|
@ -5,7 +5,6 @@ import type { Dispatch } from 'redux';
|
|||
import UIEvents from '../../../../service/UI/UIEvents';
|
||||
|
||||
import { SET_DOMAIN } from './actionTypes';
|
||||
import './reducer';
|
||||
|
||||
declare var APP: Object;
|
||||
declare var JitsiMeetJS: Object;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
export * from './actions';
|
||||
export * from './actionTypes';
|
||||
export * from './functions';
|
||||
|
||||
import './reducer';
|
||||
|
|
|
@ -5,8 +5,6 @@ import {
|
|||
LIB_INITIALIZED,
|
||||
SET_CONFIG
|
||||
} from './actionTypes';
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Disposes lib-jitsi-meet.
|
||||
|
|
|
@ -6,3 +6,6 @@ export { JitsiMeetJS as default };
|
|||
export * from './actions';
|
||||
export * from './actionTypes';
|
||||
export * from './functions';
|
||||
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
require('./polyfills-browser');
|
||||
require('./polyfills-browserify');
|
||||
import './polyfills-browser';
|
||||
import './polyfills-browserify';
|
||||
|
|
|
@ -8,8 +8,6 @@ import {
|
|||
SET_VIDEO_MUTED
|
||||
} from './actionTypes';
|
||||
import { CAMERA_FACING_MODE } from './constants';
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Action to set the muted state of the local audio.
|
||||
|
|
|
@ -3,3 +3,6 @@ export * from './actionTypes';
|
|||
export * from './components';
|
||||
export * from './constants';
|
||||
export * from './functions';
|
||||
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
|
|
@ -7,8 +7,6 @@ import {
|
|||
PIN_PARTICIPANT
|
||||
} from './actionTypes';
|
||||
import { getLocalParticipant } from './functions';
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Action to update a participant's email.
|
||||
|
|
|
@ -2,3 +2,6 @@ export * from './actions';
|
|||
export * from './actionTypes';
|
||||
export * from './constants';
|
||||
export * from './functions';
|
||||
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
|
|
@ -10,8 +10,6 @@ import {
|
|||
TRACK_REMOVED,
|
||||
TRACK_UPDATED
|
||||
} from './actionTypes';
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
||||
const JitsiTrackErrors = JitsiMeetJS.errors.track;
|
||||
const JitsiTrackEvents = JitsiMeetJS.events.track;
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
export * from './actions';
|
||||
export * from './actionTypes';
|
||||
export * from './functions';
|
||||
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
|
|
@ -6,8 +6,6 @@ import {
|
|||
} from '../base/tracks';
|
||||
|
||||
import { SELECT_LARGE_VIDEO_PARTICIPANT } from './actionTypes';
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Signals conference to select a participant.
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
export * from './actions';
|
||||
export * from './components';
|
||||
|
||||
import './middleware';
|
||||
import './reducer';
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import { setPassword } from '../base/conference';
|
||||
|
||||
import { BEGIN_ROOM_LOCK_REQUEST, END_ROOM_LOCK_REQUEST } from './actionTypes';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Begins a (user) request to lock a specific conference/room.
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
export * from './actions';
|
||||
export * from './components';
|
||||
|
||||
import './reducer';
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import { DISMISS_MOBILE_APP_PROMO } from './actionTypes';
|
||||
import './reducer';
|
||||
|
||||
/**
|
||||
* Returns a Redux action which signals that the UnsupportedMobileBrowser which
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
export * from './actions';
|
||||
export * from './components';
|
||||
|
||||
import './reducer';
|
||||
|
|
Loading…
Reference in New Issue