mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-18 15:42:54 +00:00
169 lines
4.3 KiB
TypeScript
169 lines
4.3 KiB
TypeScript
/*
|
|
* Copyright (C) 2022 StApps
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
import {
|
|
Component,
|
|
ElementRef,
|
|
NgZone,
|
|
OnDestroy,
|
|
OnInit,
|
|
ViewChild,
|
|
} from '@angular/core';
|
|
import {Router} from '@angular/router';
|
|
import {Location} from '@angular/common';
|
|
import {Subscription} from 'rxjs';
|
|
import moment from 'moment';
|
|
import {SCDateSeries, SCUuid} from '@openstapps/core';
|
|
import {SplashScreen} from '@capacitor/splash-screen';
|
|
|
|
import {DataRoutingService} from '../data/data-routing.service';
|
|
import {ScheduleProvider} from '../calendar/schedule.provider';
|
|
import {AnimationController, IonContent} from '@ionic/angular';
|
|
import {DashboardCollapse} from './dashboard-collapse';
|
|
|
|
// const scrollTimeline = new ScrollTimeline();
|
|
|
|
@Component({
|
|
selector: 'app-dashboard',
|
|
templateUrl: './dashboard.component.html',
|
|
styleUrls: [
|
|
'./dashboard.component.scss',
|
|
'/dashboard.collapse.component.scss',
|
|
],
|
|
})
|
|
export class DashboardComponent implements OnInit, OnDestroy {
|
|
/**
|
|
* Array of all subscriptions to Observables
|
|
*/
|
|
subscriptions: Subscription[] = [];
|
|
|
|
@ViewChild('toolbar', {read: ElementRef}) toolbarRef: ElementRef;
|
|
|
|
@ViewChild('schedule', {read: ElementRef}) scheduleRef: ElementRef;
|
|
|
|
@ViewChild('search', {read: ElementRef}) searchRef: ElementRef;
|
|
|
|
@ViewChild('ionContent') ionContentRef: IonContent;
|
|
|
|
collapseAnimation: DashboardCollapse;
|
|
|
|
/**
|
|
* UUID subscription
|
|
*/
|
|
private _uuidSubscription: Subscription;
|
|
|
|
/**
|
|
* The events to display
|
|
*/
|
|
private uuids: SCUuid[];
|
|
|
|
/**
|
|
* Enable header animation
|
|
*/
|
|
isHeaderAnimated = true;
|
|
|
|
/**
|
|
* Next event in calendar
|
|
*/
|
|
nextEvent: SCDateSeries | undefined;
|
|
|
|
/**
|
|
* Slider options
|
|
*/
|
|
quickNavigationOptions = {
|
|
slidesPerView: 'auto',
|
|
spaceBetween: 12,
|
|
freeMode: {
|
|
enabled: true,
|
|
sticky: true,
|
|
},
|
|
};
|
|
|
|
/**
|
|
* Offset from search bar to top
|
|
*/
|
|
searchToTopOffset = 0;
|
|
|
|
constructor(
|
|
private readonly dataRoutingService: DataRoutingService,
|
|
private scheduleProvider: ScheduleProvider,
|
|
protected router: Router,
|
|
public location: Location,
|
|
private animationControl: AnimationController,
|
|
private zone: NgZone,
|
|
) {
|
|
this.subscriptions.push(
|
|
this.dataRoutingService.itemSelectListener().subscribe(item => {
|
|
void this.router.navigate(['data-detail', item.uid]);
|
|
}),
|
|
);
|
|
}
|
|
|
|
async ngOnInit() {
|
|
this._uuidSubscription = this.scheduleProvider.uuids$.subscribe(
|
|
async result => {
|
|
this.uuids = result;
|
|
await this.loadNextEvent();
|
|
},
|
|
);
|
|
await SplashScreen.hide();
|
|
|
|
this.collapseAnimation = new DashboardCollapse(
|
|
this.animationControl,
|
|
this.zone,
|
|
await this.ionContentRef.getScrollElement(),
|
|
this.toolbarRef.nativeElement,
|
|
this.scheduleRef.nativeElement,
|
|
);
|
|
}
|
|
|
|
ionViewDidEnter() {
|
|
this.searchToTopOffset =
|
|
this.searchRef.nativeElement?.getBoundingClientRect().top - 100;
|
|
}
|
|
|
|
async loadNextEvent() {
|
|
const dataSeries = await this.scheduleProvider.getDateSeries(
|
|
this.uuids,
|
|
['P1W', 'P2W', 'P3W', 'P4W'],
|
|
moment(moment.now()).startOf('week').toISOString(),
|
|
);
|
|
|
|
this.nextEvent =
|
|
(dataSeries && dataSeries.dates && dataSeries.dates[0]) || undefined;
|
|
}
|
|
|
|
/**
|
|
* Remove subscriptions when the component is removed
|
|
*/
|
|
ngOnDestroy() {
|
|
for (const sub of this.subscriptions) {
|
|
sub.unsubscribe();
|
|
}
|
|
this._uuidSubscription.unsubscribe();
|
|
this.collapseAnimation.destroy();
|
|
}
|
|
|
|
async onSearchBarFocus(_event: Event) {
|
|
this.ionContentRef.getScrollElement().then(element => {
|
|
if (
|
|
element.scrollHeight - element.clientHeight >=
|
|
this.searchToTopOffset
|
|
) {
|
|
this.ionContentRef.scrollToPoint(0, this.searchToTopOffset, 100);
|
|
}
|
|
});
|
|
}
|
|
}
|