scrivito_content_browser 0.70.2 → 0.71.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03c6abc031002d18d02f52ff5ef26eb5de0d253c
|
|
4
|
+
data.tar.gz: bdd7ce35cd826c78815238cd5501ba30f7d5ab36
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd78417be08177deb41412b539166337083037dcc2db511fcf0805a1eef98dd3f8d08fe3eb82417c2efa0071146725e14de40b65e45a5238fadfed484826a354
|
|
7
|
+
data.tar.gz: dcb27f297b5f5bbd1efeda27de7db7f7a83dddc7688f9ddb1d1f7a5eae284847bed864fc637effc02575ff362b24216c248f01e02ce75f95a4da7bc0e8d798c6
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
return {
|
|
59
59
|
filters: {},
|
|
60
60
|
base_preset: {},
|
|
61
|
+
ESCAPE: 27,
|
|
61
62
|
base_query: null,
|
|
62
63
|
_center: function() {
|
|
63
64
|
var domElement, domElements, i, len, results;
|
|
@@ -90,6 +91,12 @@
|
|
|
90
91
|
_loadModal: function() {
|
|
91
92
|
$('<div></div>').addClass('scrivito_overlay scrivito_show').appendTo($('#scrivito_editing'));
|
|
92
93
|
$('<div></div>').addClass('scrivito-content-browser show').appendTo($('#scrivito_editing'));
|
|
94
|
+
$(document).off('keyup.scrivito_content_browser');
|
|
95
|
+
$(document).on('keyup.scrivito_content_browser', (function(_this) {
|
|
96
|
+
return function(e) {
|
|
97
|
+
return _this.keyUpHandler(e);
|
|
98
|
+
};
|
|
99
|
+
})(this));
|
|
93
100
|
return this._center();
|
|
94
101
|
},
|
|
95
102
|
_buildFilter: function(options) {
|
|
@@ -109,6 +116,12 @@
|
|
|
109
116
|
"options": options
|
|
110
117
|
}), this._getLastContentBrowserElement());
|
|
111
118
|
},
|
|
119
|
+
keyUpHandler: function(e) {
|
|
120
|
+
if (e.keyCode === this.ESCAPE) {
|
|
121
|
+
e.preventDefault();
|
|
122
|
+
return this.close();
|
|
123
|
+
}
|
|
124
|
+
},
|
|
112
125
|
_getLastElementByClassName: function(className) {
|
|
113
126
|
var elements;
|
|
114
127
|
elements = document.getElementsByClassName(className);
|
|
@@ -125,7 +138,10 @@
|
|
|
125
138
|
},
|
|
126
139
|
close: function() {
|
|
127
140
|
this._remove(this._getLastOverlayElement());
|
|
128
|
-
|
|
141
|
+
this._remove(this._getLastContentBrowserElement());
|
|
142
|
+
if (!this._getLastContentBrowserElement()) {
|
|
143
|
+
return $(document).off('keyup.scrivito_content_browser');
|
|
144
|
+
}
|
|
129
145
|
},
|
|
130
146
|
open: function(options) {
|
|
131
147
|
var promise;
|
|
@@ -822,19 +838,19 @@
|
|
|
822
838
|
|
|
823
839
|
AddedObjsCollection = __webpack_require__(17);
|
|
824
840
|
|
|
825
|
-
ObjCollection = __webpack_require__(
|
|
841
|
+
ObjCollection = __webpack_require__(25);
|
|
826
842
|
|
|
827
|
-
TopBar = __webpack_require__(
|
|
843
|
+
TopBar = __webpack_require__(27);
|
|
828
844
|
|
|
829
|
-
Filter = __webpack_require__(
|
|
845
|
+
Filter = __webpack_require__(32);
|
|
830
846
|
|
|
831
|
-
Items = __webpack_require__(
|
|
847
|
+
Items = __webpack_require__(44);
|
|
832
848
|
|
|
833
|
-
MoreItemsSpinner = __webpack_require__(
|
|
849
|
+
MoreItemsSpinner = __webpack_require__(67);
|
|
834
850
|
|
|
835
|
-
InspectorComponent = __webpack_require__(
|
|
851
|
+
InspectorComponent = __webpack_require__(68);
|
|
836
852
|
|
|
837
|
-
Footer = __webpack_require__(
|
|
853
|
+
Footer = __webpack_require__(71);
|
|
838
854
|
|
|
839
855
|
App = React.createClass({
|
|
840
856
|
displayName: 'App',
|
|
@@ -893,8 +909,10 @@
|
|
|
893
909
|
_selectLatestAddedObj: function(addedObjsCollection) {
|
|
894
910
|
var lastCreatedObj;
|
|
895
911
|
if (this.refs.filterView.state.selectedFilter === false) {
|
|
896
|
-
lastCreatedObj = _.first(addedObjsCollection.
|
|
897
|
-
|
|
912
|
+
lastCreatedObj = _.first(addedObjsCollection.createdObjs());
|
|
913
|
+
if (lastCreatedObj) {
|
|
914
|
+
return this.state.objCollection.toggleSelected(lastCreatedObj.id());
|
|
915
|
+
}
|
|
898
916
|
}
|
|
899
917
|
},
|
|
900
918
|
componentDidMount: function() {
|
|
@@ -1056,7 +1074,7 @@
|
|
|
1056
1074
|
};
|
|
1057
1075
|
|
|
1058
1076
|
AddedObjsCollection.prototype.createdObjs = function() {
|
|
1059
|
-
return _.map(this.
|
|
1077
|
+
return _.map(this._completedObjs(), function(addedObj) {
|
|
1060
1078
|
return addedObj.createdObj();
|
|
1061
1079
|
});
|
|
1062
1080
|
};
|
|
@@ -1117,6 +1135,12 @@
|
|
|
1117
1135
|
});
|
|
1118
1136
|
};
|
|
1119
1137
|
|
|
1138
|
+
AddedObjsCollection.prototype._completedObjs = function() {
|
|
1139
|
+
return _.filter(this._objs, function(addedObj) {
|
|
1140
|
+
return addedObj.status() === "completed";
|
|
1141
|
+
});
|
|
1142
|
+
};
|
|
1143
|
+
|
|
1120
1144
|
AddedObjsCollection.prototype._buildPresets = function(presets) {
|
|
1121
1145
|
return _.extend({}, this._basePreset, presets);
|
|
1122
1146
|
};
|
|
@@ -1132,21 +1156,26 @@
|
|
|
1132
1156
|
/* 18 */
|
|
1133
1157
|
/***/ function(module, exports, __webpack_require__) {
|
|
1134
1158
|
|
|
1135
|
-
var AddedObj, Obj, QueryBuilder;
|
|
1159
|
+
var AddedObj, Fetcher, Obj, QueryBuilder;
|
|
1136
1160
|
|
|
1137
1161
|
Obj = __webpack_require__(19);
|
|
1138
1162
|
|
|
1139
1163
|
QueryBuilder = __webpack_require__(20);
|
|
1140
1164
|
|
|
1141
|
-
|
|
1142
|
-
AddedObj.prototype.MAX_RETRY = 2;
|
|
1165
|
+
Fetcher = __webpack_require__(23);
|
|
1143
1166
|
|
|
1167
|
+
AddedObj = (function() {
|
|
1144
1168
|
function AddedObj(addedObjsCollection, file, presetAttributes1) {
|
|
1145
1169
|
var objAttributes;
|
|
1146
1170
|
this.addedObjsCollection = addedObjsCollection;
|
|
1147
1171
|
this.presetAttributes = presetAttributes1 != null ? presetAttributes1 : {};
|
|
1148
|
-
this.
|
|
1149
|
-
this.
|
|
1172
|
+
this._fetcher = new Fetcher();
|
|
1173
|
+
this._fetcher.onChange((function(_this) {
|
|
1174
|
+
return function() {
|
|
1175
|
+
return _this._setObj();
|
|
1176
|
+
};
|
|
1177
|
+
})(this));
|
|
1178
|
+
this._updateProgressByStatus();
|
|
1150
1179
|
this._fileName = file != null ? file.name : void 0;
|
|
1151
1180
|
this._uniqueId = _.uniqueId("added_obj_");
|
|
1152
1181
|
objAttributes = this._buildObjAttributes(file, this.presetAttributes);
|
|
@@ -1154,18 +1183,18 @@
|
|
|
1154
1183
|
return function(objData) {
|
|
1155
1184
|
_this._progress = 50;
|
|
1156
1185
|
_this.addedObjsCollection.changed();
|
|
1157
|
-
return _this.
|
|
1186
|
+
return _this._fetcher.fetch(objData.id);
|
|
1158
1187
|
};
|
|
1159
1188
|
})(this)).fail((function(_this) {
|
|
1160
1189
|
return function(failure) {
|
|
1161
1190
|
_this._failureMessage = failure.message;
|
|
1162
|
-
return _this.
|
|
1191
|
+
return _this._fetcher.fail();
|
|
1163
1192
|
};
|
|
1164
1193
|
})(this));
|
|
1165
1194
|
}
|
|
1166
1195
|
|
|
1167
1196
|
AddedObj.prototype.status = function() {
|
|
1168
|
-
return this.
|
|
1197
|
+
return this._fetcher.status();
|
|
1169
1198
|
};
|
|
1170
1199
|
|
|
1171
1200
|
AddedObj.prototype.createdObj = function() {
|
|
@@ -1188,48 +1217,14 @@
|
|
|
1188
1217
|
return this._uniqueId;
|
|
1189
1218
|
};
|
|
1190
1219
|
|
|
1191
|
-
AddedObj.prototype.
|
|
1192
|
-
if (
|
|
1193
|
-
|
|
1220
|
+
AddedObj.prototype._setObj = function() {
|
|
1221
|
+
if (this.status() === 'completed') {
|
|
1222
|
+
this._obj = new Obj(this._fetcher.obj());
|
|
1194
1223
|
}
|
|
1195
|
-
return
|
|
1196
|
-
return function(searchResult) {
|
|
1197
|
-
if (searchResult.hits.length > 0) {
|
|
1198
|
-
_this._obj = new Obj(searchResult.hits[0]);
|
|
1199
|
-
return _this._setStatus('completed');
|
|
1200
|
-
} else {
|
|
1201
|
-
return _this._objNotYetIndexed(id, retryCount);
|
|
1202
|
-
}
|
|
1203
|
-
};
|
|
1204
|
-
})(this)), (function(_this) {
|
|
1205
|
-
return function() {
|
|
1206
|
-
return _this._setStatus('failed');
|
|
1207
|
-
};
|
|
1208
|
-
})(this));
|
|
1224
|
+
return this._updateStatus();
|
|
1209
1225
|
};
|
|
1210
1226
|
|
|
1211
|
-
AddedObj.prototype.
|
|
1212
|
-
var fetchObjFunction;
|
|
1213
|
-
if (retryCount < this.MAX_RETRY) {
|
|
1214
|
-
fetchObjFunction = (function(_this) {
|
|
1215
|
-
return function() {
|
|
1216
|
-
return _this._fetchObj(id, retryCount + 1);
|
|
1217
|
-
};
|
|
1218
|
-
})(this);
|
|
1219
|
-
return window.setTimeout(fetchObjFunction, 500);
|
|
1220
|
-
} else {
|
|
1221
|
-
this._setStatus('failed');
|
|
1222
|
-
return $.Deferred().reject();
|
|
1223
|
-
}
|
|
1224
|
-
};
|
|
1225
|
-
|
|
1226
|
-
AddedObj.prototype._setStatus = function(status) {
|
|
1227
|
-
this._status = status;
|
|
1228
|
-
this._updateProgressByStatus(status);
|
|
1229
|
-
return this.addedObjsCollection.changed();
|
|
1230
|
-
};
|
|
1231
|
-
|
|
1232
|
-
AddedObj.prototype._updateProgressByStatus = function(status) {
|
|
1227
|
+
AddedObj.prototype._updateProgressByStatus = function() {
|
|
1233
1228
|
return this._progress = (function() {
|
|
1234
1229
|
switch (this.status()) {
|
|
1235
1230
|
case 'active':
|
|
@@ -1242,6 +1237,11 @@
|
|
|
1242
1237
|
}).call(this);
|
|
1243
1238
|
};
|
|
1244
1239
|
|
|
1240
|
+
AddedObj.prototype._updateStatus = function() {
|
|
1241
|
+
this._updateProgressByStatus();
|
|
1242
|
+
return this.addedObjsCollection.changed();
|
|
1243
|
+
};
|
|
1244
|
+
|
|
1245
1245
|
AddedObj.prototype._buildObjAttributes = function(file, presetAttributes) {
|
|
1246
1246
|
var objAttributes;
|
|
1247
1247
|
objAttributes = {};
|
|
@@ -1606,7 +1606,117 @@
|
|
|
1606
1606
|
/* 23 */
|
|
1607
1607
|
/***/ function(module, exports, __webpack_require__) {
|
|
1608
1608
|
|
|
1609
|
-
var
|
|
1609
|
+
var Fetcher, FetcherStatus, Listenable, QueryBuilder,
|
|
1610
|
+
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
|
1611
|
+
hasProp = {}.hasOwnProperty;
|
|
1612
|
+
|
|
1613
|
+
QueryBuilder = __webpack_require__(20);
|
|
1614
|
+
|
|
1615
|
+
Listenable = __webpack_require__(6);
|
|
1616
|
+
|
|
1617
|
+
FetcherStatus = __webpack_require__(24);
|
|
1618
|
+
|
|
1619
|
+
Fetcher = (function(superClass) {
|
|
1620
|
+
extend(Fetcher, superClass);
|
|
1621
|
+
|
|
1622
|
+
Fetcher.prototype.MAX_RETRY = 2;
|
|
1623
|
+
|
|
1624
|
+
Fetcher.prototype.status = function() {
|
|
1625
|
+
return this._fetcherStatus.status();
|
|
1626
|
+
};
|
|
1627
|
+
|
|
1628
|
+
function Fetcher() {
|
|
1629
|
+
Fetcher.__super__.constructor.call(this);
|
|
1630
|
+
this._fetcherStatus = new FetcherStatus();
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
Fetcher.prototype.obj = function() {
|
|
1634
|
+
return this._obj;
|
|
1635
|
+
};
|
|
1636
|
+
|
|
1637
|
+
Fetcher.prototype.fail = function() {
|
|
1638
|
+
this._fetcherStatus.fail();
|
|
1639
|
+
return this.changed();
|
|
1640
|
+
};
|
|
1641
|
+
|
|
1642
|
+
Fetcher.prototype.complete = function() {
|
|
1643
|
+
this._fetcherStatus.complete();
|
|
1644
|
+
return this.changed();
|
|
1645
|
+
};
|
|
1646
|
+
|
|
1647
|
+
Fetcher.prototype.fetch = function(id, retryCount) {
|
|
1648
|
+
if (retryCount == null) {
|
|
1649
|
+
retryCount = 0;
|
|
1650
|
+
}
|
|
1651
|
+
return QueryBuilder.byId(id).load_batch(id).then(((function(_this) {
|
|
1652
|
+
return function(searchResult) {
|
|
1653
|
+
if (searchResult.hits.length > 0) {
|
|
1654
|
+
_this._obj = searchResult.hits[0];
|
|
1655
|
+
return _this.complete();
|
|
1656
|
+
} else {
|
|
1657
|
+
return _this._objNotYetIndexed(retryCount, function() {
|
|
1658
|
+
return _this.fetch(id, retryCount + 1);
|
|
1659
|
+
});
|
|
1660
|
+
}
|
|
1661
|
+
};
|
|
1662
|
+
})(this)), (function(_this) {
|
|
1663
|
+
return function() {
|
|
1664
|
+
return _this.fail();
|
|
1665
|
+
};
|
|
1666
|
+
})(this));
|
|
1667
|
+
};
|
|
1668
|
+
|
|
1669
|
+
Fetcher.prototype._objNotYetIndexed = function(retryCount, fetchObjFunction) {
|
|
1670
|
+
if (retryCount < this.MAX_RETRY) {
|
|
1671
|
+
return window.setTimeout(fetchObjFunction, 500);
|
|
1672
|
+
} else {
|
|
1673
|
+
this.fail();
|
|
1674
|
+
return $.Deferred().reject();
|
|
1675
|
+
}
|
|
1676
|
+
};
|
|
1677
|
+
|
|
1678
|
+
return Fetcher;
|
|
1679
|
+
|
|
1680
|
+
})(Listenable);
|
|
1681
|
+
|
|
1682
|
+
module.exports = Fetcher;
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
/***/ },
|
|
1686
|
+
/* 24 */
|
|
1687
|
+
/***/ function(module, exports) {
|
|
1688
|
+
|
|
1689
|
+
var FetcherStatus;
|
|
1690
|
+
|
|
1691
|
+
FetcherStatus = (function() {
|
|
1692
|
+
FetcherStatus.prototype.status = function() {
|
|
1693
|
+
return this._status;
|
|
1694
|
+
};
|
|
1695
|
+
|
|
1696
|
+
function FetcherStatus() {
|
|
1697
|
+
this._status = 'active';
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
FetcherStatus.prototype.fail = function() {
|
|
1701
|
+
return this._status = 'failed';
|
|
1702
|
+
};
|
|
1703
|
+
|
|
1704
|
+
FetcherStatus.prototype.complete = function() {
|
|
1705
|
+
return this._status = 'completed';
|
|
1706
|
+
};
|
|
1707
|
+
|
|
1708
|
+
return FetcherStatus;
|
|
1709
|
+
|
|
1710
|
+
})();
|
|
1711
|
+
|
|
1712
|
+
module.exports = FetcherStatus;
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
/***/ },
|
|
1716
|
+
/* 25 */
|
|
1717
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1718
|
+
|
|
1719
|
+
var Deleter, Listenable, Obj, ObjCollection, SortCriteria,
|
|
1610
1720
|
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
|
1611
1721
|
hasProp = {}.hasOwnProperty;
|
|
1612
1722
|
|
|
@@ -1616,6 +1726,8 @@
|
|
|
1616
1726
|
|
|
1617
1727
|
SortCriteria = __webpack_require__(7);
|
|
1618
1728
|
|
|
1729
|
+
Deleter = __webpack_require__(26);
|
|
1730
|
+
|
|
1619
1731
|
ObjCollection = (function(superClass) {
|
|
1620
1732
|
extend(ObjCollection, superClass);
|
|
1621
1733
|
|
|
@@ -1764,7 +1876,9 @@
|
|
|
1764
1876
|
};
|
|
1765
1877
|
|
|
1766
1878
|
ObjCollection.prototype._destroyById = function(objId) {
|
|
1767
|
-
|
|
1879
|
+
var deleter;
|
|
1880
|
+
deleter = new Deleter(objId);
|
|
1881
|
+
return deleter.deleteObj().always((function(_this) {
|
|
1768
1882
|
return function() {
|
|
1769
1883
|
_this._objs = _this._objs.filter(function(obj) {
|
|
1770
1884
|
return obj.id() !== objId;
|
|
@@ -1837,14 +1951,77 @@
|
|
|
1837
1951
|
|
|
1838
1952
|
|
|
1839
1953
|
/***/ },
|
|
1840
|
-
/*
|
|
1954
|
+
/* 26 */
|
|
1955
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1956
|
+
|
|
1957
|
+
var Deleter, QueryBuilder;
|
|
1958
|
+
|
|
1959
|
+
QueryBuilder = __webpack_require__(20);
|
|
1960
|
+
|
|
1961
|
+
Deleter = (function() {
|
|
1962
|
+
Deleter.prototype.MAX_RETRY = 5;
|
|
1963
|
+
|
|
1964
|
+
Deleter.prototype.TIMEOUT = 500;
|
|
1965
|
+
|
|
1966
|
+
function Deleter(objId) {
|
|
1967
|
+
this.objId = objId;
|
|
1968
|
+
this._promise = $.Deferred();
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
Deleter.prototype.deleteObj = function() {
|
|
1972
|
+
scrivito.delete_obj(this.objId).then((function(_this) {
|
|
1973
|
+
return function() {
|
|
1974
|
+
return _this._checkDelete();
|
|
1975
|
+
};
|
|
1976
|
+
})(this), (function(_this) {
|
|
1977
|
+
return function() {
|
|
1978
|
+
return _this._promise.reject();
|
|
1979
|
+
};
|
|
1980
|
+
})(this));
|
|
1981
|
+
return this._promise;
|
|
1982
|
+
};
|
|
1983
|
+
|
|
1984
|
+
Deleter.prototype._checkDelete = function(retryCount) {
|
|
1985
|
+
if (retryCount == null) {
|
|
1986
|
+
retryCount = 0;
|
|
1987
|
+
}
|
|
1988
|
+
return QueryBuilder.byId(this.objId).load_batch().then(((function(_this) {
|
|
1989
|
+
return function(searchResult) {
|
|
1990
|
+
if (searchResult.hits.length === 0) {
|
|
1991
|
+
return _this._promise.resolve();
|
|
1992
|
+
} else {
|
|
1993
|
+
return _this._reCheck(retryCount, function() {
|
|
1994
|
+
return _this._checkDelete(retryCount + 1);
|
|
1995
|
+
});
|
|
1996
|
+
}
|
|
1997
|
+
};
|
|
1998
|
+
})(this)));
|
|
1999
|
+
};
|
|
2000
|
+
|
|
2001
|
+
Deleter.prototype._reCheck = function(retryCount, fetchObjFunction) {
|
|
2002
|
+
if (retryCount < this.MAX_RETRY) {
|
|
2003
|
+
return window.setTimeout(fetchObjFunction, this.TIMEOUT);
|
|
2004
|
+
} else {
|
|
2005
|
+
return this._promise.reject();
|
|
2006
|
+
}
|
|
2007
|
+
};
|
|
2008
|
+
|
|
2009
|
+
return Deleter;
|
|
2010
|
+
|
|
2011
|
+
})();
|
|
2012
|
+
|
|
2013
|
+
module.exports = Deleter;
|
|
2014
|
+
|
|
2015
|
+
|
|
2016
|
+
/***/ },
|
|
2017
|
+
/* 27 */
|
|
1841
2018
|
/***/ function(module, exports, __webpack_require__) {
|
|
1842
2019
|
|
|
1843
2020
|
/* WEBPACK VAR INJECTION */(function(React) {var ActiveNodeConfigCollector, SortMenu, TopBar, ViewModeBar;
|
|
1844
2021
|
|
|
1845
|
-
ViewModeBar = __webpack_require__(
|
|
2022
|
+
ViewModeBar = __webpack_require__(28);
|
|
1846
2023
|
|
|
1847
|
-
SortMenu = __webpack_require__(
|
|
2024
|
+
SortMenu = __webpack_require__(30);
|
|
1848
2025
|
|
|
1849
2026
|
ActiveNodeConfigCollector = __webpack_require__(21);
|
|
1850
2027
|
|
|
@@ -1912,12 +2089,12 @@
|
|
|
1912
2089
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
1913
2090
|
|
|
1914
2091
|
/***/ },
|
|
1915
|
-
/*
|
|
2092
|
+
/* 28 */
|
|
1916
2093
|
/***/ function(module, exports, __webpack_require__) {
|
|
1917
2094
|
|
|
1918
2095
|
/* WEBPACK VAR INJECTION */(function(React) {var ViewModeBar, ViewModeBarItem;
|
|
1919
2096
|
|
|
1920
|
-
ViewModeBarItem = __webpack_require__(
|
|
2097
|
+
ViewModeBarItem = __webpack_require__(29);
|
|
1921
2098
|
|
|
1922
2099
|
ViewModeBar = React.createClass({
|
|
1923
2100
|
displayName: 'ViewModeBar',
|
|
@@ -1945,7 +2122,7 @@
|
|
|
1945
2122
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
1946
2123
|
|
|
1947
2124
|
/***/ },
|
|
1948
|
-
/*
|
|
2125
|
+
/* 29 */
|
|
1949
2126
|
/***/ function(module, exports, __webpack_require__) {
|
|
1950
2127
|
|
|
1951
2128
|
/* WEBPACK VAR INJECTION */(function(React) {var ViewModeBarItem;
|
|
@@ -1994,12 +2171,12 @@
|
|
|
1994
2171
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
1995
2172
|
|
|
1996
2173
|
/***/ },
|
|
1997
|
-
/*
|
|
2174
|
+
/* 30 */
|
|
1998
2175
|
/***/ function(module, exports, __webpack_require__) {
|
|
1999
2176
|
|
|
2000
2177
|
/* WEBPACK VAR INJECTION */(function(React) {var SortMenu, SortMenuItem;
|
|
2001
2178
|
|
|
2002
|
-
SortMenuItem = __webpack_require__(
|
|
2179
|
+
SortMenuItem = __webpack_require__(31);
|
|
2003
2180
|
|
|
2004
2181
|
SortMenu = React.createClass({
|
|
2005
2182
|
displayName: 'SortMenu',
|
|
@@ -2034,7 +2211,7 @@
|
|
|
2034
2211
|
}), this.props.filter.sortCriteria.activeElement(), React.createElement("i", {
|
|
2035
2212
|
"className": "scrivito_icon scrivito-content-browser-menu-icon scrivito_icon_chevron_down"
|
|
2036
2213
|
}), React.createElement("ul", {
|
|
2037
|
-
"className": "scrivito_menu_box
|
|
2214
|
+
"className": "scrivito_menu_box scrivito_left"
|
|
2038
2215
|
}, (function() {
|
|
2039
2216
|
var i, len, ref, results;
|
|
2040
2217
|
ref = Object.keys(this.sortItemsData);
|
|
@@ -2058,7 +2235,7 @@
|
|
|
2058
2235
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2059
2236
|
|
|
2060
2237
|
/***/ },
|
|
2061
|
-
/*
|
|
2238
|
+
/* 31 */
|
|
2062
2239
|
/***/ function(module, exports, __webpack_require__) {
|
|
2063
2240
|
|
|
2064
2241
|
/* WEBPACK VAR INJECTION */(function(React) {var SortCriteria, SortMenuItem;
|
|
@@ -2124,22 +2301,22 @@
|
|
|
2124
2301
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2125
2302
|
|
|
2126
2303
|
/***/ },
|
|
2127
|
-
/*
|
|
2304
|
+
/* 32 */
|
|
2128
2305
|
/***/ function(module, exports, __webpack_require__) {
|
|
2129
2306
|
|
|
2130
2307
|
/* WEBPACK VAR INJECTION */(function(React) {var AdditionalOptionFilter, Filter, FilterMixin, LastAddedFilter, QueryBuilder, SelectedFilter, TreeFilter;
|
|
2131
2308
|
|
|
2132
|
-
FilterMixin = __webpack_require__(
|
|
2309
|
+
FilterMixin = __webpack_require__(33);
|
|
2133
2310
|
|
|
2134
|
-
AdditionalOptionFilter = __webpack_require__(
|
|
2311
|
+
AdditionalOptionFilter = __webpack_require__(34);
|
|
2135
2312
|
|
|
2136
|
-
TreeFilter = __webpack_require__(
|
|
2313
|
+
TreeFilter = __webpack_require__(41);
|
|
2137
2314
|
|
|
2138
|
-
SelectedFilter = __webpack_require__(
|
|
2315
|
+
SelectedFilter = __webpack_require__(42);
|
|
2139
2316
|
|
|
2140
2317
|
QueryBuilder = __webpack_require__(20);
|
|
2141
2318
|
|
|
2142
|
-
LastAddedFilter = __webpack_require__(
|
|
2319
|
+
LastAddedFilter = __webpack_require__(43);
|
|
2143
2320
|
|
|
2144
2321
|
Filter = React.createClass({
|
|
2145
2322
|
displayName: 'Filter',
|
|
@@ -2251,7 +2428,7 @@
|
|
|
2251
2428
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2252
2429
|
|
|
2253
2430
|
/***/ },
|
|
2254
|
-
/*
|
|
2431
|
+
/* 33 */
|
|
2255
2432
|
/***/ function(module, exports, __webpack_require__) {
|
|
2256
2433
|
|
|
2257
2434
|
/* WEBPACK VAR INJECTION */(function(React) {var FilterMixin;
|
|
@@ -2274,18 +2451,18 @@
|
|
|
2274
2451
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2275
2452
|
|
|
2276
2453
|
/***/ },
|
|
2277
|
-
/*
|
|
2454
|
+
/* 34 */
|
|
2278
2455
|
/***/ function(module, exports, __webpack_require__) {
|
|
2279
2456
|
|
|
2280
2457
|
/* WEBPACK VAR INJECTION */(function(React) {var AdditionalOptionFilter, CheckBoxOptionFilter, DeselectAllRadioOptionFilter, ExpandableFilterNodeMixin, RadioOptionFilter;
|
|
2281
2458
|
|
|
2282
|
-
ExpandableFilterNodeMixin = __webpack_require__(
|
|
2459
|
+
ExpandableFilterNodeMixin = __webpack_require__(35);
|
|
2283
2460
|
|
|
2284
|
-
DeselectAllRadioOptionFilter = __webpack_require__(
|
|
2461
|
+
DeselectAllRadioOptionFilter = __webpack_require__(36);
|
|
2285
2462
|
|
|
2286
|
-
RadioOptionFilter = __webpack_require__(
|
|
2463
|
+
RadioOptionFilter = __webpack_require__(38);
|
|
2287
2464
|
|
|
2288
|
-
CheckBoxOptionFilter = __webpack_require__(
|
|
2465
|
+
CheckBoxOptionFilter = __webpack_require__(40);
|
|
2289
2466
|
|
|
2290
2467
|
AdditionalOptionFilter = React.createClass({
|
|
2291
2468
|
displayName: 'AdditionalOptionFilter',
|
|
@@ -2341,7 +2518,7 @@
|
|
|
2341
2518
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2342
2519
|
|
|
2343
2520
|
/***/ },
|
|
2344
|
-
/*
|
|
2521
|
+
/* 35 */
|
|
2345
2522
|
/***/ function(module, exports, __webpack_require__) {
|
|
2346
2523
|
|
|
2347
2524
|
/* WEBPACK VAR INJECTION */(function(React) {var ExpandableFilterNodeMixin;
|
|
@@ -2376,12 +2553,12 @@
|
|
|
2376
2553
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2377
2554
|
|
|
2378
2555
|
/***/ },
|
|
2379
|
-
/*
|
|
2556
|
+
/* 36 */
|
|
2380
2557
|
/***/ function(module, exports, __webpack_require__) {
|
|
2381
2558
|
|
|
2382
2559
|
/* WEBPACK VAR INJECTION */(function(React) {var DeselectAllRadioOptionFilter, OptionFilterLabelRenderMixin;
|
|
2383
2560
|
|
|
2384
|
-
OptionFilterLabelRenderMixin = __webpack_require__(
|
|
2561
|
+
OptionFilterLabelRenderMixin = __webpack_require__(37);
|
|
2385
2562
|
|
|
2386
2563
|
DeselectAllRadioOptionFilter = React.createClass({
|
|
2387
2564
|
displayName: 'DeselectAllRadioOptionFilter',
|
|
@@ -2411,7 +2588,7 @@
|
|
|
2411
2588
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2412
2589
|
|
|
2413
2590
|
/***/ },
|
|
2414
|
-
/*
|
|
2591
|
+
/* 37 */
|
|
2415
2592
|
/***/ function(module, exports, __webpack_require__) {
|
|
2416
2593
|
|
|
2417
2594
|
/* WEBPACK VAR INJECTION */(function(React) {var OptionFilterLabelRenderMixin;
|
|
@@ -2429,12 +2606,12 @@
|
|
|
2429
2606
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2430
2607
|
|
|
2431
2608
|
/***/ },
|
|
2432
|
-
/*
|
|
2609
|
+
/* 38 */
|
|
2433
2610
|
/***/ function(module, exports, __webpack_require__) {
|
|
2434
2611
|
|
|
2435
2612
|
/* WEBPACK VAR INJECTION */(function(React) {var OptionFilterMixin, RadioOptionFilter;
|
|
2436
2613
|
|
|
2437
|
-
OptionFilterMixin = __webpack_require__(
|
|
2614
|
+
OptionFilterMixin = __webpack_require__(39);
|
|
2438
2615
|
|
|
2439
2616
|
RadioOptionFilter = React.createClass({
|
|
2440
2617
|
displayName: 'RadioOptionFilter',
|
|
@@ -2459,12 +2636,12 @@
|
|
|
2459
2636
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2460
2637
|
|
|
2461
2638
|
/***/ },
|
|
2462
|
-
/*
|
|
2639
|
+
/* 39 */
|
|
2463
2640
|
/***/ function(module, exports, __webpack_require__) {
|
|
2464
2641
|
|
|
2465
2642
|
var OptionFilterLabelRenderMixin, OptionFilterMixin;
|
|
2466
2643
|
|
|
2467
|
-
OptionFilterLabelRenderMixin = __webpack_require__(
|
|
2644
|
+
OptionFilterLabelRenderMixin = __webpack_require__(37);
|
|
2468
2645
|
|
|
2469
2646
|
OptionFilterMixin = {
|
|
2470
2647
|
mixins: [OptionFilterLabelRenderMixin],
|
|
@@ -2487,12 +2664,12 @@
|
|
|
2487
2664
|
|
|
2488
2665
|
|
|
2489
2666
|
/***/ },
|
|
2490
|
-
/*
|
|
2667
|
+
/* 40 */
|
|
2491
2668
|
/***/ function(module, exports, __webpack_require__) {
|
|
2492
2669
|
|
|
2493
2670
|
/* WEBPACK VAR INJECTION */(function(React) {var CheckBoxOptionFilter, OptionFilterMixin;
|
|
2494
2671
|
|
|
2495
|
-
OptionFilterMixin = __webpack_require__(
|
|
2672
|
+
OptionFilterMixin = __webpack_require__(39);
|
|
2496
2673
|
|
|
2497
2674
|
CheckBoxOptionFilter = React.createClass({
|
|
2498
2675
|
displayName: 'CheckBoxOptionFilter',
|
|
@@ -2512,12 +2689,12 @@
|
|
|
2512
2689
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2513
2690
|
|
|
2514
2691
|
/***/ },
|
|
2515
|
-
/*
|
|
2692
|
+
/* 41 */
|
|
2516
2693
|
/***/ function(module, exports, __webpack_require__) {
|
|
2517
2694
|
|
|
2518
2695
|
/* WEBPACK VAR INJECTION */(function(React) {var ExpandableFilterNodeMixin, TreeFilter;
|
|
2519
2696
|
|
|
2520
|
-
ExpandableFilterNodeMixin = __webpack_require__(
|
|
2697
|
+
ExpandableFilterNodeMixin = __webpack_require__(35);
|
|
2521
2698
|
|
|
2522
2699
|
TreeFilter = React.createClass({
|
|
2523
2700
|
displayName: 'TreeFilter',
|
|
@@ -2577,7 +2754,7 @@
|
|
|
2577
2754
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2578
2755
|
|
|
2579
2756
|
/***/ },
|
|
2580
|
-
/*
|
|
2757
|
+
/* 42 */
|
|
2581
2758
|
/***/ function(module, exports, __webpack_require__) {
|
|
2582
2759
|
|
|
2583
2760
|
/* WEBPACK VAR INJECTION */(function(React) {var SelectedFilter;
|
|
@@ -2610,7 +2787,7 @@
|
|
|
2610
2787
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2611
2788
|
|
|
2612
2789
|
/***/ },
|
|
2613
|
-
/*
|
|
2790
|
+
/* 43 */
|
|
2614
2791
|
/***/ function(module, exports, __webpack_require__) {
|
|
2615
2792
|
|
|
2616
2793
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedFilter;
|
|
@@ -2644,20 +2821,20 @@
|
|
|
2644
2821
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2645
2822
|
|
|
2646
2823
|
/***/ },
|
|
2647
|
-
/*
|
|
2824
|
+
/* 44 */
|
|
2648
2825
|
/***/ function(module, exports, __webpack_require__) {
|
|
2649
2826
|
|
|
2650
2827
|
/* WEBPACK VAR INJECTION */(function(React) {var Items, LastAddedItems, PresetBuilder, TableView, TableViewContent, ThumbnailItems;
|
|
2651
2828
|
|
|
2652
|
-
TableView = __webpack_require__(
|
|
2829
|
+
TableView = __webpack_require__(45);
|
|
2653
2830
|
|
|
2654
|
-
ThumbnailItems = __webpack_require__(
|
|
2831
|
+
ThumbnailItems = __webpack_require__(46);
|
|
2655
2832
|
|
|
2656
|
-
PresetBuilder = __webpack_require__(
|
|
2833
|
+
PresetBuilder = __webpack_require__(54);
|
|
2657
2834
|
|
|
2658
|
-
LastAddedItems = __webpack_require__(
|
|
2835
|
+
LastAddedItems = __webpack_require__(55);
|
|
2659
2836
|
|
|
2660
|
-
TableViewContent = __webpack_require__(
|
|
2837
|
+
TableViewContent = __webpack_require__(65);
|
|
2661
2838
|
|
|
2662
2839
|
Items = React.createClass({
|
|
2663
2840
|
displayName: 'Items',
|
|
@@ -2773,7 +2950,7 @@
|
|
|
2773
2950
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2774
2951
|
|
|
2775
2952
|
/***/ },
|
|
2776
|
-
/*
|
|
2953
|
+
/* 45 */
|
|
2777
2954
|
/***/ function(module, exports, __webpack_require__) {
|
|
2778
2955
|
|
|
2779
2956
|
/* WEBPACK VAR INJECTION */(function(React) {var TableView;
|
|
@@ -2793,18 +2970,18 @@
|
|
|
2793
2970
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2794
2971
|
|
|
2795
2972
|
/***/ },
|
|
2796
|
-
/*
|
|
2973
|
+
/* 46 */
|
|
2797
2974
|
/***/ function(module, exports, __webpack_require__) {
|
|
2798
2975
|
|
|
2799
2976
|
/* WEBPACK VAR INJECTION */(function(React) {var ActiveNodeConfigCollector, InfiniteScrollMixin, ObjCreation, ThumbnailAddItem, ThumbnailItem, ThumbnailItems;
|
|
2800
2977
|
|
|
2801
|
-
InfiniteScrollMixin = __webpack_require__(
|
|
2978
|
+
InfiniteScrollMixin = __webpack_require__(47);
|
|
2802
2979
|
|
|
2803
|
-
ThumbnailItem = __webpack_require__(
|
|
2980
|
+
ThumbnailItem = __webpack_require__(48);
|
|
2804
2981
|
|
|
2805
|
-
ThumbnailAddItem = __webpack_require__(
|
|
2982
|
+
ThumbnailAddItem = __webpack_require__(51);
|
|
2806
2983
|
|
|
2807
|
-
ObjCreation = __webpack_require__(
|
|
2984
|
+
ObjCreation = __webpack_require__(53);
|
|
2808
2985
|
|
|
2809
2986
|
ActiveNodeConfigCollector = __webpack_require__(21);
|
|
2810
2987
|
|
|
@@ -2851,7 +3028,7 @@
|
|
|
2851
3028
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2852
3029
|
|
|
2853
3030
|
/***/ },
|
|
2854
|
-
/*
|
|
3031
|
+
/* 47 */
|
|
2855
3032
|
/***/ function(module, exports) {
|
|
2856
3033
|
|
|
2857
3034
|
var InfiniteScrollMixin;
|
|
@@ -2918,14 +3095,14 @@
|
|
|
2918
3095
|
|
|
2919
3096
|
|
|
2920
3097
|
/***/ },
|
|
2921
|
-
/*
|
|
3098
|
+
/* 48 */
|
|
2922
3099
|
/***/ function(module, exports, __webpack_require__) {
|
|
2923
3100
|
|
|
2924
3101
|
/* WEBPACK VAR INJECTION */(function(React) {var InspectedItemMixin, MimeTypeIcon, ThumbnailItem;
|
|
2925
3102
|
|
|
2926
|
-
InspectedItemMixin = __webpack_require__(
|
|
3103
|
+
InspectedItemMixin = __webpack_require__(49);
|
|
2927
3104
|
|
|
2928
|
-
MimeTypeIcon = __webpack_require__(
|
|
3105
|
+
MimeTypeIcon = __webpack_require__(50);
|
|
2929
3106
|
|
|
2930
3107
|
ThumbnailItem = React.createClass({
|
|
2931
3108
|
displayName: 'ThumbnailItem',
|
|
@@ -2984,7 +3161,7 @@
|
|
|
2984
3161
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
2985
3162
|
|
|
2986
3163
|
/***/ },
|
|
2987
|
-
/*
|
|
3164
|
+
/* 49 */
|
|
2988
3165
|
/***/ function(module, exports) {
|
|
2989
3166
|
|
|
2990
3167
|
var InspectedItemMixin;
|
|
@@ -3015,7 +3192,7 @@
|
|
|
3015
3192
|
|
|
3016
3193
|
|
|
3017
3194
|
/***/ },
|
|
3018
|
-
/*
|
|
3195
|
+
/* 50 */
|
|
3019
3196
|
/***/ function(module, exports) {
|
|
3020
3197
|
|
|
3021
3198
|
var MimeTypeIcon;
|
|
@@ -3062,12 +3239,12 @@
|
|
|
3062
3239
|
|
|
3063
3240
|
|
|
3064
3241
|
/***/ },
|
|
3065
|
-
/*
|
|
3242
|
+
/* 51 */
|
|
3066
3243
|
/***/ function(module, exports, __webpack_require__) {
|
|
3067
3244
|
|
|
3068
3245
|
/* WEBPACK VAR INJECTION */(function(React) {var AddItemMixin, ThumbnailAddItem;
|
|
3069
3246
|
|
|
3070
|
-
AddItemMixin = __webpack_require__(
|
|
3247
|
+
AddItemMixin = __webpack_require__(52);
|
|
3071
3248
|
|
|
3072
3249
|
ThumbnailAddItem = React.createClass({
|
|
3073
3250
|
displayName: 'ThumbnailAddItem',
|
|
@@ -3092,7 +3269,7 @@
|
|
|
3092
3269
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3093
3270
|
|
|
3094
3271
|
/***/ },
|
|
3095
|
-
/*
|
|
3272
|
+
/* 52 */
|
|
3096
3273
|
/***/ function(module, exports, __webpack_require__) {
|
|
3097
3274
|
|
|
3098
3275
|
/* WEBPACK VAR INJECTION */(function(React) {var AddItemMixin;
|
|
@@ -3187,14 +3364,14 @@
|
|
|
3187
3364
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3188
3365
|
|
|
3189
3366
|
/***/ },
|
|
3190
|
-
/*
|
|
3367
|
+
/* 53 */
|
|
3191
3368
|
/***/ function(module, exports, __webpack_require__) {
|
|
3192
3369
|
|
|
3193
3370
|
var ActiveNodeConfigCollector, ObjCreation, PresetBuilder;
|
|
3194
3371
|
|
|
3195
3372
|
ActiveNodeConfigCollector = __webpack_require__(21);
|
|
3196
3373
|
|
|
3197
|
-
PresetBuilder = __webpack_require__(
|
|
3374
|
+
PresetBuilder = __webpack_require__(54);
|
|
3198
3375
|
|
|
3199
3376
|
ObjCreation = (function() {
|
|
3200
3377
|
function ObjCreation(filter) {
|
|
@@ -3274,7 +3451,7 @@
|
|
|
3274
3451
|
|
|
3275
3452
|
|
|
3276
3453
|
/***/ },
|
|
3277
|
-
/*
|
|
3454
|
+
/* 54 */
|
|
3278
3455
|
/***/ function(module, exports, __webpack_require__) {
|
|
3279
3456
|
|
|
3280
3457
|
var ActiveNodeConfigCollector, PresetBuilder;
|
|
@@ -3370,16 +3547,16 @@
|
|
|
3370
3547
|
|
|
3371
3548
|
|
|
3372
3549
|
/***/ },
|
|
3373
|
-
/*
|
|
3550
|
+
/* 55 */
|
|
3374
3551
|
/***/ function(module, exports, __webpack_require__) {
|
|
3375
3552
|
|
|
3376
3553
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedItems, LastAddedTableViewContent, LastAddedThumbnailItems, TableView;
|
|
3377
3554
|
|
|
3378
|
-
LastAddedTableViewContent = __webpack_require__(
|
|
3555
|
+
LastAddedTableViewContent = __webpack_require__(56);
|
|
3379
3556
|
|
|
3380
|
-
LastAddedThumbnailItems = __webpack_require__(
|
|
3557
|
+
LastAddedThumbnailItems = __webpack_require__(62);
|
|
3381
3558
|
|
|
3382
|
-
TableView = __webpack_require__(
|
|
3559
|
+
TableView = __webpack_require__(45);
|
|
3383
3560
|
|
|
3384
3561
|
LastAddedItems = React.createClass({
|
|
3385
3562
|
displayName: 'LastAddedItems',
|
|
@@ -3402,16 +3579,16 @@
|
|
|
3402
3579
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3403
3580
|
|
|
3404
3581
|
/***/ },
|
|
3405
|
-
/*
|
|
3582
|
+
/* 56 */
|
|
3406
3583
|
/***/ function(module, exports, __webpack_require__) {
|
|
3407
3584
|
|
|
3408
3585
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedTableViewContent, LastAddedTableViewErrorItem, LastAddedTableViewItem, TableViewItem;
|
|
3409
3586
|
|
|
3410
|
-
LastAddedTableViewErrorItem = __webpack_require__(
|
|
3587
|
+
LastAddedTableViewErrorItem = __webpack_require__(57);
|
|
3411
3588
|
|
|
3412
|
-
LastAddedTableViewItem = __webpack_require__(
|
|
3589
|
+
LastAddedTableViewItem = __webpack_require__(59);
|
|
3413
3590
|
|
|
3414
|
-
TableViewItem = __webpack_require__(
|
|
3591
|
+
TableViewItem = __webpack_require__(61);
|
|
3415
3592
|
|
|
3416
3593
|
LastAddedTableViewContent = React.createClass({
|
|
3417
3594
|
displayName: 'LastAddedTableViewContent',
|
|
@@ -3453,12 +3630,12 @@
|
|
|
3453
3630
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3454
3631
|
|
|
3455
3632
|
/***/ },
|
|
3456
|
-
/*
|
|
3633
|
+
/* 57 */
|
|
3457
3634
|
/***/ function(module, exports, __webpack_require__) {
|
|
3458
3635
|
|
|
3459
3636
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedErrorItemMixin, LastAddedTableViewErrorItem;
|
|
3460
3637
|
|
|
3461
|
-
LastAddedErrorItemMixin = __webpack_require__(
|
|
3638
|
+
LastAddedErrorItemMixin = __webpack_require__(58);
|
|
3462
3639
|
|
|
3463
3640
|
LastAddedTableViewErrorItem = React.createClass({
|
|
3464
3641
|
displayName: 'LastAddedTableViewError',
|
|
@@ -3481,7 +3658,7 @@
|
|
|
3481
3658
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3482
3659
|
|
|
3483
3660
|
/***/ },
|
|
3484
|
-
/*
|
|
3661
|
+
/* 58 */
|
|
3485
3662
|
/***/ function(module, exports, __webpack_require__) {
|
|
3486
3663
|
|
|
3487
3664
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedErrorItemMixin;
|
|
@@ -3519,12 +3696,12 @@
|
|
|
3519
3696
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3520
3697
|
|
|
3521
3698
|
/***/ },
|
|
3522
|
-
/*
|
|
3699
|
+
/* 59 */
|
|
3523
3700
|
/***/ function(module, exports, __webpack_require__) {
|
|
3524
3701
|
|
|
3525
3702
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedItemMixin, LastAddedTableViewItem;
|
|
3526
3703
|
|
|
3527
|
-
LastAddedItemMixin = __webpack_require__(
|
|
3704
|
+
LastAddedItemMixin = __webpack_require__(60);
|
|
3528
3705
|
|
|
3529
3706
|
LastAddedTableViewItem = React.createClass({
|
|
3530
3707
|
displayName: 'LastAddedTableViewItem',
|
|
@@ -3549,7 +3726,7 @@
|
|
|
3549
3726
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3550
3727
|
|
|
3551
3728
|
/***/ },
|
|
3552
|
-
/*
|
|
3729
|
+
/* 60 */
|
|
3553
3730
|
/***/ function(module, exports, __webpack_require__) {
|
|
3554
3731
|
|
|
3555
3732
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedItemMixin;
|
|
@@ -3575,12 +3752,12 @@
|
|
|
3575
3752
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3576
3753
|
|
|
3577
3754
|
/***/ },
|
|
3578
|
-
/*
|
|
3755
|
+
/* 61 */
|
|
3579
3756
|
/***/ function(module, exports, __webpack_require__) {
|
|
3580
3757
|
|
|
3581
3758
|
/* WEBPACK VAR INJECTION */(function(React) {var InspectedItemMixin, TableViewItem;
|
|
3582
3759
|
|
|
3583
|
-
InspectedItemMixin = __webpack_require__(
|
|
3760
|
+
InspectedItemMixin = __webpack_require__(49);
|
|
3584
3761
|
|
|
3585
3762
|
TableViewItem = React.createClass({
|
|
3586
3763
|
displayName: 'TableViewItem',
|
|
@@ -3624,16 +3801,16 @@
|
|
|
3624
3801
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3625
3802
|
|
|
3626
3803
|
/***/ },
|
|
3627
|
-
/*
|
|
3804
|
+
/* 62 */
|
|
3628
3805
|
/***/ function(module, exports, __webpack_require__) {
|
|
3629
3806
|
|
|
3630
3807
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedThumbnailErrorItem, LastAddedThumbnailItem, LastAddedThumbnailItems, ThumbnailItem;
|
|
3631
3808
|
|
|
3632
|
-
LastAddedThumbnailErrorItem = __webpack_require__(
|
|
3809
|
+
LastAddedThumbnailErrorItem = __webpack_require__(63);
|
|
3633
3810
|
|
|
3634
|
-
LastAddedThumbnailItem = __webpack_require__(
|
|
3811
|
+
LastAddedThumbnailItem = __webpack_require__(64);
|
|
3635
3812
|
|
|
3636
|
-
ThumbnailItem = __webpack_require__(
|
|
3813
|
+
ThumbnailItem = __webpack_require__(48);
|
|
3637
3814
|
|
|
3638
3815
|
LastAddedThumbnailItems = React.createClass({
|
|
3639
3816
|
displayName: "LastAddedThumbnailItems",
|
|
@@ -3677,12 +3854,12 @@
|
|
|
3677
3854
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3678
3855
|
|
|
3679
3856
|
/***/ },
|
|
3680
|
-
/*
|
|
3857
|
+
/* 63 */
|
|
3681
3858
|
/***/ function(module, exports, __webpack_require__) {
|
|
3682
3859
|
|
|
3683
3860
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedErrorItemMixin, LastAddedThumbnailErrorItem;
|
|
3684
3861
|
|
|
3685
|
-
LastAddedErrorItemMixin = __webpack_require__(
|
|
3862
|
+
LastAddedErrorItemMixin = __webpack_require__(58);
|
|
3686
3863
|
|
|
3687
3864
|
LastAddedThumbnailErrorItem = React.createClass({
|
|
3688
3865
|
displayName: 'LastAddedThumbnailErrorItem',
|
|
@@ -3707,12 +3884,12 @@
|
|
|
3707
3884
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3708
3885
|
|
|
3709
3886
|
/***/ },
|
|
3710
|
-
/*
|
|
3887
|
+
/* 64 */
|
|
3711
3888
|
/***/ function(module, exports, __webpack_require__) {
|
|
3712
3889
|
|
|
3713
3890
|
/* WEBPACK VAR INJECTION */(function(React) {var LastAddedItemMixin, LastAddedThumbnailItem;
|
|
3714
3891
|
|
|
3715
|
-
LastAddedItemMixin = __webpack_require__(
|
|
3892
|
+
LastAddedItemMixin = __webpack_require__(60);
|
|
3716
3893
|
|
|
3717
3894
|
LastAddedThumbnailItem = React.createClass({
|
|
3718
3895
|
displayName: 'LastAddedThumbnailItem',
|
|
@@ -3743,18 +3920,18 @@
|
|
|
3743
3920
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3744
3921
|
|
|
3745
3922
|
/***/ },
|
|
3746
|
-
/*
|
|
3923
|
+
/* 65 */
|
|
3747
3924
|
/***/ function(module, exports, __webpack_require__) {
|
|
3748
3925
|
|
|
3749
3926
|
/* WEBPACK VAR INJECTION */(function(React) {var InfiniteScrollMixin, ObjCreation, TableViewAddItem, TableViewContent, TableViewItem;
|
|
3750
3927
|
|
|
3751
|
-
TableViewItem = __webpack_require__(
|
|
3928
|
+
TableViewItem = __webpack_require__(61);
|
|
3752
3929
|
|
|
3753
|
-
TableViewAddItem = __webpack_require__(
|
|
3930
|
+
TableViewAddItem = __webpack_require__(66);
|
|
3754
3931
|
|
|
3755
|
-
ObjCreation = __webpack_require__(
|
|
3932
|
+
ObjCreation = __webpack_require__(53);
|
|
3756
3933
|
|
|
3757
|
-
InfiniteScrollMixin = __webpack_require__(
|
|
3934
|
+
InfiniteScrollMixin = __webpack_require__(47);
|
|
3758
3935
|
|
|
3759
3936
|
TableViewContent = React.createClass({
|
|
3760
3937
|
mixins: [InfiniteScrollMixin],
|
|
@@ -3791,12 +3968,12 @@
|
|
|
3791
3968
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3792
3969
|
|
|
3793
3970
|
/***/ },
|
|
3794
|
-
/*
|
|
3971
|
+
/* 66 */
|
|
3795
3972
|
/***/ function(module, exports, __webpack_require__) {
|
|
3796
3973
|
|
|
3797
3974
|
/* WEBPACK VAR INJECTION */(function(React) {var AddItemMixin, TableViewAddItem;
|
|
3798
3975
|
|
|
3799
|
-
AddItemMixin = __webpack_require__(
|
|
3976
|
+
AddItemMixin = __webpack_require__(52);
|
|
3800
3977
|
|
|
3801
3978
|
TableViewAddItem = React.createClass({
|
|
3802
3979
|
mixins: [AddItemMixin],
|
|
@@ -3821,7 +3998,7 @@
|
|
|
3821
3998
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3822
3999
|
|
|
3823
4000
|
/***/ },
|
|
3824
|
-
/*
|
|
4001
|
+
/* 67 */
|
|
3825
4002
|
/***/ function(module, exports, __webpack_require__) {
|
|
3826
4003
|
|
|
3827
4004
|
/* WEBPACK VAR INJECTION */(function(React) {var MoreItemsSpinner;
|
|
@@ -3842,14 +4019,14 @@
|
|
|
3842
4019
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3843
4020
|
|
|
3844
4021
|
/***/ },
|
|
3845
|
-
/*
|
|
4022
|
+
/* 68 */
|
|
3846
4023
|
/***/ function(module, exports, __webpack_require__) {
|
|
3847
4024
|
|
|
3848
4025
|
/* WEBPACK VAR INJECTION */(function(React) {var Inspector, MaximizeInspectorToggle, ModalDialogsModule;
|
|
3849
4026
|
|
|
3850
|
-
ModalDialogsModule = __webpack_require__(
|
|
4027
|
+
ModalDialogsModule = __webpack_require__(69);
|
|
3851
4028
|
|
|
3852
|
-
MaximizeInspectorToggle = __webpack_require__(
|
|
4029
|
+
MaximizeInspectorToggle = __webpack_require__(70);
|
|
3853
4030
|
|
|
3854
4031
|
Inspector = React.createClass({
|
|
3855
4032
|
displayName: 'Inspector',
|
|
@@ -3914,7 +4091,7 @@
|
|
|
3914
4091
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3915
4092
|
|
|
3916
4093
|
/***/ },
|
|
3917
|
-
/*
|
|
4094
|
+
/* 69 */
|
|
3918
4095
|
/***/ function(module, exports, __webpack_require__) {
|
|
3919
4096
|
|
|
3920
4097
|
/* WEBPACK VAR INJECTION */(function(React) {var ModalDialogsModule;
|
|
@@ -3941,7 +4118,7 @@
|
|
|
3941
4118
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3942
4119
|
|
|
3943
4120
|
/***/ },
|
|
3944
|
-
/*
|
|
4121
|
+
/* 70 */
|
|
3945
4122
|
/***/ function(module, exports, __webpack_require__) {
|
|
3946
4123
|
|
|
3947
4124
|
/* WEBPACK VAR INJECTION */(function(React) {var MaximizeInspectorToggle;
|
|
@@ -3967,12 +4144,12 @@
|
|
|
3967
4144
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
|
|
3968
4145
|
|
|
3969
4146
|
/***/ },
|
|
3970
|
-
/*
|
|
4147
|
+
/* 71 */
|
|
3971
4148
|
/***/ function(module, exports, __webpack_require__) {
|
|
3972
4149
|
|
|
3973
4150
|
/* WEBPACK VAR INJECTION */(function(React) {var Footer, ModalDialogsModule;
|
|
3974
4151
|
|
|
3975
|
-
ModalDialogsModule = __webpack_require__(
|
|
4152
|
+
ModalDialogsModule = __webpack_require__(69);
|
|
3976
4153
|
|
|
3977
4154
|
Footer = React.createClass({
|
|
3978
4155
|
displayName: 'Footer',
|
|
@@ -5,7 +5,7 @@ Scrivito::Configuration.register_obj_format('content_browser') do |obj, _, view_
|
|
|
5
5
|
|
|
6
6
|
format = {
|
|
7
7
|
id: obj.id,
|
|
8
|
-
file_type: obj.
|
|
8
|
+
file_type: obj.obj_class,
|
|
9
9
|
file_size: ConverterHelper.human_binary_length(obj),
|
|
10
10
|
last_changed: obj[:_last_changed],
|
|
11
11
|
title: obj.description_for_editor.presence || obj.binary.try(:filename),
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scrivito_content_browser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.71.0.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scrivito
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coffee-rails
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - '='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.
|
|
47
|
+
version: 0.71.0.rc1
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - '='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.
|
|
54
|
+
version: 0.71.0.rc1
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: pry
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|