2020-10-12 15:16:55 +03:00
|
|
|
/*
|
|
|
|
Copyright 2020 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, {ComponentProps, useContext} from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import {getHttpUriForMxc} from "matrix-js-sdk/src/content-repo";
|
|
|
|
|
|
|
|
import MatrixClientContext from "../../../contexts/MatrixClientContext";
|
|
|
|
import {IApp} from "../../../stores/WidgetStore";
|
|
|
|
import BaseAvatar, {BaseAvatarType} from "./BaseAvatar";
|
|
|
|
|
|
|
|
interface IProps extends Omit<ComponentProps<BaseAvatarType>, "name" | "url" | "urls"> {
|
|
|
|
app: IApp;
|
|
|
|
}
|
|
|
|
|
|
|
|
const WidgetAvatar: React.FC<IProps> = ({ app, className, width = 20, height = 20, ...props }) => {
|
|
|
|
const cli = useContext(MatrixClientContext);
|
|
|
|
|
|
|
|
let iconUrls = [require("../../../../res/img/element-icons/room/default_app.svg")];
|
|
|
|
// heuristics for some better icons until Widgets support their own icons
|
2020-10-13 17:56:53 +03:00
|
|
|
if (app.type.includes("jitsi")) {
|
|
|
|
iconUrls = [require("../../../../res/img/element-icons/room/default_video.svg")];
|
|
|
|
} else if (app.type.includes("meeting") || app.type.includes("calendar")) {
|
2020-10-12 15:16:55 +03:00
|
|
|
iconUrls = [require("../../../../res/img/element-icons/room/default_cal.svg")];
|
|
|
|
} else if (app.type.includes("pad") || app.type.includes("doc") || app.type.includes("calc")) {
|
|
|
|
iconUrls = [require("../../../../res/img/element-icons/room/default_doc.svg")];
|
|
|
|
} else if (app.type.includes("clock")) {
|
|
|
|
iconUrls = [require("../../../../res/img/element-icons/room/default_clock.svg")];
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<BaseAvatar
|
|
|
|
{...props}
|
|
|
|
name={app.id}
|
|
|
|
className={classNames("mx_WidgetAvatar", className)}
|
|
|
|
// MSC2765
|
|
|
|
url={app.avatar_url ? getHttpUriForMxc(cli.getHomeserverUrl(), app.avatar_url, 20, 20, "crop") : undefined}
|
|
|
|
urls={iconUrls}
|
|
|
|
width={width}
|
|
|
|
height={height}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
export default WidgetAvatar;
|