2021-05-03 20:41:14 +03:00
|
|
|
/*
|
|
|
|
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";
|
2021-06-29 15:11:58 +03:00
|
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
2021-05-03 20:41:14 +03:00
|
|
|
import InlineSpinner from '../elements/InlineSpinner';
|
2021-06-29 15:11:58 +03:00
|
|
|
import { _t } from "../../../languageHandler";
|
2021-06-22 00:18:34 +03:00
|
|
|
import RecordingPlayback from "../audio_messages/RecordingPlayback";
|
2021-07-16 01:37:48 +03:00
|
|
|
import MAudioBody from "./MAudioBody";
|
2021-07-16 20:05:04 +03:00
|
|
|
import MFileBody from "./MFileBody";
|
2021-05-03 20:41:14 +03:00
|
|
|
|
|
|
|
@replaceableComponent("views.messages.MVoiceMessageBody")
|
2021-07-16 01:37:48 +03:00
|
|
|
export default class MVoiceMessageBody extends MAudioBody {
|
|
|
|
// A voice message is an audio file but rendered in a special way.
|
2021-05-03 20:41:14 +03:00
|
|
|
public render() {
|
|
|
|
if (this.state.error) {
|
|
|
|
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) {
|
|
|
|
return (
|
|
|
|
<span className="mx_MVoiceMessageBody">
|
|
|
|
<InlineSpinner />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point we should have a playable state
|
|
|
|
return (
|
|
|
|
<span className="mx_MVoiceMessageBody">
|
2021-07-14 03:51:53 +03:00
|
|
|
<RecordingPlayback playback={this.state.playback} tileShape={this.props.tileShape} />
|
2021-07-16 20:05:04 +03:00
|
|
|
{ this.props.tileShape && <MFileBody {...this.props} showGenericPlaceholder={false} /> }
|
2021-05-03 20:41:14 +03:00
|
|
|
</span>
|
2021-06-29 15:11:58 +03:00
|
|
|
);
|
2021-05-03 20:41:14 +03:00
|
|
|
}
|
|
|
|
}
|