mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-19 22:04:56 -04:00
91 lines
2.2 KiB
JavaScript
91 lines
2.2 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import * as commandNames from 'Commands/commandNames';
|
|
import { executeCommand } from 'Store/Actions/commandActions';
|
|
import { fetchUpdateLogFiles } from 'Store/Actions/systemActions';
|
|
import createCommandExecutingSelector from 'Store/Selectors/createCommandExecutingSelector';
|
|
import combinePath from 'Utilities/String/combinePath';
|
|
import LogFiles from '../Files/LogFiles';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
(state) => state.system.updateLogFiles,
|
|
(state) => state.system.status.item,
|
|
createCommandExecutingSelector(commandNames.DELETE_UPDATE_LOG_FILES),
|
|
(updateLogFiles, status, deleteFilesExecuting) => {
|
|
const {
|
|
isFetching,
|
|
items
|
|
} = updateLogFiles;
|
|
|
|
const {
|
|
appData,
|
|
isWindows
|
|
} = status;
|
|
|
|
return {
|
|
isFetching,
|
|
items,
|
|
deleteFilesExecuting,
|
|
currentLogView: 'Updater Log Files',
|
|
location: combinePath(isWindows, appData, ['UpdateLogs'])
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
fetchUpdateLogFiles,
|
|
executeCommand
|
|
};
|
|
|
|
class UpdateLogFilesConnector extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
componentDidMount() {
|
|
this.props.fetchUpdateLogFiles();
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (prevProps.deleteFilesExecuting && !this.props.deleteFilesExecuting) {
|
|
this.props.fetchUpdateLogFiles();
|
|
}
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onRefreshPress = () => {
|
|
this.props.fetchUpdateLogFiles();
|
|
}
|
|
|
|
onDeleteFilesPress = () => {
|
|
this.props.executeCommand({ name: commandNames.DELETE_UPDATE_LOG_FILES });
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
return (
|
|
<LogFiles
|
|
onRefreshPress={this.onRefreshPress}
|
|
onDeleteFilesPress={this.onDeleteFilesPress}
|
|
{...this.props}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
UpdateLogFilesConnector.propTypes = {
|
|
deleteFilesExecuting: PropTypes.bool.isRequired,
|
|
fetchUpdateLogFiles: PropTypes.func.isRequired,
|
|
executeCommand: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(UpdateLogFilesConnector);
|