forked from Ivasoft/mattermost-mobile
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useMemo} from 'react';
|
|
import {StyleProp, View, ViewStyle} from 'react-native';
|
|
|
|
import UserStatus from '@components/user_status';
|
|
import {makeStyleSheetFromTheme} from '@utils/theme';
|
|
|
|
import type UserModel from '@typings/database/models/servers/user';
|
|
|
|
type Props = {
|
|
author?: UserModel | UserProfile;
|
|
statusSize: number;
|
|
statusStyle?: StyleProp<ViewStyle>;
|
|
theme: Theme;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
statusWrapper: {
|
|
position: 'absolute',
|
|
bottom: 0,
|
|
right: 0,
|
|
overflow: 'hidden',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
backgroundColor: theme.centerChannelBg,
|
|
borderWidth: 1,
|
|
borderColor: theme.centerChannelBg,
|
|
},
|
|
};
|
|
});
|
|
|
|
const Status = ({author, statusSize, statusStyle, theme}: Props) => {
|
|
const styles = getStyleSheet(theme);
|
|
const containerStyle = useMemo(() => ([
|
|
styles.statusWrapper,
|
|
statusStyle,
|
|
{borderRadius: statusSize / 2},
|
|
]), [statusStyle]);
|
|
const isBot = author && (('isBot' in author) ? author.isBot : author.is_bot);
|
|
if (author?.status && !isBot) {
|
|
return (
|
|
<View
|
|
style={containerStyle}
|
|
>
|
|
<UserStatus
|
|
size={statusSize}
|
|
status={author.status}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
export default Status;
|