@schneideress/dashboardframework 0.0.149 → 0.0.151
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.
- package/bundles/schneideress-dashboardframework.umd.js +84 -67
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +11 -11
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-dashboard-area/ra.dashboard.area.js +44 -26
- package/esm2015/lib/ra.dashboard.responsive.service.js +26 -23
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +49 -26
- package/esm5/lib/ra.dashboard.responsive.service.js +26 -27
- package/fesm2015/schneideress-dashboardframework.js +68 -47
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +73 -51
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-dashboard-area/ra.dashboard.area.d.ts +1 -0
- package/lib/ra.dashboard.responsive.service.d.ts +0 -1
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -5,18 +5,18 @@
|
|
|
5
5
|
}(this, (function (exports, core, rxjs, raCommon, operators, ngxUiLoader, angularNotifier, widgetframework, platformBrowser, http, common, userControls, commonControls) { 'use strict';
|
|
6
6
|
|
|
7
7
|
/*! *****************************************************************************
|
|
8
|
-
Copyright (c) Microsoft Corporation.
|
|
8
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
9
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
10
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
11
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
13
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
15
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
16
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
12
17
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
16
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
17
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
18
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
19
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
18
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
19
|
+
and limitations under the License.
|
|
20
20
|
***************************************************************************** */
|
|
21
21
|
/* global Reflect, Promise */
|
|
22
22
|
|
|
@@ -109,13 +109,8 @@
|
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
-
function __createBinding(o, m, k, k2) {
|
|
113
|
-
if (k2 === undefined) k2 = k;
|
|
114
|
-
o[k2] = m[k];
|
|
115
|
-
}
|
|
116
|
-
|
|
117
112
|
function __exportStar(m, exports) {
|
|
118
|
-
for (var p in m) if (
|
|
113
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
119
114
|
}
|
|
120
115
|
|
|
121
116
|
function __values(o) {
|
|
@@ -903,18 +898,14 @@
|
|
|
903
898
|
* Generated from: lib/ra.dashboard.responsive.service.ts
|
|
904
899
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
905
900
|
*/
|
|
906
|
-
/** @type {?} */
|
|
907
|
-
var DesktopViewStart = 1367;
|
|
908
|
-
/** @type {?} */
|
|
909
|
-
var GridLockViewEnd = 1024;
|
|
910
901
|
var RADashboardResponsiveService = /** @class */ (function () {
|
|
911
902
|
function RADashboardResponsiveService() {
|
|
912
903
|
var _this = this;
|
|
913
904
|
this.resInfo = [
|
|
914
905
|
{ 'start': 0, 'end': 767, 'minCols': 1, 'maxCols': 1 },
|
|
915
|
-
{ 'start': 768, 'end':
|
|
916
|
-
{ 'start':
|
|
917
|
-
{ 'start':
|
|
906
|
+
{ 'start': 768, 'end': 1024, 'minCols': 1, 'maxCols': 2 },
|
|
907
|
+
{ 'start': 1025, 'end': 1366, 'minCols': 2, 'maxCols': 6 },
|
|
908
|
+
{ 'start': 1367, 'end': 9999999999, 'minCols': 2, 'maxCols': 10 }
|
|
918
909
|
];
|
|
919
910
|
this.setScreenWidth();
|
|
920
911
|
window.addEventListener('resize', (/**
|
|
@@ -935,30 +926,29 @@
|
|
|
935
926
|
function () {
|
|
936
927
|
var _this = this;
|
|
937
928
|
this.screenWidth = screen.width;
|
|
938
|
-
this.
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
929
|
+
if (this.IsDesktopView) {
|
|
930
|
+
this.currentResInfo = this.resInfo[3];
|
|
931
|
+
}
|
|
932
|
+
else {
|
|
933
|
+
this.currentResInfo = this.resInfo.filter((/**
|
|
934
|
+
* @param {?} item
|
|
935
|
+
* @return {?}
|
|
936
|
+
*/
|
|
937
|
+
function (item) {
|
|
938
|
+
return item.end >= _this.screenWidth && item.start <= _this.screenWidth;
|
|
939
|
+
}))[0];
|
|
940
|
+
}
|
|
945
941
|
};
|
|
946
942
|
Object.defineProperty(RADashboardResponsiveService.prototype, "IsDesktopView", {
|
|
947
943
|
get: /**
|
|
948
944
|
* @return {?}
|
|
949
945
|
*/
|
|
950
946
|
function () {
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
Object.defineProperty(RADashboardResponsiveService.prototype, "IsGridLocked", {
|
|
957
|
-
get: /**
|
|
958
|
-
* @return {?}
|
|
959
|
-
*/
|
|
960
|
-
function () {
|
|
961
|
-
return this.screenWidth <= GridLockViewEnd;
|
|
947
|
+
/** @type {?} */
|
|
948
|
+
var agent = navigator.userAgent || navigator.vendor || window.opera;
|
|
949
|
+
if (/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(agent) || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(agent.substr(0, 4)))
|
|
950
|
+
return false;
|
|
951
|
+
return true;
|
|
962
952
|
},
|
|
963
953
|
enumerable: true,
|
|
964
954
|
configurable: true
|
|
@@ -984,6 +974,11 @@
|
|
|
984
974
|
config.swap = false;
|
|
985
975
|
config.draggable.enabled = false;
|
|
986
976
|
}
|
|
977
|
+
else {
|
|
978
|
+
config.resizable.enabled = true;
|
|
979
|
+
config.swap = true;
|
|
980
|
+
config.draggable.enabled = true;
|
|
981
|
+
}
|
|
987
982
|
return config;
|
|
988
983
|
},
|
|
989
984
|
enumerable: true,
|
|
@@ -1007,7 +1002,6 @@
|
|
|
1007
1002
|
rows: this.getHeight(widget.height),
|
|
1008
1003
|
x: this.IsDesktopView ? widget.position_x : 0,
|
|
1009
1004
|
y: this.IsDesktopView ? widget.position_y : 0,
|
|
1010
|
-
isInitialized: widget.isInitialized,
|
|
1011
1005
|
widgetInfo: widget
|
|
1012
1006
|
}));
|
|
1013
1007
|
return gridsterItem;
|
|
@@ -1114,7 +1108,12 @@
|
|
|
1114
1108
|
_this.options.api.optionsChanged();
|
|
1115
1109
|
if (_this.userWidgets) {
|
|
1116
1110
|
_this.widgetList = _this.mapObjectListToGridsterItemList(_this.userWidgets);
|
|
1117
|
-
|
|
1111
|
+
setTimeout((/**
|
|
1112
|
+
* @return {?}
|
|
1113
|
+
*/
|
|
1114
|
+
function () {
|
|
1115
|
+
_this.setAreaHeight();
|
|
1116
|
+
}));
|
|
1118
1117
|
}
|
|
1119
1118
|
else {
|
|
1120
1119
|
_this.loadWidgets(_this.userDashboardId, _this.areaKey);
|
|
@@ -1166,26 +1165,12 @@
|
|
|
1166
1165
|
* @return {?}
|
|
1167
1166
|
*/
|
|
1168
1167
|
function (item) {
|
|
1169
|
-
if (
|
|
1170
|
-
if (
|
|
1171
|
-
|
|
1172
|
-
_this.updateWidgets();
|
|
1173
|
-
}
|
|
1174
|
-
else {
|
|
1175
|
-
if (item.widgetInfo && item.widgetInfo.widgetInstanceId) {
|
|
1176
|
-
_this.updateWidgetPosition(item.widgetInfo.widgetInstanceId);
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1168
|
+
if (_this.responsiveService.IsDesktopView) {
|
|
1169
|
+
if (item.widgetInfo && item.widgetInfo.widgetInstanceId) {
|
|
1170
|
+
_this.updateWidgetPosition(item.widgetInfo.widgetInstanceId);
|
|
1179
1171
|
}
|
|
1180
|
-
_this.setAreaHeight();
|
|
1181
1172
|
}
|
|
1182
|
-
|
|
1183
|
-
this.options.itemInitCallback = (/**
|
|
1184
|
-
* @param {?} item
|
|
1185
|
-
* @return {?}
|
|
1186
|
-
*/
|
|
1187
|
-
function (item) {
|
|
1188
|
-
item.isInitialized = true;
|
|
1173
|
+
_this.setAreaHeight();
|
|
1189
1174
|
});
|
|
1190
1175
|
};
|
|
1191
1176
|
/** To initiate eventbus subsctiptions */
|
|
@@ -1573,9 +1558,7 @@
|
|
|
1573
1558
|
var _this = this;
|
|
1574
1559
|
data.height = this.widgetHeight;
|
|
1575
1560
|
data.width = this.widgetWidth;
|
|
1576
|
-
data
|
|
1577
|
-
data.position_y = 0;
|
|
1578
|
-
data.isInitialized = true;
|
|
1561
|
+
data = this.setPositions(data);
|
|
1579
1562
|
/** to find the available position in gridster, temp commenting the code-returning higher y value than normal */
|
|
1580
1563
|
data.dashboardAreaKey = this.areaKey;
|
|
1581
1564
|
data.dashboardId = this.userDashboardId;
|
|
@@ -1612,6 +1595,34 @@
|
|
|
1612
1595
|
_this.raDashboardEventBus.publish(RAEvent.WidgetAdded, widget);
|
|
1613
1596
|
}));
|
|
1614
1597
|
};
|
|
1598
|
+
/**
|
|
1599
|
+
* @private
|
|
1600
|
+
* @param {?} data
|
|
1601
|
+
* @return {?}
|
|
1602
|
+
*/
|
|
1603
|
+
RADashboardArea.prototype.setPositions = /**
|
|
1604
|
+
* @private
|
|
1605
|
+
* @param {?} data
|
|
1606
|
+
* @return {?}
|
|
1607
|
+
*/
|
|
1608
|
+
function (data) {
|
|
1609
|
+
data.position_x = 0;
|
|
1610
|
+
data.position_y = 0;
|
|
1611
|
+
if (!this.responsiveService.IsDesktopView) {
|
|
1612
|
+
if (this.userWidgets.length > 0) {
|
|
1613
|
+
/** @type {?} */
|
|
1614
|
+
var widget = this.userWidgets[this.userWidgets.length - 1];
|
|
1615
|
+
if (widget.position_x + widget.width > 5) {
|
|
1616
|
+
data.position_y = widget.position_y + 1;
|
|
1617
|
+
}
|
|
1618
|
+
else {
|
|
1619
|
+
data.position_y = widget.position_y;
|
|
1620
|
+
data.position_x = 10 - (widget.position_x + widget.width);
|
|
1621
|
+
}
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
return data;
|
|
1625
|
+
};
|
|
1615
1626
|
/** To add widget to current widget list ,invoked from copy widget window*/
|
|
1616
1627
|
/**
|
|
1617
1628
|
* To add widget to current widget list ,invoked from copy widget window
|
|
@@ -1624,9 +1635,15 @@
|
|
|
1624
1635
|
* @return {?}
|
|
1625
1636
|
*/
|
|
1626
1637
|
function (data) {
|
|
1627
|
-
data
|
|
1628
|
-
|
|
1629
|
-
|
|
1638
|
+
data = this.setPositions(data);
|
|
1639
|
+
if (!this.responsiveService.IsDesktopView) {
|
|
1640
|
+
this.dashboardService.updateWidgets(this.formatWidgetDataForPositionDetails([data]), this.appConfig).subscribe((/**
|
|
1641
|
+
* @param {?} widgets
|
|
1642
|
+
* @return {?}
|
|
1643
|
+
*/
|
|
1644
|
+
function (widgets) {
|
|
1645
|
+
}));
|
|
1646
|
+
}
|
|
1630
1647
|
/** @type {?} */
|
|
1631
1648
|
var gridsterItem = this.responsiveService.getGridsterItem(data);
|
|
1632
1649
|
this.widgetList.push(gridsterItem);
|