lbry-desktop/ui/component/syncEnableFlow/index.js
2020-10-27 10:17:11 -04:00

34 lines
1.3 KiB
JavaScript

import { SETTINGS } from 'lbry-redux';
import { connect } from 'react-redux';
import { selectUserVerifiedEmail } from 'redux/selectors/user';
import {
selectGetSyncErrorMessage,
selectHasSyncedWallet,
selectGetSyncIsPending,
selectHashChanged,
} from 'redux/selectors/sync';
import { doCheckSync, doGetSync } from 'redux/actions/sync';
import { makeSelectClientSetting } from 'redux/selectors/settings';
import { doSetWalletSyncPreference } from 'redux/actions/settings';
import SyncToggle from './view';
import { doGetAndPopulatePreferences } from 'redux/actions/app';
const select = state => ({
syncEnabled: makeSelectClientSetting(SETTINGS.ENABLE_SYNC)(state),
hasSyncedWallet: selectHasSyncedWallet(state),
hasSyncChanged: selectHashChanged(state),
verifiedEmail: selectUserVerifiedEmail(state),
getSyncError: selectGetSyncErrorMessage(state),
getSyncPending: selectGetSyncIsPending(state),
language: makeSelectClientSetting(SETTINGS.LANGUAGE)(state),
});
const perform = dispatch => ({
setSyncEnabled: value => dispatch(doSetWalletSyncPreference(value)),
checkSync: () => dispatch(doCheckSync()),
getSync: (pw, cb) => dispatch(doGetSync(pw, cb)),
updatePreferences: () => dispatch(doGetAndPopulatePreferences()),
});
export default connect(select, perform)(SyncToggle);