mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
20 lines
712 B
TypeScript
20 lines
712 B
TypeScript
import mergeWith from 'lodash/mergeWith';
|
|
|
|
/**
|
|
* A custom deep merger that will replace all 'columns' items with the persistent
|
|
* state, instead of the default merge behavior. This is important to preserve the user's
|
|
* order, and not lead to an inconsistent state (e.g. multiple 'Favorite' keys)
|
|
* @param persistedState the persistent state
|
|
* @param currentState the current state
|
|
* @returns the a custom deep merge
|
|
*/
|
|
export const mergeOverridingColumns = <T>(persistedState: unknown, currentState: T) => {
|
|
return mergeWith(currentState, persistedState, (_original, persistent, key) => {
|
|
if (key === 'columns') {
|
|
return persistent;
|
|
}
|
|
|
|
return undefined;
|
|
});
|
|
};
|