add logging

This commit is contained in:
Peter Maquiran
2024-07-22 11:37:02 +01:00
parent ef7edb3978
commit 717968ac52
12 changed files with 787 additions and 35 deletions
+7
View File
@@ -46,6 +46,7 @@ import { CalendarState, selectEventSource } from 'src/app/services/Repositorys/A
import { Store } from '@ngrx/store';
import { NotificationRepositoryService } from 'src/app/module/notification/data/notification-repository.service';
// import { Unsubscribable } from '../../../../android/app/build/intermediates/assets/debug/public/assets/dexie/dist/dexie';
@Component({
selector: 'app-agenda',
templateUrl: './agenda.page.html',
@@ -753,6 +754,12 @@ export class AgendaPage implements OnInit {
this.CalendarStore.removeRangeForCalendar(startTime, endTime, null , selectedCalendar.wxUserId as any)
let eventsList = response.value;
tracing.log('range', {
date: { startTime, endTime },
value: response.value
})
this.CalendarStore.pushEvent(eventsList, label, selectedCalendar.wxUserId);
this.listToPresent = this.CalendarStore.getEventsByCalendarIds(selectedCalendarIds)
this.showTimelinePR = true;