Compare commits
No commits in common. "719c69998161219747405cc2df471bca4f60b21b" and "709c76a851ac12389a24b31ae8453dd5cbc76056" have entirely different histories.
719c699981
...
709c76a851
@ -19,20 +19,10 @@ export class SelectedItemContainerComponent {
|
|||||||
@ViewChild(WidgetHostDirective, { static: true }) widgetHost: WidgetHostDirective;
|
@ViewChild(WidgetHostDirective, { static: true }) widgetHost: WidgetHostDirective;
|
||||||
|
|
||||||
loadComponent() {
|
loadComponent() {
|
||||||
let componentFactory: ComponentFactory<AbstractSelectedItemComponent> = this.componentFactoryResolver.resolveComponentFactory(SelectedItemComponent); // default
|
var componentFactory: ComponentFactory<AbstractSelectedItemComponent> = this.componentFactoryResolver.resolveComponentFactory(SelectedItemComponent); // default
|
||||||
let firstComponentWithTypeAndTask = this.selectedItemComponents
|
for (var i = 0; i < this.selectedItemComponents.length; i++) {
|
||||||
.find(value => value['forSourceTask'] == this.item.sourceTask &&
|
if (this.selectedItemComponents[i]['forItemType'] == this.item.itemType) {
|
||||||
value['forItemType'] == this.item.itemType
|
componentFactory = this.componentFactoryResolver.resolveComponentFactory(this.selectedItemComponents[i]['constructor'] as any);
|
||||||
);
|
|
||||||
|
|
||||||
if (firstComponentWithTypeAndTask) {
|
|
||||||
componentFactory = this.componentFactoryResolver.resolveComponentFactory(firstComponentWithTypeAndTask['constructor'] as any);
|
|
||||||
} else {
|
|
||||||
let firstComponentWithType = this.selectedItemComponents
|
|
||||||
.find(value => value['forItemType'] == this.item.itemType);
|
|
||||||
|
|
||||||
if (firstComponentWithType) {
|
|
||||||
componentFactory = this.componentFactoryResolver.resolveComponentFactory(firstComponentWithType['constructor'] as any);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const viewContainerRef = this.widgetHost.viewContainerRef;
|
const viewContainerRef = this.widgetHost.viewContainerRef;
|
||||||
|
@ -3,15 +3,11 @@
|
|||||||
<div class="card border-0">
|
<div class="card border-0">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div><a href="#" (click)="handleBackToList($event)" i18n>Back</a></div>
|
<div><a href="#" (click)="handleBackToList($event)" i18n>Back</a></div>
|
||||||
<div class="card menu-card">
|
<h4>Cropfield</h4>
|
||||||
<h1>Cropfield</h1>
|
<h1>{{item.name}}</h1>
|
||||||
<h4>{{item.name}}</h4>
|
|
||||||
<div>{{item.data.cropTypeName}}</div>
|
<div>{{item.data.cropTypeName}}</div>
|
||||||
<div><span>{{item.data.startDate|date}}</span> - <span>{{item.data.endDate|date}}</span> </div>
|
<div><span>{{item.data.startDate|date}}</span> - <span>{{item.data.endDate|date}}</span> </div>
|
||||||
<ul class="p-0 mt-2">
|
<div class="mt-1"><a href="#" (click)="handleOnEdit(item)" i18n><i class="fa fa-pencil" aria-hidden="true" title="Edit"></i> Edit</a></div>
|
||||||
<li><a href="#" (click)="handleOnEdit(item)" i18n><i class="fa fa-pencil" aria-hidden="true" title="Edit"></i> Edit</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<fm-map-item-list [items]="(items|async)"></fm-map-item-list>
|
<fm-map-item-list [items]="(items|async)"></fm-map-item-list>
|
||||||
<fm-map-item-widget-list [item]="item"></fm-map-item-widget-list>
|
<fm-map-item-widget-list [item]="item"></fm-map-item-widget-list>
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
@import "../../../app/theme.scss";
|
@import "../../_theme.scss";
|
||||||
@import "node_modules/bootstrap/scss/functions";
|
@import "~bootstrap/scss/bootstrap.scss";
|
||||||
@import "node_modules/bootstrap/scss/variables";
|
|
||||||
@import "node_modules/bootstrap/scss/mixins";
|
|
||||||
|
|
||||||
.big-icon {
|
.big-icon {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -15,10 +13,6 @@
|
|||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-body {
|
|
||||||
padding-bottom: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spacer {
|
.spacer {
|
||||||
display: none;
|
display: none;
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
@ -29,11 +23,3 @@
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-card {
|
|
||||||
margin-left: -7px;
|
|
||||||
padding-left: 7px;
|
|
||||||
margin-right: -7px;
|
|
||||||
padding-right: 7px;
|
|
||||||
margin-bottom: 7px;
|
|
||||||
}
|
|
||||||
|
@ -3,20 +3,15 @@
|
|||||||
<div class="card border-0">
|
<div class="card border-0">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="mb-2"><a href="#" (click)="handleBackToList($event)" i18n>Back</a></div>
|
<div class="mb-2"><a href="#" (click)="handleBackToList($event)" i18n>Back</a></div>
|
||||||
<div class="card menu-card">
|
|
||||||
<h1>{{item.name}}</h1>
|
<h1>{{item.name}}</h1>
|
||||||
</div>
|
|
||||||
<div class="legend-container" *ngIf="item?.data.layers;let layers">
|
<div class="legend-container" *ngIf="item?.data.layers;let layers">
|
||||||
<div class="card menu-card">
|
|
||||||
<div *ngIf="layers.length>1">
|
<div *ngIf="layers.length>1">
|
||||||
<select (change)="onLayerChanged($event.target.value)">
|
<select (change)="onLayerChanged($event.target.value)">
|
||||||
<option *ngFor="let l of layers;" [value]="l.index">{{l.name}}</option>
|
<option *ngFor="let l of layers;" [value]="l.index">{{l.name}}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<fm-map-layer-legend [showTitle]="layers.length==1" [layer]="layers[selectedLayer]" [histogramenabled]="true"></fm-map-layer-legend>
|
<fm-map-layer-legend [showTitle]="layers.length==1" [layer]="layers[selectedLayer]" [histogramenabled]="false" histogramunit="ha"></fm-map-layer-legend>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="card menu-card">
|
|
||||||
<ul class="p-0 mt-2">
|
<ul class="p-0 mt-2">
|
||||||
<!--<li><a href="/api/v1/items/{{item.code}}/file" class="mt-1 mr-1" i18n><i class="fa fa-download" aria-hidden="true" title="Download"></i> Download</a></li>-->
|
<!--<li><a href="/api/v1/items/{{item.code}}/file" class="mt-1 mr-1" i18n><i class="fa fa-download" aria-hidden="true" title="Download"></i> Download</a></li>-->
|
||||||
<li><a href="#" class="mt-1 mr-1" (click)="handleOnEdit(item)" i18n><i class="fa fa-pencil" aria-hidden="true" title="Edit"></i> Edit</a></li>
|
<li><a href="#" class="mt-1 mr-1" (click)="handleOnEdit(item)" i18n><i class="fa fa-pencil" aria-hidden="true" title="Edit"></i> Edit</a></li>
|
||||||
@ -25,4 +20,3 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
@ -39,11 +39,3 @@ li {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-card {
|
|
||||||
margin-left: -7px;
|
|
||||||
padding-left: 7px;
|
|
||||||
margin-right: -7px;
|
|
||||||
padding-right: 7px;
|
|
||||||
margin-bottom: 7px;
|
|
||||||
}
|
|
||||||
|
@ -4,8 +4,6 @@
|
|||||||
<div *ngIf="!item.thumbnail" class="big-icon" [style.background-color]="itemTypeService.getColor(item.itemType)">
|
<div *ngIf="!item.thumbnail" class="big-icon" [style.background-color]="itemTypeService.getColor(item.itemType)">
|
||||||
<i [ngClass]="itemTypeService.getIcon(item.itemType)"></i>
|
<i [ngClass]="itemTypeService.getIcon(item.itemType)"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="mb-2"><a href="#" (click)="handleBackToList($event)" i18n>Back</a></div>
|
<div class="mb-2"><a href="#" (click)="handleBackToList($event)" i18n>Back</a></div>
|
||||||
<h1 class="card-title">{{item.name}}</h1>
|
<h1 class="card-title">{{item.name}}</h1>
|
||||||
|
Loading…
Reference in New Issue
Block a user