mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-24 17:44:24 +00: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;
|