/* 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, {useRef, useState} from "react"; import {_t} from "../../../languageHandler"; import AccessibleButton from "../elements/AccessibleButton"; import Field from "../elements/Field"; interface IProps { avatarUrl?: string; avatarDisabled?: boolean; name?: string, nameDisabled?: boolean; topic?: string; topicDisabled?: boolean; setAvatar(avatar: File): void; setName(name: string): void; setTopic(topic: string): void; } export const SpaceAvatar = ({ avatarUrl, avatarDisabled = false, setAvatar, }: Pick) => { const avatarUploadRef = useRef(); const [avatar, setAvatarDataUrl] = useState(avatarUrl); // avatar data url cache let avatarSection; if (avatarDisabled) { if (avatar) { avatarSection = ; } else { avatarSection =
; } } else { if (avatar) { avatarSection = avatarUploadRef.current?.click()} element="img" src={avatar} alt="" /> { avatarUploadRef.current.value = ""; setAvatarDataUrl(undefined); setAvatar(undefined); }} kind="link" className="mx_SpaceBasicSettings_avatar_remove"> { _t("Delete") } ; } else { avatarSection =
avatarUploadRef.current?.click()} /> avatarUploadRef.current?.click()} kind="link"> { _t("Upload") } ; } } return
{ avatarSection } { if (!e.target.files?.length) return; const file = e.target.files[0]; setAvatar(file); const reader = new FileReader(); reader.onload = (ev) => { setAvatarDataUrl(ev.target.result as string); }; reader.readAsDataURL(file); }} accept="image/*" />
; }; const SpaceBasicSettings = ({ avatarUrl, avatarDisabled = false, setAvatar, name = "", nameDisabled = false, setName, topic = "", topicDisabled = false, setTopic, }: IProps) => { return
setName(ev.target.value)} disabled={nameDisabled} /> setTopic(ev.target.value)} rows={3} disabled={topicDisabled} />
; }; export default SpaceBasicSettings;