mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 13:47:46 +00:00
Rearrange recording feature files
This commit is contained in:
committed by
Zoltan Bettenbuk
parent
2b1cb75e40
commit
71edea8aac
@@ -19,7 +19,7 @@ import {
|
||||
import { getActiveSession } from '../../functions';
|
||||
|
||||
import StartRecordingDialog from './StartRecordingDialog';
|
||||
import StopRecordingDialog from './StopRecordingDialog';
|
||||
import { StopRecordingDialog } from './_';
|
||||
|
||||
/**
|
||||
* The type of the React {@code Component} props of
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
// @flow
|
||||
|
||||
export * from './native';
|
||||
3
react/features/recording/components/Recording/_.web.js
Normal file
3
react/features/recording/components/Recording/_.web.js
Normal file
@@ -0,0 +1,3 @@
|
||||
// @flow
|
||||
|
||||
export * from './web';
|
||||
@@ -1,3 +1,3 @@
|
||||
export { default as RecordButton } from './RecordButton';
|
||||
export { default as StartRecordingDialog } from './StartRecordingDialog';
|
||||
export { default as StopRecordingDialog } from './StopRecordingDialog';
|
||||
// @flow
|
||||
|
||||
export * from './_';
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { translate } from '../../../base/i18n';
|
||||
import { translate } from '../../../../base/i18n';
|
||||
|
||||
import AbstractRecordButton, {
|
||||
_mapStateToProps,
|
||||
type Props
|
||||
} from './AbstractRecordButton';
|
||||
} from '../AbstractRecordButton';
|
||||
|
||||
/**
|
||||
* An implementation of a button for starting and stopping recording.
|
||||
@@ -3,13 +3,13 @@
|
||||
import React from 'react';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { DialogContent } from '../../../base/dialog';
|
||||
import { translate } from '../../../base/i18n';
|
||||
import { DialogContent } from '../../../../base/dialog';
|
||||
import { translate } from '../../../../base/i18n';
|
||||
|
||||
import AbstractStopRecordingDialog, {
|
||||
type Props,
|
||||
_mapStateToProps
|
||||
} from './AbstractStopRecordingDialog';
|
||||
} from '../AbstractStopRecordingDialog';
|
||||
|
||||
/**
|
||||
* React Component for getting confirmation to stop a file recording session in
|
||||
@@ -0,0 +1,4 @@
|
||||
// @flow
|
||||
|
||||
export { default as RecordButton } from './RecordButton';
|
||||
export { default as StopRecordingDialog } from './StopRecordingDialog';
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { translate } from '../../../base/i18n';
|
||||
import { translate } from '../../../../base/i18n';
|
||||
|
||||
import AbstractRecordButton, {
|
||||
_mapStateToProps as _abstractMapStateToProps,
|
||||
type Props as AbstractProps
|
||||
} from './AbstractRecordButton';
|
||||
} from '../AbstractRecordButton';
|
||||
|
||||
declare var interfaceConfig: Object;
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { translate } from '../../../base/i18n';
|
||||
import { translate } from '../../../../base/i18n';
|
||||
|
||||
import AbstractStopRecordingDialog, {
|
||||
type Props,
|
||||
_mapStateToProps
|
||||
} from './AbstractStopRecordingDialog';
|
||||
} from '../AbstractStopRecordingDialog';
|
||||
|
||||
/**
|
||||
* React Component for getting confirmation to stop a file recording session in
|
||||
@@ -0,0 +1,4 @@
|
||||
// @flow
|
||||
|
||||
export { default as RecordButton } from './RecordButton';
|
||||
export { default as StopRecordingDialog } from './StopRecordingDialog';
|
||||
Reference in New Issue
Block a user