OpenSlides/client/src/app/site/motions/motion-detail/motion-detail.component.ts

152 lines
4.5 KiB
TypeScript
Raw Normal View History

2018-08-16 17:03:39 +02:00
import { Component, OnInit, ViewChild } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { BaseComponent } from '../../../base.component';
import { Motion } from '../../../shared/models/motions/motion';
2018-08-16 17:03:39 +02:00
import { Category } from '../../../shared/models/motions/category';
import { FormGroup, FormBuilder } from '@angular/forms';
import { MatExpansionPanel } from '@angular/material';
@Component({
selector: 'app-motion-detail',
templateUrl: './motion-detail.component.html',
styleUrls: ['./motion-detail.component.scss']
})
export class MotionDetailComponent extends BaseComponent implements OnInit {
2018-08-16 17:03:39 +02:00
@ViewChild('metaInfoPanel') metaInfoPanel: MatExpansionPanel;
@ViewChild('contentPanel') contentPanel: MatExpansionPanel;
motion: Motion;
2018-08-16 17:03:39 +02:00
metaInfoForm: FormGroup;
contentForm: FormGroup;
2018-08-16 17:03:39 +02:00
editMotion = false;
2018-08-21 14:56:26 +02:00
newMotion = false;
2018-08-16 17:03:39 +02:00
2018-08-21 14:56:26 +02:00
/**
*
* @param route determine if this is a new or an existing motion
* @param formBuilder For reactive forms. Form Group and Form Control
*/
2018-08-16 17:03:39 +02:00
constructor(private route: ActivatedRoute, private formBuilder: FormBuilder) {
super();
2018-08-16 17:03:39 +02:00
this.createForm();
2018-08-21 14:56:26 +02:00
console.log('route: ', route.snapshot.url[0].path);
if (route.snapshot.url[0].path === 'new') {
this.newMotion = true;
this.editMotion = true;
this.motion = new Motion();
} else {
// load existing motion
this.route.params.subscribe(params => {
console.log('params ', params);
// has the motion of the DataStore was initialized before.
this.motion = this.DS.get(Motion, params.id) as Motion;
// Observe motion to get the motion in the parameter and also get the changes
this.DS.getObservable().subscribe(newModel => {
if (newModel instanceof Motion) {
if (newModel.id === +params.id) {
this.motion = newModel as Motion;
}
}
2018-08-21 14:56:26 +02:00
});
});
2018-08-21 14:56:26 +02:00
}
}
2018-08-21 14:56:26 +02:00
/**
* Async load the values of the motion in the Form.
*/
2018-08-16 17:03:39 +02:00
patchForm() {
this.metaInfoForm.patchValue({
category_id: this.motion.category.id,
state_id: this.motion.state.id,
recommendation_id: this.motion.recommendation.id,
identifier: this.motion.identifier,
origin: this.motion.origin
});
this.contentForm.patchValue({
currentTitle: this.motion.currentTitle,
currentText: this.motion.currentText,
currentReason: this.motion.currentReason
});
2018-08-16 17:03:39 +02:00
}
2018-08-21 14:56:26 +02:00
/**
* Creates the forms for the Motion and the MotionVersion
*
* TODO: Build a custom form validator
*/
2018-08-16 17:03:39 +02:00
createForm() {
this.metaInfoForm = this.formBuilder.group({
identifier: [''],
category_id: [''],
state_id: [''],
recommendation_id: [''],
origin: ['']
});
this.contentForm = this.formBuilder.group({
currentTitle: [''],
currentText: [''],
currentReason: ['']
2018-08-16 17:03:39 +02:00
});
}
2018-08-21 14:56:26 +02:00
/**
* Save a motion. Calls the "patchValues" function in the MotionObject
*
* http:post the motion to the server.
* The AutoUpdate-Service should see a change once it arrives and show it
* in the list view automatically
*/
2018-08-16 17:03:39 +02:00
saveMotion() {
const newMotionValues = { ...this.metaInfoForm.value, ...this.contentForm.value };
this.motion.patchValues(newMotionValues);
2018-08-21 14:56:26 +02:00
console.log('save motion: this: ', this);
this.DS.save(this.motion).subscribe(answer => {
console.log(answer);
});
2018-08-16 17:03:39 +02:00
}
2018-08-21 14:56:26 +02:00
/**
* return all Categories.
*/
2018-08-16 17:03:39 +02:00
getMotionCategories(): Category[] {
const categories = this.DS.get(Category);
return categories as Category[];
}
2018-08-21 14:56:26 +02:00
/**
* Click on the edit button (pen-symbol)
*/
2018-08-16 17:03:39 +02:00
editMotionButton() {
this.editMotion ? (this.editMotion = false) : (this.editMotion = true);
2018-08-20 12:28:43 +02:00
2018-08-16 17:03:39 +02:00
if (this.editMotion) {
2018-08-20 12:28:43 +02:00
this.patchForm();
2018-08-16 17:03:39 +02:00
this.metaInfoPanel.open();
this.contentPanel.open();
2018-08-20 12:28:43 +02:00
} else {
this.saveMotion();
2018-08-16 17:03:39 +02:00
}
}
2018-08-21 14:56:26 +02:00
/**
* Init. Does nothing here.
*/
ngOnInit() {}
2018-08-21 14:56:26 +02:00
/**
* Function to download a motion.
*
* TODO: does nothing yet.
*/
downloadSingleMotionButton() {
console.log('Download this motion');
}
}