/* Copyright 2019 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, {useState} from "react"; import PropTypes from "prop-types"; import {_t} from "../../../languageHandler"; import AccessibleButton from "../elements/AccessibleButton"; import classNames from "classnames"; const AvatarSetting = ({avatarUrl, avatarAltText, avatarName, uploadAvatar, removeAvatar}) => { const [isHovering, setIsHovering] = useState(); const hoveringProps = { onMouseEnter: () => setIsHovering(true), onMouseLeave: () => setIsHovering(false), }; let avatarElement = ; if (avatarUrl) { avatarElement = ( ); } let uploadAvatarBtn; if (uploadAvatar) { // insert an empty div to be the host for a css mask containing the upload.svg uploadAvatarBtn = ; } let removeAvatarBtn; if (avatarUrl && removeAvatar) { removeAvatarBtn = {_t("Remove")} ; } const avatarClasses = classNames({ "mx_AvatarSetting_avatar": true, "mx_AvatarSetting_avatar_hovering": isHovering, }); return
{avatarElement}
{_t("Upload")}
{uploadAvatarBtn} {removeAvatarBtn}
; }; AvatarSetting.propTypes = { avatarUrl: PropTypes.string, avatarName: PropTypes.string.isRequired, // name of user/room the avatar belongs to uploadAvatar: PropTypes.func, removeAvatar: PropTypes.func, avatarAltText: PropTypes.string.isRequired, }; export default AvatarSetting;