Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit feac025

Browse files
authored
Merge pull request #5955 from matrix-org/travis/voicemessages/timeline
Early rendering for voice messages in the timeline
2 parents 34c735e + 54931cb commit feac025

File tree

8 files changed

+172
-12
lines changed

8 files changed

+172
-12
lines changed

res/css/_components.scss

+1
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@
161161
@import "./views/messages/_MStickerBody.scss";
162162
@import "./views/messages/_MTextBody.scss";
163163
@import "./views/messages/_MVideoBody.scss";
164+
@import "./views/messages/_MVoiceMessageBody.scss";
164165
@import "./views/messages/_MessageActionBar.scss";
165166
@import "./views/messages/_MessageTimestamp.scss";
166167
@import "./views/messages/_MjolnirBody.scss";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
Copyright 2021 The Matrix.org Foundation C.I.C.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
.mx_MVoiceMessageBody {
18+
display: inline-block; // makes the playback controls magically line up
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
/*
2+
Copyright 2021 The Matrix.org Foundation C.I.C.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
import React from "react";
18+
import {MatrixEvent} from "matrix-js-sdk/src/models/event";
19+
import {replaceableComponent} from "../../../utils/replaceableComponent";
20+
import {Playback} from "../../../voice/Playback";
21+
import MFileBody from "./MFileBody";
22+
import InlineSpinner from '../elements/InlineSpinner';
23+
import {_t} from "../../../languageHandler";
24+
import {mediaFromContent} from "../../../customisations/Media";
25+
import {decryptFile} from "../../../utils/DecryptFile";
26+
import RecordingPlayback from "../voice_messages/RecordingPlayback";
27+
28+
interface IProps {
29+
mxEvent: MatrixEvent;
30+
}
31+
32+
interface IState {
33+
error?: Error;
34+
playback?: Playback;
35+
decryptedBlob?: Blob;
36+
}
37+
38+
@replaceableComponent("views.messages.MVoiceMessageBody")
39+
export default class MVoiceMessageBody extends React.PureComponent<IProps, IState> {
40+
constructor(props: IProps) {
41+
super(props);
42+
43+
this.state = {};
44+
}
45+
46+
public async componentDidMount() {
47+
let buffer: ArrayBuffer;
48+
const content = this.props.mxEvent.getContent();
49+
const media = mediaFromContent(content);
50+
if (media.isEncrypted) {
51+
try {
52+
const blob = await decryptFile(content.file);
53+
buffer = await blob.arrayBuffer();
54+
this.setState({decryptedBlob: blob});
55+
} catch (e) {
56+
this.setState({error: e});
57+
console.warn("Unable to decrypt voice message", e);
58+
return; // stop processing the audio file
59+
}
60+
} else {
61+
try {
62+
buffer = await media.downloadSource().then(r => r.blob()).then(r => r.arrayBuffer());
63+
} catch (e) {
64+
this.setState({error: e});
65+
console.warn("Unable to download voice message", e);
66+
return; // stop processing the audio file
67+
}
68+
}
69+
70+
const waveform = content?.["org.matrix.msc1767.audio"]?.waveform?.map(p => p / 1024);
71+
72+
// We should have a buffer to work with now: let's set it up
73+
const playback = new Playback(buffer, waveform);
74+
this.setState({playback});
75+
// Note: the RecordingPlayback component will handle preparing the Playback class for us.
76+
}
77+
78+
public render() {
79+
if (this.state.error) {
80+
// TODO: @@TR: Verify error state
81+
return (
82+
<span className="mx_MVoiceMessageBody">
83+
<img src={require("../../../../res/img/warning.svg")} width="16" height="16" />
84+
{ _t("Error processing voice message") }
85+
</span>
86+
);
87+
}
88+
89+
if (!this.state.playback) {
90+
// TODO: @@TR: Verify loading/decrypting state
91+
return (
92+
<span className="mx_MVoiceMessageBody">
93+
<InlineSpinner />
94+
</span>
95+
);
96+
}
97+
98+
// At this point we should have a playable state
99+
return (
100+
<span className="mx_MVoiceMessageBody">
101+
<RecordingPlayback playback={this.state.playback} />
102+
<MFileBody {...this.props} decryptedBlob={this.state.decryptedBlob} showGenericPlaceholder={false} />
103+
</span>
104+
)
105+
}
106+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
Copyright 2021 The Matrix.org Foundation C.I.C.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
import React from "react";
18+
import {MatrixEvent} from "matrix-js-sdk/src/models/event";
19+
import MAudioBody from "./MAudioBody";
20+
import {replaceableComponent} from "../../../utils/replaceableComponent";
21+
import SettingsStore from "../../../settings/SettingsStore";
22+
import MVoiceMessageBody from "./MVoiceMessageBody";
23+
24+
interface IProps {
25+
mxEvent: MatrixEvent;
26+
}
27+
28+
@replaceableComponent("views.messages.MVoiceOrAudioBody")
29+
export default class MVoiceOrAudioBody extends React.PureComponent<IProps> {
30+
public render() {
31+
const isVoiceMessage = !!this.props.mxEvent.getContent()['org.matrix.msc2516.voice'];
32+
const voiceMessagesEnabled = SettingsStore.getValue("feature_voice_messages");
33+
if (isVoiceMessage && voiceMessagesEnabled) {
34+
return <MVoiceMessageBody {...this.props} />;
35+
} else {
36+
return <MAudioBody {...this.props} />;
37+
}
38+
}
39+
}

src/components/views/messages/MessageEvent.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,8 @@ export default class MessageEvent extends React.Component {
7272
'm.emote': sdk.getComponent('messages.TextualBody'),
7373
'm.image': sdk.getComponent('messages.MImageBody'),
7474
'm.file': sdk.getComponent('messages.MFileBody'),
75-
'm.audio': sdk.getComponent('messages.MAudioBody'),
75+
'm.audio': sdk.getComponent('messages.MVoiceOrAudioBody'),
7676
'm.video': sdk.getComponent('messages.MVideoBody'),
77-
78-
// TODO: @@ TravisR: Use labs flag determination.
79-
// MSC: https://github.com/matrix-org/matrix-doc/pull/2516
80-
'org.matrix.msc2516.voice': sdk.getComponent('messages.MAudioBody'),
8177
};
8278
const evTypes = {
8379
'm.sticker': sdk.getComponent('messages.MStickerBody'),

src/components/views/rooms/VoiceRecordComposerTile.tsx

+4-6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import LiveRecordingClock from "../voice_messages/LiveRecordingClock";
2727
import {VoiceRecordingStore} from "../../../stores/VoiceRecordingStore";
2828
import {UPDATE_EVENT} from "../../../stores/AsyncStore";
2929
import RecordingPlayback from "../voice_messages/RecordingPlayback";
30+
import {MsgType} from "matrix-js-sdk/src/@types/event";
3031
import Modal from "../../../Modal";
3132
import ErrorDialog from "../dialogs/ErrorDialog";
3233
import CallMediaHandler from "../../../CallMediaHandler";
@@ -67,8 +68,8 @@ export default class VoiceRecordComposerTile extends React.PureComponent<IProps,
6768
const mxc = await this.state.recorder.upload();
6869
MatrixClientPeg.get().sendMessage(this.props.room.roomId, {
6970
"body": "Voice message",
70-
"msgtype": "org.matrix.msc2516.voice",
71-
//"msgtype": MsgType.Audio,
71+
//"msgtype": "org.matrix.msc2516.voice",
72+
"msgtype": MsgType.Audio,
7273
"url": mxc,
7374
"info": {
7475
duration: Math.round(this.state.recorder.durationSeconds * 1000),
@@ -86,10 +87,6 @@ export default class VoiceRecordComposerTile extends React.PureComponent<IProps,
8687
},
8788
"org.matrix.msc1767.audio": {
8889
duration: Math.round(this.state.recorder.durationSeconds * 1000),
89-
// TODO: @@ TravisR: Waveform? (MSC1767 decision)
90-
},
91-
"org.matrix.experimental.msc2516.voice": { // MSC2516+MSC1767 experiment
92-
duration: Math.round(this.state.recorder.durationSeconds * 1000),
9390

9491
// Events can't have floats, so we try to maintain resolution by using 1024
9592
// as a maximum value. The waveform contains values between zero and 1, so this
@@ -98,6 +95,7 @@ export default class VoiceRecordComposerTile extends React.PureComponent<IProps,
9895
// We're expecting about one data point per second of audio.
9996
waveform: this.state.recorder.getPlayback().waveform.map(v => Math.round(v * 1024)),
10097
},
98+
"org.matrix.msc2516.voice": {}, // No content, this is a rendering hint
10199
});
102100
await this.disposeRecording();
103101
}

src/i18n/strings/en_EN.json

+1
Original file line numberDiff line numberDiff line change
@@ -1852,6 +1852,7 @@
18521852
"%(name)s wants to verify": "%(name)s wants to verify",
18531853
"You sent a verification request": "You sent a verification request",
18541854
"Error decrypting video": "Error decrypting video",
1855+
"Error processing voice message": "Error processing voice message",
18551856
"Show all": "Show all",
18561857
"Reactions": "Reactions",
18571858
"<reactors/><reactedWith> reacted with %(content)s</reactedWith>": "<reactors/><reactedWith> reacted with %(content)s</reactedWith>",

src/voice/Playback.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class Playback extends EventEmitter implements IDestroyable {
5050
constructor(private buf: ArrayBuffer, seedWaveform = DEFAULT_WAVEFORM) {
5151
super();
5252
this.context = new AudioContext();
53-
this.resampledWaveform = arrayFastResample(seedWaveform, PLAYBACK_WAVEFORM_SAMPLES);
53+
this.resampledWaveform = arrayFastResample(seedWaveform ?? DEFAULT_WAVEFORM, PLAYBACK_WAVEFORM_SAMPLES);
5454
this.waveformObservable.update(this.resampledWaveform);
5555
this.clock = new PlaybackClock(this.context);
5656
}

0 commit comments

Comments
 (0)