monkey-front-core 0.0.286 → 0.0.287
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/config/monkeyecx-currency-config.service.mjs +84 -0
- package/esm2020/lib/core/services/index.mjs +2 -1
- package/fesm2015/monkey-front-core.mjs +75 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +78 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/services/config/monkeyecx-currency-config.service.d.ts +15 -0
- package/lib/core/services/index.d.ts +1 -0
- package/monkey-front-core-0.0.287.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.286.tgz +0 -0
|
@@ -3935,6 +3935,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3935
3935
|
type: SkipSelf
|
|
3936
3936
|
}] }]; } });
|
|
3937
3937
|
|
|
3938
|
+
class MonkeyEcxCurrencyConfigService {
|
|
3939
|
+
constructor(modalService, cookieService, configService) {
|
|
3940
|
+
this.modalService = modalService;
|
|
3941
|
+
this.cookieService = cookieService;
|
|
3942
|
+
this.configService = configService;
|
|
3943
|
+
// not to do
|
|
3944
|
+
}
|
|
3945
|
+
onHandleCurrencyConfig({ currency, environment }) {
|
|
3946
|
+
const { cookieService } = this;
|
|
3947
|
+
const settings = cookieService.getCookie('monkey-app-settings');
|
|
3948
|
+
const locale = cookieService.getCookie('monkey-app-locale');
|
|
3949
|
+
if (!settings) {
|
|
3950
|
+
cookieService.setCookie('monkey-app-settings', btoa(JSON.stringify({
|
|
3951
|
+
showedCurrencyConfig: true
|
|
3952
|
+
})), environment);
|
|
3953
|
+
}
|
|
3954
|
+
else {
|
|
3955
|
+
const decoded = JSON.parse(atob(settings));
|
|
3956
|
+
cookieService.setCookie('monkey-app-settings', btoa(JSON.stringify({
|
|
3957
|
+
...decoded,
|
|
3958
|
+
showedCurrencyConfig: true
|
|
3959
|
+
})), environment);
|
|
3960
|
+
}
|
|
3961
|
+
if (locale) {
|
|
3962
|
+
const decoded = JSON.parse(atob(locale));
|
|
3963
|
+
cookieService.setCookie('monkey-app-locale', btoa(JSON.stringify({
|
|
3964
|
+
...decoded,
|
|
3965
|
+
currency
|
|
3966
|
+
})), environment);
|
|
3967
|
+
}
|
|
3968
|
+
}
|
|
3969
|
+
async onShowCurrencyConfig(environment, force = false) {
|
|
3970
|
+
const { cookieService } = this;
|
|
3971
|
+
const settings = cookieService.getCookie('monkey-app-settings');
|
|
3972
|
+
let showed = false;
|
|
3973
|
+
if (settings) {
|
|
3974
|
+
const decoded = JSON.parse(atob(settings));
|
|
3975
|
+
showed = decoded.showedCurrencyConfig;
|
|
3976
|
+
}
|
|
3977
|
+
const config = await this.configService
|
|
3978
|
+
.config()
|
|
3979
|
+
.pipe(first((val) => {
|
|
3980
|
+
return !!val && JSON.stringify(val) !== '{}';
|
|
3981
|
+
}))
|
|
3982
|
+
.toPromise();
|
|
3983
|
+
const currency = config?.i18n?.currency;
|
|
3984
|
+
const currencies = config?.i18n?.currencies;
|
|
3985
|
+
if ((!showed || force) && currencies?.length) {
|
|
3986
|
+
this.modalService.open(CurrencyConfigComponent, {
|
|
3987
|
+
color: 'theme',
|
|
3988
|
+
size: 'md',
|
|
3989
|
+
data: {
|
|
3990
|
+
currency,
|
|
3991
|
+
currencies,
|
|
3992
|
+
callback: (dontShowAnymore, currency = 'BRL') => {
|
|
3993
|
+
this.onHandleCurrencyConfig({
|
|
3994
|
+
currency,
|
|
3995
|
+
environment
|
|
3996
|
+
});
|
|
3997
|
+
}
|
|
3998
|
+
}
|
|
3999
|
+
});
|
|
4000
|
+
}
|
|
4001
|
+
}
|
|
4002
|
+
apply(environment, force = false) {
|
|
4003
|
+
this.onShowCurrencyConfig(environment, force);
|
|
4004
|
+
}
|
|
4005
|
+
}
|
|
4006
|
+
MonkeyEcxCurrencyConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCurrencyConfigService, deps: [{ token: i1.MonkeyStyleGuideModalFixedService }, { token: MonkeyEcxCookieStorageService }, { token: MonkeyEcxConfigService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4007
|
+
MonkeyEcxCurrencyConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCurrencyConfigService, providedIn: 'root' });
|
|
4008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCurrencyConfigService, decorators: [{
|
|
4009
|
+
type: Injectable,
|
|
4010
|
+
args: [{
|
|
4011
|
+
providedIn: 'root'
|
|
4012
|
+
}]
|
|
4013
|
+
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalFixedService }, { type: MonkeyEcxCookieStorageService }, { type: MonkeyEcxConfigService }]; } });
|
|
4014
|
+
|
|
3938
4015
|
class MonkeyEcxHttpErrorHandlingService extends MonkeyEcxCommonsService {
|
|
3939
4016
|
constructor(monkeyecxService, tokenStorage, monkeyecxAuthenticationService, router, snackbarService, translateService) {
|
|
3940
4017
|
super(monkeyecxService, tokenStorage);
|
|
@@ -5326,5 +5403,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5326
5403
|
* Generated bundle index. Do not edit.
|
|
5327
5404
|
*/
|
|
5328
5405
|
|
|
5329
|
-
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, 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, documentValidator, emailValidator, passwordConfirmValidator, registerValidator, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
5406
|
+
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, 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, documentValidator, emailValidator, passwordConfirmValidator, registerValidator, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
5330
5407
|
//# sourceMappingURL=monkey-front-core.mjs.map
|