/*
Copyright 2022 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, { Fragment } from "react";
import { IMyDevice } from "matrix-js-sdk/src/matrix";
import { _t } from "../../../../languageHandler";
import { formatDate, formatRelativeTime } from "../../../../DateUtils";
import TooltipTarget from "../../elements/TooltipTarget";
import { Alignment } from "../../elements/Tooltip";
import Heading from "../../typography/Heading";
export interface DeviceTileProps {
device: IMyDevice;
children?: React.ReactNode;
onClick?: () => void;
}
const DeviceTileName: React.FC<{ device: IMyDevice }> = ({ device }) => {
if (device.display_name) {
return
{ device.display_name }
;
}
return
{ device.device_id }
;
};
const MS_6_DAYS = 6 * 24 * 60 * 60 * 1000;
const formatLastActivity = (timestamp: number, now = new Date().getTime()): string => {
// less than a week ago
if (timestamp + MS_6_DAYS >= now) {
const date = new Date(timestamp);
// Tue 20:15
return formatDate(date);
}
return formatRelativeTime(new Date(timestamp));
};
const DeviceMetadata: React.FC<{ value: string, id: string }> = ({ value, id }) => (
value ? { value } : null
);
const DeviceTile: React.FC = ({ device, children, onClick }) => {
const lastActivity = device.last_seen_ts && `${_t('Last activity')} ${formatLastActivity(device.last_seen_ts)}`;
const metadata = [
{ id: 'lastActivity', value: lastActivity },
{ id: 'lastSeenIp', value: device.last_seen_ip },
];
return