mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
82 lines
1.8 KiB
JavaScript
82 lines
1.8 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import PageSidebarStatus from 'Components/Page/Sidebar/PageSidebarStatus';
|
|
import { fetchHealth } from 'Store/Actions/systemActions';
|
|
import createHealthCheckSelector from 'Store/Selectors/createHealthCheckSelector';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
(state) => state.app,
|
|
createHealthCheckSelector(),
|
|
(state) => state.system.health,
|
|
(app, items, health) => {
|
|
const count = items.length;
|
|
let errors = false;
|
|
let warnings = false;
|
|
|
|
items.forEach((item) => {
|
|
if (item.type === 'error') {
|
|
errors = true;
|
|
}
|
|
|
|
if (item.type === 'warning') {
|
|
warnings = true;
|
|
}
|
|
});
|
|
|
|
return {
|
|
isConnected: app.isConnected,
|
|
isReconnecting: app.isReconnecting,
|
|
isPopulated: health.isPopulated,
|
|
count,
|
|
errors,
|
|
warnings
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
fetchHealth
|
|
};
|
|
|
|
class HealthStatusConnector extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
componentDidMount() {
|
|
if (!this.props.isPopulated) {
|
|
this.props.fetchHealth();
|
|
}
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (this.props.isConnected && prevProps.isReconnecting) {
|
|
this.props.fetchHealth();
|
|
}
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
return (
|
|
<PageSidebarStatus
|
|
{...this.props}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
HealthStatusConnector.propTypes = {
|
|
isConnected: PropTypes.bool.isRequired,
|
|
isReconnecting: PropTypes.bool.isRequired,
|
|
isPopulated: PropTypes.bool.isRequired,
|
|
fetchHealth: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(HealthStatusConnector);
|