Merge pull request #4283 from tsiegleauq/select-motions-from-extension

Add search selector for state extensions
This commit is contained in:
Emanuel Schütze 2019-02-08 14:53:11 +01:00 committed by GitHub
commit 61d603f66a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 65 additions and 33 deletions

View File

@ -224,7 +224,8 @@
<div *ngIf="perms.isAllowed('change_metadata', motion)"> <div *ngIf="perms.isAllowed('change_metadata', motion)">
<mat-divider *ngIf="motion.nextStates.length > 0"></mat-divider> <mat-divider *ngIf="motion.nextStates.length > 0"></mat-divider>
<button *ngFor="let state of motion.previousStates" mat-menu-item (click)="setState(state.id)"> <button *ngFor="let state of motion.previousStates" mat-menu-item (click)="setState(state.id)">
<mat-icon>arrow_back</mat-icon> {{ state.name | translate }} <span *ngIf="state.show_state_extension_field">&nbsp;...</span> <mat-icon>arrow_back</mat-icon> {{ state.name | translate }}
<span *ngIf="state.show_state_extension_field">&nbsp;...</span>
</button> </button>
<button mat-menu-item (click)="setState(null)"> <button mat-menu-item (click)="setState(null)">
<mat-icon>replay</mat-icon> {{ 'Reset state' | translate }} <mat-icon>replay</mat-icon> {{ 'Reset state' | translate }}
@ -276,14 +277,26 @@
*ngIf="motion.recommendation && motion.recommendation.show_recommendation_extension_field" *ngIf="motion.recommendation && motion.recommendation.show_recommendation_extension_field"
class="spacer-top-10" class="spacer-top-10"
> >
<mat-form-field> <form [formGroup]="searchMotionForm">
<input <mat-form-field>
matInput <input
placeholder="{{ 'Extension' | translate }}" matInput
[(ngModel)]="newRecommendationExtension" [formControl]="searchMotionForm.get('recoExtension')"
/> placeholder="{{ 'Extension' | translate }}"
</mat-form-field> />
<button mat-icon-button (click)="setRecommendationExtension()"><mat-icon>check</mat-icon></button> </mat-form-field>
<button mat-icon-button (click)="setRecommendationExtension()">
<mat-icon>check</mat-icon>
</button>
<os-search-value-selector
ngDefaultControl
[form]="searchMotionForm"
[formControl]="searchMotionForm.get('motion_id')"
[multiple]="false"
listname="{{ 'Motions' | translate }}"
[InputListValues]="motionObserver"
></os-search-value-selector>
</form>
</div> </div>
</div> </div>
<div *ngIf="!perms.isAllowed('change_metadata', motion)"> <div *ngIf="!perms.isAllowed('change_metadata', motion)">

View File

