mattermost-mobile/app/components/post_draft/post_draft.tsx
Guillermo Vayá 60d4e95229
[MM-63481] Don't substract keyboard height in Android as it was already substracted (#8697)
* don't substract keyboard height in Android as it was already substracted
2025-03-21 11:41:01 +01:00

131 lines
3.9 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useEffect, useState} from 'react';
import {Platform} from 'react-native';
import Autocomplete from '@components/autocomplete';
import {ExtraKeyboard} from '@context/extra_keyboard';
import {useServerUrl} from '@context/server';
import {useAutocompleteDefaultAnimatedValues} from '@hooks/autocomplete';
import {useKeyboardHeight} from '@hooks/device';
import {useDefaultHeaderHeight} from '@hooks/header';
import Archived from './archived';
import DraftHandler from './draft_handler';
import ReadOnly from './read_only';
const AUTOCOMPLETE_ADJUST = -5;
type Props = {
testID?: string;
canPost: boolean;
channelId: string;
channelIsArchived?: boolean;
channelIsReadOnly: boolean;
deactivatedChannel: boolean;
files?: FileInfo[];
isSearch?: boolean;
message?: string;
rootId?: string;
containerHeight: number;
isChannelScreen: boolean;
canShowPostPriority?: boolean;
}
function PostDraft({
testID,
canPost,
channelId,
channelIsArchived,
channelIsReadOnly,
deactivatedChannel,
files,
isSearch,
message = '',
rootId = '',
containerHeight,
isChannelScreen,
canShowPostPriority,
}: Props) {
const [value, setValue] = useState(message);
const [cursorPosition, setCursorPosition] = useState(message.length);
const [postInputTop, setPostInputTop] = useState(0);
const [isFocused, setIsFocused] = useState(false);
const keyboardHeight = useKeyboardHeight();
const kbHeight = Platform.OS === 'ios' ? keyboardHeight : 0; // useKeyboardHeight is already deducting the keyboard height on Android
const headerHeight = useDefaultHeaderHeight();
const serverUrl = useServerUrl();
// Update draft in case we switch channels or threads
useEffect(() => {
setValue(message);
setCursorPosition(message.length);
}, [channelId, rootId]);
const autocompletePosition = AUTOCOMPLETE_ADJUST + kbHeight + postInputTop;
const autocompleteAvailableSpace = containerHeight - autocompletePosition - (isChannelScreen ? headerHeight : 0);
const [animatedAutocompletePosition, animatedAutocompleteAvailableSpace] = useAutocompleteDefaultAnimatedValues(autocompletePosition, autocompleteAvailableSpace);
if (channelIsArchived || deactivatedChannel) {
const archivedTestID = `${testID}.archived`;
return (
<Archived
testID={archivedTestID}
deactivated={deactivatedChannel}
/>
);
}
if (channelIsReadOnly || !canPost) {
const readOnlyTestID = `${testID}.read_only`;
return (
<ReadOnly
testID={readOnlyTestID}
/>
);
}
const draftHandler = (
<DraftHandler
testID={testID}
channelId={channelId}
cursorPosition={cursorPosition}
files={files}
rootId={rootId}
canShowPostPriority={canShowPostPriority}
updateCursorPosition={setCursorPosition}
updatePostInputTop={setPostInputTop}
updateValue={setValue}
value={value}
setIsFocused={setIsFocused}
/>
);
const autoComplete = isFocused ? (
<Autocomplete
position={animatedAutocompletePosition}
updateValue={setValue}
rootId={rootId}
channelId={channelId}
cursorPosition={cursorPosition}
value={value}
isSearch={isSearch}
hasFilesAttached={Boolean(files?.length)}
inPost={true}
availableSpace={animatedAutocompleteAvailableSpace}
serverUrl={serverUrl}
/>
) : null;
return (
<>
{draftHandler}
{autoComplete}
{Platform.OS !== 'android' && <ExtraKeyboard/>}
</>
);
}
export default PostDraft;