mattermost-mobile/app/screens/post_options/post_options.tsx
Elias Nahum dbe565319d
BottomSheet migration to react-native-bottom-sheet (#6907)
* BottomSheet migration to react-native-bottom-sheet

* Use correct scroll view for announcement bottom sheet

* ux review

* Fix post options bottom sheet snap point

* feedback review
2023-01-05 09:51:51 +02:00

189 lines
6.8 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {BottomSheetProps, BottomSheetScrollView} from '@gorhom/bottom-sheet';
import {useManagedConfig} from '@mattermost/react-native-emm';
import React, {useMemo} from 'react';
import {ScrollView} from 'react-native';
import {useSafeAreaInsets} from 'react-native-safe-area-context';
import {CopyPermalinkOption, FollowThreadOption, ReplyOption, SaveOption} from '@components/common_post_options';
import {ITEM_HEIGHT} from '@components/option_item';
import {Screens} from '@constants';
import {REACTION_PICKER_HEIGHT, REACTION_PICKER_MARGIN} from '@constants/reaction_picker';
import {useIsTablet} from '@hooks/device';
import useNavButtonPressed from '@hooks/navigation_button_pressed';
import BottomSheet from '@screens/bottom_sheet';
import {dismissBottomSheet} from '@screens/navigation';
import {bottomSheetSnapPoint} from '@utils/helpers';
import {isSystemMessage} from '@utils/post';
import AppBindingsPostOptions from './options/app_bindings_post_option';
import CopyTextOption from './options/copy_text_option';
import DeletePostOption from './options/delete_post_option';
import EditOption from './options/edit_option';
import MarkAsUnreadOption from './options/mark_unread_option';
import PinChannelOption from './options/pin_channel_option';
import ReactionBar from './reaction_bar';
import type PostModel from '@typings/database/models/servers/post';
import type ThreadModel from '@typings/database/models/servers/thread';
const POST_OPTIONS_BUTTON = 'close-post-options';
type PostOptionsProps = {
canAddReaction: boolean;
canDelete: boolean;
canEdit: boolean;
canMarkAsUnread: boolean;
canPin: boolean;
canReply: boolean;
combinedPost?: Post | PostModel;
isSaved: boolean;
sourceScreen: typeof Screens[keyof typeof Screens];
post: PostModel;
thread?: ThreadModel;
componentId: string;
bindings: AppBinding[];
serverUrl: string;
};
const PostOptions = ({
canAddReaction, canDelete, canEdit,
canMarkAsUnread, canPin, canReply,
combinedPost, componentId, isSaved,
sourceScreen, post, thread, bindings, serverUrl,
}: PostOptionsProps) => {
const managedConfig = useManagedConfig<ManagedConfig>();
const {bottom} = useSafeAreaInsets();
const isTablet = useIsTablet();
const Scroll = useMemo(() => (isTablet ? ScrollView : BottomSheetScrollView), [isTablet]);
const close = () => {
return dismissBottomSheet(Screens.POST_OPTIONS);
};
useNavButtonPressed(POST_OPTIONS_BUTTON, componentId, close, []);
const isSystemPost = isSystemMessage(post);
const canCopyPermalink = !isSystemPost && managedConfig?.copyAndPasteProtection !== 'true';
const canCopyText = canCopyPermalink && post.message;
const shouldRenderFollow = !(sourceScreen !== Screens.CHANNEL || !thread);
const shouldShowBindings = bindings.length > 0 && !isSystemPost;
const snapPoints = useMemo(() => {
const items: BottomSheetProps['snapPoints'] = [1];
const optionsCount = [
canCopyPermalink, canCopyText, canDelete, canEdit,
canMarkAsUnread, canPin, canReply, !isSystemPost, shouldRenderFollow,
].reduce((acc, v) => {
return v ? acc + 1 : acc;
}, 0) + (shouldShowBindings ? 0.5 : 0);
items.push(bottomSheetSnapPoint(optionsCount, ITEM_HEIGHT, bottom) + (canAddReaction ? REACTION_PICKER_HEIGHT + REACTION_PICKER_MARGIN : 0));
if (shouldShowBindings) {
items.push('90%');
}
return items;
}, [
canAddReaction, canCopyPermalink, canCopyText,
canDelete, canEdit, shouldRenderFollow, shouldShowBindings,
canMarkAsUnread, canPin, canReply, isSystemPost, bottom,
]);
const renderContent = () => {
return (
<Scroll bounces={false}>
{canAddReaction &&
<ReactionBar
bottomSheetId={Screens.POST_OPTIONS}
postId={post.id}
/>
}
{canReply && sourceScreen !== Screens.THREAD &&
<ReplyOption
bottomSheetId={Screens.POST_OPTIONS}
post={post}
/>
}
{shouldRenderFollow &&
<FollowThreadOption
bottomSheetId={Screens.POST_OPTIONS}
thread={thread}
/>
}
{canMarkAsUnread && !isSystemPost &&
<MarkAsUnreadOption
bottomSheetId={Screens.POST_OPTIONS}
post={post}
sourceScreen={sourceScreen}
/>
}
{canCopyPermalink &&
<CopyPermalinkOption
bottomSheetId={Screens.POST_OPTIONS}
post={post}
sourceScreen={sourceScreen}
/>
}
{!isSystemPost &&
<SaveOption
bottomSheetId={Screens.POST_OPTIONS}
isSaved={isSaved}
postId={post.id}
/>
}
{Boolean(canCopyText && post.message) &&
<CopyTextOption
bottomSheetId={Screens.POST_OPTIONS}
postMessage={post.message}
sourceScreen={sourceScreen}
/>}
{canPin &&
<PinChannelOption
bottomSheetId={Screens.POST_OPTIONS}
isPostPinned={post.isPinned}
postId={post.id}
/>
}
{canEdit &&
<EditOption
bottomSheetId={Screens.POST_OPTIONS}
post={post}
canDelete={canDelete}
/>
}
{canDelete &&
<DeletePostOption
bottomSheetId={Screens.POST_OPTIONS}
combinedPost={combinedPost}
post={post}
/>}
{shouldShowBindings &&
<AppBindingsPostOptions
bottomSheetId={Screens.POST_OPTIONS}
post={post}
serverUrl={serverUrl}
bindings={bindings}
/>
}
</Scroll>
);
};
return (
<BottomSheet
renderContent={renderContent}
closeButtonId={POST_OPTIONS_BUTTON}
componentId={Screens.POST_OPTIONS}
initialSnapIndex={1}
snapPoints={snapPoints}
testID='post_options'
/>
);
};
export default React.memo(PostOptions);