mattermost-mobile/app/screens/thread/thread.tsx
Elias Nahum d25c6fe245
Extra keyboard (#8348)
* Add support to use the keyboard area with a component

* fix import

* add missing providers to involved screens

* Change the way we handle the keyboard to allow using custom components in that area

* review feedback
2024-11-29 11:58:13 +08:00

166 lines
5.6 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import RNUtils from '@mattermost/rnutils';
import {uniqueId} from 'lodash';
import React, {useCallback, useEffect, useState} from 'react';
import {type LayoutChangeEvent, StyleSheet, View} from 'react-native';
import {Navigation} from 'react-native-navigation';
import {type Edge, SafeAreaView} from 'react-native-safe-area-context';
import {storeLastViewedThreadIdAndServer, removeLastViewedThreadIdAndServer} from '@actions/app/global';
import FloatingCallContainer from '@calls/components/floating_call_container';
import FreezeScreen from '@components/freeze_screen';
import PostDraft from '@components/post_draft';
import RoundedHeaderContext from '@components/rounded_header_context';
import {Screens} from '@constants';
import {ExtraKeyboardProvider} from '@context/extra_keyboard';
import useAndroidHardwareBackHandler from '@hooks/android_back_handler';
import useDidUpdate from '@hooks/did_update';
import {popTopScreen, setButtons} from '@screens/navigation';
import EphemeralStore from '@store/ephemeral_store';
import NavigationStore from '@store/navigation_store';
import ThreadPostList from './thread_post_list';
import type PostModel from '@typings/database/models/servers/post';
import type {AvailableScreens} from '@typings/screens/navigation';
type ThreadProps = {
componentId: AvailableScreens;
isCRTEnabled: boolean;
showJoinCallBanner: boolean;
isInACall: boolean;
showIncomingCalls: boolean;
rootId: string;
rootPost?: PostModel;
};
const edges: Edge[] = ['left', 'right'];
const styles = StyleSheet.create({
flex: {flex: 1},
});
const Thread = ({
componentId,
isCRTEnabled,
rootId,
rootPost,
showJoinCallBanner,
isInACall,
showIncomingCalls,
}: ThreadProps) => {
const [containerHeight, setContainerHeight] = useState(0);
const close = useCallback(() => {
popTopScreen(componentId);
}, [componentId]);
useAndroidHardwareBackHandler(componentId, close);
useEffect(() => {
const listener = {
componentDidAppear: () => {
RNUtils.setSoftKeyboardToAdjustNothing();
},
componentDidDisappear: () => {
RNUtils.setSoftKeyboardToAdjustResize();
},
};
const unsubscribe = Navigation.events().registerComponentListener(listener, componentId!);
return () => unsubscribe.remove();
}, []);
useEffect(() => {
if (isCRTEnabled && rootId) {
const id = `${componentId}-${rootId}-${uniqueId()}`;
const name = Screens.THREAD_FOLLOW_BUTTON;
setButtons(componentId, {rightButtons: [{
id,
component: {
name,
passProps: {
threadId: rootId,
},
},
}]});
} else {
setButtons(componentId, {rightButtons: []});
}
}, [componentId, rootId, isCRTEnabled]);
useEffect(() => {
// when opened from notification, first screen in stack is HOME
// if last screen was global thread or thread opened from notification, store the last viewed thread id
const isFromGlobalOrNotification = NavigationStore.getScreensInStack()[1] === Screens.GLOBAL_THREADS || NavigationStore.getScreensInStack()[1] === Screens.HOME;
if (isCRTEnabled && isFromGlobalOrNotification) {
storeLastViewedThreadIdAndServer(rootId);
}
return () => {
if (isCRTEnabled) {
removeLastViewedThreadIdAndServer();
}
if (rootId === EphemeralStore.getCurrentThreadId()) {
EphemeralStore.setCurrentThreadId('');
}
setButtons(componentId, {rightButtons: []});
};
}, [rootId]);
useDidUpdate(() => {
if (!rootPost) {
close();
}
}, [componentId, rootPost]);
const onLayout = useCallback((e: LayoutChangeEvent) => {
setContainerHeight(e.nativeEvent.layout.height);
}, []);
const showFloatingCallContainer = showJoinCallBanner || isInACall || showIncomingCalls;
return (
<FreezeScreen>
<SafeAreaView
style={styles.flex}
mode='margin'
edges={edges}
testID='thread.screen'
onLayout={onLayout}
>
<RoundedHeaderContext/>
{Boolean(rootPost) &&
<ExtraKeyboardProvider>
<View style={styles.flex}>
<ThreadPostList
nativeID={rootId}
rootPost={rootPost!}
/>
</View>
<PostDraft
channelId={rootPost!.channelId}
rootId={rootId}
testID='thread.post_draft'
containerHeight={containerHeight}
isChannelScreen={false}
/>
</ExtraKeyboardProvider>
}
{showFloatingCallContainer &&
<FloatingCallContainer
channelId={rootPost!.channelId}
showJoinCallBanner={showJoinCallBanner}
showIncomingCalls={showIncomingCalls}
isInACall={isInACall}
threadScreen={true}
/>
}
</SafeAreaView>
</FreezeScreen>
);
};
export default Thread;