Files
Elias Nahum 5e9de9f4a2 Thread crash fix and other UI fixes (#7342)
* center align channel name in intro

* align custom status in channel header

* wrap long custom status on profile bottom sheet

* Fix LaTex render clipped on Android

* Add margin for users displayed in a list

* show user profile when tapping on self on channel members

* Fix Thread screen when rootId prop is undefined

* update snapshots

* fix server / login screen on small devices
2023-05-11 09:35:11 -04:00

211 lines
6.2 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useCallback, useEffect, useMemo, useRef, useState} from 'react';
import {useIntl} from 'react-intl';
import {
InteractionManager,
Platform,
View,
} from 'react-native';
import {storeProfileLongPressTutorial} from '@actions/app/global';
import CompassIcon from '@components/compass_icon';
import FormattedText from '@components/formatted_text';
import TutorialHighlight from '@components/tutorial_highlight';
import TutorialLongPress from '@components/tutorial_highlight/long_press';
import UserItem from '@components/user_item';
import {useTheme} from '@context/theme';
import {useIsTablet} from '@hooks/device';
import {t} from '@i18n';
import {makeStyleSheetFromTheme, changeOpacity} from '@utils/theme';
import {typography} from '@utils/typography';
import type UserModel from '@typings/database/models/servers/user';
type Props = {
highlight?: boolean;
id: string;
includeMargin?: boolean;
isMyUser: boolean;
isChannelAdmin: boolean;
manageMode: boolean;
onLongPress: (user: UserProfile | UserModel) => void;
onPress?: (user: UserProfile | UserModel) => void;
selectable: boolean;
disabled?: boolean;
selected: boolean;
showManageMode: boolean;
testID: string;
tutorialWatched?: boolean;
user: UserProfile;
}
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
return {
selector: {
alignItems: 'center',
justifyContent: 'center',
marginLeft: 12,
},
selectorManage: {
alignItems: 'center',
flexDirection: 'row',
justifyContent: 'center',
marginLeft: 12,
},
manageText: {
color: changeOpacity(theme.centerChannelColor, 0.64),
...typography('Body', 100, 'Regular'),
},
tutorial: {
top: Platform.select({ios: -74, default: -94}),
},
tutorialTablet: {
top: -84,
},
};
});
const DEFAULT_ICON_OPACITY = 0.32;
function UserListRow({
id,
includeMargin,
isMyUser,
highlight,
isChannelAdmin,
onPress,
onLongPress,
manageMode = false,
selectable,
disabled,
selected,
showManageMode = false,
testID,
tutorialWatched = false,
user,
}: Props) {
const theme = useTheme();
const isTablet = useIsTablet();
const [showTutorial, setShowTutorial] = useState(false);
const [itemBounds, setItemBounds] = useState<TutorialItemBounds>({startX: 0, startY: 0, endX: 0, endY: 0});
const viewRef = useRef<View>(null);
const style = getStyleFromTheme(theme);
const {formatMessage} = useIntl();
const startTutorial = () => {
viewRef.current?.measureInWindow((x, y, w, h) => {
const bounds: TutorialItemBounds = {
startX: x,
startY: y,
endX: x + w,
endY: y + h,
};
if (viewRef.current) {
setItemBounds(bounds);
}
});
};
const handleDismissTutorial = useCallback(() => {
setShowTutorial(false);
storeProfileLongPressTutorial();
}, []);
useEffect(() => {
if (highlight && !tutorialWatched) {
if (isTablet) {
setShowTutorial(true);
return;
}
InteractionManager.runAfterInteractions(() => {
setShowTutorial(true);
});
}
}, [highlight, tutorialWatched, isTablet]);
const handlePress = useCallback((u: UserModel | UserProfile) => {
onPress?.(u);
}, [onPress]);
const manageModeIcon = useMemo(() => {
if (!showManageMode || isMyUser) {
return null;
}
const color = changeOpacity(theme.centerChannelColor, 0.64);
const i18nId = isChannelAdmin ? t('mobile.manage_members.admin') : t('mobile.manage_members.member');
const defaultMessage = isChannelAdmin ? 'Admin' : 'Member';
return (
<View style={style.selectorManage}>
<FormattedText
id={i18nId}
style={style.manageText}
defaultMessage={defaultMessage}
/>
<CompassIcon
name={'chevron-down'}
size={18}
color={color}
/>
</View>
);
}, [isChannelAdmin, showManageMode, theme]);
const onLayout = useCallback(() => {
startTutorial();
}, []);
const icon = useMemo(() => {
if (!selectable && !selected) {
return null;
}
const color = selected ? theme.buttonBg : changeOpacity(theme.centerChannelColor, DEFAULT_ICON_OPACITY);
return (
<View style={style.selector}>
<CompassIcon
name={selected ? 'check-circle' : 'circle-outline'}
size={28}
color={color}
/>
</View>
);
}, [selectable, disabled, selected, theme]);
const userItemTestID = `${testID}.${id}`;
return (
<>
<UserItem
user={user}
onUserLongPress={onLongPress}
onUserPress={handlePress}
showBadges={true}
testID={userItemTestID}
rightDecorator={manageMode ? manageModeIcon : icon}
disabled={!(selectable || selected || !disabled)}
viewRef={viewRef}
padding={20}
includeMargin={includeMargin}
/>
{showTutorial &&
<TutorialHighlight
itemBounds={itemBounds}
onDismiss={handleDismissTutorial}
onLayout={onLayout}
>
<TutorialLongPress
message={formatMessage({id: 'user.tutorial.long_press', defaultMessage: "Long-press on an item to view a user's profile"})}
style={isTablet ? style.tutorialTablet : style.tutorial}
/>
</TutorialHighlight>
}
</>
);
}
export default React.memo(UserListRow);