This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 831
Early rendering for voice messages in the timeline #5955
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
Copyright 2021 The Matrix.org Foundation C.I.C. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
.mx_MVoiceMessageBody { | ||
display: inline-block; // makes the playback controls magically line up | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/* | ||
Copyright 2021 The Matrix.org Foundation C.I.C. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import React from "react"; | ||
import {MatrixEvent} from "matrix-js-sdk/src/models/event"; | ||
import {replaceableComponent} from "../../../utils/replaceableComponent"; | ||
import {Playback} from "../../../voice/Playback"; | ||
import MFileBody from "./MFileBody"; | ||
import InlineSpinner from '../elements/InlineSpinner'; | ||
import {_t} from "../../../languageHandler"; | ||
import {mediaFromContent} from "../../../customisations/Media"; | ||
import {decryptFile} from "../../../utils/DecryptFile"; | ||
import RecordingPlayback from "../voice_messages/RecordingPlayback"; | ||
|
||
interface IProps { | ||
mxEvent: MatrixEvent; | ||
} | ||
|
||
interface IState { | ||
error?: Error; | ||
playback?: Playback; | ||
decryptedBlob?: Blob; | ||
} | ||
|
||
@replaceableComponent("views.messages.MVoiceMessageBody") | ||
export default class MVoiceMessageBody extends React.PureComponent<IProps, IState> { | ||
constructor(props: IProps) { | ||
super(props); | ||
|
||
this.state = {}; | ||
} | ||
|
||
public async componentDidMount() { | ||
let buffer: ArrayBuffer; | ||
const content = this.props.mxEvent.getContent(); | ||
const media = mediaFromContent(content); | ||
if (media.isEncrypted) { | ||
try { | ||
const blob = await decryptFile(content.file); | ||
buffer = await blob.arrayBuffer(); | ||
this.setState({decryptedBlob: blob}); | ||
} catch (e) { | ||
this.setState({error: e}); | ||
console.warn("Unable to decrypt voice message", e); | ||
return; // stop processing the audio file | ||
} | ||
} else { | ||
try { | ||
buffer = await media.downloadSource().then(r => r.blob()).then(r => r.arrayBuffer()); | ||
} catch (e) { | ||
this.setState({error: e}); | ||
console.warn("Unable to download voice message", e); | ||
return; // stop processing the audio file | ||
} | ||
} | ||
|
||
const waveform = content?.["org.matrix.msc1767.audio"]?.waveform?.map(p => p / 1024); | ||
|
||
// We should have a buffer to work with now: let's set it up | ||
const playback = new Playback(buffer, waveform); | ||
this.setState({playback}); | ||
// Note: the RecordingPlayback component will handle preparing the Playback class for us. | ||
} | ||
|
||
public render() { | ||
if (this.state.error) { | ||
// TODO: @@TR: Verify error state | ||
return ( | ||
<span className="mx_MVoiceMessageBody"> | ||
<img src={require("../../../../res/img/warning.svg")} width="16" height="16" /> | ||
{ _t("Error processing voice message") } | ||
</span> | ||
); | ||
} | ||
|
||
if (!this.state.playback) { | ||
// TODO: @@TR: Verify loading/decrypting state | ||
return ( | ||
<span className="mx_MVoiceMessageBody"> | ||
<InlineSpinner /> | ||
</span> | ||
); | ||
} | ||
|
||
// At this point we should have a playable state | ||
return ( | ||
<span className="mx_MVoiceMessageBody"> | ||
<RecordingPlayback playback={this.state.playback} /> | ||
<MFileBody {...this.props} decryptedBlob={this.state.decryptedBlob} showGenericPlaceholder={false} /> | ||
</span> | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
Copyright 2021 The Matrix.org Foundation C.I.C. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import React from "react"; | ||
import {MatrixEvent} from "matrix-js-sdk/src/models/event"; | ||
import MAudioBody from "./MAudioBody"; | ||
import {replaceableComponent} from "../../../utils/replaceableComponent"; | ||
import SettingsStore from "../../../settings/SettingsStore"; | ||
import MVoiceMessageBody from "./MVoiceMessageBody"; | ||
|
||
interface IProps { | ||
mxEvent: MatrixEvent; | ||
} | ||
|
||
@replaceableComponent("views.messages.MVoiceOrAudioBody") | ||
export default class MVoiceOrAudioBody extends React.PureComponent<IProps> { | ||
public render() { | ||
const isVoiceMessage = !!this.props.mxEvent.getContent()['org.matrix.msc2516.voice']; | ||
const voiceMessagesEnabled = SettingsStore.getValue("feature_voice_messages"); | ||
if (isVoiceMessage && voiceMessagesEnabled) { | ||
return <MVoiceMessageBody {...this.props} />; | ||
} else { | ||
return <MAudioBody {...this.props} />; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be covered by the default value for the function parameter above...?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should, unless a null squeezes in here