dependency upgrades, server and platform module updates, linting wip

This commit is contained in:
William Welling
2017-07-12 14:33:16 -05:00
parent afc39022f8
commit c08f5c672b
190 changed files with 6321 additions and 4703 deletions

View File

@@ -14,32 +14,32 @@ import { Item } from "../../core/shared/item.model";
*/
@Component({
selector: 'ds-full-item-page',
styleUrls: ['./full-item-page.component.css'],
templateUrl: './full-item-page.component.html',
selector: 'ds-full-item-page',
styleUrls: ['./full-item-page.component.scss'],
templateUrl: './full-item-page.component.html',
})
export class FullItemPageComponent extends ItemPageComponent implements OnInit {
item: RemoteData<Item>;
item: RemoteData<Item>;
metadata: Observable<Array<Metadatum>>;
metadata: Observable<Array<Metadatum>>;
constructor(route: ActivatedRoute, items: ItemDataService) {
super(route, items);
}
constructor(route: ActivatedRoute, items: ItemDataService) {
super(route, items);
}
universalInit() {
universalInit() {
}
}
/*** AoT inheritance fix, will hopefully be resolved in the near future **/
ngOnInit(): void {
super.ngOnInit();
}
/*** AoT inheritance fix, will hopefully be resolved in the near future **/
ngOnInit(): void {
super.ngOnInit();
}
initialize(params) {
super.initialize(params);
this.metadata = this.item.payload.map(i => i.metadata);
}
initialize(params) {
super.initialize(params);
this.metadata = this.item.payload.map(i => i.metadata);
}
}