99ceaadf8b
* add hosting to first run, enable auto hosting * take welcomeVersion out of sync * app strings fix * recommended view hosting limit * small changes * fixes * appstrings * small fix
27 lines
826 B
JavaScript
27 lines
826 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import HostingSplash from './view';
|
|
import {
|
|
selectViewBlobSpace,
|
|
selectViewHostingLimit,
|
|
selectAutoBlobSpace,
|
|
selectAutoHostingLimit,
|
|
selectSaveBlobs,
|
|
} from 'redux/selectors/settings';
|
|
import { doSetDaemonSetting } from 'redux/actions/settings';
|
|
import { selectDiskSpace } from 'redux/selectors/app';
|
|
|
|
const select = (state) => ({
|
|
diskSpace: selectDiskSpace(state),
|
|
viewHostingLimit: selectViewHostingLimit(state),
|
|
autoHostingLimit: selectAutoHostingLimit(state),
|
|
viewBlobSpace: selectViewBlobSpace(state),
|
|
autoBlobSpace: selectAutoBlobSpace(state),
|
|
saveBlobs: selectSaveBlobs(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
setDaemonSetting: (key, value) => dispatch(doSetDaemonSetting(key, value)),
|
|
});
|
|
|
|
export default connect(select, perform)(HostingSplash);
|