@morozeckiy/dd-lib 0.7.87 → 0.7.88
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/fesm2022/morozeckiy-dd-lib.mjs +7 -114
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/lib/core/services/date.service.d.ts +2 -1
- package/morozeckiy-dd-lib-0.7.88.tgz +0 -0
- package/package.json +1 -1
- package/public-api.d.ts +0 -1
- package/lib/lib-period/lib-period.component.d.ts +0 -43
- package/morozeckiy-dd-lib-0.7.87.tgz +0 -0
|
@@ -205,6 +205,12 @@ class DateService {
|
|
|
205
205
|
year: () => new Date(new Date().setFullYear(new Date().getFullYear() - 1)),
|
|
206
206
|
};
|
|
207
207
|
}
|
|
208
|
+
getActiveTitle(name) {
|
|
209
|
+
if (name !== 'calendar') {
|
|
210
|
+
return this.commonDateDataBy[name] ? this.commonDateDataBy[name].title : 'Период';
|
|
211
|
+
}
|
|
212
|
+
return 'Период';
|
|
213
|
+
}
|
|
208
214
|
getFormattedDate(dateType, f = DEFAULT_FORMAT) {
|
|
209
215
|
const date = this.getDateBy[dateType] || this.getDateBy.day;
|
|
210
216
|
return format(date(), f);
|
|
@@ -3130,119 +3136,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
3130
3136
|
type: Output
|
|
3131
3137
|
}] } });
|
|
3132
3138
|
|
|
3133
|
-
class LibPeriodComponent {
|
|
3134
|
-
static { this.idCounter = 1; }
|
|
3135
|
-
constructor(dateService, cdr) {
|
|
3136
|
-
this.dateService = dateService;
|
|
3137
|
-
this.cdr = cdr;
|
|
3138
|
-
this.setPeriodDate = new EventEmitter();
|
|
3139
|
-
this.periodIsShown = false;
|
|
3140
|
-
this.calendarIsShown = false;
|
|
3141
|
-
this.periodIsSelected = false;
|
|
3142
|
-
this.calendarIsSelected = false;
|
|
3143
|
-
this.periodName = 'Период';
|
|
3144
|
-
}
|
|
3145
|
-
ngOnInit() {
|
|
3146
|
-
this.idPeriod = 'period-wrapper-' + LibPeriodComponent.idCounter++;
|
|
3147
|
-
this.idCalendar = 'calendar-wrapper-' + LibPeriodComponent.idCounter++;
|
|
3148
|
-
this.periodMenu = this.dateService.getPeriodMenu();
|
|
3149
|
-
}
|
|
3150
|
-
registerOnChange(fn) {
|
|
3151
|
-
this.propagateChange = fn;
|
|
3152
|
-
}
|
|
3153
|
-
registerOnTouched(fn) {
|
|
3154
|
-
this.onTouchedCallback = fn;
|
|
3155
|
-
}
|
|
3156
|
-
showPeriod() {
|
|
3157
|
-
this.periodIsShown = !this.periodIsShown;
|
|
3158
|
-
this.calendarIsShown = !!this.selectedDate;
|
|
3159
|
-
}
|
|
3160
|
-
clearPeriod() {
|
|
3161
|
-
this.periodIsSelected = false;
|
|
3162
|
-
this.calendarIsSelected = false;
|
|
3163
|
-
this.periodIsShown = false;
|
|
3164
|
-
this.calendarIsShown = false;
|
|
3165
|
-
this.selectedPeriod = undefined;
|
|
3166
|
-
this.selectedDate = undefined;
|
|
3167
|
-
this.setPeriodDate.emit(null);
|
|
3168
|
-
this.periodName = 'Период';
|
|
3169
|
-
}
|
|
3170
|
-
selectPeriod(type) {
|
|
3171
|
-
this.periodIsShown = false;
|
|
3172
|
-
this.calendarIsShown = false;
|
|
3173
|
-
this.periodIsSelected = true;
|
|
3174
|
-
this.calendarIsSelected = false;
|
|
3175
|
-
const date = this.dateService.getFormattedDate(type);
|
|
3176
|
-
console.log(type, date);
|
|
3177
|
-
this.propagateChange(type);
|
|
3178
|
-
this.setPeriodDate.emit({ [type]: date });
|
|
3179
|
-
const menu = this.dateService.getPeriodMenu(type).find(f => f.active);
|
|
3180
|
-
this.periodName = menu?.title;
|
|
3181
|
-
}
|
|
3182
|
-
writeValue(value) {
|
|
3183
|
-
this.selectedPeriod = value;
|
|
3184
|
-
this.cdr.detectChanges();
|
|
3185
|
-
}
|
|
3186
|
-
selectDate($event) {
|
|
3187
|
-
this.calendarIsShown = false;
|
|
3188
|
-
if ($event) {
|
|
3189
|
-
this.periodName = 'за ' + format($event, 'dd.MM.yyyy');
|
|
3190
|
-
this.selectedPeriod = 'calendar';
|
|
3191
|
-
this.propagateChange(this.selectedPeriod);
|
|
3192
|
-
this.periodIsShown = false;
|
|
3193
|
-
this.periodIsSelected = false;
|
|
3194
|
-
this.calendarIsSelected = true;
|
|
3195
|
-
this.setPeriodDate.emit({ calendar: format($event, DEFAULT_FORMAT) });
|
|
3196
|
-
}
|
|
3197
|
-
else {
|
|
3198
|
-
this.periodName = 'Период';
|
|
3199
|
-
this.selectedDate = undefined;
|
|
3200
|
-
this.setPeriodDate.emit(null);
|
|
3201
|
-
if (!this.selectedPeriod) {
|
|
3202
|
-
this.periodIsSelected = false;
|
|
3203
|
-
}
|
|
3204
|
-
this.calendarIsSelected = false;
|
|
3205
|
-
}
|
|
3206
|
-
}
|
|
3207
|
-
clickOutside($event) {
|
|
3208
|
-
this.periodIsShown = $event;
|
|
3209
|
-
if (this.periodIsShown && !$event) {
|
|
3210
|
-
this.calendarIsShown = $event;
|
|
3211
|
-
}
|
|
3212
|
-
}
|
|
3213
|
-
propagateChange(_value) { }
|
|
3214
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LibPeriodComponent, deps: [{ token: DateService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3215
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: LibPeriodComponent, isStandalone: true, selector: "dd-lib-period", inputs: { maxDate: "maxDate" }, outputs: { setPeriodDate: "setPeriodDate" }, providers: [
|
|
3216
|
-
{
|
|
3217
|
-
provide: NG_VALUE_ACCESSOR,
|
|
3218
|
-
useExisting: forwardRef(() => LibPeriodComponent),
|
|
3219
|
-
multi: true,
|
|
3220
|
-
},
|
|
3221
|
-
], ngImport: i0, template: "<div class=\"pos-relative\">\r\n <dd-lib-filter-button\r\n (clearEvent)=\"clearPeriod()\"\r\n (clickEvent)=\"showPeriod()\"\r\n [active]=\"periodIsSelected || calendarIsSelected\"\r\n [id]=\"idPeriod\"\r\n btnColor=\"transparent\">\r\n <div>{{ periodName }}</div>\r\n </dd-lib-filter-button>\r\n @if (periodIsShown) {\r\n <div (ddClickOutside)=\"clickOutside($event)\" [elements]=\"[idPeriod, idCalendar]\" class=\"period__wrapper\">\r\n <dd-lib-card class=\"period__block\" type=\"small\">\r\n <div class=\"full-width\">\r\n <div class=\"period__header\">\r\n <div class=\"period__back\" (click)=\"periodIsShown = false\">\r\n <dd-lib-svg-icon icon=\"toggle_arrow_left\"></dd-lib-svg-icon>\r\n <div class=\"g-h5-title\">\u041F\u0435\u0440\u0438\u043E\u0434</div>\r\n </div>\r\n <div class=\"g-h5-title hide-tablet\">\u041F\u0435\u0440\u0438\u043E\u0434</div>\r\n <div (click)=\"clearPeriod()\" class=\"g-text font-medium green cup\">\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C</div>\r\n </div>\r\n <div class=\"period__list\">\r\n @for (period of periodMenu; track period) {\r\n <dd-lib-radio (changed)=\"selectPeriod($event)\" [(ngModel)]=\"selectedPeriod\" [value]=\"period.name\">{{\r\n period.title\r\n }}</dd-lib-radio>\r\n }\r\n </div>\r\n <div (click)=\"calendarIsShown = !calendarIsShown\" class=\"g-text font-medium green cup mt-8\">\r\n {{ calendarIsShown ? '\u0417\u0430\u043A\u0440\u044B\u0442\u044C' : '\u041E\u0442\u043A\u0440\u044B\u0442\u044C' }} \u043A\u0430\u043B\u0435\u043D\u0434\u0430\u0440\u044C\r\n </div>\r\n </div>\r\n </dd-lib-card>\r\n @if (calendarIsShown) {\r\n <dd-lib-calendar\r\n (emitDate)=\"selectDate($event)\"\r\n [(ngModel)]=\"selectedDate\"\r\n [id]=\"idCalendar\"\r\n [maxDate]=\"maxDate\"\r\n class=\"period__calendar\">\r\n </dd-lib-calendar>\r\n }\r\n </div>\r\n }\r\n</div>\r\n", styles: ["dd-lib-filter-button{position:relative}.period__wrapper{position:absolute;left:0;z-index:400;display:block;width:352px;height:348px;margin-top:8px;animation:filter-show .5s forwards}@media screen and (max-width: 840px){.period__wrapper{position:fixed;top:0;width:100%;height:100%;overflow:auto;margin-top:0;animation:shift .3s}}@media screen and (max-width: 840px){.period__block{height:100%}}.period__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}@media screen and (max-width: 840px){.period__header{padding-bottom:24px;border-bottom:1px solid var(--gray-color-200)}}@media screen and (max-width: 480px){.period__header{padding-top:8px}}.period__back{display:none}@media screen and (max-width: 840px){.period__back{display:flex;align-items:center}}.period__back ::ng-deep svg{margin-right:16px}.period__back ::ng-deep svg path{stroke:var(--menu-arr-color)}.period__list{max-height:400px;overflow:auto}@media screen and (max-width: 840px){.period__list{max-height:none}}.period__list ::ng-deep dd-lib-radio{display:block;margin-bottom:16px}@media screen and (max-width: 840px){.period__list ::ng-deep dd-lib-radio:not(:last-child){padding-bottom:16px;border-bottom:1px solid var(--gray-color-200)}}.period__calendar{margin-top:8px;display:block;animation:filter-show .5s forwards}@media screen and (max-width: 840px){.period__calendar{position:fixed;top:0;left:0;width:100%;height:100%;overflow:auto;margin-top:0;animation:shift .3s}}\n"], dependencies: [{ kind: "component", type: LibCardComponent, selector: "dd-lib-card", inputs: ["type", "footerBtn", "sHeight", "skeleton", "parentLvlForSkeleton", "plugs", "borderRadius"], outputs: ["cardBtnEvent"] }, { kind: "component", type: LibFilterButtonComponent, selector: "dd-lib-filter-button", inputs: ["btnTitle", "hintContent"], outputs: ["clearEvent", "hintEvent"] }, { kind: "component", type: LibRadioComponent, selector: "dd-lib-radio", inputs: ["radioId", "disabled", "required", "name", "value", "checked"], outputs: ["changed"] }, { kind: "component", type: LibCalendarComponent, selector: "dd-lib-calendar", inputs: ["type", "formatDate", "formatTime", "rangeMode", "rangeModeFullPeriod", "maxHours", "maxMinutes", "needTime", "mode", "dateStart", "dateEnd", "maxDate", "minDate"], outputs: ["emitDate", "immediatelyEmitDate", "emitPeriod"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[ddClickOutside]", inputs: ["elements"], outputs: ["ddClickOutside"] }, { kind: "component", type: LibSvgIconComponent, selector: "dd-lib-svg-icon", inputs: ["width", "height", "color", "icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3222
|
-
}
|
|
3223
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LibPeriodComponent, decorators: [{
|
|
3224
|
-
type: Component,
|
|
3225
|
-
args: [{ selector: 'dd-lib-period', standalone: true, imports: [
|
|
3226
|
-
LibCardComponent,
|
|
3227
|
-
LibFilterButtonComponent,
|
|
3228
|
-
LibRadioComponent,
|
|
3229
|
-
LibCalendarComponent,
|
|
3230
|
-
FormsModule,
|
|
3231
|
-
ClickOutsideDirective,
|
|
3232
|
-
LibSvgIconComponent,
|
|
3233
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
|
3234
|
-
{
|
|
3235
|
-
provide: NG_VALUE_ACCESSOR,
|
|
3236
|
-
useExisting: forwardRef(() => LibPeriodComponent),
|
|
3237
|
-
multi: true,
|
|
3238
|
-
},
|
|
3239
|
-
], template: "<div class=\"pos-relative\">\r\n <dd-lib-filter-button\r\n (clearEvent)=\"clearPeriod()\"\r\n (clickEvent)=\"showPeriod()\"\r\n [active]=\"periodIsSelected || calendarIsSelected\"\r\n [id]=\"idPeriod\"\r\n btnColor=\"transparent\">\r\n <div>{{ periodName }}</div>\r\n </dd-lib-filter-button>\r\n @if (periodIsShown) {\r\n <div (ddClickOutside)=\"clickOutside($event)\" [elements]=\"[idPeriod, idCalendar]\" class=\"period__wrapper\">\r\n <dd-lib-card class=\"period__block\" type=\"small\">\r\n <div class=\"full-width\">\r\n <div class=\"period__header\">\r\n <div class=\"period__back\" (click)=\"periodIsShown = false\">\r\n <dd-lib-svg-icon icon=\"toggle_arrow_left\"></dd-lib-svg-icon>\r\n <div class=\"g-h5-title\">\u041F\u0435\u0440\u0438\u043E\u0434</div>\r\n </div>\r\n <div class=\"g-h5-title hide-tablet\">\u041F\u0435\u0440\u0438\u043E\u0434</div>\r\n <div (click)=\"clearPeriod()\" class=\"g-text font-medium green cup\">\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C</div>\r\n </div>\r\n <div class=\"period__list\">\r\n @for (period of periodMenu; track period) {\r\n <dd-lib-radio (changed)=\"selectPeriod($event)\" [(ngModel)]=\"selectedPeriod\" [value]=\"period.name\">{{\r\n period.title\r\n }}</dd-lib-radio>\r\n }\r\n </div>\r\n <div (click)=\"calendarIsShown = !calendarIsShown\" class=\"g-text font-medium green cup mt-8\">\r\n {{ calendarIsShown ? '\u0417\u0430\u043A\u0440\u044B\u0442\u044C' : '\u041E\u0442\u043A\u0440\u044B\u0442\u044C' }} \u043A\u0430\u043B\u0435\u043D\u0434\u0430\u0440\u044C\r\n </div>\r\n </div>\r\n </dd-lib-card>\r\n @if (calendarIsShown) {\r\n <dd-lib-calendar\r\n (emitDate)=\"selectDate($event)\"\r\n [(ngModel)]=\"selectedDate\"\r\n [id]=\"idCalendar\"\r\n [maxDate]=\"maxDate\"\r\n class=\"period__calendar\">\r\n </dd-lib-calendar>\r\n }\r\n </div>\r\n }\r\n</div>\r\n", styles: ["dd-lib-filter-button{position:relative}.period__wrapper{position:absolute;left:0;z-index:400;display:block;width:352px;height:348px;margin-top:8px;animation:filter-show .5s forwards}@media screen and (max-width: 840px){.period__wrapper{position:fixed;top:0;width:100%;height:100%;overflow:auto;margin-top:0;animation:shift .3s}}@media screen and (max-width: 840px){.period__block{height:100%}}.period__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}@media screen and (max-width: 840px){.period__header{padding-bottom:24px;border-bottom:1px solid var(--gray-color-200)}}@media screen and (max-width: 480px){.period__header{padding-top:8px}}.period__back{display:none}@media screen and (max-width: 840px){.period__back{display:flex;align-items:center}}.period__back ::ng-deep svg{margin-right:16px}.period__back ::ng-deep svg path{stroke:var(--menu-arr-color)}.period__list{max-height:400px;overflow:auto}@media screen and (max-width: 840px){.period__list{max-height:none}}.period__list ::ng-deep dd-lib-radio{display:block;margin-bottom:16px}@media screen and (max-width: 840px){.period__list ::ng-deep dd-lib-radio:not(:last-child){padding-bottom:16px;border-bottom:1px solid var(--gray-color-200)}}.period__calendar{margin-top:8px;display:block;animation:filter-show .5s forwards}@media screen and (max-width: 840px){.period__calendar{position:fixed;top:0;left:0;width:100%;height:100%;overflow:auto;margin-top:0;animation:shift .3s}}\n"] }]
|
|
3240
|
-
}], ctorParameters: () => [{ type: DateService }, { type: i0.ChangeDetectorRef }], propDecorators: { maxDate: [{
|
|
3241
|
-
type: Input
|
|
3242
|
-
}], setPeriodDate: [{
|
|
3243
|
-
type: Output
|
|
3244
|
-
}] } });
|
|
3245
|
-
|
|
3246
3139
|
/**
|
|
3247
3140
|
* Входные параметры (Input)
|
|
3248
3141
|
* keyTitle (default: 'title')
|
|
@@ -5597,5 +5490,5 @@ const t = true;
|
|
|
5597
5490
|
* Generated bundle index. Do not edit.
|
|
5598
5491
|
*/
|
|
5599
5492
|
|
|
5600
|
-
export { API_URL, AutoHeightDirective, ClickOutsideDirective, CounterDirective, DDDialogRef, DEFAULT_FORMAT, DIALOG_CONFIG, DataEmptyComponent, DateService, Debounce, DeclensionDirective, DestroyService, DialogConfig, DialogService, DisableAfterNCall, Disabled, DropDownPositionDirective, ErrorPageComponent, FetcherService, FilterByKeyPipe, FilterPipe, FixedPositionDirective, FooterComponent, FooterLinkComponent, FooterLinksBlockComponent, HighlightPipe, IDatePeriod, ITab, InterceptorsService, LibAccordionComponent, LibBackButtonComponent, LibButtonComponent, LibCalendarComponent, LibCardComponent, LibCheckboxComponent, LibCommentInputComponent, LibCommonButtonComponent, LibCommonInputTextComponent, LibDateInputComponent, LibDateRangeComponent, LibDisclaimerComponent, LibFileLoaderComponent, LibFileUploadComponent, LibFilterButtonComponent, LibFilterComponent, LibHorizontalScrollComponent, LibImageLoaderComponent, LibInfoCardComponent, LibInputComponent, LibLoaderComponent,
|
|
5493
|
+
export { API_URL, AutoHeightDirective, ClickOutsideDirective, CounterDirective, DDDialogRef, DEFAULT_FORMAT, DIALOG_CONFIG, DataEmptyComponent, DateService, Debounce, DeclensionDirective, DestroyService, DialogConfig, DialogService, DisableAfterNCall, Disabled, DropDownPositionDirective, ErrorPageComponent, FetcherService, FilterByKeyPipe, FilterPipe, FixedPositionDirective, FooterComponent, FooterLinkComponent, FooterLinksBlockComponent, HighlightPipe, IDatePeriod, ITab, InterceptorsService, LibAccordionComponent, LibBackButtonComponent, LibButtonComponent, LibCalendarComponent, LibCardComponent, LibCheckboxComponent, LibCommentInputComponent, LibCommonButtonComponent, LibCommonInputTextComponent, LibDateInputComponent, LibDateRangeComponent, LibDisclaimerComponent, LibFileLoaderComponent, LibFileUploadComponent, LibFilterButtonComponent, LibFilterComponent, LibHorizontalScrollComponent, LibImageLoaderComponent, LibInfoCardComponent, LibInputComponent, LibLoaderComponent, LibRadioComponent, LibSearchInputComponent, LibSelectComponent, LibSkeletonComponent, LibSortComponent, LibStepComponent, LibSvgComponent, LibSvgIconComponent, LibSvgViewerComponent, LibTabsFragmentComponent, LibTextareaComponent, ListKeyboardNavigationDirective, MainSharedComponent, ModalBaseComponent, ModalCommonComponent, NotFoundComponent, PhoneMaskDirective, ResizeTextareaDirective, ReversePipe, SafePipe, SelectableItemDirective, SortByValPipe, SvgIconsService, TOAST_CONFIG_TOKEN, TOOLTIP_DATA, TechWorksComponent, ThemeConfigurator, ThemeConstructorService, Throttle, ToastComponent, ToastConfig, ToastData, ToastRef, ToastService, ToastTypeData, TooltipComponent, TooltipDirective, TriangleDirective, ValidatorsService, completeIconSet, defaultToastConfig, provideToast, svgIconActogoneAccept, svgIconAll, svgIconAppgalery, svgIconAppstore, svgIconArrowDownRed, svgIconArrowUpGreen, svgIconBackArrow, svgIconBurger, svgIconCalendar, svgIconCheckGreen, svgIconCheckWhite, svgIconCircleNo, svgIconClear, svgIconClose, svgIconDangerT, svgIconDd, svgIconDdM, svgIconDobrodel, svgIconDownChevron, svgIconDownload, svgIconEds, svgIconEds2, svgIconEds2M, svgIconEdsM, svgIconEntry, svgIconErrorHint, svgIconEsia, svgIconEye, svgIconEyeOff, svgIconFile, svgIconFilter, svgIconGoogleapp, svgIconGrid, svgIconHealth, svgIconHealthM, svgIconInfoCircle, svgIconInfoT, svgIconLeftChevron, svgIconListSearch, svgIconLogout, svgIconMailExclamation, svgIconMaxFilter, svgIconMoon, svgIconMy, svgIconMyM, svgIconNews, svgIconNext, svgIconPaperclip, svgIconPenEdit, svgIconPguMo, svgIconPguMoM, svgIconPlug, svgIconPlugD, svgIconPlus, svgIconPreset, svgIconPrev, svgIconPrint, svgIconPrinter, svgIconQuestion, svgIconQuestionWhiteG, svgIconRedClose, svgIconReload, svgIconRightChevron, svgIconRustore, svgIconSearch, svgIconSend, svgIconSetAvatar, svgIconSharedLogo, svgIconSmallRoundLoader, svgIconSort, svgIconStar, svgIconSuccessT, svgIconSun, svgIconTg, svgIconToggleArrowLeft, svgIconToggleArrowRight, svgIconTrash, svgIconTrophy, svgIconUser, svgIconUserEmpty, svgIconUserEmptyD, svgIconVk, svgIconWarningT, t };
|
|
5601
5494
|
//# sourceMappingURL=morozeckiy-dd-lib.mjs.map
|