2022-04-25 16:17:32 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { PanelType } from '../../../models/panel.model';
|
|
|
|
import { PanelService } from '../../../services/panel/panel.service';
|
|
|
|
|
2022-05-20 13:34:11 +02:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2022-04-25 16:17:32 +02:00
|
|
|
@Component({
|
|
|
|
selector: 'ov-activities-panel',
|
|
|
|
templateUrl: './activities-panel.component.html',
|
2022-05-12 11:32:36 +02:00
|
|
|
styleUrls: ['../panel.component.css','./activities-panel.component.css']
|
2022-04-25 16:17:32 +02:00
|
|
|
})
|
|
|
|
export class ActivitiesPanelComponent implements OnInit {
|
|
|
|
constructor(private panelService: PanelService) {}
|
|
|
|
|
|
|
|
ngOnInit(): void {}
|
|
|
|
|
|
|
|
ngOnDestroy() {}
|
|
|
|
|
|
|
|
close() {
|
|
|
|
this.panelService.togglePanel(PanelType.ACTIVITIES);
|
|
|
|
}
|
|
|
|
}
|