From 298e505381e96e30535bd1ce28b66b1e523be094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Thu, 24 Jun 2021 14:29:24 +0200 Subject: [PATCH] Iterate EntityTile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/components/views/rooms/EntityTile.tsx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/components/views/rooms/EntityTile.tsx b/src/components/views/rooms/EntityTile.tsx index 53c5900fbf..106449b391 100644 --- a/src/components/views/rooms/EntityTile.tsx +++ b/src/components/views/rooms/EntityTile.tsx @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -import React, { createRef } from 'react'; +import React from 'react'; import AccessibleButton from '../elements/AccessibleButton'; import { _td } from '../../../languageHandler'; import classNames from "classnames"; @@ -25,7 +25,12 @@ import { replaceableComponent } from "../../../utils/replaceableComponent"; import BaseAvatar from '../avatars/BaseAvatar'; import PresenceLabel from "./PresenceLabel"; -const PowerLabel: Record = { +enum PowerStatus { + Admin = "admin", + Moderator = "moderator", +} + +const PowerLabel: Record = { "admin": _td("Admin"), "moderator": _td("Mod"), } @@ -36,7 +41,7 @@ const PRESENCE_CLASS = { "unavailable": "mx_EntityTile_unavailable", }; -function presenceClassForMember(presenceState: string, lastActiveAgo: number, showPresence: boolean) { +function presenceClassForMember(presenceState: string, lastActiveAgo: number, showPresence: boolean): string { if (showPresence === false) { return 'mx_EntityTile_online_beenactive'; } @@ -66,13 +71,12 @@ interface IProps { presenceLastTs?: number, presenceCurrentlyActive?: boolean, showInviteButton?: boolean, - shouldComponentUpdate?(nextProps: IProps, nextState: IState): boolean, onClick?(): void, suppressOnHover?: boolean, showPresence?: boolean, subtextLabel?: string, e2eStatus?: string, - powerStatus?: string, + powerStatus?: PowerStatus, } interface IState { @@ -82,7 +86,6 @@ interface IState { @replaceableComponent("views.rooms.EntityTile") export default class EntityTile extends React.Component { static defaultProps = { - shouldComponentUpdate: (nextProps: IProps, nextState: IState) => { return true; }, onClick: () => {}, presenceState: "offline", presenceLastActiveAgo: 0, @@ -91,7 +94,6 @@ export default class EntityTile extends React.Component { suppressOnHover: false, showPresence: true, }; - private container = createRef(); constructor(props: IProps) { super(props); @@ -103,7 +105,6 @@ export default class EntityTile extends React.Component { shouldComponentUpdate(nextProps: IProps, nextState: IState) { if (this.state.hover !== nextState.hover) return true; - return this.props.shouldComponentUpdate(nextProps, nextState); } render() { @@ -184,7 +185,7 @@ export default class EntityTile extends React.Component { // The wrapping div is required to make the magic mouse listener work, for some reason. return ( -
+