diff --git a/web/chat/chat-thread-ancestors.react.js b/web/chat/chat-thread-ancestors.react.js index 8566e3122..3a4cfaddf 100644 --- a/web/chat/chat-thread-ancestors.react.js +++ b/web/chat/chat-thread-ancestors.react.js @@ -1,130 +1,131 @@ // @flow import classNames from 'classnames'; import * as React from 'react'; import { useAncestorThreads } from 'lib/shared/ancestor-threads'; import { memberHasAdminPowers, colorIsDark } from 'lib/shared/thread-utils'; import type { ThreadInfo } from 'lib/types/thread-types'; +import CommIcon from '../CommIcon.react'; import { useSelector } from '../redux/redux-utils'; import SWMansionIcon from '../SWMansionIcon.react'; import css from './chat-thread-ancestors.css'; const SHOW_SEE_FULL_STRUCTURE = false; type ThreadAncestorsProps = { +threadInfo: ThreadInfo, }; function ThreadAncestors(props: ThreadAncestorsProps): React.Node { const { threadInfo } = props; const { color: threadColor } = threadInfo; const darkColor = colorIsDark(threadColor); const threadColorStyle = React.useMemo( () => ({ backgroundColor: `#${threadColor}`, color: darkColor ? 'var(--thread-ancestor-color-light)' : 'var(--thread-ancestor-color-dark)', }), [darkColor, threadColor], ); const fullStructureButtonColorStyle = React.useMemo( () => ({ color: `#${threadColor}` }), [threadColor], ); const ancestorThreads = useAncestorThreads(threadInfo); const userInfos = useSelector(state => state.userStore.userInfos); const community = ancestorThreads[0] ?? threadInfo; const keyserverOwnerUsername: ?string = React.useMemo(() => { for (const member of community.members) { if (memberHasAdminPowers(member)) { return userInfos[member.id].username; } } return undefined; }, [community.members, userInfos]); const keyserverInfo = React.useMemo( () => (
- + {keyserverOwnerUsername}
{community.uiName}
), [community.uiName, keyserverOwnerUsername, threadColorStyle], ); const middlePath = React.useMemo(() => { if (ancestorThreads.length < 2) { return null; } return ( <>
); }, [ancestorThreads.length, threadColorStyle]); const threadHasNoAncestors = community === threadInfo; const currentThread = React.useMemo(() => { if (threadHasNoAncestors) { return null; } return ( <>
{threadInfo.uiName}
); }, [threadHasNoAncestors, threadColorStyle, threadInfo.uiName]); let seeFullStructure = null; if (SHOW_SEE_FULL_STRUCTURE) { seeFullStructure = ( ); } return ( <>
{keyserverInfo} {middlePath} {currentThread}
{seeFullStructure} ); } export default ThreadAncestors;