* Added DrawerItem component * WIP Account Screen * Added react-native-paper * Added StatusLabel Component * Extracted i18n * TS fix DrawerItem component * WIP Account Screen * Added server name label under log out * Updated translation * WIP * Fixes the Offline text style * Added Metropolis fonts * WIP * Typo clean up * WIP * WIP * WIP * Added server display name * Writing OpenSans properly * WIP * WIP * Added OptionsModal * Opening OptionsModal * Added translation keys * Writes status to local db * Fix missing translation * Fix OptionModal not dismissing * Pushing status to server * Refactored * Added CustomStatusExpiry component * Added sub components * Added CustomLabel * CustomStatus WIP * Added Custom Status screen WIP * WIP - unsetCustomStatus and CustomStatus constant * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Retrieving RecentCustomStatuses from Preferences table * WIP * WIP * WIP * Added Clear After Modal * WIP - Transations * WIP * Done with showing modal cst * wip * Clear After Modal - DONE * fix * Added missing API calls * wip * Causing screen refresh * wip * WIP * WIP * WIP * Code clean up * Added OOO alert box * Refactored Options-Item * Refactored OptionsModalList component * Opening 'status' in BottomSheet instead of OptionsModal * AddReaction screen - WIP * Add Reaction screen - WIP * Added EmojiPickerRow * Added @components/emoji_picker - WIP * Emoji Picker - WIP * WIP * WIP * WIP * SectionList - WIP * Installed react-native-section_list_get_item_layout * Adding API calls - WIP * WIP * Search Bar component - WIP * WIP * WIP * WIP * Rendering Emoticons now - have to tackle some fixmes * Code clean up * Code clean up - WIP * Code clean up * WIP * Major clean up * wip * WIP * Fix rendering issue with SectionIcons and SearchBar * Tackled the CustomEmojiPage * Code clean up * WIP * Done with loading User Profiles for Custom Emoji * Code clean up * Code Clean up * Fix screen Account * Added missing sql file for IOS Pod * Updated Podfile.lock * Using queryConfig instead of queryCommonSystemValues * Fix - Custom status * Fix - Custom Status - Error * Fix - Clear Pass Status - WIP * Fix - Custom Status Clear * Need to fix CST clear * WIP * Status clear - working * Using catchError operator * remove unnecessary prop * Status BottomSheet now has colored indicators * Added KeyboardTrackingView from 'react-native-keyboard-tracking-view' * Code clean up * WIP * code clean up * Added a safety check * Fix - Display suggestions * Code clean up based on PR Review * Code clean up * Code clean up * Code clean up * Corrections * Fix tsc * TS fix * Removed unnecessary prop * Fix SearchBar Ts * Updated tests * Delete search_bar.test.js.snap * Merge branch 'gekidou' into gekidou_account_screen * Revert "Merge branch 'gekidou' into gekidou_account_screen" This reverts commit 5defc313212478a55abf2f92cb4bd64dc7877342. * Fix fonts * Refactor home account screen * fix theme provider * refactor bottom sheet * remove paper provider * update drawer item snapshots * Remove options modal screen * remove react-native-ui-lib dependency * Refactor & fix custom status & navigation (including tablet) * Refactor emoji picker Co-authored-by: Avinash Lingaloo <> Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
148 lines
5.5 KiB
TypeScript
148 lines
5.5 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {View} from 'react-native';
|
|
|
|
import CustomStatusEmoji from '@components/custom_status/custom_status_emoji';
|
|
import FormattedTime from '@components/formatted_time';
|
|
import {CHANNEL, THREAD} from '@constants/screens';
|
|
import {useTheme} from '@context/theme';
|
|
import {postUserDisplayName} from '@utils/post';
|
|
import {makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {displayUsername, getUserCustomStatus, getUserTimezone, isCustomStatusExpired} from '@utils/user';
|
|
|
|
import HeaderCommentedOn from './commented_on';
|
|
import HeaderDisplayName from './display_name';
|
|
import HeaderReply from './reply';
|
|
import HeaderTag from './tag';
|
|
|
|
import type PostModel from '@typings/database/models/servers/post';
|
|
import type UserModel from '@typings/database/models/servers/user';
|
|
|
|
type HeaderProps = {
|
|
author: UserModel;
|
|
commentCount: number;
|
|
currentUser: UserModel;
|
|
enablePostUsernameOverride: boolean;
|
|
isAutoResponse: boolean;
|
|
isCustomStatusEnabled: boolean;
|
|
isEphemeral: boolean;
|
|
isMilitaryTime: boolean;
|
|
isPendingOrFailed: boolean;
|
|
isSystemPost: boolean;
|
|
isTimezoneEnabled: boolean;
|
|
isWebHook: boolean;
|
|
location: string;
|
|
post: PostModel;
|
|
rootPostAuthor?: UserModel;
|
|
shouldRenderReplyButton?: boolean;
|
|
teammateNameDisplay: string;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
container: {
|
|
flex: 1,
|
|
marginTop: 10,
|
|
},
|
|
pendingPost: {
|
|
opacity: 0.5,
|
|
},
|
|
wrapper: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
},
|
|
time: {
|
|
color: theme.centerChannelColor,
|
|
fontSize: 12,
|
|
lineHeight: 16,
|
|
marginTop: 5,
|
|
opacity: 0.5,
|
|
flex: 1,
|
|
},
|
|
customStatusEmoji: {
|
|
color: theme.centerChannelColor,
|
|
marginRight: 4,
|
|
marginTop: 1,
|
|
},
|
|
};
|
|
});
|
|
|
|
const Header = (props: HeaderProps) => {
|
|
const {
|
|
author, commentCount = 0, currentUser, enablePostUsernameOverride, isAutoResponse, isCustomStatusEnabled,
|
|
isEphemeral, isMilitaryTime, isPendingOrFailed, isSystemPost, isTimezoneEnabled, isWebHook,
|
|
location, post, rootPostAuthor, shouldRenderReplyButton, teammateNameDisplay,
|
|
} = props;
|
|
const theme = useTheme();
|
|
const style = getStyleSheet(theme);
|
|
const pendingPostStyle = isPendingOrFailed ? style.pendingPost : undefined;
|
|
const isReplyPost = Boolean(post.rootId && !isEphemeral);
|
|
const showReply = !isReplyPost && (location !== THREAD) && (shouldRenderReplyButton || (!rootPostAuthor && commentCount > 0));
|
|
const displayName = enablePostUsernameOverride ? postUserDisplayName(post, author, teammateNameDisplay, enablePostUsernameOverride) : '';
|
|
const rootAuthorDisplayName = rootPostAuthor ? displayUsername(rootPostAuthor, currentUser.locale, teammateNameDisplay, true) : undefined;
|
|
const customStatus = getUserCustomStatus(author);
|
|
const customStatusExpired = isCustomStatusExpired(author);
|
|
const showCustomStatusEmoji = Boolean(
|
|
isCustomStatusEnabled && displayName &&
|
|
!(isSystemPost || author.isBot || isAutoResponse || isWebHook) &&
|
|
customStatus,
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<View style={[style.container, pendingPostStyle]}>
|
|
<View style={style.wrapper}>
|
|
<HeaderDisplayName
|
|
commentCount={commentCount}
|
|
displayName={displayName}
|
|
isAutomation={author.isBot || isAutoResponse || isWebHook}
|
|
rootPostAuthor={rootAuthorDisplayName}
|
|
shouldRenderReplyButton={shouldRenderReplyButton}
|
|
theme={theme}
|
|
userId={post.userId}
|
|
/>
|
|
{showCustomStatusEmoji && !customStatusExpired && Boolean(customStatus?.emoji) && (
|
|
<CustomStatusEmoji
|
|
customStatus={customStatus!}
|
|
style={style.customStatusEmoji}
|
|
testID='post_header'
|
|
/>
|
|
)}
|
|
{(!isSystemPost || isAutoResponse) &&
|
|
<HeaderTag
|
|
isAutoResponder={isAutoResponse}
|
|
isAutomation={isWebHook || author.isBot}
|
|
isGuest={author.isGuest}
|
|
/>
|
|
}
|
|
<FormattedTime
|
|
timezone={isTimezoneEnabled ? getUserTimezone(currentUser) : ''}
|
|
isMilitaryTime={isMilitaryTime}
|
|
value={post.createAt}
|
|
style={style.time}
|
|
testID='post_header.date_time'
|
|
/>
|
|
{showReply && commentCount > 0 &&
|
|
<HeaderReply
|
|
commentCount={commentCount}
|
|
location={location}
|
|
post={post}
|
|
theme={theme}
|
|
/>
|
|
}
|
|
</View>
|
|
</View>
|
|
{Boolean(rootAuthorDisplayName) && location === CHANNEL &&
|
|
<HeaderCommentedOn
|
|
locale={currentUser.locale}
|
|
name={rootAuthorDisplayName!}
|
|
theme={theme}
|
|
/>
|
|
}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default React.memo(Header);
|