Преглед изворни кода

ref(testing): move 'testing' feature to base

master
paweldomas пре 7 година
родитељ
комит
382c548cf9

react/features/testing/actionTypes.js → react/features/base/testing/actionTypes.js Прегледај датотеку


react/features/testing/actions.js → react/features/base/testing/actions.js Прегледај датотеку


react/features/testing/components/AbstractTestHint.js → react/features/base/testing/components/AbstractTestHint.js Прегледај датотеку


react/features/testing/components/TestConnectionInfo.js → react/features/base/testing/components/TestConnectionInfo.js Прегледај датотеку

@@ -4,9 +4,11 @@ import React, { Component } from 'react';
4 4
 import { connect } from 'react-redux';
5 5
 
6 6
 
7
-import { Fragment } from '../../base/react';
8
-import { getLocalParticipant } from '../../base/participants';
9
-import { statsEmitter } from '../../connection-indicator';
7
+import { Fragment } from '../../react';
8
+import { getLocalParticipant } from '../../participants';
9
+
10
+// FIXME this imports feature to 'base'
11
+import { statsEmitter } from '../../../connection-indicator';
10 12
 
11 13
 import { TestHint } from './index';
12 14
 

react/features/testing/components/TestHint.android.js → react/features/base/testing/components/TestHint.android.js Прегледај датотеку


react/features/testing/components/TestHint.ios.js → react/features/base/testing/components/TestHint.ios.js Прегледај датотеку


react/features/testing/components/index.js → react/features/base/testing/components/index.js Прегледај датотеку


react/features/testing/index.js → react/features/base/testing/index.js Прегледај датотеку


react/features/testing/middleware.js → react/features/base/testing/middleware.js Прегледај датотеку

@@ -4,10 +4,10 @@ import Logger from 'jitsi-meet-logger';
4 4
 
5 5
 const logger = Logger.getLogger(__filename);
6 6
 
7
-import { MiddlewareRegistry } from '../base/redux';
7
+import { MiddlewareRegistry } from '../redux';
8 8
 
9
-import { CONFERENCE_WILL_JOIN } from '../base/conference';
10
-import { JitsiConferenceEvents } from '../base/lib-jitsi-meet';
9
+import { CONFERENCE_WILL_JOIN } from '../conference';
10
+import { JitsiConferenceEvents } from '../lib-jitsi-meet';
11 11
 import { setConnectionState } from './actions';
12 12
 
13 13
 /**

react/features/testing/reducer.js → react/features/base/testing/reducer.js Прегледај датотеку

@@ -1,4 +1,4 @@
1
-import { assign, ReducerRegistry } from '../base/redux';
1
+import { assign, ReducerRegistry } from '../redux';
2 2
 
3 3
 import { SET_CONNECTION_STATE } from './actionTypes';
4 4
 

+ 1
- 1
react/features/conference/components/Conference.native.js Прегледај датотеку

@@ -11,11 +11,11 @@ import { connect, disconnect } from '../../base/connection';
11 11
 import { DialogContainer } from '../../base/dialog';
12 12
 import { CalleeInfoContainer } from '../../base/jwt';
13 13
 import { Container, LoadingIndicator, TintedView } from '../../base/react';
14
+import { TestConnectionInfo } from '../../base/testing';
14 15
 import { createDesiredLocalTracks } from '../../base/tracks';
15 16
 import { ConferenceNotification } from '../../calendar-sync';
16 17
 import { Filmstrip } from '../../filmstrip';
17 18
 import { LargeVideo } from '../../large-video';
18
-import { TestConnectionInfo } from '../../testing';
19 19
 import { setToolboxVisible, Toolbox } from '../../toolbox';
20 20
 
21 21
 import styles from './styles';

Loading…
Откажи
Сачувај