monkey-front-core 0.0.564 → 0.0.566
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/utils/index.mjs +4 -4
- package/esm2020/lib/core/utils/utils.mjs +2 -8
- package/fesm2015/monkey-front-core.mjs +45 -51
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +48 -54
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/utils/index.d.ts +3 -3
- package/lib/core/utils/utils.d.ts +3 -4
- package/monkey-front-core-0.0.566.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.564.tgz +0 -0
|
@@ -568,17 +568,11 @@ class MonkeyEcxUtils {
|
|
|
568
568
|
return ret;
|
|
569
569
|
}
|
|
570
570
|
}
|
|
571
|
-
class MonkeyEcxLogParams {
|
|
572
|
-
constructor() {
|
|
573
|
-
this.message = '';
|
|
574
|
-
this.type = 'error';
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
571
|
class MonkeyEcxLogs {
|
|
578
572
|
static log(params) {
|
|
579
573
|
try {
|
|
580
574
|
const { type, message, context, error } = params;
|
|
581
|
-
datadogLogs.logger[type](message, context, error);
|
|
575
|
+
datadogLogs.logger[type || 'error'](message, context, error);
|
|
582
576
|
}
|
|
583
577
|
catch (e) {
|
|
584
578
|
// not to do
|
|
@@ -1062,6 +1056,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1062
1056
|
}]
|
|
1063
1057
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
1064
1058
|
|
|
1059
|
+
function buildQueuePropertys(queue) {
|
|
1060
|
+
const params = {
|
|
1061
|
+
item: {
|
|
1062
|
+
...queue,
|
|
1063
|
+
id: MonkeyEcxUtils.getRandomString(40)
|
|
1064
|
+
},
|
|
1065
|
+
status: MonkeyEcxQueueEvents.OnGoing
|
|
1066
|
+
};
|
|
1067
|
+
return params;
|
|
1068
|
+
}
|
|
1069
|
+
function buildDownloadPropertys(name, description, size) {
|
|
1070
|
+
const params = {
|
|
1071
|
+
item: {
|
|
1072
|
+
name,
|
|
1073
|
+
description,
|
|
1074
|
+
id: `${MonkeyEcxUtils.getRandomString(40)}`,
|
|
1075
|
+
size,
|
|
1076
|
+
createdAt: new Date()
|
|
1077
|
+
},
|
|
1078
|
+
status: MonkeyEcxQueueEvents.OnGoing
|
|
1079
|
+
};
|
|
1080
|
+
return params;
|
|
1081
|
+
}
|
|
1082
|
+
function buildUploadPropertys(name, description) {
|
|
1083
|
+
const params = {
|
|
1084
|
+
item: {
|
|
1085
|
+
name,
|
|
1086
|
+
description,
|
|
1087
|
+
id: `${MonkeyEcxUtils.getRandomString(40)}`
|
|
1088
|
+
},
|
|
1089
|
+
status: MonkeyEcxUploadEvents.OnGoing
|
|
1090
|
+
};
|
|
1091
|
+
return params;
|
|
1092
|
+
}
|
|
1093
|
+
function hasMonkeyEcxServiceAndHandlingProperties(context) {
|
|
1094
|
+
return Object.prototype.hasOwnProperty.call(context, 'monkeyecxService');
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
var decoratorsUtils = /*#__PURE__*/Object.freeze({
|
|
1098
|
+
__proto__: null,
|
|
1099
|
+
buildQueuePropertys: buildQueuePropertys,
|
|
1100
|
+
buildDownloadPropertys: buildDownloadPropertys,
|
|
1101
|
+
buildUploadPropertys: buildUploadPropertys,
|
|
1102
|
+
hasMonkeyEcxServiceAndHandlingProperties: hasMonkeyEcxServiceAndHandlingProperties
|
|
1103
|
+
});
|
|
1104
|
+
|
|
1065
1105
|
const moment$3 = moment_;
|
|
1066
1106
|
class DateValidator {
|
|
1067
1107
|
static do(control) {
|
|
@@ -1297,52 +1337,6 @@ var validateUtils = /*#__PURE__*/Object.freeze({
|
|
|
1297
1337
|
DateRangeValidator: DateRangeValidator
|
|
1298
1338
|
});
|
|
1299
1339
|
|
|
1300
|
-
function buildQueuePropertys(queue) {
|
|
1301
|
-
const params = {
|
|
1302
|
-
item: {
|
|
1303
|
-
...queue,
|
|
1304
|
-
id: MonkeyEcxUtils.getRandomString(40)
|
|
1305
|
-
},
|
|
1306
|
-
status: MonkeyEcxQueueEvents.OnGoing
|
|
1307
|
-
};
|
|
1308
|
-
return params;
|
|
1309
|
-
}
|
|
1310
|
-
function buildDownloadPropertys(name, description, size) {
|
|
1311
|
-
const params = {
|
|
1312
|
-
item: {
|
|
1313
|
-
name,
|
|
1314
|
-
description,
|
|
1315
|
-
id: `${MonkeyEcxUtils.getRandomString(40)}`,
|
|
1316
|
-
size,
|
|
1317
|
-
createdAt: new Date()
|
|
1318
|
-
},
|
|
1319
|
-
status: MonkeyEcxQueueEvents.OnGoing
|
|
1320
|
-
};
|
|
1321
|
-
return params;
|
|
1322
|
-
}
|
|
1323
|
-
function buildUploadPropertys(name, description) {
|
|
1324
|
-
const params = {
|
|
1325
|
-
item: {
|
|
1326
|
-
name,
|
|
1327
|
-
description,
|
|
1328
|
-
id: `${MonkeyEcxUtils.getRandomString(40)}`
|
|
1329
|
-
},
|
|
1330
|
-
status: MonkeyEcxUploadEvents.OnGoing
|
|
1331
|
-
};
|
|
1332
|
-
return params;
|
|
1333
|
-
}
|
|
1334
|
-
function hasMonkeyEcxServiceAndHandlingProperties(context) {
|
|
1335
|
-
return Object.prototype.hasOwnProperty.call(context, 'monkeyecxService');
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
var decoratorsUtils = /*#__PURE__*/Object.freeze({
|
|
1339
|
-
__proto__: null,
|
|
1340
|
-
buildQueuePropertys: buildQueuePropertys,
|
|
1341
|
-
buildDownloadPropertys: buildDownloadPropertys,
|
|
1342
|
-
buildUploadPropertys: buildUploadPropertys,
|
|
1343
|
-
hasMonkeyEcxServiceAndHandlingProperties: hasMonkeyEcxServiceAndHandlingProperties
|
|
1344
|
-
});
|
|
1345
|
-
|
|
1346
1340
|
const moment$2 = moment_;
|
|
1347
1341
|
const EMAIL_REGEXP = /^[\w-.]+@([\w-]+\.)+[\w-]{1,64}$/;
|
|
1348
1342
|
function isEmptyInputValue(value) {
|
|
@@ -7160,5 +7154,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
7160
7154
|
* Generated bundle index. Do not edit.
|
|
7161
7155
|
*/
|
|
7162
7156
|
|
|
7163
|
-
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, LService, Link, MECX_ALPHA, MECX_BETA, MECX_DATE_FORMAT, MECX_ENV, MECX_LANG, MECX_TIMEZONEOFFSET, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardByRole, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsActions, MonkeyEcxCommonsResolveBaseService, MonkeyEcxCommonsResolveService, MonkeyEcxCommonsSelectors, MonkeyEcxCommonsService, MonkeyEcxCommonsStoreBaseService, MonkeyEcxCommonsStoreService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyCodePipe, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDisplaySupportPhone, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDatePipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLinksModel, MonkeyEcxLoadingDirective, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, differentFromZero, documentValidator, documentValidatorByType, emailValidator, minYearsValidator, passwordConfirmValidator, registerValidator, requiredWithTrimValidator, index as store, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
7157
|
+
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, LService, Link, MECX_ALPHA, MECX_BETA, MECX_DATE_FORMAT, MECX_ENV, MECX_LANG, MECX_TIMEZONEOFFSET, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardByRole, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsActions, MonkeyEcxCommonsResolveBaseService, MonkeyEcxCommonsResolveService, MonkeyEcxCommonsSelectors, MonkeyEcxCommonsService, MonkeyEcxCommonsStoreBaseService, MonkeyEcxCommonsStoreService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyCodePipe, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDisplaySupportPhone, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDatePipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLinksModel, MonkeyEcxLoadingDirective, MonkeyEcxLoggedHandlingService, MonkeyEcxLogs, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, differentFromZero, documentValidator, documentValidatorByType, emailValidator, minYearsValidator, passwordConfirmValidator, registerValidator, requiredWithTrimValidator, index as store, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
7164
7158
|
//# sourceMappingURL=monkey-front-core.mjs.map
|