2020-10-02 17:03:25 +02:00
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
|
|
|
|
const selectState = state => state.sync || {};
|
|
|
|
|
|
|
|
export const selectHasSyncedWallet = createSelector(selectState, state => state.hasSyncedWallet);
|
|
|
|
|
|
|
|
export const selectSyncHash = createSelector(selectState, state => state.syncHash);
|
|
|
|
|
|
|
|
export const selectSyncData = createSelector(selectState, state => state.syncData);
|
|
|
|
|
|
|
|
export const selectSetSyncErrorMessage = createSelector(selectState, state => state.setSyncErrorMessage);
|
|
|
|
|
|
|
|
export const selectGetSyncErrorMessage = createSelector(selectState, state => state.getSyncErrorMessage);
|
|
|
|
|
|
|
|
export const selectGetSyncIsPending = createSelector(selectState, state => state.getSyncIsPending);
|
|
|
|
|
|
|
|
export const selectSetSyncIsPending = createSelector(selectState, state => state.setSyncIsPending);
|
|
|
|
|
|
|
|
export const selectHashChanged = createSelector(selectState, state => state.hashChanged);
|
|
|
|
|
|
|
|
export const selectSyncApplyIsPending = createSelector(selectState, state => state.syncApplyIsPending);
|
|
|
|
|
|
|
|
export const selectSyncApplyErrorMessage = createSelector(selectState, state => state.syncApplyErrorMessage);
|
|
|
|
|
|
|
|
export const selectSyncApplyPasswordError = createSelector(selectState, state => state.syncApplyPasswordError);
|
2020-10-05 20:31:51 +02:00
|
|
|
|
|
|
|
export const selectSyncIsLocked = createSelector(selectState, state => state.syncLocked);
|
|
|
|
|
|
|
|
export const selectPrefsReady = createSelector(selectState, state => state.prefsReady);
|