Migrate profile popover from class to functional component (#25608)

* Migrate profile popover from class to functional component

* Fix lint

* Fix tests and minor fixes

* Address feedback

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
Daniel Espino García
2024-01-15 09:28:43 +01:00
коммит произвёл GitHub
родитель 23fcb7728f
Коммит 77bdeb1c2b
52 изменённых файлов: 1826 добавлений и 5992 удалений

Просмотреть файл

@@ -8,6 +8,7 @@ import React from 'react';
import {IntlProvider} from 'react-intl';
import {Provider} from 'react-redux';
import {Router} from 'react-router-dom';
import type {Reducer} from 'redux';
import type {DeepPartial} from '@mattermost/types/utilities';
@@ -26,6 +27,7 @@ export type FullContextOptions = {
intlMessages?: Record<string, string>;
locale?: string;
useMockedStore?: boolean;
pluginReducers?: string[];
}
export const renderWithContext = (
@@ -39,7 +41,7 @@ export const renderWithContext = (
useMockedStore: partialOptions?.useMockedStore ?? false,
};
const testStore = configureOrMockStore(initialState, options.useMockedStore);
const testStore = configureOrMockStore(initialState, options.useMockedStore, partialOptions?.pluginReducers);
// Store these in an object so that they can be maintained through rerenders
const renderState = {
@@ -82,7 +84,7 @@ export const renderWithContext = (
* Rerenders the component after replacing the entire store state with the provided one.
*/
replaceStoreState: (newInitialState: DeepPartial<GlobalState>) => {
renderState.store = configureOrMockStore(newInitialState, renderState.options.useMockedStore);
renderState.store = configureOrMockStore(newInitialState, renderState.options.useMockedStore, partialOptions?.pluginReducers);
results.rerender(renderState.component);
},
@@ -92,15 +94,25 @@ export const renderWithContext = (
*/
updateStoreState: (stateDiff: DeepPartial<GlobalState>) => {
const newInitialState = mergeObjects(renderState.store.getState(), stateDiff);
renderState.store = configureOrMockStore(newInitialState, renderState.options.useMockedStore);
renderState.store = configureOrMockStore(newInitialState, renderState.options.useMockedStore, partialOptions?.pluginReducers);
results.rerender(renderState.component);
},
};
};
function configureOrMockStore<T>(initialState: DeepPartial<T>, useMockedStore: boolean) {
let testStore = configureStore(initialState);
function configureOrMockStore<T>(initialState: DeepPartial<T>, useMockedStore: boolean, extraReducersKeys?: string[]) {
let testReducers;
if (extraReducersKeys) {
const newReducers: Record<string, Reducer> = {};
extraReducersKeys.forEach((v) => {
newReducers[v] = (state = null) => state;
});
testReducers = newReducers;
}
let testStore = configureStore(initialState, testReducers);
if (useMockedStore) {
testStore = mockStore(testStore.getState());
}