Add area to selected-item-cropfield
This commit is contained in:
		@@ -6,8 +6,8 @@
 | 
			
		||||
      <div class="card menu-card">
 | 
			
		||||
        <h1>Cropfield</h1>
 | 
			
		||||
        <h4>{{item.name}}</h4>
 | 
			
		||||
        <div>{{item.data.cropTypeName}}</div>
 | 
			
		||||
        <div><span>{{item.data.startDate|date}}</span> - <span>{{item.data.endDate|date}}</span> </div>
 | 
			
		||||
        <div class="card-text"><span>{{areaInHa(item)| number:'1.2-2'}} ha</span> <span>{{item.data.cropTypeName}}</span></div>
 | 
			
		||||
        <div class="card-text"><span>{{item.data.startDate|date}}</span> - <span>{{item.data.endDate|date}}</span> </div>
 | 
			
		||||
        <ul class="p-0 mt-2">
 | 
			
		||||
          <li *ngIf="item.isEditable"><a href="#" (click)="handleOnEdit(item)" i18n><i class="fa fa-pencil" aria-hidden="true" title="Edit"></i> Edit</a></li>
 | 
			
		||||
        </ul>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,30 +1,43 @@
 | 
			
		||||
import { Component, Input, Injectable, OnInit } from '@angular/core';
 | 
			
		||||
import { Location } from '@angular/common';
 | 
			
		||||
import { Feature } from 'ol';
 | 
			
		||||
import { Store } from '@ngrx/store';
 | 
			
		||||
import * as mapReducers from '../../reducers/map.reducer';
 | 
			
		||||
import { commonReducers, ItemTypeService, IItem, Item, ItemService, FolderService, IListItem} from '@farmmaps/common';
 | 
			
		||||
import { Router, ActivatedRoute, ParamMap, Event } from '@angular/router';
 | 
			
		||||
import { ForItemType } from '../for-item/for-itemtype.decorator';
 | 
			
		||||
import { AbstractSelectedItemComponent } from '../selected-item/selected-item.component';
 | 
			
		||||
import { Observable } from 'rxjs';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ForItemType("vnd.farmmaps.itemtype.cropfield")
 | 
			
		||||
@Injectable()
 | 
			
		||||
@Component({
 | 
			
		||||
  selector: 'fm-map-selected-item-cropfield',
 | 
			
		||||
  templateUrl: './selected-item-cropfield.component.html',
 | 
			
		||||
  styleUrls: ['./selected-item-cropfield.component.scss']
 | 
			
		||||
})
 | 
			
		||||
export class SelectedItemCropfieldComponent extends AbstractSelectedItemComponent implements OnInit{
 | 
			
		||||
 | 
			
		||||
  public items: Observable<IListItem[]>;
 | 
			
		||||
 | 
			
		||||
  constructor(store: Store<mapReducers.State | commonReducers.State>, itemTypeService: ItemTypeService, location: Location, router: Router, private itemService$: ItemService,private folderService$: FolderService) {
 | 
			
		||||
    super(store, itemTypeService,location,router);
 | 
			
		||||
  }
 | 
			
		||||
  ngOnInit() {
 | 
			
		||||
    this.items = this.folderService$.getItems(this.item.code, 0, 1000);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
import { Component, Input, Injectable, OnInit } from '@angular/core';
 | 
			
		||||
import { Location } from '@angular/common';
 | 
			
		||||
import { Feature } from 'ol';
 | 
			
		||||
import { Store } from '@ngrx/store';
 | 
			
		||||
import * as mapReducers from '../../reducers/map.reducer';
 | 
			
		||||
import { commonReducers, ItemTypeService, IItem, Item, ItemService, FolderService, IListItem} from '@farmmaps/common';
 | 
			
		||||
import { Router, ActivatedRoute, ParamMap, Event } from '@angular/router';
 | 
			
		||||
import { ForItemType } from '../for-item/for-itemtype.decorator';
 | 
			
		||||
import { AbstractSelectedItemComponent } from '../selected-item/selected-item.component';
 | 
			
		||||
import { Observable } from 'rxjs';
 | 
			
		||||
import {GeoJSON} from 'ol/format';
 | 
			
		||||
import {getArea} from 'ol/sphere';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ForItemType("vnd.farmmaps.itemtype.cropfield")
 | 
			
		||||
@Injectable()
 | 
			
		||||
@Component({
 | 
			
		||||
  selector: 'fm-map-selected-item-cropfield',
 | 
			
		||||
  templateUrl: './selected-item-cropfield.component.html',
 | 
			
		||||
  styleUrls: ['./selected-item-cropfield.component.scss']
 | 
			
		||||
})
 | 
			
		||||
export class SelectedItemCropfieldComponent extends AbstractSelectedItemComponent implements OnInit{
 | 
			
		||||
 | 
			
		||||
  public items: Observable<IListItem[]>;
 | 
			
		||||
 | 
			
		||||
  constructor(store: Store<mapReducers.State | commonReducers.State>, itemTypeService: ItemTypeService, location: Location, router: Router, private itemService$: ItemService,private folderService$: FolderService) {
 | 
			
		||||
    super(store, itemTypeService,location,router);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  areaInHa(item:IItem):number {
 | 
			
		||||
    if(!item) return 0;
 | 
			
		||||
    // get area from faeture if 0 calculate from polygon
 | 
			
		||||
    let a = item.data.area;
 | 
			
		||||
    if(a) return a;
 | 
			
		||||
    let format = new GeoJSON();
 | 
			
		||||
    let polygon = format.readGeometry(item.geometry);
 | 
			
		||||
    return getArea(polygon,{projection:"EPSG:4326"}) / 10000;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  ngOnInit() {
 | 
			
		||||
    this. items = this.folderService$.getItems(this.item.code, 0, 1000);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user