* UX redesign * fix call bar profile on Android * update @mattermost/calls; use common color utils * collapseIcon and time colour fixes (not correct yet on Onyx or Quartz) * fix time and collapseIcon colors; fix unavailable wrapper * center users, scroll when full; statusBar bg and styling * better spacing; better screenshare; no reaction bar when no reactions * remove margins from bottom; speaker/react buttonOn colour is now callsBg * update calls-common; update raised hand button colors * i18n * cleaning up style sheets * fix package-lock * fix vertical alignment of phone icon * add a noBorder prop to UserAvatarsStack * typography, icon sizing, spacing changes * add rounded header; UI improvements; refactor observables * updating phone icon, join call margins * join call text; color theming * remove unneeded container * phone-outline -> phone * split CallsChannelState into boolean components * use sidebar bg to generate calls bg * fix hand icon, button texts
150 lines
5.5 KiB
TypeScript
150 lines
5.5 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useCallback, useEffect, useRef, useState} from 'react';
|
|
import {type LayoutChangeEvent, StyleSheet, View} from 'react-native';
|
|
import {type Edge, SafeAreaView, useSafeAreaInsets} from 'react-native-safe-area-context';
|
|
|
|
import FloatingCallContainer from '@calls/components/floating_call_container';
|
|
import {RoundedHeaderCalls} from '@calls/components/join_call_banner/rounded_header_calls';
|
|
import FreezeScreen from '@components/freeze_screen';
|
|
import PostDraft from '@components/post_draft';
|
|
import {Screens} from '@constants';
|
|
import {ACCESSORIES_CONTAINER_NATIVE_ID} from '@constants/post_draft';
|
|
import useAndroidHardwareBackHandler from '@hooks/android_back_handler';
|
|
import {useChannelSwitch} from '@hooks/channel_switch';
|
|
import {useIsTablet} from '@hooks/device';
|
|
import {useDefaultHeaderHeight} from '@hooks/header';
|
|
import {useKeyboardTrackingPaused} from '@hooks/keyboard_tracking';
|
|
import {useTeamSwitch} from '@hooks/team_switch';
|
|
import {popTopScreen} from '@screens/navigation';
|
|
import EphemeralStore from '@store/ephemeral_store';
|
|
|
|
import ChannelPostList from './channel_post_list';
|
|
import ChannelHeader from './header';
|
|
|
|
import type {AvailableScreens} from '@typings/screens/navigation';
|
|
import type {KeyboardTrackingViewRef} from 'react-native-keyboard-tracking-view';
|
|
|
|
type ChannelProps = {
|
|
channelId: string;
|
|
componentId?: AvailableScreens;
|
|
isCallInCurrentChannel: boolean;
|
|
isInACall: boolean;
|
|
isInCurrentChannelCall: boolean;
|
|
isCallsEnabledInChannel: boolean;
|
|
isTabletView?: boolean;
|
|
};
|
|
|
|
const edges: Edge[] = ['left', 'right'];
|
|
const trackKeyboardForScreens = [Screens.HOME, Screens.CHANNEL];
|
|
|
|
const styles = StyleSheet.create({
|
|
flex: {
|
|
flex: 1,
|
|
},
|
|
});
|
|
|
|
const Channel = ({
|
|
channelId,
|
|
componentId,
|
|
isCallInCurrentChannel,
|
|
isInACall,
|
|
isInCurrentChannelCall,
|
|
isCallsEnabledInChannel,
|
|
isTabletView,
|
|
}: ChannelProps) => {
|
|
const isTablet = useIsTablet();
|
|
const insets = useSafeAreaInsets();
|
|
const [shouldRenderPosts, setShouldRenderPosts] = useState(false);
|
|
const switchingTeam = useTeamSwitch();
|
|
const switchingChannels = useChannelSwitch();
|
|
const defaultHeight = useDefaultHeaderHeight();
|
|
const postDraftRef = useRef<KeyboardTrackingViewRef>(null);
|
|
const [containerHeight, setContainerHeight] = useState(0);
|
|
const shouldRender = !switchingTeam && !switchingChannels && shouldRenderPosts && Boolean(channelId);
|
|
const handleBack = () => {
|
|
popTopScreen(componentId);
|
|
};
|
|
|
|
useKeyboardTrackingPaused(postDraftRef, channelId, trackKeyboardForScreens);
|
|
useAndroidHardwareBackHandler(componentId, handleBack);
|
|
|
|
const marginTop = defaultHeight + (isTablet ? 0 : -insets.top);
|
|
useEffect(() => {
|
|
// This is done so that the header renders
|
|
// and the screen does not look totally blank
|
|
const raf = requestAnimationFrame(() => {
|
|
setShouldRenderPosts(Boolean(channelId));
|
|
});
|
|
|
|
// This is done to give time to the WS event
|
|
const t = setTimeout(() => {
|
|
EphemeralStore.removeSwitchingToChannel(channelId);
|
|
}, 500);
|
|
|
|
return () => {
|
|
cancelAnimationFrame(raf);
|
|
clearTimeout(t);
|
|
EphemeralStore.removeSwitchingToChannel(channelId);
|
|
};
|
|
}, [channelId]);
|
|
|
|
const onLayout = useCallback((e: LayoutChangeEvent) => {
|
|
setContainerHeight(e.nativeEvent.layout.height);
|
|
}, []);
|
|
|
|
const showJoinCallBanner = isCallInCurrentChannel && !isInCurrentChannelCall;
|
|
const renderCallsComponents = showJoinCallBanner || isInACall;
|
|
|
|
return (
|
|
<FreezeScreen>
|
|
<SafeAreaView
|
|
style={styles.flex}
|
|
mode='margin'
|
|
edges={edges}
|
|
testID='channel.screen'
|
|
onLayout={onLayout}
|
|
>
|
|
<ChannelHeader
|
|
channelId={channelId}
|
|
componentId={componentId}
|
|
callsEnabledInChannel={isCallsEnabledInChannel}
|
|
isTabletView={isTabletView}
|
|
/>
|
|
{showJoinCallBanner && <RoundedHeaderCalls/>}
|
|
{shouldRender &&
|
|
<>
|
|
<View style={[styles.flex, {marginTop}]}>
|
|
<ChannelPostList
|
|
channelId={channelId}
|
|
nativeID={channelId}
|
|
currentCallBarVisible={isInACall}
|
|
joinCallBannerVisible={showJoinCallBanner}
|
|
/>
|
|
</View>
|
|
<PostDraft
|
|
channelId={channelId}
|
|
keyboardTracker={postDraftRef}
|
|
scrollViewNativeID={channelId}
|
|
accessoriesContainerID={ACCESSORIES_CONTAINER_NATIVE_ID}
|
|
testID='channel.post_draft'
|
|
containerHeight={containerHeight}
|
|
isChannelScreen={true}
|
|
canShowPostPriority={true}
|
|
/>
|
|
</>
|
|
}
|
|
{renderCallsComponents &&
|
|
<FloatingCallContainer
|
|
channelId={channelId}
|
|
showJoinCallBanner={showJoinCallBanner}
|
|
isInACall={isInACall}
|
|
/>
|
|
}
|
|
</SafeAreaView>
|
|
</FreezeScreen>
|
|
);
|
|
};
|
|
|
|
export default Channel;
|