@bimetal/calendar-angular-components 0.35.0 → 0.36.0
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/dist/binding/controller.d.ts +10 -1
- package/dist/binding/controller.d.ts.map +1 -1
- package/dist/binding/controller.js +11 -1
- package/dist/binding/controller.js.map +1 -1
- package/dist/binding/index.d.ts +4 -2
- package/dist/binding/index.d.ts.map +1 -1
- package/dist/binding/index.js +5 -2
- package/dist/binding/index.js.map +1 -1
- package/dist/binding/services/pointer-gesture.service.d.ts +26 -0
- package/dist/binding/services/pointer-gesture.service.d.ts.map +1 -0
- package/dist/binding/services/pointer-gesture.service.js +37 -0
- package/dist/binding/services/pointer-gesture.service.js.map +1 -0
- package/dist/components/Calendar.d.ts +21 -4
- package/dist/components/Calendar.d.ts.map +1 -1
- package/dist/components/Calendar.js +121 -30
- package/dist/components/Calendar.js.map +1 -1
- package/dist/components/CalendarHeader.d.ts +3 -0
- package/dist/components/CalendarHeader.d.ts.map +1 -1
- package/dist/components/CalendarHeader.js +10 -4
- package/dist/components/CalendarHeader.js.map +1 -1
- package/dist/components/CategoryFilter.d.ts +3 -0
- package/dist/components/CategoryFilter.d.ts.map +1 -1
- package/dist/components/CategoryFilter.js +9 -5
- package/dist/components/CategoryFilter.js.map +1 -1
- package/dist/components/EventBar.d.ts +11 -4
- package/dist/components/EventBar.d.ts.map +1 -1
- package/dist/components/EventBar.js +87 -32
- package/dist/components/EventBar.js.map +1 -1
- package/dist/components/EventDialog.d.ts +6 -4
- package/dist/components/EventDialog.d.ts.map +1 -1
- package/dist/components/EventDialog.js +81 -44
- package/dist/components/EventDialog.js.map +1 -1
- package/dist/components/EventHistory.d.ts +14 -10
- package/dist/components/EventHistory.d.ts.map +1 -1
- package/dist/components/EventHistory.js +59 -56
- package/dist/components/EventHistory.js.map +1 -1
- package/dist/styles/index.css.d.ts +3 -0
- package/dist/views/day/DayView.d.ts +26 -4
- package/dist/views/day/DayView.d.ts.map +1 -1
- package/dist/views/day/DayView.js +56 -17
- package/dist/views/day/DayView.js.map +1 -1
- package/dist/views/month/MonthView.d.ts +14 -3
- package/dist/views/month/MonthView.d.ts.map +1 -1
- package/dist/views/month/MonthView.js +55 -7
- package/dist/views/month/MonthView.js.map +1 -1
- package/dist/views/month/WeekRow.d.ts +19 -3
- package/dist/views/month/WeekRow.d.ts.map +1 -1
- package/dist/views/month/WeekRow.js +73 -34
- package/dist/views/month/WeekRow.js.map +1 -1
- package/dist/views/resource/ResourceView.d.ts +28 -1
- package/dist/views/resource/ResourceView.d.ts.map +1 -1
- package/dist/views/resource/ResourceView.js +78 -21
- package/dist/views/resource/ResourceView.js.map +1 -1
- package/dist/views/timeline/TimelineView.d.ts +25 -3
- package/dist/views/timeline/TimelineView.d.ts.map +1 -1
- package/dist/views/timeline/TimelineView.js +77 -16
- package/dist/views/timeline/TimelineView.js.map +1 -1
- package/dist/views/week/AllDayRow.d.ts +16 -3
- package/dist/views/week/AllDayRow.d.ts.map +1 -1
- package/dist/views/week/AllDayRow.js +47 -10
- package/dist/views/week/AllDayRow.js.map +1 -1
- package/dist/views/week/TimeEvent.d.ts +11 -4
- package/dist/views/week/TimeEvent.d.ts.map +1 -1
- package/dist/views/week/TimeEvent.js +76 -26
- package/dist/views/week/TimeEvent.js.map +1 -1
- package/dist/views/week/WeekView.d.ts +16 -1
- package/dist/views/week/WeekView.d.ts.map +1 -1
- package/dist/views/week/WeekView.js +53 -18
- package/dist/views/week/WeekView.js.map +1 -1
- package/dist/views/year/YearView.d.ts +2 -0
- package/dist/views/year/YearView.d.ts.map +1 -1
- package/dist/views/year/YearView.js +17 -1
- package/dist/views/year/YearView.js.map +1 -1
- package/package.json +15 -12
|
@@ -2,7 +2,7 @@ import { EventEmitter, ElementRef } from '@angular/core';
|
|
|
2
2
|
import type { CalendarEvent, CalendarDateTime, LayoutItem } from '@bimetal/calendar-core';
|
|
3
3
|
import { getDayOfMonth } from '@bimetal/temporal';
|
|
4
4
|
import type { CalendarConfig } from '../../binding/index.js';
|
|
5
|
-
import { EventRenderService } from '../../binding/index.js';
|
|
5
|
+
import { EventRenderService, CalendarPointerGestureService } from '../../binding/index.js';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* A single week's row in the month grid: renders day cells, timed-event chips
|
|
@@ -10,6 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
*/
|
|
11
11
|
export declare class WeekRowComponent {
|
|
12
12
|
private renderService?;
|
|
13
|
+
private gesture?;
|
|
13
14
|
weekDates: CalendarDateTime[];
|
|
14
15
|
items: LayoutItem[];
|
|
15
16
|
timedByDay: Map<number, CalendarEvent[]>;
|
|
@@ -52,7 +53,8 @@ export declare class WeekRowComponent {
|
|
|
52
53
|
click: import("@bimetal/calendar-headless").ClickIntent;
|
|
53
54
|
timedClick: import("@bimetal/calendar-headless").ClickIntent;
|
|
54
55
|
getDayOfMonth: typeof getDayOfMonth;
|
|
55
|
-
constructor(renderService?: EventRenderService | undefined);
|
|
56
|
+
constructor(renderService?: EventRenderService | undefined, gesture?: CalendarPointerGestureService | undefined);
|
|
57
|
+
get pointerMode(): boolean;
|
|
56
58
|
get badgesTpl(): import("@angular/core").TemplateRef<import("../../index.js").EventRenderTemplateContext> | undefined;
|
|
57
59
|
get contentTpl(): import("@angular/core").TemplateRef<import("../../index.js").EventRenderTemplateContext> | undefined;
|
|
58
60
|
tplCtx(ev: CalendarEvent): import("../../index.js").EventRenderTemplateContext | undefined;
|
|
@@ -70,6 +72,19 @@ export declare class WeekRowComponent {
|
|
|
70
72
|
onCollapse(): void;
|
|
71
73
|
isToday(date: CalendarDateTime): boolean;
|
|
72
74
|
inMonth(date: CalendarDateTime): boolean;
|
|
75
|
+
/**
|
|
76
|
+
* Stable identity for the event-bar layout items (drag-survival, not just perf).
|
|
77
|
+
*
|
|
78
|
+
* The wrappers are minted fresh per snapshot, so without trackBy the ngFor
|
|
79
|
+
* differ sees all-new objects and re-creates every `cal-event-bar` on any items
|
|
80
|
+
* change. Chromium cancels a native HTML5 drag whose source node is destroyed
|
|
81
|
+
* in the dragstart task — exactly what happened here on Angular only, because
|
|
82
|
+
* the other stacks key by event identity. Keyed by event + the segment's day,
|
|
83
|
+
* because a multi-week event renders one bar per week row.
|
|
84
|
+
*/
|
|
85
|
+
trackItem(_i: number, li: LayoutItem): string;
|
|
86
|
+
/** Same rule for the timed chips — the event object is the identity. */
|
|
87
|
+
trackEvent(_i: number, ev: CalendarEvent): string;
|
|
73
88
|
trackDay(_: number, date: CalendarDateTime): number;
|
|
74
89
|
formatDayNumber(date: CalendarDateTime): string;
|
|
75
90
|
getTimedEvents(date: CalendarDateTime): CalendarEvent[];
|
|
@@ -84,6 +99,7 @@ export declare class WeekRowComponent {
|
|
|
84
99
|
handleDayCellClick(e: MouseEvent, date: CalendarDateTime): void;
|
|
85
100
|
handleDayCellDoubleClick(e: MouseEvent, date: CalendarDateTime): void;
|
|
86
101
|
handleTimedMouseDown(): void;
|
|
102
|
+
handleTimedPointerDown(e: PointerEvent, ev: CalendarEvent): void;
|
|
87
103
|
handleTimedDragStart(e: DragEvent, ev: CalendarEvent): void;
|
|
88
104
|
private timedPolicy;
|
|
89
105
|
timedCanDrag(ev: CalendarEvent): boolean;
|
|
@@ -91,7 +107,7 @@ export declare class WeekRowComponent {
|
|
|
91
107
|
handleTimedClick(e: MouseEvent, ev: CalendarEvent): void;
|
|
92
108
|
handleTimedDoubleClick(e: MouseEvent, ev: CalendarEvent): void;
|
|
93
109
|
isTimedSelected(ev: CalendarEvent): boolean;
|
|
94
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WeekRowComponent, [{ optional: true; }]>;
|
|
110
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WeekRowComponent, [{ optional: true; }, { optional: true; }]>;
|
|
95
111
|
static ɵcmp: i0.ɵɵComponentDeclaration<WeekRowComponent, "cal-week-row", never, { "weekDates": { "alias": "weekDates"; "required": false; }; "items": { "alias": "items"; "required": false; }; "timedByDay": { "alias": "timedByDay"; "required": false; }; "currentYear": { "alias": "currentYear"; "required": false; }; "currentMonth": { "alias": "currentMonth"; "required": false; }; "config": { "alias": "config"; "required": false; }; "today": { "alias": "today"; "required": false; }; "previewEvent": { "alias": "previewEvent"; "required": false; }; "expandedMonthDay": { "alias": "expandedMonthDay"; "required": false; }; "selectedEventId": { "alias": "selectedEventId"; "required": false; }; "selectedInstanceDate": { "alias": "selectedInstanceDate"; "required": false; }; }, { "eventClick": "eventClick"; "selectEvent": "selectEvent"; "clearSelection": "clearSelection"; "dayCellClick": "dayCellClick"; "dropEvent": "dropEvent"; "dragOver": "dragOver"; "hidePreviewEv": "hidePreviewEv"; "dragEnd": "dragEnd"; "dragStartEv": "dragStartEv"; "expandMonthCell": "expandMonthCell"; "collapseMonthCell": "collapseMonthCell"; }, never, never, true, never>;
|
|
96
112
|
}
|
|
97
113
|
//# sourceMappingURL=WeekRow.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WeekRow.d.ts","sourceRoot":"","sources":["../../../src/views/month/WeekRow.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,YAAY,EAAE,UAAU,EAAuB,MAAM,eAAe,CAAC;AAExG,OAAO,KAAK,EAAE,aAAa,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAC1F,OAAO,EAAa,aAAa,EAAwC,MAAM,mBAAmB,CAAC;AAEnG,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAe,kBAAkB,
|
|
1
|
+
{"version":3,"file":"WeekRow.d.ts","sourceRoot":"","sources":["../../../src/views/month/WeekRow.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,8 +2,8 @@ import { Component, Input, Output, EventEmitter, ElementRef, ViewChild, Optional
|
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import { isSameDay, getDayOfMonth, getMonth, startOfDay, formatDayLabel } from '@bimetal/temporal';
|
|
4
4
|
import { calendarWeekNumber, maxLanes, lanesPerDay, getRecurrenceInstanceMetadata } from '@bimetal/calendar-core';
|
|
5
|
-
import { getColFromX, EventRenderService } from '../../binding/index.js';
|
|
6
|
-
import { createClickIntent,
|
|
5
|
+
import { getColFromX, EventRenderService, CalendarPointerGestureService, formatTime } from '../../binding/index.js';
|
|
6
|
+
import { createClickIntent, maxVisibleTimedInMonth, buildDragInfo, writeCalendarDragData } from '@bimetal/calendar-headless';
|
|
7
7
|
import { EventBarComponent } from '../../components/EventBar.js';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "../../binding/index.js";
|
|
@@ -55,16 +55,16 @@ function WeekRowComponent_div_4_ng_container_4_div_1_div_1_ng_container_4_Templa
|
|
|
55
55
|
function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
56
56
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
57
57
|
i0.ɵɵelementStart(0, "div", 17);
|
|
58
|
-
i0.ɵɵlistener("dragstart", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_dragstart_0_listener($event) { const ev_r6 = i0.ɵɵrestoreView(_r5).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedDragStart($event, ev_r6)); })("dragend", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_dragend_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.dragEnd.emit()); })("mousedown", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_mousedown_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedMouseDown()); })("click", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_click_0_listener($event) { const ev_r6 = i0.ɵɵrestoreView(_r5).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedClick($event, ev_r6)); })("dblclick", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_dblclick_0_listener($event) { const ev_r6 = i0.ɵɵrestoreView(_r5).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedDoubleClick($event, ev_r6)); });
|
|
58
|
+
i0.ɵɵlistener("pointerdown", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_pointerdown_0_listener($event) { const ev_r6 = i0.ɵɵrestoreView(_r5).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedPointerDown($event, ev_r6)); })("dragstart", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_dragstart_0_listener($event) { const ev_r6 = i0.ɵɵrestoreView(_r5).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.pointerMode || ctx_r2.handleTimedDragStart($event, ev_r6)); })("dragend", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_dragend_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.pointerMode || ctx_r2.dragEnd.emit()); })("mousedown", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_mousedown_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.pointerMode || ctx_r2.handleTimedMouseDown()); })("click", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_click_0_listener($event) { const ev_r6 = i0.ɵɵrestoreView(_r5).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedClick($event, ev_r6)); })("dblclick", function WeekRowComponent_div_4_ng_container_4_div_1_div_1_Template_div_dblclick_0_listener($event) { const ev_r6 = i0.ɵɵrestoreView(_r5).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedDoubleClick($event, ev_r6)); });
|
|
59
59
|
i0.ɵɵtemplate(1, WeekRowComponent_div_4_ng_container_4_div_1_div_1_ng_container_1_Template, 2, 2, "ng-container", 18)(2, WeekRowComponent_div_4_ng_container_4_div_1_div_1_ng_template_2_Template, 5, 4, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor)(4, WeekRowComponent_div_4_ng_container_4_div_1_div_1_ng_container_4_Template, 2, 2, "ng-container", 11);
|
|
60
60
|
i0.ɵɵelementEnd();
|
|
61
61
|
} if (rf & 2) {
|
|
62
62
|
const ev_r6 = ctx.$implicit;
|
|
63
63
|
const defaultTimed_r7 = i0.ɵɵreference(3);
|
|
64
64
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
65
|
-
i0.ɵɵclassMap("bm-cal-timed-entry" + (ctx_r2.isTimedSelected(ev_r6) ? " bm-cal-timed-entry--selected" : "") + ctx_r2.timedStateClass(ev_r6) + ctx_r2.slotsClassName(ev_r6));
|
|
65
|
+
i0.ɵɵclassMap("bm-cal-timed-entry" + (ctx_r2.isTimedSelected(ev_r6) ? " bm-cal-timed-entry--selected" : "") + ctx_r2.timedStateClass(ev_r6) + (ctx_r2.pointerMode && ctx_r2.timedCanDrag(ev_r6) ? " bm-cal-timed-entry--pointer" : "") + ctx_r2.slotsClassName(ev_r6));
|
|
66
66
|
i0.ɵɵproperty("ngStyle", ctx_r2.slotsStyle(ev_r6))("title", ctx_r2.renderedTitle(ev_r6));
|
|
67
|
-
i0.ɵɵattribute("draggable", ctx_r2.timedCanDrag(ev_r6));
|
|
67
|
+
i0.ɵɵattribute("draggable", ctx_r2.pointerMode ? null : ctx_r2.timedCanDrag(ev_r6));
|
|
68
68
|
i0.ɵɵadvance();
|
|
69
69
|
i0.ɵɵproperty("ngIf", ctx_r2.contentTpl)("ngIfElse", defaultTimed_r7);
|
|
70
70
|
i0.ɵɵadvance(3);
|
|
@@ -94,7 +94,7 @@ function WeekRowComponent_div_4_ng_container_4_div_1_Template(rf, ctx) { if (rf
|
|
|
94
94
|
const colIdx_r10 = ctx_r10.index;
|
|
95
95
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
96
96
|
i0.ɵɵadvance();
|
|
97
|
-
i0.ɵɵproperty("ngForOf", ctx_r2.getVisibleTimed(timed_r9, colIdx_r10, date_r4));
|
|
97
|
+
i0.ɵɵproperty("ngForOf", ctx_r2.getVisibleTimed(timed_r9, colIdx_r10, date_r4))("ngForTrackBy", ctx_r2.trackEvent);
|
|
98
98
|
i0.ɵɵadvance();
|
|
99
99
|
i0.ɵɵproperty("ngIf", ctx_r2.hasOverflow(timed_r9, colIdx_r10) && !ctx_r2.isExpanded(date_r4));
|
|
100
100
|
} }
|
|
@@ -144,16 +144,16 @@ function WeekRowComponent_div_4_ng_container_4_div_2_div_4_ng_container_4_Templa
|
|
|
144
144
|
function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
145
145
|
const _r13 = i0.ɵɵgetCurrentView();
|
|
146
146
|
i0.ɵɵelementStart(0, "div", 17);
|
|
147
|
-
i0.ɵɵlistener("dragstart", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_dragstart_0_listener($event) { const ev_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedDragStart($event, ev_r14)); })("dragend", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_dragend_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.dragEnd.emit()); })("mousedown", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_mousedown_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedMouseDown()); })("click", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_click_0_listener($event) { const ev_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedClick($event, ev_r14)); })("dblclick", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_dblclick_0_listener($event) { const ev_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedDoubleClick($event, ev_r14)); });
|
|
147
|
+
i0.ɵɵlistener("pointerdown", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_pointerdown_0_listener($event) { const ev_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedPointerDown($event, ev_r14)); })("dragstart", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_dragstart_0_listener($event) { const ev_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.pointerMode || ctx_r2.handleTimedDragStart($event, ev_r14)); })("dragend", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_dragend_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.pointerMode || ctx_r2.dragEnd.emit()); })("mousedown", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_mousedown_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.pointerMode || ctx_r2.handleTimedMouseDown()); })("click", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_click_0_listener($event) { const ev_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedClick($event, ev_r14)); })("dblclick", function WeekRowComponent_div_4_ng_container_4_div_2_div_4_Template_div_dblclick_0_listener($event) { const ev_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r2 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r2.handleTimedDoubleClick($event, ev_r14)); });
|
|
148
148
|
i0.ɵɵtemplate(1, WeekRowComponent_div_4_ng_container_4_div_2_div_4_ng_container_1_Template, 2, 2, "ng-container", 18)(2, WeekRowComponent_div_4_ng_container_4_div_2_div_4_ng_template_2_Template, 5, 4, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor)(4, WeekRowComponent_div_4_ng_container_4_div_2_div_4_ng_container_4_Template, 2, 2, "ng-container", 11);
|
|
149
149
|
i0.ɵɵelementEnd();
|
|
150
150
|
} if (rf & 2) {
|
|
151
151
|
const ev_r14 = ctx.$implicit;
|
|
152
152
|
const defaultTimedExp_r15 = i0.ɵɵreference(3);
|
|
153
153
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
154
|
-
i0.ɵɵclassMap("bm-cal-timed-entry" + (ctx_r2.isTimedSelected(ev_r14) ? " bm-cal-timed-entry--selected" : "") + ctx_r2.timedStateClass(ev_r14) + ctx_r2.slotsClassName(ev_r14));
|
|
154
|
+
i0.ɵɵclassMap("bm-cal-timed-entry" + (ctx_r2.isTimedSelected(ev_r14) ? " bm-cal-timed-entry--selected" : "") + ctx_r2.timedStateClass(ev_r14) + (ctx_r2.pointerMode && ctx_r2.timedCanDrag(ev_r14) ? " bm-cal-timed-entry--pointer" : "") + ctx_r2.slotsClassName(ev_r14));
|
|
155
155
|
i0.ɵɵproperty("ngStyle", ctx_r2.slotsStyle(ev_r14))("title", ctx_r2.renderedTitle(ev_r14));
|
|
156
|
-
i0.ɵɵattribute("draggable", ctx_r2.timedCanDrag(ev_r14));
|
|
156
|
+
i0.ɵɵattribute("draggable", ctx_r2.pointerMode ? null : ctx_r2.timedCanDrag(ev_r14));
|
|
157
157
|
i0.ɵɵadvance();
|
|
158
158
|
i0.ɵɵproperty("ngIf", ctx_r2.contentTpl)("ngIfElse", defaultTimedExp_r15);
|
|
159
159
|
i0.ɵɵadvance(3);
|
|
@@ -177,11 +177,11 @@ function WeekRowComponent_div_4_ng_container_4_div_2_Template(rf, ctx) { if (rf
|
|
|
177
177
|
i0.ɵɵadvance();
|
|
178
178
|
i0.ɵɵtextInterpolate(ctx_r2.getDayOfMonth(date_r4));
|
|
179
179
|
i0.ɵɵadvance();
|
|
180
|
-
i0.ɵɵproperty("ngForOf", timed_r9);
|
|
180
|
+
i0.ɵɵproperty("ngForOf", timed_r9)("ngForTrackBy", ctx_r2.trackEvent);
|
|
181
181
|
} }
|
|
182
182
|
function WeekRowComponent_div_4_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
183
183
|
i0.ɵɵelementContainerStart(0);
|
|
184
|
-
i0.ɵɵtemplate(1, WeekRowComponent_div_4_ng_container_4_div_1_Template, 3,
|
|
184
|
+
i0.ɵɵtemplate(1, WeekRowComponent_div_4_ng_container_4_div_1_Template, 3, 3, "div", 12)(2, WeekRowComponent_div_4_ng_container_4_div_2_Template, 5, 5, "div", 13);
|
|
185
185
|
i0.ɵɵelementContainerEnd();
|
|
186
186
|
} if (rf & 2) {
|
|
187
187
|
const timed_r9 = ctx.ngIf;
|
|
@@ -224,7 +224,7 @@ function WeekRowComponent_cal_event_bar_7_Template(rf, ctx) { if (rf & 1) {
|
|
|
224
224
|
} if (rf & 2) {
|
|
225
225
|
const layoutItem_r17 = ctx.$implicit;
|
|
226
226
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
227
|
-
i0.ɵɵproperty("event", layoutItem_r17.segment.event)("isStart", layoutItem_r17.segment.isStart)("isEnd", layoutItem_r17.segment.isEnd)("dayIndex", layoutItem_r17.dayIndex)("daySpan", layoutItem_r17.daySpan)("column", layoutItem_r17.column)("weekDates", ctx_r2.weekDates)("ghost", ctx_r2.isDragged(layoutItem_r17))("clickThresholdMs", ctx_r2.config.clickThresholdMs)("isSelected", ctx_r2.isTimedSelected(layoutItem_r17.segment.event));
|
|
227
|
+
i0.ɵɵproperty("config", ctx_r2.config)("event", layoutItem_r17.segment.event)("isStart", layoutItem_r17.segment.isStart)("isEnd", layoutItem_r17.segment.isEnd)("dayIndex", layoutItem_r17.dayIndex)("daySpan", layoutItem_r17.daySpan)("column", layoutItem_r17.column)("weekDates", ctx_r2.weekDates)("ghost", ctx_r2.isDragged(layoutItem_r17))("clickThresholdMs", ctx_r2.config.clickThresholdMs)("isSelected", ctx_r2.isTimedSelected(layoutItem_r17.segment.event));
|
|
228
228
|
} }
|
|
229
229
|
/**
|
|
230
230
|
* A single week's row in the month grid: renders day cells, timed-event chips
|
|
@@ -232,6 +232,7 @@ function WeekRowComponent_cal_event_bar_7_Template(rf, ctx) { if (rf & 1) {
|
|
|
232
232
|
*/
|
|
233
233
|
export class WeekRowComponent {
|
|
234
234
|
renderService;
|
|
235
|
+
gesture;
|
|
235
236
|
weekDates = [];
|
|
236
237
|
items = [];
|
|
237
238
|
timedByDay = new Map();
|
|
@@ -265,9 +266,13 @@ export class WeekRowComponent {
|
|
|
265
266
|
click = createClickIntent();
|
|
266
267
|
timedClick = createClickIntent();
|
|
267
268
|
getDayOfMonth = getDayOfMonth;
|
|
268
|
-
constructor(renderService
|
|
269
|
+
constructor(renderService,
|
|
270
|
+
// mcp-57 dual-mode (see TimeEvent.ts).
|
|
271
|
+
gesture) {
|
|
269
272
|
this.renderService = renderService;
|
|
273
|
+
this.gesture = gesture;
|
|
270
274
|
}
|
|
275
|
+
get pointerMode() { return !!this.gesture; }
|
|
271
276
|
get badgesTpl() { return this.renderService?.eventBadgesTpl; }
|
|
272
277
|
get contentTpl() { return this.renderService?.eventContentTpl; }
|
|
273
278
|
tplCtx(ev) { return this.renderService?.buildTemplateContext(ev); }
|
|
@@ -289,6 +294,21 @@ export class WeekRowComponent {
|
|
|
289
294
|
onCollapse() { this.collapseMonthCell.emit(); }
|
|
290
295
|
isToday(date) { return isSameDay(date, this.today); }
|
|
291
296
|
inMonth(date) { return getMonth(date) === this.currentMonth; }
|
|
297
|
+
/**
|
|
298
|
+
* Stable identity for the event-bar layout items (drag-survival, not just perf).
|
|
299
|
+
*
|
|
300
|
+
* The wrappers are minted fresh per snapshot, so without trackBy the ngFor
|
|
301
|
+
* differ sees all-new objects and re-creates every `cal-event-bar` on any items
|
|
302
|
+
* change. Chromium cancels a native HTML5 drag whose source node is destroyed
|
|
303
|
+
* in the dragstart task — exactly what happened here on Angular only, because
|
|
304
|
+
* the other stacks key by event identity. Keyed by event + the segment's day,
|
|
305
|
+
* because a multi-week event renders one bar per week row.
|
|
306
|
+
*/
|
|
307
|
+
trackItem(_i, li) {
|
|
308
|
+
return li.segment.event.id + '@' + li.dayIndex;
|
|
309
|
+
}
|
|
310
|
+
/** Same rule for the timed chips — the event object is the identity. */
|
|
311
|
+
trackEvent(_i, ev) { return ev.id; }
|
|
292
312
|
// Stable identity for the day cells: without trackBy, any change-detection pass
|
|
293
313
|
// that yields fresh CalendarDateTime objects (e.g. a click → markChanged → grid
|
|
294
314
|
// recompute) re-creates the cell nodes mid-gesture, dropping the in-flight
|
|
@@ -310,7 +330,7 @@ export class WeekRowComponent {
|
|
|
310
330
|
return ev.metadata.color ?? '#007AFF';
|
|
311
331
|
}
|
|
312
332
|
formatTime(ev) {
|
|
313
|
-
return
|
|
333
|
+
return formatTime(ev.timeRange.start, this.config.locale.code, this.config.core.timezone);
|
|
314
334
|
}
|
|
315
335
|
isDragged(item) {
|
|
316
336
|
return this.previewEvent?.id === item.segment.event.id;
|
|
@@ -320,7 +340,7 @@ export class WeekRowComponent {
|
|
|
320
340
|
e.dataTransfer.dropEffect = 'move';
|
|
321
341
|
if (!this.rowEl)
|
|
322
342
|
return;
|
|
323
|
-
const col = getColFromX(e.clientX, this.rowEl.nativeElement.getBoundingClientRect());
|
|
343
|
+
const col = getColFromX(e.clientX, this.rowEl.nativeElement.getBoundingClientRect(), 7, getComputedStyle(this.rowEl.nativeElement).direction === 'rtl');
|
|
324
344
|
this.dragOver.emit(this.weekDates[col]);
|
|
325
345
|
}
|
|
326
346
|
handleDragLeave(e) {
|
|
@@ -334,7 +354,7 @@ export class WeekRowComponent {
|
|
|
334
354
|
e.preventDefault();
|
|
335
355
|
if (!this.rowEl)
|
|
336
356
|
return;
|
|
337
|
-
const col = getColFromX(e.clientX, this.rowEl.nativeElement.getBoundingClientRect());
|
|
357
|
+
const col = getColFromX(e.clientX, this.rowEl.nativeElement.getBoundingClientRect(), 7, getComputedStyle(this.rowEl.nativeElement).direction === 'rtl');
|
|
338
358
|
this.dropEvent.emit({ event: e, date: this.weekDates[col] });
|
|
339
359
|
}
|
|
340
360
|
handleDayCellClick(e, date) {
|
|
@@ -356,6 +376,20 @@ export class WeekRowComponent {
|
|
|
356
376
|
}
|
|
357
377
|
// ticket-29: day-grain move of a month timed entry (mirrors cal-event-bar; markDragged so the
|
|
358
378
|
// drop doesn't also select). dayOffset 0 — always single-day in its cell.
|
|
379
|
+
handleTimedPointerDown(e, ev) {
|
|
380
|
+
if (!this.pointerMode)
|
|
381
|
+
return;
|
|
382
|
+
e.stopPropagation();
|
|
383
|
+
this.timedClick.markMouseDown();
|
|
384
|
+
if (!this.timedCanDrag(ev))
|
|
385
|
+
return;
|
|
386
|
+
try {
|
|
387
|
+
e.currentTarget.setPointerCapture?.(e.pointerId);
|
|
388
|
+
}
|
|
389
|
+
catch { /* synthetic */ }
|
|
390
|
+
const info = buildDragInfo(ev, 'move', { dayOffset: 0 });
|
|
391
|
+
this.gesture.onPointerDown(info, e.pointerId, e.clientX, e.clientY, () => this.timedClick.markDragged());
|
|
392
|
+
}
|
|
359
393
|
handleTimedDragStart(e, ev) {
|
|
360
394
|
this.timedClick.markDragged();
|
|
361
395
|
const info = buildDragInfo(ev, 'move', { dayOffset: 0 });
|
|
@@ -392,13 +426,13 @@ export class WeekRowComponent {
|
|
|
392
426
|
const id = getRecurrenceInstanceMetadata(ev)?.instanceDate;
|
|
393
427
|
return this.selectedEventId === ev.id && this.selectedInstanceDate === id;
|
|
394
428
|
}
|
|
395
|
-
static ɵfac = function WeekRowComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || WeekRowComponent)(i0.ɵɵdirectiveInject(i1.EventRenderService, 8)); };
|
|
429
|
+
static ɵfac = function WeekRowComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || WeekRowComponent)(i0.ɵɵdirectiveInject(i1.EventRenderService, 8), i0.ɵɵdirectiveInject(i1.CalendarPointerGestureService, 8)); };
|
|
396
430
|
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WeekRowComponent, selectors: [["cal-week-row"]], viewQuery: function WeekRowComponent_Query(rf, ctx) { if (rf & 1) {
|
|
397
431
|
i0.ɵɵviewQuery(_c0, 5);
|
|
398
432
|
} if (rf & 2) {
|
|
399
433
|
let _t;
|
|
400
434
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.rowEl = _t.first);
|
|
401
|
-
} }, hostAttrs: [2, "display", "contents"], inputs: { weekDates: "weekDates", items: "items", timedByDay: "timedByDay", currentYear: "currentYear", currentMonth: "currentMonth", config: "config", today: "today", previewEvent: "previewEvent", expandedMonthDay: "expandedMonthDay", selectedEventId: "selectedEventId", selectedInstanceDate: "selectedInstanceDate" }, outputs: { eventClick: "eventClick", selectEvent: "selectEvent", clearSelection: "clearSelection", dayCellClick: "dayCellClick", dropEvent: "dropEvent", dragOver: "dragOver", hidePreviewEv: "hidePreviewEv", dragEnd: "dragEnd", dragStartEv: "dragStartEv", expandMonthCell: "expandMonthCell", collapseMonthCell: "collapseMonthCell" }, decls: 8, vars:
|
|
435
|
+
} }, hostAttrs: [2, "display", "contents"], inputs: { weekDates: "weekDates", items: "items", timedByDay: "timedByDay", currentYear: "currentYear", currentMonth: "currentMonth", config: "config", today: "today", previewEvent: "previewEvent", expandedMonthDay: "expandedMonthDay", selectedEventId: "selectedEventId", selectedInstanceDate: "selectedInstanceDate" }, outputs: { eventClick: "eventClick", selectEvent: "selectEvent", clearSelection: "clearSelection", dayCellClick: "dayCellClick", dropEvent: "dropEvent", dragOver: "dragOver", hidePreviewEv: "hidePreviewEv", dragEnd: "dragEnd", dragStartEv: "dragStartEv", expandMonthCell: "expandMonthCell", collapseMonthCell: "collapseMonthCell" }, decls: 8, vars: 7, consts: [["rowEl", ""], ["defaultTimed", ""], ["defaultTimedExp", ""], [1, "bm-cal__week-row", 3, "dragover", "dragleave", "drop"], [1, "bm-cal__week-number"], [3, "class", "grid-column", "grid-row", "--lane-count", "mousedown", "click", "dblclick", 4, "ngFor", "ngForOf", "ngForTrackBy"], [1, "bm-cal__events-overlay"], [1, "bm-cal__events-grid"], [3, "config", "event", "isStart", "isEnd", "dayIndex", "daySpan", "column", "weekDates", "ghost", "clickThresholdMs", "isSelected", "eventClick", "selectEvent", "dragStart", "dragEnd", 4, "ngFor", "ngForOf", "ngForTrackBy"], [3, "mousedown", "click", "dblclick"], [1, "bm-cal__day-number-container"], [4, "ngIf"], ["class", "bm-cal__day-timed", 4, "ngIf"], ["class", "bm-cal__day-expand-overlay", 3, "mouseleave", 4, "ngIf"], [1, "bm-cal__day-timed"], [3, "class", "ngStyle", "title", "pointerdown", "dragstart", "dragend", "mousedown", "click", "dblclick", 4, "ngFor", "ngForOf", "ngForTrackBy"], ["class", "bm-cal__timed-overflow", 3, "mouseenter", 4, "ngIf"], [3, "pointerdown", "dragstart", "dragend", "mousedown", "click", "dblclick", "ngStyle", "title"], [4, "ngIf", "ngIfElse"], [4, "ngTemplateOutlet", "ngTemplateOutletContext"], [1, "bm-cal-timed-entry__dot"], [1, "bm-cal-timed-entry__time"], [1, "bm-cal-timed-entry__title"], [1, "bm-cal__timed-overflow", 3, "mouseenter"], [1, "bm-cal__day-expand-overlay", 3, "mouseleave"], [3, "eventClick", "selectEvent", "dragStart", "dragEnd", "config", "event", "isStart", "isEnd", "dayIndex", "daySpan", "column", "weekDates", "ghost", "clickThresholdMs", "isSelected"]], template: function WeekRowComponent_Template(rf, ctx) { if (rf & 1) {
|
|
402
436
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
403
437
|
i0.ɵɵelementStart(0, "div", 3, 0);
|
|
404
438
|
i0.ɵɵlistener("dragover", function WeekRowComponent_Template_div_dragover_0_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleDragOver($event)); })("dragleave", function WeekRowComponent_Template_div_dragleave_0_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleDragLeave($event)); })("drop", function WeekRowComponent_Template_div_drop_0_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleDrop($event)); });
|
|
@@ -407,7 +441,7 @@ export class WeekRowComponent {
|
|
|
407
441
|
i0.ɵɵelementEnd();
|
|
408
442
|
i0.ɵɵtemplate(4, WeekRowComponent_div_4_Template, 5, 12, "div", 5);
|
|
409
443
|
i0.ɵɵelementStart(5, "div", 6)(6, "div", 7);
|
|
410
|
-
i0.ɵɵtemplate(7, WeekRowComponent_cal_event_bar_7_Template, 1,
|
|
444
|
+
i0.ɵɵtemplate(7, WeekRowComponent_cal_event_bar_7_Template, 1, 11, "cal-event-bar", 8);
|
|
411
445
|
i0.ɵɵelementEnd()()();
|
|
412
446
|
} if (rf & 2) {
|
|
413
447
|
i0.ɵɵstyleProp("--lane-count", ctx.lanes);
|
|
@@ -416,7 +450,7 @@ export class WeekRowComponent {
|
|
|
416
450
|
i0.ɵɵadvance();
|
|
417
451
|
i0.ɵɵproperty("ngForOf", ctx.weekDates)("ngForTrackBy", ctx.trackDay);
|
|
418
452
|
i0.ɵɵadvance(3);
|
|
419
|
-
i0.ɵɵproperty("ngForOf", ctx.items);
|
|
453
|
+
i0.ɵɵproperty("ngForOf", ctx.items)("ngForTrackBy", ctx.trackItem);
|
|
420
454
|
} }, dependencies: [CommonModule, i2.NgForOf, i2.NgIf, i2.NgTemplateOutlet, i2.NgStyle, EventBarComponent], encapsulation: 2 });
|
|
421
455
|
}
|
|
422
456
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WeekRowComponent, [{
|
|
@@ -449,13 +483,14 @@ export class WeekRowComponent {
|
|
|
449
483
|
</div>
|
|
450
484
|
<ng-container *ngIf="getTimedEvents(date) as timed">
|
|
451
485
|
<div *ngIf="timed.length > 0" class="bm-cal__day-timed">
|
|
452
|
-
<div *ngFor="let ev of getVisibleTimed(timed, colIdx, date)"
|
|
453
|
-
[class]="'bm-cal-timed-entry' + (isTimedSelected(ev) ? ' bm-cal-timed-entry--selected' : '') + timedStateClass(ev) + slotsClassName(ev)"
|
|
486
|
+
<div *ngFor="let ev of getVisibleTimed(timed, colIdx, date); trackBy: trackEvent"
|
|
487
|
+
[class]="'bm-cal-timed-entry' + (isTimedSelected(ev) ? ' bm-cal-timed-entry--selected' : '') + timedStateClass(ev) + (pointerMode && timedCanDrag(ev) ? ' bm-cal-timed-entry--pointer' : '') + slotsClassName(ev)"
|
|
454
488
|
[ngStyle]="slotsStyle(ev)"
|
|
455
|
-
[attr.draggable]="timedCanDrag(ev)"
|
|
456
|
-
(
|
|
457
|
-
(
|
|
458
|
-
(
|
|
489
|
+
[attr.draggable]="pointerMode ? null : timedCanDrag(ev)"
|
|
490
|
+
(pointerdown)="handleTimedPointerDown($event, ev)"
|
|
491
|
+
(dragstart)="pointerMode || handleTimedDragStart($event, ev)"
|
|
492
|
+
(dragend)="pointerMode || dragEnd.emit()"
|
|
493
|
+
(mousedown)="pointerMode || handleTimedMouseDown()"
|
|
459
494
|
(click)="handleTimedClick($event, ev)"
|
|
460
495
|
(dblclick)="handleTimedDoubleClick($event, ev)"
|
|
461
496
|
[title]="renderedTitle(ev)">
|
|
@@ -481,13 +516,14 @@ export class WeekRowComponent {
|
|
|
481
516
|
<div class="bm-cal__day-number-container">
|
|
482
517
|
<span [class]="'bm-cal__day-number' + (isToday(date) ? ' bm-cal__today' : '')">{{ getDayOfMonth(date) }}</span>
|
|
483
518
|
</div>
|
|
484
|
-
<div *ngFor="let ev of timed"
|
|
485
|
-
[class]="'bm-cal-timed-entry' + (isTimedSelected(ev) ? ' bm-cal-timed-entry--selected' : '') + timedStateClass(ev) + slotsClassName(ev)"
|
|
519
|
+
<div *ngFor="let ev of timed; trackBy: trackEvent"
|
|
520
|
+
[class]="'bm-cal-timed-entry' + (isTimedSelected(ev) ? ' bm-cal-timed-entry--selected' : '') + timedStateClass(ev) + (pointerMode && timedCanDrag(ev) ? ' bm-cal-timed-entry--pointer' : '') + slotsClassName(ev)"
|
|
486
521
|
[ngStyle]="slotsStyle(ev)"
|
|
487
|
-
[attr.draggable]="timedCanDrag(ev)"
|
|
488
|
-
(
|
|
489
|
-
(
|
|
490
|
-
(
|
|
522
|
+
[attr.draggable]="pointerMode ? null : timedCanDrag(ev)"
|
|
523
|
+
(pointerdown)="handleTimedPointerDown($event, ev)"
|
|
524
|
+
(dragstart)="pointerMode || handleTimedDragStart($event, ev)"
|
|
525
|
+
(dragend)="pointerMode || dragEnd.emit()"
|
|
526
|
+
(mousedown)="pointerMode || handleTimedMouseDown()"
|
|
491
527
|
(click)="handleTimedClick($event, ev)"
|
|
492
528
|
(dblclick)="handleTimedDoubleClick($event, ev)"
|
|
493
529
|
[title]="renderedTitle(ev)">
|
|
@@ -509,7 +545,8 @@ export class WeekRowComponent {
|
|
|
509
545
|
|
|
510
546
|
<div class="bm-cal__events-overlay">
|
|
511
547
|
<div class="bm-cal__events-grid">
|
|
512
|
-
<cal-event-bar *ngFor="let layoutItem of items; let idx = index"
|
|
548
|
+
<cal-event-bar *ngFor="let layoutItem of items; let idx = index; trackBy: trackItem"
|
|
549
|
+
[config]="config"
|
|
513
550
|
[event]="layoutItem.segment.event"
|
|
514
551
|
[isStart]="layoutItem.segment.isStart"
|
|
515
552
|
[isEnd]="layoutItem.segment.isEnd"
|
|
@@ -532,6 +569,8 @@ export class WeekRowComponent {
|
|
|
532
569
|
}]
|
|
533
570
|
}], () => [{ type: i1.EventRenderService, decorators: [{
|
|
534
571
|
type: Optional
|
|
572
|
+
}] }, { type: i1.CalendarPointerGestureService, decorators: [{
|
|
573
|
+
type: Optional
|
|
535
574
|
}] }], { weekDates: [{
|
|
536
575
|
type: Input
|
|
537
576
|
}], items: [{
|
|
@@ -580,5 +619,5 @@ export class WeekRowComponent {
|
|
|
580
619
|
type: ViewChild,
|
|
581
620
|
args: ['rowEl']
|
|
582
621
|
}] }); })();
|
|
583
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WeekRowComponent, { className: "WeekRowComponent", filePath: "views/month/weekrow.ts", lineNumber:
|
|
622
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WeekRowComponent, { className: "WeekRowComponent", filePath: "views/month/weekrow.ts", lineNumber: 127 }); })();
|
|
584
623
|
//# sourceMappingURL=WeekRow.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WeekRow.js","sourceRoot":"","sources":["../../../src/views/month/WeekRow.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"WeekRow.js","sourceRoot":"","sources":["../../../src/views/month/WeekRow.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import type { DragInfo } from '@bimetal/calendar-headless';
|
|
1
2
|
import { EventEmitter, AfterViewInit, ElementRef } from '@angular/core';
|
|
2
3
|
import type { CalendarEvent, CalendarDateTime, Resource } from '@bimetal/calendar-core';
|
|
3
4
|
import type { CalendarConfig } from '../../binding/index.js';
|
|
5
|
+
import { CalendarPointerGestureService } from '../../binding/index.js';
|
|
4
6
|
import { type TimeEventLayout } from '../week/TimeEvent.js';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
/**
|
|
@@ -8,6 +10,8 @@ import * as i0 from "@angular/core";
|
|
|
8
10
|
* with its own overlap-lane layout of timed events.
|
|
9
11
|
*/
|
|
10
12
|
export declare class ResourceViewComponent implements AfterViewInit {
|
|
13
|
+
private gesture;
|
|
14
|
+
constructor(gesture: CalendarPointerGestureService);
|
|
11
15
|
currentDate: CalendarDateTime;
|
|
12
16
|
events: CalendarEvent[];
|
|
13
17
|
visibleResources: readonly Resource[];
|
|
@@ -45,6 +49,12 @@ export declare class ResourceViewComponent implements AfterViewInit {
|
|
|
45
49
|
hidePreviewEv: EventEmitter<void>;
|
|
46
50
|
/** Native `dragend` der Source — Drag-Session vollständig beendet. */
|
|
47
51
|
dragEnd: EventEmitter<void>;
|
|
52
|
+
resourceDropInfo: EventEmitter<{
|
|
53
|
+
info: DragInfo;
|
|
54
|
+
date: CalendarDateTime;
|
|
55
|
+
time: string;
|
|
56
|
+
resourceId: string;
|
|
57
|
+
}>;
|
|
48
58
|
dragStartEv: EventEmitter<any>;
|
|
49
59
|
timeGridEl: ElementRef<HTMLDivElement>;
|
|
50
60
|
gridInnerEl: ElementRef<HTMLDivElement>;
|
|
@@ -69,10 +79,27 @@ export declare class ResourceViewComponent implements AfterViewInit {
|
|
|
69
79
|
* dayCol = Resource-Index, lane/laneCount aus layoutTimed pro Resource
|
|
70
80
|
* — Überlapper in r1 dürfen die Spalte r2 nicht halbieren.
|
|
71
81
|
*/
|
|
82
|
+
/**
|
|
83
|
+
* CACHED PER INPUT IDENTITY, not per call (mcp-130 — the resource-view twin of
|
|
84
|
+
* mcp-129). As a plain getter this ran the full segment/lane layout and minted
|
|
85
|
+
* fresh {event, layout} wrappers on EVERY change-detection pass; Zone runs CD
|
|
86
|
+
* after every DOM event, so the dragstart itself handed the un-trackBy'd *ngFor
|
|
87
|
+
* all-new identities, every cal-time-event was re-created, and Chromium
|
|
88
|
+
* cancelled the native drag whose source died in its own dragstart task. The
|
|
89
|
+
* dragstart-survival fence in e2e/calendar.spec.ts went red on exactly this
|
|
90
|
+
* view before the cache + trackBy below.
|
|
91
|
+
*/
|
|
92
|
+
private timedCache;
|
|
72
93
|
get timedEntries(): {
|
|
73
94
|
event: CalendarEvent;
|
|
74
95
|
layout: TimeEventLayout;
|
|
75
96
|
}[];
|
|
97
|
+
/** Same identity rule the week view pins (`trackTimed`): event + column. */
|
|
98
|
+
trackTimed(_i: number, entry: {
|
|
99
|
+
event: CalendarEvent;
|
|
100
|
+
layout: TimeEventLayout;
|
|
101
|
+
}): string;
|
|
102
|
+
private buildTimedEntries;
|
|
76
103
|
resourceFromX(clientX: number, gridInner: HTMLElement): string | null;
|
|
77
104
|
isOffHour(h: number): boolean;
|
|
78
105
|
formatHour(h: number): string;
|
|
@@ -85,6 +112,6 @@ export declare class ResourceViewComponent implements AfterViewInit {
|
|
|
85
112
|
trackResource(_: number, r: Resource): string;
|
|
86
113
|
trackEvent(_: number, ev: CalendarEvent): string;
|
|
87
114
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceViewComponent, never>;
|
|
88
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResourceViewComponent, "cal-resource-view", never, { "currentDate": { "alias": "currentDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; "visibleResources": { "alias": "visibleResources"; "required": false; }; "config": { "alias": "config"; "required": false; }; "previewEvent": { "alias": "previewEvent"; "required": false; }; "selectedEventId": { "alias": "selectedEventId"; "required": false; }; "selectedInstanceDate": { "alias": "selectedInstanceDate"; "required": false; }; }, { "eventClick": "eventClick"; "selectEvent": "selectEvent"; "clearSelection": "clearSelection"; "resourceCellClick": "resourceCellClick"; "resourceDrop": "resourceDrop"; "dragOverDateTime": "dragOverDateTime"; "hidePreviewEv": "hidePreviewEv"; "dragEnd": "dragEnd"; "dragStartEv": "dragStartEv"; }, never, never, true, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourceViewComponent, "cal-resource-view", never, { "currentDate": { "alias": "currentDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; "visibleResources": { "alias": "visibleResources"; "required": false; }; "config": { "alias": "config"; "required": false; }; "previewEvent": { "alias": "previewEvent"; "required": false; }; "selectedEventId": { "alias": "selectedEventId"; "required": false; }; "selectedInstanceDate": { "alias": "selectedInstanceDate"; "required": false; }; }, { "eventClick": "eventClick"; "selectEvent": "selectEvent"; "clearSelection": "clearSelection"; "resourceCellClick": "resourceCellClick"; "resourceDrop": "resourceDrop"; "dragOverDateTime": "dragOverDateTime"; "hidePreviewEv": "hidePreviewEv"; "dragEnd": "dragEnd"; "resourceDropInfo": "resourceDropInfo"; "dragStartEv": "dragStartEv"; }, never, never, true, never>;
|
|
89
116
|
}
|
|
90
117
|
//# sourceMappingURL=ResourceView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ResourceView.d.ts","sourceRoot":"","sources":["../../../src/views/resource/ResourceView.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,YAAY,EAAE,aAAa,EAAa,UAAU,EAAE,MAAM,eAAe,CAAC;AAE7G,OAAO,KAAK,EAAE,aAAa,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAGxF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"ResourceView.d.ts","sourceRoot":"","sources":["../../../src/views/resource/ResourceView.ts"],"names":[],"mappings":"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"}
|