mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
67 lines
1.4 KiB
JavaScript
67 lines
1.4 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import { testAllIndexers } from 'Store/Actions/settingsActions';
|
|
import { fetchHealth } from 'Store/Actions/systemActions';
|
|
import createHealthCheckSelector from 'Store/Selectors/createHealthCheckSelector';
|
|
import Health from './Health';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
createHealthCheckSelector(),
|
|
(state) => state.system.health,
|
|
(state) => state.settings.indexers.isTestingAll,
|
|
(items, health, isTestingAllIndexers) => {
|
|
const {
|
|
isFetching,
|
|
isPopulated
|
|
} = health;
|
|
|
|
return {
|
|
isFetching,
|
|
isPopulated,
|
|
items,
|
|
isTestingAllIndexers
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
dispatchFetchHealth: fetchHealth,
|
|
dispatchTestAllIndexers: testAllIndexers
|
|
};
|
|
|
|
class HealthConnector extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
componentDidMount() {
|
|
this.props.dispatchFetchHealth();
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
dispatchFetchHealth,
|
|
...otherProps
|
|
} = this.props;
|
|
|
|
return (
|
|
<Health
|
|
{...otherProps}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
HealthConnector.propTypes = {
|
|
dispatchFetchHealth: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(HealthConnector);
|