Implement pause voice broadcast recording (#9469)
This commit is contained in:
parent
be281fd735
commit
b7996a2e49
11 changed files with 272 additions and 27 deletions
|
@ -25,3 +25,7 @@ limitations under the License.
|
||||||
margin-bottom: $spacing-8;
|
margin-bottom: $spacing-8;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_VoiceBroadcastControl-recording {
|
||||||
|
color: $alert;
|
||||||
|
}
|
||||||
|
|
|
@ -31,5 +31,5 @@ limitations under the License.
|
||||||
|
|
||||||
.mx_VoiceBroadcastRecordingPip_controls {
|
.mx_VoiceBroadcastRecordingPip_controls {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: space-around;
|
||||||
}
|
}
|
||||||
|
|
3
res/img/element-icons/Record.svg
Normal file
3
res/img/element-icons/Record.svg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="5" cy="5" r="5" fill="#FF5B55"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 148 B |
|
@ -21,6 +21,7 @@ import { VoiceRecording } from "../../audio/VoiceRecording";
|
||||||
import SdkConfig, { DEFAULTS } from "../../SdkConfig";
|
import SdkConfig, { DEFAULTS } from "../../SdkConfig";
|
||||||
import { concat } from "../../utils/arrays";
|
import { concat } from "../../utils/arrays";
|
||||||
import { IDestroyable } from "../../utils/IDestroyable";
|
import { IDestroyable } from "../../utils/IDestroyable";
|
||||||
|
import { Singleflight } from "../../utils/Singleflight";
|
||||||
|
|
||||||
export enum VoiceBroadcastRecorderEvent {
|
export enum VoiceBroadcastRecorderEvent {
|
||||||
ChunkRecorded = "chunk_recorded",
|
ChunkRecorded = "chunk_recorded",
|
||||||
|
@ -65,6 +66,8 @@ export class VoiceBroadcastRecorder
|
||||||
*/
|
*/
|
||||||
public async stop(): Promise<Optional<ChunkRecordedPayload>> {
|
public async stop(): Promise<Optional<ChunkRecordedPayload>> {
|
||||||
await this.voiceRecording.stop();
|
await this.voiceRecording.stop();
|
||||||
|
// forget about that call, so that we can stop it again later
|
||||||
|
Singleflight.forgetAllFor(this.voiceRecording);
|
||||||
return this.extractChunk();
|
return this.extractChunk();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,23 +14,26 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import classNames from "classnames";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import AccessibleButton from "../../../components/views/elements/AccessibleButton";
|
import AccessibleButton from "../../../components/views/elements/AccessibleButton";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
|
className?: string;
|
||||||
icon: React.FC<React.SVGProps<SVGSVGElement>>;
|
icon: React.FC<React.SVGProps<SVGSVGElement>>;
|
||||||
label: string;
|
label: string;
|
||||||
onClick: () => void;
|
onClick: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const VoiceBroadcastControl: React.FC<Props> = ({
|
export const VoiceBroadcastControl: React.FC<Props> = ({
|
||||||
|
className = "",
|
||||||
icon: Icon,
|
icon: Icon,
|
||||||
label,
|
label,
|
||||||
onClick,
|
onClick,
|
||||||
}) => {
|
}) => {
|
||||||
return <AccessibleButton
|
return <AccessibleButton
|
||||||
className="mx_VoiceBroadcastControl"
|
className={classNames("mx_VoiceBroadcastControl", className)}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
aria-label={label}
|
aria-label={label}
|
||||||
>
|
>
|
||||||
|
|
|
@ -18,11 +18,15 @@ import React from "react";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
VoiceBroadcastControl,
|
VoiceBroadcastControl,
|
||||||
|
VoiceBroadcastInfoState,
|
||||||
VoiceBroadcastRecording,
|
VoiceBroadcastRecording,
|
||||||
} from "../..";
|
} from "../..";
|
||||||
import { useVoiceBroadcastRecording } from "../../hooks/useVoiceBroadcastRecording";
|
import { useVoiceBroadcastRecording } from "../../hooks/useVoiceBroadcastRecording";
|
||||||
import { VoiceBroadcastHeader } from "../atoms/VoiceBroadcastHeader";
|
import { VoiceBroadcastHeader } from "../atoms/VoiceBroadcastHeader";
|
||||||
import { Icon as StopIcon } from "../../../../res/img/element-icons/Stop.svg";
|
import { Icon as StopIcon } from "../../../../res/img/element-icons/Stop.svg";
|
||||||
|
import { Icon as PauseIcon } from "../../../../res/img/element-icons/pause.svg";
|
||||||
|
import { Icon as RecordIcon } from "../../../../res/img/element-icons/Record.svg";
|
||||||
|
import { _t } from "../../../languageHandler";
|
||||||
|
|
||||||
interface VoiceBroadcastRecordingPipProps {
|
interface VoiceBroadcastRecordingPipProps {
|
||||||
recording: VoiceBroadcastRecording;
|
recording: VoiceBroadcastRecording;
|
||||||
|
@ -31,11 +35,22 @@ interface VoiceBroadcastRecordingPipProps {
|
||||||
export const VoiceBroadcastRecordingPip: React.FC<VoiceBroadcastRecordingPipProps> = ({ recording }) => {
|
export const VoiceBroadcastRecordingPip: React.FC<VoiceBroadcastRecordingPipProps> = ({ recording }) => {
|
||||||
const {
|
const {
|
||||||
live,
|
live,
|
||||||
sender,
|
recordingState,
|
||||||
room,
|
room,
|
||||||
|
sender,
|
||||||
stopRecording,
|
stopRecording,
|
||||||
|
toggleRecording,
|
||||||
} = useVoiceBroadcastRecording(recording);
|
} = useVoiceBroadcastRecording(recording);
|
||||||
|
|
||||||
|
const toggleControl = recordingState === VoiceBroadcastInfoState.Paused
|
||||||
|
? <VoiceBroadcastControl
|
||||||
|
className="mx_VoiceBroadcastControl-recording"
|
||||||
|
onClick={toggleRecording}
|
||||||
|
icon={RecordIcon}
|
||||||
|
label={_t("resume voice broadcast")}
|
||||||
|
/>
|
||||||
|
: <VoiceBroadcastControl onClick={toggleRecording} icon={PauseIcon} label={_t("pause voice broadcast")} />;
|
||||||
|
|
||||||
return <div
|
return <div
|
||||||
className="mx_VoiceBroadcastRecordingPip"
|
className="mx_VoiceBroadcastRecordingPip"
|
||||||
>
|
>
|
||||||
|
@ -46,6 +61,7 @@ export const VoiceBroadcastRecordingPip: React.FC<VoiceBroadcastRecordingPipProp
|
||||||
/>
|
/>
|
||||||
<hr className="mx_VoiceBroadcastRecordingPip_divider" />
|
<hr className="mx_VoiceBroadcastRecordingPip_divider" />
|
||||||
<div className="mx_VoiceBroadcastRecordingPip_controls">
|
<div className="mx_VoiceBroadcastRecordingPip_controls">
|
||||||
|
{ toggleControl }
|
||||||
<VoiceBroadcastControl
|
<VoiceBroadcastControl
|
||||||
icon={StopIcon}
|
icon={StopIcon}
|
||||||
label="Stop Recording"
|
label="Stop Recording"
|
||||||
|
|
|
@ -52,23 +52,31 @@ export const useVoiceBroadcastRecording = (recording: VoiceBroadcastRecording) =
|
||||||
const confirmed = await showStopBroadcastingDialog();
|
const confirmed = await showStopBroadcastingDialog();
|
||||||
|
|
||||||
if (confirmed) {
|
if (confirmed) {
|
||||||
recording.stop();
|
await recording.stop();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const [live, setLive] = useState(recording.getState() === VoiceBroadcastInfoState.Started);
|
const [recordingState, setRecordingState] = useState(recording.getState());
|
||||||
useTypedEventEmitter(
|
useTypedEventEmitter(
|
||||||
recording,
|
recording,
|
||||||
VoiceBroadcastRecordingEvent.StateChanged,
|
VoiceBroadcastRecordingEvent.StateChanged,
|
||||||
(state: VoiceBroadcastInfoState, _recording: VoiceBroadcastRecording) => {
|
(state: VoiceBroadcastInfoState, _recording: VoiceBroadcastRecording) => {
|
||||||
setLive(state === VoiceBroadcastInfoState.Started);
|
setRecordingState(state);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const live = [
|
||||||
|
VoiceBroadcastInfoState.Started,
|
||||||
|
VoiceBroadcastInfoState.Paused,
|
||||||
|
VoiceBroadcastInfoState.Running,
|
||||||
|
].includes(recordingState);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
live,
|
live,
|
||||||
|
recordingState,
|
||||||
room,
|
room,
|
||||||
sender: recording.infoEvent.sender,
|
sender: recording.infoEvent.sender,
|
||||||
stopRecording,
|
stopRecording,
|
||||||
|
toggleRecording: recording.toggle,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -76,11 +76,38 @@ export class VoiceBroadcastRecording
|
||||||
}
|
}
|
||||||
|
|
||||||
public async stop(): Promise<void> {
|
public async stop(): Promise<void> {
|
||||||
|
if (this.state === VoiceBroadcastInfoState.Stopped) return;
|
||||||
|
|
||||||
this.setState(VoiceBroadcastInfoState.Stopped);
|
this.setState(VoiceBroadcastInfoState.Stopped);
|
||||||
await this.stopRecorder();
|
await this.stopRecorder();
|
||||||
await this.sendStoppedStateEvent();
|
await this.sendInfoStateEvent(VoiceBroadcastInfoState.Stopped);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async pause(): Promise<void> {
|
||||||
|
// stopped or already paused recordings cannot be paused
|
||||||
|
if ([VoiceBroadcastInfoState.Stopped, VoiceBroadcastInfoState.Paused].includes(this.state)) return;
|
||||||
|
|
||||||
|
this.setState(VoiceBroadcastInfoState.Paused);
|
||||||
|
await this.stopRecorder();
|
||||||
|
await this.sendInfoStateEvent(VoiceBroadcastInfoState.Paused);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async resume(): Promise<void> {
|
||||||
|
if (this.state !== VoiceBroadcastInfoState.Paused) return;
|
||||||
|
|
||||||
|
this.setState(VoiceBroadcastInfoState.Running);
|
||||||
|
await this.getRecorder().start();
|
||||||
|
await this.sendInfoStateEvent(VoiceBroadcastInfoState.Running);
|
||||||
|
}
|
||||||
|
|
||||||
|
public toggle = async (): Promise<void> => {
|
||||||
|
if (this.getState() === VoiceBroadcastInfoState.Paused) return this.resume();
|
||||||
|
|
||||||
|
if ([VoiceBroadcastInfoState.Started, VoiceBroadcastInfoState.Running].includes(this.getState())) {
|
||||||
|
return this.pause();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
public getState(): VoiceBroadcastInfoState {
|
public getState(): VoiceBroadcastInfoState {
|
||||||
return this.state;
|
return this.state;
|
||||||
}
|
}
|
||||||
|
@ -162,14 +189,14 @@ export class VoiceBroadcastRecording
|
||||||
await this.client.sendMessage(this.infoEvent.getRoomId(), content);
|
await this.client.sendMessage(this.infoEvent.getRoomId(), content);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async sendStoppedStateEvent(): Promise<void> {
|
private async sendInfoStateEvent(state: VoiceBroadcastInfoState): Promise<void> {
|
||||||
// TODO Michael W: add error handling for state event
|
// TODO Michael W: add error handling for state event
|
||||||
await this.client.sendStateEvent(
|
await this.client.sendStateEvent(
|
||||||
this.infoEvent.getRoomId(),
|
this.infoEvent.getRoomId(),
|
||||||
VoiceBroadcastInfoEventType,
|
VoiceBroadcastInfoEventType,
|
||||||
{
|
{
|
||||||
device_id: this.client.getDeviceId(),
|
device_id: this.client.getDeviceId(),
|
||||||
state: VoiceBroadcastInfoState.Stopped,
|
state,
|
||||||
["m.relates_to"]: {
|
["m.relates_to"]: {
|
||||||
rel_type: RelationType.Reference,
|
rel_type: RelationType.Reference,
|
||||||
event_id: this.infoEvent.getId(),
|
event_id: this.infoEvent.getId(),
|
||||||
|
|
|
@ -22,12 +22,12 @@ import { MatrixClient, MatrixEvent } from "matrix-js-sdk/src/matrix";
|
||||||
import { sleep } from "matrix-js-sdk/src/utils";
|
import { sleep } from "matrix-js-sdk/src/utils";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
VoiceBroadcastInfoEventType,
|
|
||||||
VoiceBroadcastInfoState,
|
VoiceBroadcastInfoState,
|
||||||
VoiceBroadcastRecording,
|
VoiceBroadcastRecording,
|
||||||
VoiceBroadcastRecordingPip,
|
VoiceBroadcastRecordingPip,
|
||||||
} from "../../../../src/voice-broadcast";
|
} from "../../../../src/voice-broadcast";
|
||||||
import { mkEvent, stubClient } from "../../../test-utils";
|
import { stubClient } from "../../../test-utils";
|
||||||
|
import { mkVoiceBroadcastInfoStateEvent } from "../../utils/test-utils";
|
||||||
|
|
||||||
// mock RoomAvatar, because it is doing too much fancy stuff
|
// mock RoomAvatar, because it is doing too much fancy stuff
|
||||||
jest.mock("../../../../src/components/views/avatars/RoomAvatar", () => ({
|
jest.mock("../../../../src/components/views/avatars/RoomAvatar", () => ({
|
||||||
|
@ -37,36 +37,49 @@ jest.mock("../../../../src/components/views/avatars/RoomAvatar", () => ({
|
||||||
}),
|
}),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
jest.mock("../../../../src/audio/VoiceRecording");
|
||||||
|
|
||||||
describe("VoiceBroadcastRecordingPip", () => {
|
describe("VoiceBroadcastRecordingPip", () => {
|
||||||
const userId = "@user:example.com";
|
|
||||||
const roomId = "!room:example.com";
|
const roomId = "!room:example.com";
|
||||||
let client: MatrixClient;
|
let client: MatrixClient;
|
||||||
let infoEvent: MatrixEvent;
|
let infoEvent: MatrixEvent;
|
||||||
let recording: VoiceBroadcastRecording;
|
let recording: VoiceBroadcastRecording;
|
||||||
|
let renderResult: RenderResult;
|
||||||
|
|
||||||
|
const renderPip = (state: VoiceBroadcastInfoState) => {
|
||||||
|
infoEvent = mkVoiceBroadcastInfoStateEvent(roomId, state, client.getUserId());
|
||||||
|
recording = new VoiceBroadcastRecording(infoEvent, client);
|
||||||
|
|
||||||
|
if (state === VoiceBroadcastInfoState.Paused) {
|
||||||
|
recording.pause();
|
||||||
|
}
|
||||||
|
|
||||||
|
renderResult = render(<VoiceBroadcastRecordingPip recording={recording} />);
|
||||||
|
};
|
||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
client = stubClient();
|
client = stubClient();
|
||||||
infoEvent = mkEvent({
|
|
||||||
event: true,
|
|
||||||
type: VoiceBroadcastInfoEventType,
|
|
||||||
content: {},
|
|
||||||
room: roomId,
|
|
||||||
user: userId,
|
|
||||||
});
|
|
||||||
recording = new VoiceBroadcastRecording(infoEvent, client);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("when rendering", () => {
|
describe("when rendering a started recording", () => {
|
||||||
let renderResult: RenderResult;
|
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
renderResult = render(<VoiceBroadcastRecordingPip recording={recording} />);
|
renderPip(VoiceBroadcastInfoState.Started);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should create the expected result", () => {
|
it("should render as expected", () => {
|
||||||
expect(renderResult.container).toMatchSnapshot();
|
expect(renderResult.container).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("and clicking the pause button", () => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
await userEvent.click(screen.getByLabelText("pause voice broadcast"));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should pause the recording", () => {
|
||||||
|
expect(recording.getState()).toBe(VoiceBroadcastInfoState.Paused);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe("and clicking the stop button", () => {
|
describe("and clicking the stop button", () => {
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await userEvent.click(screen.getByLabelText("Stop Recording"));
|
await userEvent.click(screen.getByLabelText("Stop Recording"));
|
||||||
|
@ -89,4 +102,24 @@ describe("VoiceBroadcastRecordingPip", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("when rendering a paused recording", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
renderPip(VoiceBroadcastInfoState.Paused);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should render as expected", () => {
|
||||||
|
expect(renderResult.container).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("and clicking the resume button", () => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
await userEvent.click(screen.getByLabelText("resume voice broadcast"));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should resume the recording", () => {
|
||||||
|
expect(recording.getState()).toBe(VoiceBroadcastInfoState.Running);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`VoiceBroadcastRecordingPip when rendering should create the expected result 1`] = `
|
exports[`VoiceBroadcastRecordingPip when rendering a paused recording should render as expected 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="mx_VoiceBroadcastRecordingPip"
|
class="mx_VoiceBroadcastRecordingPip"
|
||||||
|
@ -29,7 +29,7 @@ exports[`VoiceBroadcastRecordingPip when rendering should create the expected re
|
||||||
class="mx_Icon mx_Icon_16"
|
class="mx_Icon mx_Icon_16"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
@user:example.com
|
@userId:matrix.org
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -48,6 +48,89 @@ exports[`VoiceBroadcastRecordingPip when rendering should create the expected re
|
||||||
<div
|
<div
|
||||||
class="mx_VoiceBroadcastRecordingPip_controls"
|
class="mx_VoiceBroadcastRecordingPip_controls"
|
||||||
>
|
>
|
||||||
|
<div
|
||||||
|
aria-label="resume voice broadcast"
|
||||||
|
class="mx_AccessibleButton mx_VoiceBroadcastControl mx_VoiceBroadcastControl-recording"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_Icon mx_Icon_16"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
aria-label="Stop Recording"
|
||||||
|
class="mx_AccessibleButton mx_VoiceBroadcastControl"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_Icon mx_Icon_16"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`VoiceBroadcastRecordingPip when rendering a started recording should render as expected 1`] = `
|
||||||
|
<div>
|
||||||
|
<div
|
||||||
|
class="mx_VoiceBroadcastRecordingPip"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_VoiceBroadcastHeader"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
data-testid="room-avatar"
|
||||||
|
>
|
||||||
|
room avatar:
|
||||||
|
My room
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="mx_VoiceBroadcastHeader_content"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_VoiceBroadcastHeader_room"
|
||||||
|
>
|
||||||
|
My room
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="mx_VoiceBroadcastHeader_line"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_Icon mx_Icon_16"
|
||||||
|
/>
|
||||||
|
<span>
|
||||||
|
@userId:matrix.org
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="mx_LiveBadge"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_Icon mx_Icon_16"
|
||||||
|
/>
|
||||||
|
Live
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr
|
||||||
|
class="mx_VoiceBroadcastRecordingPip_divider"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
class="mx_VoiceBroadcastRecordingPip_controls"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
aria-label="pause voice broadcast"
|
||||||
|
class="mx_AccessibleButton mx_VoiceBroadcastControl"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_Icon mx_Icon_16"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
aria-label="Stop Recording"
|
aria-label="Stop Recording"
|
||||||
class="mx_AccessibleButton mx_VoiceBroadcastControl"
|
class="mx_AccessibleButton mx_VoiceBroadcastControl"
|
||||||
|
|
|
@ -92,6 +92,25 @@ describe("VoiceBroadcastRecording", () => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const itShouldSendAnInfoEvent = (state: VoiceBroadcastInfoState) => {
|
||||||
|
it(`should send a ${state} info event`, () => {
|
||||||
|
expect(client.sendStateEvent).toHaveBeenCalledWith(
|
||||||
|
roomId,
|
||||||
|
VoiceBroadcastInfoEventType,
|
||||||
|
{
|
||||||
|
|
||||||
|
device_id: client.getDeviceId(),
|
||||||
|
state,
|
||||||
|
["m.relates_to"]: {
|
||||||
|
rel_type: RelationType.Reference,
|
||||||
|
event_id: infoEvent.getId(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
client.getUserId(),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
client = stubClient();
|
client = stubClient();
|
||||||
room = mkStubRoom(roomId, "Test Room", client);
|
room = mkStubRoom(roomId, "Test Room", client);
|
||||||
|
@ -355,6 +374,26 @@ describe("VoiceBroadcastRecording", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe.each([
|
||||||
|
["pause", async () => voiceBroadcastRecording.pause()],
|
||||||
|
["toggle", async () => voiceBroadcastRecording.toggle()],
|
||||||
|
])("and calling %s", (_case: string, action: Function) => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
await action();
|
||||||
|
});
|
||||||
|
|
||||||
|
itShouldBeInState(VoiceBroadcastInfoState.Paused);
|
||||||
|
itShouldSendAnInfoEvent(VoiceBroadcastInfoState.Paused);
|
||||||
|
|
||||||
|
it("should stop the recorder", () => {
|
||||||
|
expect(mocked(voiceBroadcastRecorder.stop)).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should emit a paused state changed event", () => {
|
||||||
|
expect(onStateChanged).toHaveBeenCalledWith(VoiceBroadcastInfoState.Paused);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe("and calling destroy", () => {
|
describe("and calling destroy", () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
voiceBroadcastRecording.destroy();
|
voiceBroadcastRecording.destroy();
|
||||||
|
@ -370,6 +409,32 @@ describe("VoiceBroadcastRecording", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("and it is in paused state", () => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
await voiceBroadcastRecording.pause();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe.each([
|
||||||
|
["resume", async () => voiceBroadcastRecording.resume()],
|
||||||
|
["toggle", async () => voiceBroadcastRecording.toggle()],
|
||||||
|
])("and calling %s", (_case: string, action: Function) => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
await action();
|
||||||
|
});
|
||||||
|
|
||||||
|
itShouldBeInState(VoiceBroadcastInfoState.Running);
|
||||||
|
itShouldSendAnInfoEvent(VoiceBroadcastInfoState.Running);
|
||||||
|
|
||||||
|
it("should start the recorder", () => {
|
||||||
|
expect(mocked(voiceBroadcastRecorder.start)).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should emit a running state changed event", () => {
|
||||||
|
expect(onStateChanged).toHaveBeenCalledWith(VoiceBroadcastInfoState.Running);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("when created for a Voice Broadcast Info with a Stopped relation", () => {
|
describe("when created for a Voice Broadcast Info with a Stopped relation", () => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue