Progress loading check for null, not 0
This commit is contained in:
@ -133374,13 +133374,14 @@ var makeProcessProgressSelector = function makeProcessProgressSelector(keys) {
|
||||
}).filter(function (i) {
|
||||
return i.status === 'running';
|
||||
});
|
||||
if (!selectedProcesses.length) return null;
|
||||
var total = 0;
|
||||
var remaining = 0;
|
||||
selectedProcesses.forEach(function (process) {
|
||||
if (process.total) total += process.total;
|
||||
if (process.remaining) remaining += process.remaining;
|
||||
});
|
||||
return total && remaining ? ((total - remaining) / total).toFixed(4) : 1;
|
||||
return total && remaining ? ((total - remaining) / total).toFixed(4) : 0;
|
||||
});
|
||||
};
|
||||
|
||||
@ -141335,7 +141336,7 @@ var LibraryAlbums = /*#__PURE__*/function (_React$Component) {
|
||||
filter = _this$state2.filter;
|
||||
var albums = _this.props.albums;
|
||||
|
||||
if (loading_progress < 1) {
|
||||
if (loading_progress !== null) {
|
||||
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_Loader__WEBPACK_IMPORTED_MODULE_18__["default"], {
|
||||
body: true,
|
||||
loading: true,
|
||||
@ -141416,7 +141417,7 @@ var LibraryAlbums = /*#__PURE__*/function (_React$Component) {
|
||||
var _this$state3 = _this.state,
|
||||
filter = _this$state3.filter,
|
||||
per_page = _this$state3.per_page;
|
||||
var loading = loading_progress < 1;
|
||||
var loading = loading_progress !== null;
|
||||
var source_options = [{
|
||||
value: 'all',
|
||||
label: Object(_locale__WEBPACK_IMPORTED_MODULE_17__["i18n"])('fields.filters.all')
|
||||
@ -141840,7 +141841,7 @@ var LibraryArtists = /*#__PURE__*/function (_React$Component) {
|
||||
filter = _this$state.filter;
|
||||
var artists = _this.props.artists;
|
||||
|
||||
if (loading_progress < 1) {
|
||||
if (loading_progress !== null) {
|
||||
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_Loader__WEBPACK_IMPORTED_MODULE_15__["default"], {
|
||||
body: true,
|
||||
loading: true,
|
||||
@ -141917,7 +141918,7 @@ var LibraryArtists = /*#__PURE__*/function (_React$Component) {
|
||||
spotify_available = _this$props6.spotify_available,
|
||||
google_available = _this$props6.google_available,
|
||||
loading_progress = _this$props6.loading_progress;
|
||||
var loading = loading_progress < 1;
|
||||
var loading = loading_progress !== null;
|
||||
var source_options = [{
|
||||
value: 'all',
|
||||
label: Object(_locale__WEBPACK_IMPORTED_MODULE_13__["i18n"])('fields.filters.all')
|
||||
@ -142957,7 +142958,7 @@ var LibraryPlaylists = /*#__PURE__*/function (_React$Component) {
|
||||
filter = _this$state.filter,
|
||||
limit = _this$state.limit;
|
||||
|
||||
if (loading_progress < 1) {
|
||||
if (loading_progress !== null) {
|
||||
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_Loader__WEBPACK_IMPORTED_MODULE_17__["default"], {
|
||||
body: true,
|
||||
loading: true,
|
||||
@ -143043,7 +143044,7 @@ var LibraryPlaylists = /*#__PURE__*/function (_React$Component) {
|
||||
view = _this$props4.view,
|
||||
loading_progress = _this$props4.loading_progress;
|
||||
var filter = _this.state.filter;
|
||||
var loading = loading_progress < 1;
|
||||
var loading = loading_progress !== null;
|
||||
var source_options = [{
|
||||
value: 'all',
|
||||
label: Object(_locale__WEBPACK_IMPORTED_MODULE_16__["i18n"])('fields.filters.all')
|
||||
@ -143509,7 +143510,7 @@ var LibraryTracks = /*#__PURE__*/function (_React$Component) {
|
||||
filter = _this$state2.filter;
|
||||
var tracks = _this.props.tracks;
|
||||
|
||||
if (loading_progress < 1) {
|
||||
if (loading_progress !== null) {
|
||||
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_Loader__WEBPACK_IMPORTED_MODULE_16__["default"], {
|
||||
body: true,
|
||||
loading: true,
|
||||
@ -143558,7 +143559,7 @@ var LibraryTracks = /*#__PURE__*/function (_React$Component) {
|
||||
var _this$state3 = _this.state,
|
||||
filter = _this$state3.filter,
|
||||
per_page = _this$state3.per_page;
|
||||
var loading = loading_progress < 1;
|
||||
var loading = loading_progress !== null;
|
||||
var source_options = [{
|
||||
value: 'all',
|
||||
label: Object(_locale__WEBPACK_IMPORTED_MODULE_15__["i18n"])('fields.filters.all')
|
||||
|
||||
File diff suppressed because one or more lines are too long
4
mopidy_iris/static/app.min.js
vendored
4
mopidy_iris/static/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -106,7 +106,7 @@
|
||||
|
||||
// Release details
|
||||
// These are automatically injected to built HTML
|
||||
var build = "1603447492";
|
||||
var build = "1603492267";
|
||||
var version = "3.53.0";
|
||||
|
||||
// Construct the script tag
|
||||
|
||||
Reference in New Issue
Block a user