2021-03-25 23:12:26 +00: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-10-22 22:23:32 +00:00
|
|
|
|
2021-08-27 14:21:29 +00:00
|
|
|
import { formatSeconds } from "../../../DateUtils";
|
2021-06-21 21:18:34 +00:00
|
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
2021-03-25 23:12:26 +00:00
|
|
|
|
2021-06-23 08:33:38 +00:00
|
|
|
export interface IProps {
|
2021-03-25 23:12:26 +00:00
|
|
|
seconds: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simply converts seconds into minutes and seconds. Note that hours will not be
|
|
|
|
* displayed, making it possible to see "82:29".
|
|
|
|
*/
|
2021-06-21 21:18:34 +00:00
|
|
|
@replaceableComponent("views.audio_messages.Clock")
|
2021-08-27 14:21:29 +00:00
|
|
|
export default class Clock extends React.Component<IProps> {
|
2021-03-25 23:12:26 +00:00
|
|
|
public constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:21:29 +00:00
|
|
|
shouldComponentUpdate(nextProps: Readonly<IProps>): boolean {
|
2021-04-28 02:27:36 +00:00
|
|
|
const currentFloor = Math.floor(this.props.seconds);
|
|
|
|
const nextFloor = Math.floor(nextProps.seconds);
|
|
|
|
return currentFloor !== nextFloor;
|
|
|
|
}
|
|
|
|
|
2021-03-25 23:12:26 +00:00
|
|
|
public render() {
|
2021-08-27 14:21:29 +00:00
|
|
|
return <span className='mx_Clock'>{ formatSeconds(this.props.seconds) }</span>;
|
2021-03-25 23:12:26 +00:00
|
|
|
}
|
|
|
|
}
|