@ -63,6 +63,11 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
*/ */
public contentForm: FormGroup; public contentForm: FormGroup;
/**
* To search other motions as extension via search value selector
*/
public searchMotionForm: FormGroup;
/** /**
* Determine if the motion is edited * Determine if the motion is edited
*/ */
@ -160,11 +165,6 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
*/ */
public allChangingObjects: ViewUnifiedChange[]; public allChangingObjects: ViewUnifiedChange[];
/**
* Holds all motions. Required to navigate back and forth
*/
public allMotions: ViewMotion[];
/** /**
* preload the next motion for direct navigation * preload the next motion for direct navigation
*/ */
@ -220,6 +220,11 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
*/ */
public tagObserver: BehaviorSubject<ViewTag[]>; public tagObserver: BehaviorSubject<ViewTag[]>;
/**
* Subject for (other) motions
*/
public motionObserver: BehaviorSubject<ViewMotion[]>;
/** /**
* Determine if the name of supporters are visible * Determine if the name of supporters are visible
*/ */
@ -310,11 +315,6 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
*/ */
public newStateExtension = ''; public newStateExtension = '';
/**
* new recommendation extension label to be submitted, if recommendation extensions can be set
*/
public newRecommendationExtension = '';
/** /**
* Constuct the detail view. * Constuct the detail view.
* *
@ -374,6 +374,7 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
this.mediafilesObserver = new BehaviorSubject(this.viewModelStore.getAll(ViewMediafile)); this.mediafilesObserver = new BehaviorSubject(this.viewModelStore.getAll(ViewMediafile));
this.agendaItemObserver = new BehaviorSubject(this.viewModelStore.getAll(ViewItem)); this.agendaItemObserver = new BehaviorSubject(this.viewModelStore.getAll(ViewItem));
this.tagObserver = new BehaviorSubject(this.viewModelStore.getAll(ViewTag)); this.tagObserver = new BehaviorSubject(this.viewModelStore.getAll(ViewTag));
this.motionObserver = new BehaviorSubject(this.viewModelStore.getAll(ViewMotion));
// Make sure the subjects are updated, when a new Model for the type arrives // Make sure the subjects are updated, when a new Model for the type arrives
this.DS.changeObservable.subscribe(newModel => { this.DS.changeObservable.subscribe(newModel => {
@ -392,6 +393,9 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
this.agendaItemObserver.next(this.viewModelStore.getAll(ViewItem)); this.agendaItemObserver.next(this.viewModelStore.getAll(ViewItem));
} else if (newModel instanceof Tag) { } else if (newModel instanceof Tag) {
this.tagObserver.next(this.viewModelStore.getAll(ViewTag)); this.tagObserver.next(this.viewModelStore.getAll(ViewTag));
} else if (newModel instanceof Motion) {
this.motionObserver.next(this.viewModelStore.getAll(ViewMotion));
this.setSurroundingMotions();
} }
}); });
@ -425,13 +429,7 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
public ngOnInit(): void { public ngOnInit(): void {
this.createForm(); this.createForm();
this.getMotionByUrl(); this.getMotionByUrl();
this.setSurroundingMotions();
this.repo.getViewModelListObservable().subscribe(newMotionList => {
if (newMotionList) {
this.allMotions = newMotionList;
this.setSurroundingMotions();
}
});
this.statuteRepo.getViewModelListObservable().subscribe(newViewStatuteParagraphs => { this.statuteRepo.getViewModelListObservable().subscribe(newViewStatuteParagraphs => {
this.statuteParagraphs = newViewStatuteParagraphs; this.statuteParagraphs = newViewStatuteParagraphs;
@ -515,7 +513,6 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
if (newViewMotion) { if (newViewMotion) {
this.motion = newViewMotion; this.motion = newViewMotion;
this.newStateExtension = this.motion.stateExtension; this.newStateExtension = this.motion.stateExtension;
this.newRecommendationExtension = this.motion.recommendationExtension;
this.personalNoteService.getPersonalNoteObserver(this.motion.motion).subscribe(pn => { this.personalNoteService.getPersonalNoteObserver(this.motion.motion).subscribe(pn => {
this.personalNoteContent = pn; this.personalNoteContent = pn;
}); });
@ -558,6 +555,7 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
const statuteAmendmentFieldName = 'statute_amendment'; const statuteAmendmentFieldName = 'statute_amendment';
contentPatch[statuteAmendmentFieldName] = formMotion.isStatuteAmendment(); contentPatch[statuteAmendmentFieldName] = formMotion.isStatuteAmendment();
this.contentForm.patchValue(contentPatch); this.contentForm.patchValue(contentPatch);
this.searchMotionForm.get('recoExtension').setValue(this.motion.recommendationExtension);
} }
/** /**
@ -596,6 +594,17 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
return value.match(/[^\d]/) !== null || parseInt(value, 10) >= maxLineNumber; return value.match(/[^\d]/) !== null || parseInt(value, 10) >= maxLineNumber;
} }
}(); }();
// create the search motion form
this.searchMotionForm = this.formBuilder.group({
motion_id: [],
recoExtension: []
});
// Detect changes in in search motion form
this.searchMotionForm.get('motion_id').valueChanges.subscribe(change => {
this.addMotionExtension(change);
});
} }
/** /**
@ -978,7 +987,7 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
* then appending motion without identifiers sorted by title * then appending motion without identifiers sorted by title
*/ */
public setSurroundingMotions(): void { public setSurroundingMotions(): void {
this.allMotions.sort((a, b) => { this.motionObserver.value.sort((a, b) => {
if (a.identifier && b.identifier) { if (a.identifier && b.identifier) {
return a.identifier.localeCompare(b.identifier, this.translate.currentLang); return a.identifier.localeCompare(b.identifier, this.translate.currentLang);
} else if (a.identifier) { } else if (a.identifier) {
@ -989,18 +998,18 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
return a.title.localeCompare(b.title, this.translate.currentLang); return a.title.localeCompare(b.title, this.translate.currentLang);
} }
}); });
const indexOfCurrent = this.allMotions.findIndex(motion => { const indexOfCurrent = this.motionObserver.value.findIndex(motion => {
return motion === this.motion; return motion === this.motion;
}); });
if (indexOfCurrent > -1) { if (indexOfCurrent > -1) {
if (indexOfCurrent > 0) { if (indexOfCurrent > 0) {
this.previousMotion = this.allMotions[indexOfCurrent - 1]; this.previousMotion = this.motionObserver.value[indexOfCurrent - 1];
} else { } else {
this.previousMotion = null; this.previousMotion = null;
} }
if (indexOfCurrent < this.allMotions.length - 1) { if (indexOfCurrent < this.motionObserver.value.length - 1) {
this.nextMotion = this.allMotions[indexOfCurrent + 1]; this.nextMotion = this.motionObserver.value[indexOfCurrent + 1];
} else { } else {
this.nextMotion = null; this.nextMotion = null;
} }
@ -1046,6 +1055,16 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
this.repo.setStateExtension(this.motion, this.newStateExtension); this.repo.setStateExtension(this.motion, this.newStateExtension);
} }
/**
* Adds an extension in the shape: [Motion:id] to the recoExtension form control
*
* @param id the ID of a selected motion returned by a search value selector
*/
public addMotionExtension(id: number): void {
const recoExtensionValue = this.searchMotionForm.get('recoExtension').value;
this.searchMotionForm.get('recoExtension').setValue(`${recoExtensionValue}[motion:${id}]`);
}
/** /**
* Sets the recommendation * Sets the recommendation
* *
@ -1060,7 +1079,7 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
* in {@link newRecommendationExtension} * in {@link newRecommendationExtension}
*/ */
public setRecommendationExtension(): void { public setRecommendationExtension(): void {
this.repo.setRecommendationExtension(this.motion, this.newRecommendationExtension); this.repo.setRecommendationExtension(this.motion, this.searchMotionForm.get('recoExtension').value);
} }
/** /**