monkey-front-core 0.0.90 → 0.0.94
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/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +8 -1
- package/fesm2015/monkey-front-core.mjs +7 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +7 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.94.tgz +0 -0
- package/package.json +5 -5
- package/monkey-front-core-0.0.90.tgz +0 -0
|
@@ -2009,12 +2009,19 @@ class MonkeyEcxCommonsService {
|
|
|
2009
2009
|
});
|
|
2010
2010
|
}
|
|
2011
2011
|
doPagination() {
|
|
2012
|
+
console.log('do pagination');
|
|
2012
2013
|
if (!this.__onLoadingInProgress$.value) {
|
|
2014
|
+
console.log('1');
|
|
2013
2015
|
const hasMorePages = this.setPage({
|
|
2014
2016
|
page: {
|
|
2015
2017
|
...this.__page,
|
|
2016
2018
|
},
|
|
2017
2019
|
}).nextPage();
|
|
2020
|
+
console.log('2');
|
|
2021
|
+
console.log('hasMorePages');
|
|
2022
|
+
console.log(hasMorePages);
|
|
2023
|
+
console.log('__callbackPagination');
|
|
2024
|
+
console.log(this.__callbackPagination);
|
|
2018
2025
|
if (hasMorePages && this.__callbackPagination) {
|
|
2019
2026
|
this.__callbackPagination();
|
|
2020
2027
|
}
|