diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/activities-panel/recording-activity-panel/recording-activity.component.ts b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/activities-panel/recording-activity-panel/recording-activity.component.ts index a33a2597..c69263f9 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/activities-panel/recording-activity-panel/recording-activity.component.ts +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/activities-panel/recording-activity-panel/recording-activity.component.ts @@ -1,4 +1,4 @@ -import { Component, OnInit, Output, EventEmitter, Input, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { Subscription } from 'rxjs'; import { OpenViduRole } from '../../../../models/participant.model'; import { RecordingInfo, RecordingStatus } from '../../../../models/recording.model'; @@ -7,9 +7,6 @@ import { OpenViduAngularConfigService } from '../../../../services/config/openvi import { ParticipantService } from '../../../../services/participant/participant.service'; import { RecordingService } from '../../../../services/recording/recording.service'; -/** - * @internal - */ @Component({ selector: 'ov-recording-activity', templateUrl: './recording-activity.component.html', @@ -40,11 +37,13 @@ export class RecordingActivityComponent implements OnInit { */ @Output() onDeleteRecordingClicked: EventEmitter = new EventEmitter(); - /** * @internal */ recordingStatus: RecordingStatus = RecordingStatus.STOPPED; + /** + * @internal + */ oldRecordingStatus: RecordingStatus; /** * @internal diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/videoconference/videoconference.component.ts b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/videoconference/videoconference.component.ts index d617c781..81c50228 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/videoconference/videoconference.component.ts +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/videoconference/videoconference.component.ts @@ -1,4 +1,4 @@ -import { trigger, state, style, transition, animate } from '@angular/animations'; +import { animate, style, transition, trigger } from '@angular/animations'; import { AfterViewInit, Component, @@ -14,9 +14,10 @@ import { import { OpenViduErrorName, Session } from 'openvidu-browser'; import { Subscription } from 'rxjs'; import { + ActivitiesPanelDirective, + AdditionalPanelsDirective, ChatPanelDirective, LayoutDirective, - AdditionalPanelsDirective, PanelDirective, ParticipantPanelItemDirective, ParticipantPanelItemElementsDirective, @@ -24,12 +25,11 @@ import { StreamDirective, ToolbarAdditionalButtonsDirective, ToolbarAdditionalPanelButtonsDirective, - ToolbarDirective, - ActivitiesPanelDirective + ToolbarDirective } from '../../directives/template/openvidu-angular.directive'; import { ILogger } from '../../models/logger.model'; import { OpenViduEdition } from '../../models/openvidu.model'; -import { ParticipantAbstractModel, ParticipantProperties } from '../../models/participant.model'; +import { ParticipantAbstractModel } from '../../models/participant.model'; import { TokenModel } from '../../models/token.model'; import { ActionService } from '../../services/action/action.service'; import { OpenViduAngularConfigService } from '../../services/config/openvidu-angular.config.service'; @@ -72,7 +72,8 @@ import { TranslateService } from '../../services/translate/translate.service'; * | **streamDisplayAudioDetection** | `boolean` | {@link StreamDisplayAudioDetectionDirective} | * | **streamSettingsButton** | `boolean` | {@link StreamSettingsButtonDirective} | * | **participantPanelItemMuteButton** | `boolean` | {@link ParticipantPanelItemMuteButtonDirective} | - * | **recordingActivityRecordingList** | `{@link RecordingInfo}[]` | {@link RecordingActivityRecordingListDirective} | + * | **recordingActivityRecordingList** | `{@link RecordingInfo}[]` | {@link RecordingActivityRecordingsListDirective} | + * | **recordingActivityRecordingError** | `any` | {@link RecordingActivityRecordingErrorDirective} | * *