2018-09-30 18:43:20 +02:00
|
|
|
import { Injectable } from '@angular/core';
|
2018-10-19 17:27:41 +02:00
|
|
|
import { Observable } from 'rxjs';
|
|
|
|
import { map } from 'rxjs/operators';
|
2018-09-30 18:43:20 +02:00
|
|
|
|
|
|
|
import { DataSendService } from '../../../core/services/data-send.service';
|
|
|
|
import { User } from '../../../shared/models/users/user';
|
|
|
|
import { Category } from '../../../shared/models/motions/category';
|
|
|
|
import { Workflow } from '../../../shared/models/motions/workflow';
|
|
|
|
import { BaseRepository } from '../../base/base-repository';
|
|
|
|
import { DataStoreService } from '../../../core/services/data-store.service';
|
|
|
|
import { MotionChangeReco } from '../../../shared/models/motions/motion-change-reco';
|
|
|
|
import { ViewChangeReco } from '../models/view-change-reco';
|
2018-10-26 11:19:05 +02:00
|
|
|
import { Identifiable } from '../../../shared/models/base/identifiable';
|
2018-11-02 08:34:33 +01:00
|
|
|
import { CollectionStringModelMapperService } from '../../../core/services/collectionStringModelMapper.service';
|
2018-09-30 18:43:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Repository Services for change recommendations
|
|
|
|
*
|
|
|
|
* The repository is meant to process domain objects (those found under
|
|
|
|
* shared/models), so components can display them and interact with them.
|
|
|
|
*
|
|
|
|
* Rather than manipulating models directly, the repository is meant to
|
|
|
|
* inform the {@link DataSendService} about changes which will send
|
|
|
|
* them to the Server.
|
|
|
|
*/
|
|
|
|
@Injectable({
|
|
|
|
providedIn: 'root'
|
|
|
|
})
|
|
|
|
export class ChangeRecommendationRepositoryService extends BaseRepository<ViewChangeReco, MotionChangeReco> {
|
|
|
|
/**
|
|
|
|
* Creates a MotionRepository
|
|
|
|
*
|
|
|
|
* Converts existing and incoming motions to ViewMotions
|
|
|
|
* Handles CRUD using an observer to the DataStore
|
|
|
|
* @param DS
|
|
|
|
* @param dataSend
|
|
|
|
*/
|
2018-11-02 08:34:33 +01:00
|
|
|
public constructor(
|
|
|
|
DS: DataStoreService,
|
|
|
|
mapperService: CollectionStringModelMapperService,
|
|
|
|
private dataSend: DataSendService
|
|
|
|
) {
|
|
|
|
super(DS, mapperService, MotionChangeReco, [Category, User, Workflow]);
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a change recommendation
|
|
|
|
* Creates a (real) change recommendation and delegates it to the {@link DataSendService}
|
|
|
|
*
|
|
|
|
* @param {MotionChangeReco} changeReco
|
|
|
|
*/
|
2018-10-26 11:19:05 +02:00
|
|
|
public async create(changeReco: MotionChangeReco): Promise<Identifiable> {
|
|
|
|
return await this.dataSend.createModel(changeReco);
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-02 11:41:03 +01:00
|
|
|
* Given a change recommendation view object, a entry in the backend is created.
|
|
|
|
* @param view
|
|
|
|
* @returns The id of the created change recommendation
|
2018-09-30 18:43:20 +02:00
|
|
|
*/
|
2018-10-26 11:19:05 +02:00
|
|
|
public async createByViewModel(view: ViewChangeReco): Promise<Identifiable> {
|
|
|
|
return await this.dataSend.createModel(view.changeRecommendation);
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates this view wrapper based on an actual Change Recommendation model
|
|
|
|
*
|
|
|
|
* @param {MotionChangeReco} model
|
|
|
|
*/
|
|
|
|
protected createViewModel(model: MotionChangeReco): ViewChangeReco {
|
|
|
|
return new ViewChangeReco(model);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deleting a change recommendation.
|
|
|
|
*
|
|
|
|
* Extract the change recommendation out of the viewModel and delegate
|
|
|
|
* to {@link DataSendService}
|
|
|
|
* @param {ViewChangeReco} viewModel
|
|
|
|
*/
|
2018-10-26 11:19:05 +02:00
|
|
|
public async delete(viewModel: ViewChangeReco): Promise<void> {
|
|
|
|
await this.dataSend.deleteModel(viewModel.changeRecommendation);
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates a change recommendation
|
|
|
|
*
|
|
|
|
* Updates a (real) change recommendation with patched data and delegate it
|
|
|
|
* to the {@link DataSendService}
|
|
|
|
*
|
|
|
|
* @param {Partial<MotionChangeReco>} update the form data containing the update values
|
|
|
|
* @param {ViewChangeReco} viewModel The View Change Recommendation. If not present, a new motion will be created
|
|
|
|
*/
|
2018-10-26 11:19:05 +02:00
|
|
|
public async update(update: Partial<MotionChangeReco>, viewModel: ViewChangeReco): Promise<void> {
|
2018-09-30 18:43:20 +02:00
|
|
|
const changeReco = viewModel.changeRecommendation;
|
|
|
|
changeReco.patchValues(update);
|
2018-10-26 11:19:05 +02:00
|
|
|
await this.dataSend.partialUpdateModel(changeReco);
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return the Observable of all change recommendations belonging to the given motion
|
|
|
|
*/
|
|
|
|
public getChangeRecosOfMotionObservable(motion_id: number): Observable<ViewChangeReco[]> {
|
|
|
|
return this.viewModelListSubject.asObservable().pipe(
|
|
|
|
map((recos: ViewChangeReco[]) => {
|
|
|
|
return recos.filter(reco => reco.motion_id === motion_id);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a change recommendation to accepted.
|
|
|
|
*
|
|
|
|
* @param {ViewChangeReco} change
|
|
|
|
*/
|
2018-10-26 11:19:05 +02:00
|
|
|
public async setAccepted(change: ViewChangeReco): Promise<void> {
|
2018-09-30 18:43:20 +02:00
|
|
|
const changeReco = change.changeRecommendation;
|
|
|
|
changeReco.patchValues({
|
|
|
|
rejected: false
|
|
|
|
});
|
2018-10-26 11:19:05 +02:00
|
|
|
await this.dataSend.partialUpdateModel(changeReco);
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a change recommendation to rejected.
|
|
|
|
*
|
|
|
|
* @param {ViewChangeReco} change
|
|
|
|
*/
|
2018-10-26 11:19:05 +02:00
|
|
|
public async setRejected(change: ViewChangeReco): Promise<void> {
|
2018-09-30 18:43:20 +02:00
|
|
|
const changeReco = change.changeRecommendation;
|
|
|
|
changeReco.patchValues({
|
|
|
|
rejected: true
|
|
|
|
});
|
2018-10-26 11:19:05 +02:00
|
|
|
await this.dataSend.partialUpdateModel(changeReco);
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|
2018-10-25 15:11:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets if a change recommendation is internal (for the administrators) or not.
|
|
|
|
*
|
|
|
|
* @param {ViewChangeReco} change
|
|
|
|
* @param {boolean} internal
|
|
|
|
*/
|
2018-10-26 11:19:05 +02:00
|
|
|
public async setInternal(change: ViewChangeReco, internal: boolean): Promise<void> {
|
2018-10-25 15:11:38 +02:00
|
|
|
const changeReco = change.changeRecommendation;
|
|
|
|
changeReco.patchValues({
|
|
|
|
internal: internal
|
|
|
|
});
|
2018-10-26 11:19:05 +02:00
|
|
|
await this.dataSend.partialUpdateModel(changeReco);
|
2018-10-25 15:11:38 +02:00
|
|
|
}
|
2018-09-30 18:43:20 +02:00
|
|
|
}
|