* Update transform to make Android's post list scroll smooth * set start since metric when appStarted is false * Refactor Formatted components * Downgrade RNN to 7.13.0 & patch XCDYouTube to allow video playback * Refactor Post list and all related components * review suggestion rename hour12 to isMilitaryTime * feedback review use aliases * feedback review deconstruct actions in markdown_link * feedback review simplify if/else statement in combined_used_activity * Simplify if statement for consecutive posts * Specify npm version to build iOS on CI * Refactor network_indicator * render Icon in file gallery with transparent background * Increase timeout to scroll to bottom when posting a new message * fix: scroll when tapping on the new messages bar * fix: dismiss all modals * fix navigation tests * Handle dismissAllModals for iOS to prevent blank screens * Prevent modal from dismissing when showing the thread screen in the stack * Update app/components/image_viewport.tsx Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com> * Update app/utils/post.ts Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com> * fix: rename selector and prop * Fix XCDYouTube patch * Fix posting from a thread in the right channel * do not render reply bar on the thread screen * close previous permalink before showing a new one * move XCDYouTube patch to ios/patches folder * closePermalink directly instead of using an onClose prop Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com> Co-authored-by: Miguel Alatzar <this.migbot@gmail.com>
88 lines
3.4 KiB
TypeScript
88 lines
3.4 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {removePost} from '@mm-redux/actions/posts';
|
|
import {getChannel} from '@mm-redux/selectors/entities/channels';
|
|
import {getConfig} from '@mm-redux/selectors/entities/general';
|
|
import {getPost, isRootPost} from '@mm-redux/selectors/entities/posts';
|
|
import {getMyPreferences, getTeammateNameDisplaySetting} from '@mm-redux/selectors/entities/preferences';
|
|
import {getCurrentTeamId} from '@mm-redux/selectors/entities/teams';
|
|
import {getUser} from '@mm-redux/selectors/entities/users';
|
|
import {isPostFlagged, isSystemMessage} from '@mm-redux/utils/post_utils';
|
|
import {canDeletePost} from '@selectors/permissions';
|
|
import {areConsecutivePosts, postUserDisplayName} from '@utils/post';
|
|
|
|
import type {Post as PostType} from '@mm-redux/types/posts';
|
|
import type {Theme} from '@mm-redux/types/preferences';
|
|
import type {GlobalState} from '@mm-redux/types/store';
|
|
|
|
import Post from './post';
|
|
|
|
type OwnProps = {
|
|
postId: string;
|
|
post?: PostType;
|
|
previousPostId?: string;
|
|
nextPostId?: string;
|
|
theme: Theme;
|
|
}
|
|
|
|
function mapSateToProps(state: GlobalState, ownProps: OwnProps) {
|
|
const {nextPostId, postId, previousPostId} = ownProps;
|
|
const post = ownProps.post || getPost(state, postId);
|
|
const myPreferences = getMyPreferences(state);
|
|
const channel = getChannel(state, post.channel_id);
|
|
const teamId = getCurrentTeamId(state);
|
|
const author = getUser(state, post.user_id);
|
|
const previousPost = previousPostId ? getPost(state, previousPostId) : undefined;
|
|
const config = getConfig(state);
|
|
const teammateNameDisplay = getTeammateNameDisplaySetting(state);
|
|
const enablePostUsernameOverride = config.EnablePostUsernameOverride === 'true';
|
|
const isConsecutivePost = post && previousPost && !author?.is_bot && !isRootPost(state, post.id) && areConsecutivePosts(post, previousPost);
|
|
let isFirstReply = true;
|
|
let isLastReply = true;
|
|
let canDelete = false;
|
|
let rootPostAuthor;
|
|
|
|
if (post && channel?.delete_at === 0) {
|
|
canDelete = canDeletePost(state, channel?.team_id || teamId, post?.channel_id, post, false);
|
|
}
|
|
|
|
if (post.root_id) {
|
|
const nextPost = nextPostId ? getPost(state, nextPostId) : undefined;
|
|
isFirstReply = (previousPost?.id === post.root_id || previousPost?.root_id === post.root_id);
|
|
isLastReply = !(nextPost?.root_id === post.root_id);
|
|
}
|
|
|
|
if (!isSystemMessage(post)) {
|
|
const rootPost = post.root_id ? getPost(state, post.root_id) : undefined;
|
|
const rootPostUser = rootPost?.user_id ? getUser(state, rootPost.user_id) : undefined;
|
|
const differentThreadSequence = previousPost?.root_id ? previousPost?.root_id !== post.root_id : previousPost?.id !== post.root_id;
|
|
|
|
if (rootPost?.user_id &&
|
|
previousPostId &&
|
|
differentThreadSequence
|
|
) {
|
|
rootPostAuthor = postUserDisplayName(rootPost, rootPostUser, teammateNameDisplay, enablePostUsernameOverride);
|
|
}
|
|
}
|
|
|
|
return {
|
|
canDelete,
|
|
enablePostUsernameOverride,
|
|
isConsecutivePost,
|
|
isFirstReply,
|
|
isFlagged: isPostFlagged(post.id, myPreferences),
|
|
isLastReply,
|
|
post,
|
|
rootPostAuthor,
|
|
teammateNameDisplay,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
removePost,
|
|
};
|
|
|
|
export default connect(mapSateToProps, mapDispatchToProps)(Post);
|