Skip to content

Commit

Permalink
Buildout 3.53
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Oct 28, 2020
1 parent 425439a commit 7d771a9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
25 changes: 18 additions & 7 deletions mopidy_iris/static/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -108117,11 +108117,12 @@ var VolumeControl = /*#__PURE__*/function (_React$Component) {
/*!***************************************!*\
!*** ./src/js/components/GridItem.js ***!
\***************************************/
/*! exports provided: default */
/*! exports provided: GridItem, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {

"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GridItem", function() { return GridItem; });
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react-redux */ "./node_modules/react-redux/es/index.js");
Expand Down Expand Up @@ -108199,7 +108200,9 @@ var GridItem = /*#__PURE__*/function (_React$Component) {

_defineProperty(_assertThisInitialized(_this), "renderSecondary", function (_ref) {
var uri = _ref.uri,
tracks_total = _ref.tracks_total,
_ref$tracks_total = _ref.tracks_total,
tracks_total = _ref$tracks_total === void 0 ? 0 : _ref$tracks_total,
tracks = _ref.tracks,
followers = _ref.followers,
albums_uris = _ref.albums_uris,
artists = _ref.artists;
Expand All @@ -108212,7 +108215,7 @@ var GridItem = /*#__PURE__*/function (_React$Component) {
"data-qa-file": "GridItem"
}, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_locale__WEBPACK_IMPORTED_MODULE_7__["I18n"], {
path: "specs.tracks",
count: tracks_total || 0,
count: tracks.length || tracks_total,
"data-qa-node": "I18n",
"data-qa-file": "GridItem"
}));
Expand Down Expand Up @@ -108267,7 +108270,9 @@ var GridItem = /*#__PURE__*/function (_React$Component) {

_defineProperty(_assertThisInitialized(_this), "render", function () {
var _this$props = _this.props,
album = _this$props.item.album,
_this$props$item = _this$props.item;
_this$props$item = _this$props$item === void 0 ? {} : _this$props$item;
var album = _this$props$item.album,
customLink = _this$props.link,
type = _this$props.type,
show_source_icon = _this$props.show_source_icon,
Expand Down Expand Up @@ -108356,6 +108361,7 @@ var mapStateToProps = function mapStateToProps(state) {
};
};


/* harmony default export */ __webpack_exports__["default"] = (Object(react_redux__WEBPACK_IMPORTED_MODULE_1__["connect"])(mapStateToProps)(GridItem));

/***/ }),
Expand Down Expand Up @@ -128603,7 +128609,9 @@ var arrayOf = function arrayOf(property) {
var items = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
var array = [];
items.forEach(function (item) {
return item[property] !== undefined ? array.push(item[property]) : null;
if (item[property] === undefined) return;
if (item[property] === null) return;
array.push(item[property]);
});
return array;
};
Expand Down Expand Up @@ -130429,14 +130437,15 @@ var isLoading = function isLoading() {
var load_queue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var keys = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
if (!load_queue || !keys) return false;
var queue_keys = Object(_arrays__WEBPACK_IMPORTED_MODULE_0__["indexToArray"])(load_queue);
var queue_keys = Object.keys(load_queue);
var matches = keys.reduce(function (acc, key) {
var regex = '';

try {
regex = new RegExp(key);
} catch (_unused) {
console.error('Invalid regular expression', keys);
// Fucks with unit tests, but helpful for debugging.
// console.error('Invalid regular expression', keys);
return acc;
}

Expand Down Expand Up @@ -133455,6 +133464,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope






var Album = /*#__PURE__*/function (_React$Component) {
Expand Down Expand Up @@ -133805,6 +133815,7 @@ var mapDispatchToProps = function mapDispatchToProps(dispatch) {
};
};


/* harmony default export */ __webpack_exports__["default"] = (Object(react_redux__WEBPACK_IMPORTED_MODULE_1__["connect"])(mapStateToProps, mapDispatchToProps)(Album));

/***/ }),
Expand Down
2 changes: 1 addition & 1 deletion mopidy_iris/static/app.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions mopidy_iris/static/app.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mopidy_iris/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@

// Release details
// These are automatically injected to built HTML
var build = "1603833816";
var build = "1603873501";
var version = "3.53.0";

// Construct the script tag
Expand Down

0 comments on commit 7d771a9

Please sign in to comment.