forked from Ivasoft/mattermost-mobile
* MM-21085 Updated waitHydration Updated the hydration of hte store to first check if it completed as this was being caused due to a race condition. * MM-21085 Updated for callback MM-21085 Updated for callback
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
function transformFromSet(incoming) {
|
|
const state = {...incoming};
|
|
|
|
for (const key in state) {
|
|
if (state.hasOwnProperty(key)) {
|
|
if (state[key] instanceof Set) {
|
|
state[key] = Array.from([...state[key]]);
|
|
}
|
|
}
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
function transformToSet(incoming) {
|
|
const state = {...incoming};
|
|
|
|
for (const key in state) {
|
|
if (state.hasOwnProperty(key)) {
|
|
state[key] = new Set(state[key]);
|
|
}
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
export function transformSet(incoming, setTransforms, toStorage = true) {
|
|
const state = {...incoming};
|
|
|
|
const transformer = toStorage ? transformFromSet : transformToSet;
|
|
|
|
for (const key in state) {
|
|
if (state.hasOwnProperty(key) && setTransforms.includes(key)) {
|
|
state[key] = transformer(state[key]);
|
|
}
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
export function waitForHydration(store, callback) {
|
|
if (store.getState().views.root.hydrationComplete) {
|
|
if (callback && typeof callback === 'function') {
|
|
callback();
|
|
}
|
|
} else {
|
|
const subscription = () => {
|
|
if (store.getState().views.root.hydrationComplete) {
|
|
unsubscribeFromStore();
|
|
if (callback && typeof callback === 'function') {
|
|
callback();
|
|
}
|
|
}
|
|
};
|
|
|
|
const unsubscribeFromStore = store.subscribe(subscription);
|
|
}
|
|
} |