2018-11-27 22:44:37 +01:00
|
|
|
import { Injectable } from '@angular/core';
|
|
|
|
|
|
|
|
import { TranslateService } from '@ngx-translate/core';
|
|
|
|
|
|
|
|
import { ViewMotion } from '../models/view-motion';
|
|
|
|
import { ChoiceService } from 'app/core/services/choice.service';
|
|
|
|
import { PromptService } from 'app/core/services/prompt.service';
|
|
|
|
import { MotionRepositoryService } from './motion-repository.service';
|
|
|
|
import { UserRepositoryService } from 'app/site/users/services/user-repository.service';
|
|
|
|
import { WorkflowRepositoryService } from './workflow-repository.service';
|
|
|
|
import { CategoryRepositoryService } from './category-repository.service';
|
|
|
|
import { TagRepositoryService } from 'app/site/tags/services/tag-repository.service';
|
2018-11-30 09:24:07 +01:00
|
|
|
import { HttpService } from 'app/core/services/http.service';
|
2018-11-27 22:44:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains all multiselect actions for the motion list view.
|
|
|
|
*/
|
|
|
|
@Injectable({
|
|
|
|
providedIn: 'root'
|
|
|
|
})
|
|
|
|
export class MotionMultiselectService {
|
|
|
|
/**
|
|
|
|
* Does nothing.
|
|
|
|
*
|
|
|
|
* @param repo MotionRepositoryService
|
|
|
|
* @param translate TranslateService
|
|
|
|
* @param promptService
|
|
|
|
* @param choiceService
|
|
|
|
* @param userRepo
|
|
|
|
* @param workflowRepo
|
|
|
|
* @param categoryRepo
|
|
|
|
* @param tagRepo
|
|
|
|
*/
|
|
|
|
public constructor(
|
|
|
|
private repo: MotionRepositoryService,
|
|
|
|
private translate: TranslateService,
|
|
|
|
private promptService: PromptService,
|
|
|
|
private choiceService: ChoiceService,
|
|
|
|
private userRepo: UserRepositoryService,
|
|
|
|
private workflowRepo: WorkflowRepositoryService,
|
|
|
|
private categoryRepo: CategoryRepositoryService,
|
2018-11-30 09:24:07 +01:00
|
|
|
private tagRepo: TagRepositoryService,
|
|
|
|
private httpService: HttpService
|
2018-11-27 22:44:37 +01:00
|
|
|
) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes the given motions. Asks for confirmation.
|
|
|
|
*
|
|
|
|
* @param motions The motions to delete
|
|
|
|
*/
|
|
|
|
public async delete(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const content = this.translate.instant('This will delete all selected motions.');
|
|
|
|
if (await this.promptService.open('Are you sure?', content)) {
|
|
|
|
for (const motion of motions) {
|
|
|
|
await this.repo.delete(motion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and then sets the status for all motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to change
|
|
|
|
*/
|
|
|
|
public async setStatus(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will set the state of all selected motions to:');
|
|
|
|
const choices = this.workflowRepo.getAllWorkflowStates().map(workflowState => ({
|
|
|
|
id: workflowState.id,
|
|
|
|
label: workflowState.name
|
|
|
|
}));
|
|
|
|
const selectedChoice = await this.choiceService.open(title, choices);
|
|
|
|
if (selectedChoice) {
|
|
|
|
for (const motion of motions) {
|
|
|
|
await this.repo.setState(motion, selectedChoice as number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and sets the recommendation to the users choice for all selected motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to change
|
|
|
|
*/
|
|
|
|
public async setRecommendation(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will set the recommendation for all selected motions to:');
|
|
|
|
const choices = this.workflowRepo
|
|
|
|
.getAllWorkflowStates()
|
|
|
|
.filter(workflowState => !!workflowState.recommendation_label)
|
|
|
|
.map(workflowState => ({
|
|
|
|
id: workflowState.id,
|
|
|
|
label: workflowState.recommendation_label
|
|
|
|
}));
|
2018-11-30 09:24:07 +01:00
|
|
|
choices.push({ id: 0, label: 'Delete recommendation' });
|
2018-11-27 22:44:37 +01:00
|
|
|
const selectedChoice = await this.choiceService.open(title, choices);
|
2018-11-30 09:24:07 +01:00
|
|
|
if (typeof selectedChoice === 'number') {
|
|
|
|
const requestData = motions.map(motion => ({
|
|
|
|
id: motion.id,
|
|
|
|
recommendation: selectedChoice
|
|
|
|
}));
|
|
|
|
await this.httpService.post('/rest/motions/motion/manage_multiple_recommendation', {
|
|
|
|
motions: requestData
|
|
|
|
});
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and sets the category for all given motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to change
|
|
|
|
*/
|
|
|
|
public async setCategory(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will set the category of all selected motions to:');
|
|
|
|
const selectedChoice = await this.choiceService.open(title, this.categoryRepo.getViewModelList());
|
|
|
|
if (selectedChoice) {
|
|
|
|
for (const motion of motions) {
|
|
|
|
await this.repo.update({ category_id: selectedChoice as number }, motion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and adds the selected submitters for all given motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to add the sumbitters to
|
|
|
|
*/
|
|
|
|
public async addSubmitters(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will add the following submitters of all selected motions:');
|
|
|
|
const selectedChoice = await this.choiceService.open(title, this.userRepo.getViewModelList(), true);
|
|
|
|
if (selectedChoice) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
|
|
|
let submitterIds = [...motion.submitters_id, ...(selectedChoice as number[])];
|
|
|
|
submitterIds = submitterIds.filter((id, index, self) => self.indexOf(id) === index); // remove duplicates
|
|
|
|
return {
|
|
|
|
id: motion.id,
|
|
|
|
submitters: submitterIds
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await this.httpService.post('/rest/motions/motion/manage_multiple_submitters', { motions: requestData });
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and removes the selected submitters for all given motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to remove the submitters from
|
|
|
|
*/
|
|
|
|
public async removeSubmitters(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will remove the following submitters from all selected motions:');
|
|
|
|
const selectedChoice = await this.choiceService.open(title, this.userRepo.getViewModelList(), true);
|
|
|
|
if (selectedChoice) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
|
|
|
const submitterIdsToRemove = selectedChoice as number[];
|
|
|
|
const submitterIds = motion.submitters_id.filter(id => !submitterIdsToRemove.includes(id));
|
|
|
|
return {
|
|
|
|
id: motion.id,
|
|
|
|
submitters: submitterIds
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await this.httpService.post('/rest/motions/motion/manage_multiple_submitters', { motions: requestData });
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and adds the selected tags for all given motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to add the tags to
|
|
|
|
*/
|
|
|
|
public async addTags(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will add the following tags to all selected motions:');
|
|
|
|
const selectedChoice = await this.choiceService.open(title, this.tagRepo.getViewModelList(), true);
|
|
|
|
if (selectedChoice) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
2018-11-27 22:44:37 +01:00
|
|
|
let tagIds = [...motion.tags_id, ...(selectedChoice as number[])];
|
2018-11-30 09:24:07 +01:00
|
|
|
tagIds = tagIds.filter((id, index, self) => self.indexOf(id) === index); // remove duplicates
|
|
|
|
return {
|
|
|
|
id: motion.id,
|
|
|
|
tags: tagIds
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await this.httpService.post('/rest/motions/motion/manage_multiple_tags', { motions: requestData });
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and removes the selected tags for all given motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to remove the tags from
|
|
|
|
*/
|
|
|
|
public async removeTags(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will remove the following tags from all selected motions:');
|
|
|
|
const selectedChoice = await this.choiceService.open(title, this.tagRepo.getViewModelList(), true);
|
|
|
|
if (selectedChoice) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
2018-11-27 22:44:37 +01:00
|
|
|
const tagIdsToRemove = selectedChoice as number[];
|
|
|
|
const tagIds = motion.tags_id.filter(id => !tagIdsToRemove.includes(id));
|
2018-11-30 09:24:07 +01:00
|
|
|
return {
|
|
|
|
id: motion.id,
|
|
|
|
tags: tagIds
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await this.httpService.post('/rest/motions/motion/manage_multiple_tags', { motions: requestData });
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|