mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-28 18:05:51 -04:00
91 lines
2.1 KiB
JavaScript
91 lines
2.1 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 { fetchLogFiles } from 'Store/Actions/systemActions';
|
|
import createCommandExecutingSelector from 'Store/Selectors/createCommandExecutingSelector';
|
|
import combinePath from 'Utilities/String/combinePath';
|
|
import LogFiles from './LogFiles';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
(state) => state.system.logFiles,
|
|
(state) => state.system.status.item,
|
|
createCommandExecutingSelector(commandNames.DELETE_LOG_FILES),
|
|
(logFiles, status, deleteFilesExecuting) => {
|
|
const {
|
|
isFetching,
|
|
items
|
|
} = logFiles;
|
|
|
|
const {
|
|
appData,
|
|
isWindows
|
|
} = status;
|
|
|
|
return {
|
|
isFetching,
|
|
items,
|
|
deleteFilesExecuting,
|
|
currentLogView: 'Log Files',
|
|
location: combinePath(isWindows, appData, ['logs'])
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
fetchLogFiles,
|
|
executeCommand
|
|
};
|
|
|
|
class LogFilesConnector extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
componentDidMount() {
|
|
this.props.fetchLogFiles();
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (prevProps.deleteFilesExecuting && !this.props.deleteFilesExecuting) {
|
|
this.props.fetchLogFiles();
|
|
}
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onRefreshPress = () => {
|
|
this.props.fetchLogFiles();
|
|
}
|
|
|
|
onDeleteFilesPress = () => {
|
|
this.props.executeCommand({ name: commandNames.DELETE_LOG_FILES });
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
return (
|
|
<LogFiles
|
|
onRefreshPress={this.onRefreshPress}
|
|
onDeleteFilesPress={this.onDeleteFilesPress}
|
|
{...this.props}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
LogFilesConnector.propTypes = {
|
|
deleteFilesExecuting: PropTypes.bool.isRequired,
|
|
fetchLogFiles: PropTypes.func.isRequired,
|
|
executeCommand: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(LogFilesConnector);
|