mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
import { createSelector } from 'reselect';
|
|
import { isCommandExecuting } from 'Utilities/Command';
|
|
|
|
function createExecutingCommandsSelector() {
|
|
return createSelector(
|
|
(state) => state.commands.items,
|
|
(commands) => {
|
|
return commands.filter((command) => isCommandExecuting(command));
|
|
}
|
|
);
|
|
}
|
|
|
|
export default createExecutingCommandsSelector;
|