* Initial setup for new keyboard * fix the offset calculation onMove by adding isKeyboardFullyOpened * Done with the keyboard handling implementation * Handled keyboard focus and blured state using context * Added default height for input container * Android support * Tablet state handling * Fix for refreshing offset in list * Created a default context for mention post list * Fix linter errors * Fix tests * Minor * Fix the height issue for tablet view * Review comments * Dependency fix * Reveiw comment * keyboard animation only enabled with screen on top navigation * added tests * Added extra keyboard component for emoji picker (#9328) * Added extra keyboard component * handled swipe geature for extra keyboard * scroll to bottom visible on emoji picker * Check for stale event for keyboard geature area * fix keyboard stale event for mid-gesture change swipe direction * Closing emoji picker when message priority is opened * changing to thread view closes emoji picker * Close emoij picker and keyboard when attachment icons are clicked * handle android emoji picker behaviour * Remove emoji picker code * fix tests * Address reviev comments * Test fixes * usePreventDoubleTab for race condition and corrected comment on isInputAccessoryViewMode flag * File attachments option in bottom sheet quick action (#9331) * Added extra keyboard component * handled swipe geature for extra keyboard * File attachments option in bottom sheet quick action * Updated tests * i18n * fix test * Added tests * Review comment * fix tests * Integrated Emoji picker to Extra keyboard component. (#9339) * Added extra keyboard component * handled swipe geature for extra keyboard * scroll to bottom visible on emoji picker * Fix the post input container height change issue * Added emoji picker with search functionality * keyboard height not recorded fallback to default height, set search to false closing emoji picker * fix search funcitonality in android * scroll to end bottom dismissed with pressed * Fixed the scroll issue for android * fix the flickering post input issue * Wired up the emoji picker * Added keyboard and spaceback in emoji picker * intl extract * initial cursor position and simple calculation review comment * separated grapheme to utils file * Review comments * nitpick * Fix the bottom safe area and navigation stack restore fix * Fix test * disabled emoji picker in edit post screen * change the name of the variable to name it clarier * fix the tab gap issue in andriod * disabled the emoji skin tone change on andriod * fix the input container jump issue * fix the failing test * UX review * added white space after the attachment icon * When @ or / is press open keyboard on andriod also fix the scroll issue when keyboard is open * back bottom closes emoji picker and opening keyboard jump fix * reverted code * fixed the flickering issue of input and scroll position fix * Fix the gap issue in thread * fix the warning reaminated issue when opening a channel * Fix the extra space issue between input and emoij picker * Minor fix for extra space between input and emoji picker * Fix thread view bottom safe area and gap between keyboard and searched emojis * Fix the keyboard issue in tablet * Fix the warning issue react-native-keyboard-controller * Fix tests * Fix the tablet search hight issue * Replaced the ExtraKeyboardProvider with KeyboardProvider from rnkc for permalink * Bottom sheet jump issue resolved * Search do not close after selecting emoji in search list * Added the bottom inset height in search emoji for android * fix buid issue * Fix the cancel state to emoji picker * use portals for autocomplete * fix permalink extra space in post list * Portal only for android --------- Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Rahim Rahman <rahim.rahman@mattermost.com> Co-authored-by: Harshil Sharma <harshilsharma63@gmail.com> Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
414 lines
13 KiB
TypeScript
414 lines
13 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {act} from '@testing-library/react-native';
|
|
import React, {createRef, type ComponentProps} from 'react';
|
|
import {DeviceEventEmitter, type FlatList, Platform} from 'react-native';
|
|
|
|
import * as localPostFunctions from '@actions/local/post';
|
|
import * as postFunctions from '@actions/remote/post';
|
|
import {Events, Screens} from '@constants';
|
|
import {renderWithEverything} from '@test/intl-test-helper';
|
|
import TestHelper from '@test/test_helper';
|
|
|
|
import PostList from './post_list';
|
|
|
|
jest.mock('@components/post_list/post', () => 'Post');
|
|
jest.mock('@components/post_list/thread_overview', () => 'ThreadOverview');
|
|
jest.mock('@components/post_list/more_messages', () => 'MoreMessages');
|
|
jest.mock('@components/post_list/combined_user_activity', () => 'CombinedUserActivity');
|
|
jest.mock('@components/post_list/scroll_to_end_view', () => 'ScrollToEndView');
|
|
jest.mock('@actions/remote/post', () => {
|
|
return {
|
|
fetchPosts: jest.fn(),
|
|
fetchPostThread: jest.fn(),
|
|
};
|
|
});
|
|
jest.mock('@actions/local/post', () => ({
|
|
removePost: jest.fn(),
|
|
}));
|
|
|
|
import type {PostModel} from '@database/models/server';
|
|
import type Database from '@nozbe/watermelondb/Database';
|
|
|
|
describe('components/post_list/PostList', () => {
|
|
let database: Database;
|
|
const serverUrl = 'https://server.com';
|
|
const fetchPostsSpy = jest.spyOn(postFunctions, 'fetchPosts');
|
|
const fetchPostThreadSpy = jest.spyOn(postFunctions, 'fetchPostThread');
|
|
const removePostSpy = jest.spyOn(localPostFunctions, 'removePost');
|
|
const unrelatedNativeEventsAttributes = {
|
|
contentSize: {height: 1000, width: 100},
|
|
layoutMeasurement: {height: 100, width: 100},
|
|
};
|
|
|
|
beforeAll(async () => {
|
|
const server = await TestHelper.setupServerDatabase();
|
|
database = server.database;
|
|
});
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
Platform.select = jest.fn().mockImplementation((obj) => obj.ios);
|
|
});
|
|
|
|
const mockPostModel = (overrides: Partial<PostModel> = {}): PostModel => ({
|
|
id: 'post-id',
|
|
channelId: 'channel-id',
|
|
createAt: Date.now(),
|
|
deleteAt: 0,
|
|
type: 'custom_post_type',
|
|
userId: 'user-id',
|
|
...overrides,
|
|
} as PostModel);
|
|
|
|
const mockPosts = [
|
|
mockPostModel(),
|
|
];
|
|
|
|
const baseProps: ComponentProps<typeof PostList> = {
|
|
appsEnabled: false,
|
|
channelId: 'channel-id',
|
|
currentTimezone: 'UTC',
|
|
currentUserId: 'current-user',
|
|
currentUsername: 'username',
|
|
customEmojiNames: [],
|
|
lastViewedAt: 0,
|
|
location: Screens.CHANNEL,
|
|
posts: mockPosts,
|
|
savedPostIds: new Set(),
|
|
testID: 'post_list',
|
|
shouldShowJoinLeaveMessages: false,
|
|
listRef: createRef<FlatList<string | PostModel>>(),
|
|
};
|
|
|
|
it('renders correctly with basic props', () => {
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList
|
|
{...baseProps}
|
|
/>,
|
|
{database, serverUrl},
|
|
);
|
|
expect(getByTestId('post_list.flat_list')).toBeTruthy();
|
|
});
|
|
|
|
it('renders posts correctly', () => {
|
|
const props = {
|
|
...baseProps,
|
|
posts: mockPosts,
|
|
};
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
expect(getByTestId('post_list.post')).toBeTruthy();
|
|
});
|
|
|
|
it('shows new message line when specified', () => {
|
|
const props = {
|
|
...baseProps,
|
|
showNewMessageLine: true,
|
|
lastViewedAt: 1234567000, // Before mockPost's create_at
|
|
posts: [mockPostModel({createAt: 1234567890})],
|
|
};
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
expect(getByTestId('post_list.new_messages_line')).toBeTruthy();
|
|
});
|
|
|
|
it('handles refresh in channel', async () => {
|
|
const {getByTestId} = renderWithEverything(<PostList {...baseProps}/>, {database, serverUrl});
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
await act(async () => {
|
|
flatList.props.onRefresh();
|
|
});
|
|
|
|
expect(fetchPostsSpy).toHaveBeenCalledWith('https://server.com', 'channel-id');
|
|
});
|
|
|
|
it('handles refresh in thread', async () => {
|
|
const props = {
|
|
...baseProps,
|
|
location: Screens.THREAD,
|
|
rootId: 'root-post-id',
|
|
};
|
|
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
await act(async () => {
|
|
flatList.props.onRefresh();
|
|
});
|
|
|
|
expect(fetchPostThreadSpy).toHaveBeenCalledWith(serverUrl, 'root-post-id', expect.any(Object));
|
|
});
|
|
|
|
it('removes ephemeral posts on refresh', async () => {
|
|
const ephemeralPost = mockPostModel({id: 'ephemeral1', type: 'system_ephemeral'});
|
|
const props = {
|
|
...baseProps,
|
|
posts: [mockPostModel(), ephemeralPost],
|
|
};
|
|
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
await act(async () => {
|
|
flatList.props.onRefresh();
|
|
});
|
|
|
|
expect(removePostSpy).toHaveBeenCalledWith(serverUrl, ephemeralPost);
|
|
});
|
|
|
|
it('handles scroll to bottom event', () => {
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...baseProps}/>,
|
|
{database},
|
|
);
|
|
|
|
act(() => {
|
|
DeviceEventEmitter.emit(Events.POST_LIST_SCROLL_TO_BOTTOM, Screens.CHANNEL);
|
|
});
|
|
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
expect(flatList.props.inverted).toBe(true);
|
|
});
|
|
|
|
it('highlights specified post', () => {
|
|
const props = {
|
|
...baseProps,
|
|
highlightedId: mockPosts[0].id,
|
|
};
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
|
|
const post = getByTestId('post_list.post');
|
|
expect(post.props.highlight).toBe(true);
|
|
});
|
|
|
|
it('renders thread overview in thread screen', () => {
|
|
const props = {
|
|
...baseProps,
|
|
location: Screens.THREAD,
|
|
rootId: 'root-post-id',
|
|
};
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
expect(getByTestId('post_list.thread_overview')).toBeTruthy();
|
|
});
|
|
|
|
it('shows more messages button when specified', () => {
|
|
const props = {
|
|
...baseProps,
|
|
showMoreMessages: true,
|
|
};
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database},
|
|
);
|
|
expect(getByTestId('post_list.more_messages_button')).toBeTruthy();
|
|
});
|
|
|
|
it('handles onEndReached callback', () => {
|
|
const onEndReached = jest.fn();
|
|
const props = {
|
|
...baseProps,
|
|
onEndReached,
|
|
};
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
act(() => {
|
|
flatList.props.onEndReached();
|
|
});
|
|
|
|
expect(onEndReached).toHaveBeenCalled();
|
|
});
|
|
|
|
it('handles onViewableItemsChanged callback', async () => {
|
|
const emitSpy = jest.spyOn(DeviceEventEmitter, 'emit');
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...baseProps}/>,
|
|
{database, serverUrl},
|
|
);
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
const mockViewableItems = [{
|
|
item: {type: 'post', value: {currentPost: mockPosts[0]}},
|
|
isViewable: true,
|
|
}];
|
|
|
|
act(() => {
|
|
flatList.props.onViewableItemsChanged({viewableItems: mockViewableItems});
|
|
});
|
|
|
|
// Verify the DeviceEventEmitter.emit was called with correct params
|
|
expect(emitSpy).toHaveBeenCalledWith(
|
|
Events.ITEM_IN_VIEWPORT,
|
|
{[`${Screens.CHANNEL}-${mockPosts[0].id}`]: true},
|
|
);
|
|
});
|
|
|
|
it('handles scroll to index failure', async () => {
|
|
const posts = Array.from({length: 10}, (_, i) =>
|
|
mockPostModel({id: `post-${i}`, createAt: Date.now() + i}),
|
|
);
|
|
const props = {
|
|
...baseProps,
|
|
posts,
|
|
highlightedId: 'post-5',
|
|
};
|
|
|
|
const mockScrollToIndex = jest.fn();
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
flatList.props.scrollToIndex = mockScrollToIndex;
|
|
|
|
act(() => {
|
|
flatList.props.onScrollToIndexFailed({
|
|
index: 5,
|
|
highestMeasuredFrameIndex: 3,
|
|
averageItemLength: 100,
|
|
});
|
|
});
|
|
|
|
// When highlightedId is present, scrollToIndex should not be called
|
|
expect(mockScrollToIndex).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('renders different post types correctly', async () => {
|
|
const posts = [
|
|
mockPostModel({type: 'system_join_channel'}),
|
|
mockPostModel({type: 'system_leave_channel'}),
|
|
];
|
|
const props = {
|
|
...baseProps,
|
|
posts,
|
|
shouldShowJoinLeaveMessages: true,
|
|
};
|
|
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
|
|
expect(getByTestId('post_list.combined_user_activity')).toBeTruthy();
|
|
});
|
|
|
|
it('handles scroll events and not show scroll-to-end button', () => {
|
|
const posts = Array.from({length: 5}, (_, i) =>
|
|
mockPostModel({id: `post-${i}`, createAt: Date.now() + i}),
|
|
);
|
|
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList
|
|
{...baseProps}
|
|
posts={posts}
|
|
/>,
|
|
{database, serverUrl},
|
|
);
|
|
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
act(() => {
|
|
flatList.props.onScroll({
|
|
nativeEvent: {
|
|
contentOffset: {y: 0},
|
|
...unrelatedNativeEventsAttributes,
|
|
},
|
|
});
|
|
});
|
|
|
|
const scrollToEndView = getByTestId('scroll-to-end-view');
|
|
expect(scrollToEndView.props).toHaveProperty('showScrollToEndBtn', false);
|
|
expect(scrollToEndView.props).toHaveProperty('isNewMessage', false);
|
|
});
|
|
|
|
it('handles scroll events and updates scroll to end button visibility with new message', () => {
|
|
const posts = Array.from({length: 5}, (_, i) =>
|
|
mockPostModel({id: `post-${i}`, createAt: Date.now() + i}),
|
|
);
|
|
|
|
const {getByTestId, rerender} = renderWithEverything(
|
|
<PostList
|
|
{...baseProps}
|
|
posts={posts}
|
|
/>,
|
|
{database, serverUrl},
|
|
);
|
|
|
|
// a new post added
|
|
const newPosts = [mockPostModel({createAt: Date.now() + 200}), ...posts];
|
|
|
|
rerender(
|
|
<PostList
|
|
{...baseProps}
|
|
posts={newPosts}
|
|
/>);
|
|
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
// which causes the content offset to shift
|
|
act(() => {
|
|
flatList.props.onMomentumScrollEnd({
|
|
nativeEvent: {
|
|
contentOffset: {y: 200},
|
|
...unrelatedNativeEventsAttributes,
|
|
},
|
|
});
|
|
});
|
|
const scrollToEndView = getByTestId('scroll-to-end-view');
|
|
expect(scrollToEndView.props).toHaveProperty('showScrollToEndBtn', true);
|
|
expect(scrollToEndView.props).toHaveProperty('isNewMessage', true);
|
|
|
|
// if user post an image, scroll to bottom being called to push offset to 0, which causes the "New Messages" message to disappear
|
|
act(() => {
|
|
flatList.props.onMomentumScrollEnd({
|
|
nativeEvent: {
|
|
contentOffset: {y: 0},
|
|
...unrelatedNativeEventsAttributes,
|
|
},
|
|
});
|
|
});
|
|
expect(scrollToEndView.props).toHaveProperty('showScrollToEndBtn', false);
|
|
expect(scrollToEndView.props).toHaveProperty('isNewMessage', false);
|
|
});
|
|
|
|
it('disables pull to refresh when specified', async () => {
|
|
const props = {
|
|
...baseProps,
|
|
disablePullToRefresh: true,
|
|
};
|
|
const {getByTestId} = renderWithEverything(
|
|
<PostList {...props}/>,
|
|
{database, serverUrl},
|
|
);
|
|
const flatList = getByTestId('post_list.flat_list');
|
|
|
|
await act(async () => {
|
|
flatList.props.onRefresh();
|
|
});
|
|
|
|
expect(fetchPostsSpy).not.toHaveBeenCalled();
|
|
});
|
|
});
|