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-30 10:09:49 +01:00
|
|
|
import { AgendaRepositoryService } from 'app/site/agenda/services/agenda-repository.service';
|
|
|
|
import { Displayable } from 'app/shared/models/base/displayable';
|
|
|
|
import { Identifiable } from 'app/shared/models/base/identifiable';
|
2018-12-18 17:06:17 +01:00
|
|
|
import { MotionBlockRepositoryService } from './motion-block-repository.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
|
2018-12-18 17:06:17 +01:00
|
|
|
* @param agendaRepo
|
|
|
|
* @param motionBlockRepo
|
|
|
|
* @param httpService
|
2018-11-27 22:44:37 +01:00
|
|
|
*/
|
|
|
|
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,
|
2018-11-30 10:09:49 +01:00
|
|
|
private agendaRepo: AgendaRepositoryService,
|
2018-12-18 17:06:17 +01:00
|
|
|
private motionBlockRepo: MotionBlockRepositoryService,
|
2018-11-30 09:24:07 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-30 10:09:49 +01:00
|
|
|
/**
|
|
|
|
* Moves the related agenda items from the motions as childs under a selected (parent) agenda item.
|
|
|
|
*/
|
|
|
|
public async moveToItem(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will move all selected motions as childs to:');
|
|
|
|
const choices: (Displayable & Identifiable)[] = this.agendaRepo.getViewModelList();
|
|
|
|
const selectedChoice = await this.choiceService.open(title, choices);
|
|
|
|
if (selectedChoice) {
|
|
|
|
const requestData = {
|
|
|
|
items: motions.map(motion => motion.agenda_item_id),
|
2018-12-18 17:06:17 +01:00
|
|
|
parent_id: selectedChoice.items as number
|
2018-11-30 10:09:49 +01:00
|
|
|
};
|
|
|
|
await this.httpService.post('/rest/agenda/item/assign', requestData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-27 22:44:37 +01:00
|
|
|
/**
|
|
|
|
* Opens a dialog and then sets the status for all motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions to change
|
|
|
|
*/
|
2018-12-06 12:28:05 +01:00
|
|
|
public async setStateOfMultiple(motions: ViewMotion[]): Promise<void> {
|
2018-11-27 22:44:37 +01:00
|
|
|
const title = this.translate.instant('This will set the state of all selected motions to:');
|
2019-01-10 12:54:48 +01:00
|
|
|
const choices = this.workflowRepo.getWorkflowStatesForMotions(motions).map(workflowState => ({
|
|
|
|
id: workflowState.id,
|
|
|
|
label: workflowState.name
|
|
|
|
}));
|
2018-11-27 22:44:37 +01:00
|
|
|
const selectedChoice = await this.choiceService.open(title, choices);
|
|
|
|
if (selectedChoice) {
|
|
|
|
for (const motion of motions) {
|
2018-12-18 17:06:17 +01:00
|
|
|
await this.repo.setState(motion, selectedChoice.items as number);
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2018-12-18 17:06:17 +01:00
|
|
|
.getWorkflowStatesForMotions(motions)
|
2018-11-27 22:44:37 +01:00
|
|
|
.filter(workflowState => !!workflowState.recommendation_label)
|
|
|
|
.map(workflowState => ({
|
|
|
|
id: workflowState.id,
|
|
|
|
label: workflowState.recommendation_label
|
|
|
|
}));
|
2018-12-18 17:06:17 +01:00
|
|
|
const clearChoice = 'Delete recommendation';
|
2019-01-10 12:54:48 +01:00
|
|
|
const selectedChoice = await this.choiceService.open(title, choices, false, null, clearChoice);
|
2018-12-18 17:06:17 +01:00
|
|
|
if (selectedChoice) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => ({
|
|
|
|
id: motion.id,
|
2019-01-10 12:54:48 +01:00
|
|
|
recommendation: selectedChoice.action ? 0 : (selectedChoice.items as number)
|
2018-11-30 09:24:07 +01:00
|
|
|
}));
|
|
|
|
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:');
|
2018-12-18 17:06:17 +01:00
|
|
|
const clearChoice = 'No category';
|
2019-01-10 12:54:48 +01:00
|
|
|
const selectedChoice = await this.choiceService.open(
|
|
|
|
title,
|
|
|
|
this.categoryRepo.getViewModelList(),
|
|
|
|
false,
|
|
|
|
null,
|
|
|
|
clearChoice
|
|
|
|
);
|
2018-11-27 22:44:37 +01:00
|
|
|
if (selectedChoice) {
|
|
|
|
for (const motion of motions) {
|
2018-12-18 17:06:17 +01:00
|
|
|
await this.repo.update(
|
2019-01-10 12:54:48 +01:00
|
|
|
{ category_id: selectedChoice.action ? 0 : (selectedChoice.items as number) },
|
|
|
|
motion
|
|
|
|
);
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-12-18 17:06:17 +01:00
|
|
|
* Opens a dialog and adds or removes the selected submitters for all given motions.
|
2018-11-27 22:44:37 +01:00
|
|
|
*
|
2018-12-18 17:06:17 +01:00
|
|
|
* @param motions The motions to add/remove the sumbitters to
|
2018-11-27 22:44:37 +01:00
|
|
|
*/
|
2018-12-18 17:06:17 +01:00
|
|
|
public async changeSubmitters(motions: ViewMotion[]): Promise<void> {
|
2019-01-10 12:54:48 +01:00
|
|
|
const title = this.translate.instant(
|
|
|
|
'This will add or remove the following submitters for all selected motions:'
|
|
|
|
);
|
2018-12-18 17:06:17 +01:00
|
|
|
const choices = ['Add', 'Remove'];
|
2019-01-10 12:54:48 +01:00
|
|
|
const selectedChoice = await this.choiceService.open(title, this.userRepo.getViewModelList(), true, choices);
|
2018-12-18 17:06:17 +01:00
|
|
|
if (selectedChoice && selectedChoice.action === choices[0]) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
2018-12-18 17:06:17 +01:00
|
|
|
let submitterIds = [...motion.submitters_id, ...(selectedChoice.items as number[])];
|
2018-11-30 09:24:07 +01:00
|
|
|
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-12-18 17:06:17 +01:00
|
|
|
} else if (selectedChoice && selectedChoice.action === choices[1]) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
2018-12-18 17:06:17 +01:00
|
|
|
const submitterIdsToRemove = selectedChoice.items as number[];
|
2018-11-30 09:24:07 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-12-18 17:06:17 +01:00
|
|
|
* Opens a dialog and adds/removes the selected tags for all given motions.
|
2018-11-27 22:44:37 +01:00
|
|
|
*
|
|
|
|
* @param motions The motions to add the tags to
|
|
|
|
*/
|
2018-12-18 17:06:17 +01:00
|
|
|
public async changeTags(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will add or remove the following tags for all selected motions:');
|
|
|
|
const choices = ['Add', 'Remove', 'Clear tags'];
|
2019-01-10 12:54:48 +01:00
|
|
|
const selectedChoice = await this.choiceService.open(title, this.tagRepo.getViewModelList(), true, choices);
|
2018-12-18 17:06:17 +01:00
|
|
|
if (selectedChoice && selectedChoice.action === choices[0]) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
2018-12-18 17:06:17 +01:00
|
|
|
let tagIds = [...motion.tags_id, ...(selectedChoice.items 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-12-18 17:06:17 +01:00
|
|
|
} else if (selectedChoice && selectedChoice.action === choices[1]) {
|
2018-11-30 09:24:07 +01:00
|
|
|
const requestData = motions.map(motion => {
|
2018-12-18 17:06:17 +01:00
|
|
|
const tagIdsToRemove = selectedChoice.items as number[];
|
2018-11-27 22:44:37 +01:00
|
|
|
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-12-18 17:06:17 +01:00
|
|
|
} else if (selectedChoice && selectedChoice.action === choices[2]) {
|
|
|
|
const requestData = motions.map(motion => {
|
|
|
|
return {
|
|
|
|
id: motion.id,
|
|
|
|
tags: []
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await this.httpService.post('/rest/motions/motion/manage_multiple_tags', { motions: requestData });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a dialog and changes the motionBlock for all given motions.
|
|
|
|
*
|
|
|
|
* @param motions The motions for which to change the motionBlock
|
|
|
|
*/
|
|
|
|
public async setMotionBlock(motions: ViewMotion[]): Promise<void> {
|
|
|
|
const title = this.translate.instant('This will change the motion Block for all selected motions:');
|
|
|
|
const clearChoice = 'Clear motion block';
|
2019-01-10 12:54:48 +01:00
|
|
|
const selectedChoice = await this.choiceService.open(
|
|
|
|
title,
|
|
|
|
this.motionBlockRepo.getViewModelList(),
|
|
|
|
false,
|
|
|
|
null,
|
|
|
|
clearChoice
|
|
|
|
);
|
2018-12-18 17:06:17 +01:00
|
|
|
if (selectedChoice) {
|
|
|
|
for (const motion of motions) {
|
2019-01-10 12:54:48 +01:00
|
|
|
const blockId = selectedChoice.action ? null : (selectedChoice.items as number);
|
|
|
|
await this.repo.update({ motion_block_id: blockId }, motion);
|
2018-12-18 17:06:17 +01:00
|
|
|
}
|
2018-11-27 22:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|