2018-11-06 15:35:51 +01:00
|
|
|
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
2018-10-05 16:34:08 +02:00
|
|
|
import { Location } from '@angular/common';
|
|
|
|
import { Router, ActivatedRoute } from '@angular/router';
|
2018-10-12 11:05:24 +02:00
|
|
|
|
2018-10-05 16:34:08 +02:00
|
|
|
import { ViewportService } from '../../../core/services/viewport.service';
|
|
|
|
import { MainMenuService } from '../../../core/services/main-menu.service';
|
2018-08-28 13:54:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reusable head bar component for Apps.
|
|
|
|
*
|
|
|
|
* Will translate the title automatically.
|
|
|
|
*
|
|
|
|
* Use `PlusButton=true` and `(plusButtonClicked)=myFunction()` if a plus button is needed
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* ## Examples:
|
|
|
|
*
|
|
|
|
* ### Usage of the selector:
|
|
|
|
*
|
|
|
|
* ```html
|
2018-09-03 17:57:20 +02:00
|
|
|
* <os-head-bar
|
2018-11-06 15:35:51 +01:00
|
|
|
* [nav]="false"
|
|
|
|
* [mainButton]="opCanEdit()"
|
|
|
|
* [buttonIcon]="edit"
|
|
|
|
* [editMode]="editMotion"
|
|
|
|
* (mainEvent)="setEditMode(!editMotion)"
|
|
|
|
* (saveEvent)="saveMotion()">
|
|
|
|
*
|
|
|
|
* <!-- Title -->
|
|
|
|
* <div class="title-slot">
|
|
|
|
* My Component Title
|
|
|
|
* </div>
|
|
|
|
*
|
|
|
|
* <!-- Menu -->
|
|
|
|
* <div class="menu-slot">
|
|
|
|
* <button type="button" mat-icon-button [matMenuTriggerFor]="myComponentMenu">
|
|
|
|
* <mat-icon>more_vert</mat-icon>
|
|
|
|
* </button>
|
|
|
|
* </div>
|
2018-09-03 17:57:20 +02:00
|
|
|
* </os-head-bar>
|
2018-08-28 13:54:25 +02:00
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
@Component({
|
2018-09-03 17:57:20 +02:00
|
|
|
selector: 'os-head-bar',
|
2018-08-28 13:54:25 +02:00
|
|
|
templateUrl: './head-bar.component.html',
|
|
|
|
styleUrls: ['./head-bar.component.scss']
|
|
|
|
})
|
2018-11-06 15:35:51 +01:00
|
|
|
export class HeadBarComponent {
|
2018-10-05 16:34:08 +02:00
|
|
|
/**
|
|
|
|
* Determine if the the navigation "hamburger" icon should be displayed in mobile mode
|
|
|
|
*/
|
|
|
|
@Input()
|
|
|
|
public nav = true;
|
|
|
|
|
|
|
|
/**
|
2018-11-06 15:35:51 +01:00
|
|
|
* Custom icon if necessary
|
2018-10-05 16:34:08 +02:00
|
|
|
*/
|
|
|
|
@Input()
|
2018-11-06 15:35:51 +01:00
|
|
|
public buttonIcon = 'add';
|
2018-10-05 16:34:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine edit mode
|
2018-08-28 13:54:25 +02:00
|
|
|
*/
|
2018-09-19 15:18:57 +02:00
|
|
|
@Input()
|
2018-10-05 16:34:08 +02:00
|
|
|
public editMode = false;
|
2018-08-28 13:54:25 +02:00
|
|
|
|
|
|
|
/**
|
2018-11-06 15:35:51 +01:00
|
|
|
* Determine if there should be the main action button
|
2018-08-28 13:54:25 +02:00
|
|
|
*/
|
2018-09-19 15:18:57 +02:00
|
|
|
@Input()
|
2018-11-06 15:35:51 +01:00
|
|
|
public mainButton = false;
|
2018-10-05 16:34:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set to true if the component should use location.back instead
|
|
|
|
* of navigating to the parent component
|
|
|
|
*/
|
|
|
|
@Input()
|
|
|
|
public goBack = false;
|
2018-08-28 13:54:25 +02:00
|
|
|
|
|
|
|
/**
|
2018-11-06 15:35:51 +01:00
|
|
|
* Emit a signal to the parent component if the main button was clicked
|
2018-10-05 16:34:08 +02:00
|
|
|
*/
|
|
|
|
@Output()
|
2018-11-06 15:35:51 +01:00
|
|
|
public mainEvent = new EventEmitter<void>();
|
2018-10-05 16:34:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends a signal if a detail view should be saved
|
2018-08-28 13:54:25 +02:00
|
|
|
*/
|
2018-09-19 15:18:57 +02:00
|
|
|
@Output()
|
2018-10-05 16:34:08 +02:00
|
|
|
public saveEvent = new EventEmitter<boolean>();
|
2018-08-28 13:54:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Empty constructor
|
|
|
|
*/
|
2018-10-05 16:34:08 +02:00
|
|
|
public constructor(
|
|
|
|
public vp: ViewportService,
|
|
|
|
private menu: MainMenuService,
|
|
|
|
private router: Router,
|
|
|
|
private route: ActivatedRoute,
|
|
|
|
private location: Location
|
|
|
|
) {}
|
2018-08-28 13:54:25 +02:00
|
|
|
|
|
|
|
/**
|
2018-10-05 16:34:08 +02:00
|
|
|
* Emits a signal to the parent if
|
2018-08-28 13:54:25 +02:00
|
|
|
*/
|
2018-11-06 15:35:51 +01:00
|
|
|
public sendMainEvent(): void {
|
|
|
|
this.mainEvent.next();
|
2018-10-05 16:34:08 +02:00
|
|
|
}
|
2018-08-28 13:54:25 +02:00
|
|
|
|
|
|
|
/**
|
2018-10-05 16:34:08 +02:00
|
|
|
* Clicking the burger-menu-icon should toggle the menu
|
2018-08-28 13:54:25 +02:00
|
|
|
*/
|
2018-10-05 16:34:08 +02:00
|
|
|
public clickHamburgerMenu(): void {
|
|
|
|
this.menu.toggleMenu();
|
2018-08-28 13:54:25 +02:00
|
|
|
}
|
|
|
|
|
2018-10-05 16:34:08 +02:00
|
|
|
/**
|
|
|
|
* Send a save signal and set edit mode
|
|
|
|
*/
|
|
|
|
public save(): void {
|
2018-11-06 15:35:51 +01:00
|
|
|
this.saveEvent.next(true);
|
2018-10-05 16:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exits the view to return to the previous page or
|
|
|
|
* visit the parent view again.
|
|
|
|
*/
|
|
|
|
public onBackButton(): void {
|
|
|
|
if (this.goBack) {
|
|
|
|
this.location.back();
|
|
|
|
} else {
|
|
|
|
this.router.navigate(['../'], { relativeTo: this.route });
|
|
|
|
}
|
|
|
|
}
|
2018-08-28 13:54:25 +02:00
|
|
|
}
|