76 lines
2.5 KiB
TypeScript
76 lines
2.5 KiB
TypeScript
import { Component, ViewChild } from '@angular/core';
|
|
import { ActivatedRoute, Router } from "@angular/router";
|
|
import { DivContentFormComponent } from "./div-help-content-form.component";
|
|
import { DivHelpContent } from "../../domain/div-help-content";
|
|
import { HelpContentService } from "../../services/help-content.service";
|
|
import { EnvProperties } from '../../openaireLibrary/utils/properties/env-properties';
|
|
|
|
@Component({
|
|
selector: 'new-div-help-content',
|
|
templateUrl: 'new-div-help-content.component.html',
|
|
})
|
|
|
|
export class NewDivHelpContentComponent {
|
|
|
|
@ViewChild(DivContentFormComponent)
|
|
public formComponent : DivContentFormComponent;
|
|
|
|
private errorMessage : string = null;
|
|
|
|
private communityPid: string;
|
|
|
|
private pageId: string;
|
|
public properties:EnvProperties = null;
|
|
|
|
constructor(
|
|
private route: ActivatedRoute,
|
|
private router: Router,
|
|
private _helpContentService: HelpContentService) {}
|
|
|
|
ngOnInit() {
|
|
this.route.data
|
|
.subscribe((data: { envSpecific: EnvProperties }) => {
|
|
this.properties = data.envSpecific;
|
|
this.route.queryParams.subscribe(params => {
|
|
this.communityPid = params['community'];
|
|
this.pageId = params['pageId'];
|
|
});
|
|
});
|
|
}
|
|
|
|
private saveCustom() {
|
|
|
|
this.errorMessage = null;
|
|
|
|
if(this.formComponent.myForm.valid) {
|
|
let divHelpContent : DivHelpContent = this.formComponent.myForm.value;
|
|
|
|
this._helpContentService.insertOrUpdateDivHelpContent(divHelpContent, this.properties.adminToolsAPIURL).subscribe(
|
|
_ => {
|
|
if(this.pageId) {
|
|
this.router.navigate( ['/classContents/'], { queryParams: { "community": this.communityPid, "page": this.pageId } } );
|
|
} else {
|
|
this.router.navigate(['/classContents']);
|
|
}
|
|
},
|
|
err => this.handleError('System error saving page content', err)
|
|
);
|
|
} else {
|
|
this.errorMessage = "Please fill all required fields";
|
|
}
|
|
}
|
|
|
|
private cancelCustom() {
|
|
if(this.pageId) {
|
|
this.router.navigate( ['/classContents/'], { queryParams: { "community": this.communityPid, "page": this.pageId } } );
|
|
} else {
|
|
this.router.navigate(['/classContents']);
|
|
}
|
|
}
|
|
|
|
handleError(message: string, error) {
|
|
this.errorMessage = message + ' (Server responded: ' + error + ')';
|
|
|
|
}
|
|
}
|