You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Utilities/Artist/getProgressBarKind.js

16 lines
304 B

import { kinds } from 'Helpers/Props';
function getProgressBarKind(status, monitored, progress) {
if (progress === 100) {
return status === 'ended' ? kinds.SUCCESS : kinds.PRIMARY;
}
if (monitored) {
return kinds.DANGER;
}
return kinds.WARNING;
}
export default getProgressBarKind;