52 lines
2.0 KiB
TypeScript
52 lines
2.0 KiB
TypeScript
|
import { Component, Injectable } from '@angular/core';
|
||
|
import { Location } from '@angular/common';
|
||
|
import { Store } from '@ngrx/store';
|
||
|
import * as mapReducers from '../../reducers/map.reducer';
|
||
|
import { commonReducers, ItemTypeService, ItemService, FolderService } from '@farmmaps/common';
|
||
|
import { Router } from '@angular/router';
|
||
|
import { ForItemType } from '../for-item/for-itemtype.decorator';
|
||
|
import { AbstractSelectedItemComponent } from '../selected-item/selected-item.component';
|
||
|
import { ITemporalItemLayer} from '../../models/item.layer';
|
||
|
import * as mapActions from '../../actions/map.actions';
|
||
|
|
||
|
|
||
|
@ForItemType("vnd.farmmaps.itemtype.temporal")
|
||
|
@Injectable()
|
||
|
@Component({
|
||
|
selector: 'fm-map-selected-item-temporal',
|
||
|
templateUrl: './selected-item-temporal.component.html',
|
||
|
styleUrls: ['./selected-item-temporal.component.scss']
|
||
|
})
|
||
|
export class SelectedItemTemporalComponent extends AbstractSelectedItemComponent {
|
||
|
|
||
|
constructor(store: Store<mapReducers.State | commonReducers.State>, itemTypeService: ItemTypeService, location: Location, router: Router, private itemService$: ItemService,private folderService$: FolderService) {
|
||
|
super(store, itemTypeService,location,router);
|
||
|
}
|
||
|
public selectedLayer: number = 0;
|
||
|
|
||
|
onLayerChanged(layerIndex: number) {
|
||
|
this.selectedLayer = layerIndex;
|
||
|
this.store.dispatch(new mapActions.SetLayerIndex(layerIndex));
|
||
|
}
|
||
|
|
||
|
hasNext():boolean {
|
||
|
let temporalItemLayer = this.itemLayer as ITemporalItemLayer;
|
||
|
return temporalItemLayer && temporalItemLayer.nextItemLayer != null;
|
||
|
}
|
||
|
|
||
|
hasPrevious():boolean {
|
||
|
let temporalItemLayer = this.itemLayer as ITemporalItemLayer;
|
||
|
return temporalItemLayer && temporalItemLayer.previousItemLayer != null;
|
||
|
}
|
||
|
|
||
|
handleNextTemporal(event:MouseEvent) {
|
||
|
this.store.dispatch(new mapActions.NextTemporal());
|
||
|
event.preventDefault();
|
||
|
}
|
||
|
|
||
|
handlePreviousTemporal(event:MouseEvent) {
|
||
|
this.store.dispatch(new mapActions.PreviousTemporal());
|
||
|
event.preventDefault();
|
||
|
}
|
||
|
}
|