2018-07-23 16:42:17 +02:00
|
|
|
import { BaseModel } from '../base.model';
|
2018-08-08 17:25:39 +02:00
|
|
|
import { MotionVersion } from './motion-version';
|
|
|
|
import { MotionSubmitter } from './motion-submitter';
|
|
|
|
import { MotionLog } from './motion-log';
|
|
|
|
import { Config } from '../core/config';
|
|
|
|
import { Workflow } from './workflow';
|
2018-07-04 17:51:31 +02:00
|
|
|
|
2018-07-12 14:11:31 +02:00
|
|
|
/**
|
|
|
|
* Representation of Motion.
|
|
|
|
*
|
2018-08-08 17:25:39 +02:00
|
|
|
* Slightly Defined cause heavy maintaince on server side.
|
2018-07-12 14:11:31 +02:00
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
*/
|
2018-07-04 17:51:31 +02:00
|
|
|
export class Motion extends BaseModel {
|
2018-07-12 14:11:31 +02:00
|
|
|
protected _collectionString: string;
|
2018-07-04 17:51:31 +02:00
|
|
|
id: number;
|
2018-07-12 14:11:31 +02:00
|
|
|
identifier: string;
|
2018-08-08 17:25:39 +02:00
|
|
|
versions: MotionVersion[];
|
2018-07-04 17:51:31 +02:00
|
|
|
active_version: number;
|
2018-07-12 14:11:31 +02:00
|
|
|
parent_id: number;
|
2018-07-04 17:51:31 +02:00
|
|
|
category_id: number;
|
|
|
|
motion_block_id: number;
|
|
|
|
origin: string;
|
2018-08-08 17:25:39 +02:00
|
|
|
submitters: MotionSubmitter[];
|
2018-07-04 17:51:31 +02:00
|
|
|
supporters_id: number[];
|
2018-07-12 14:11:31 +02:00
|
|
|
comments: Object;
|
|
|
|
state_id: number;
|
|
|
|
state_required_permission_to_see: string;
|
|
|
|
recommendation_id: number;
|
2018-07-04 17:51:31 +02:00
|
|
|
tags_id: number[];
|
2018-07-12 14:11:31 +02:00
|
|
|
attachments_id: number[];
|
|
|
|
polls: BaseModel[];
|
|
|
|
agenda_item_id: number;
|
2018-08-08 17:25:39 +02:00
|
|
|
log_messages: MotionLog[];
|
2018-07-04 17:51:31 +02:00
|
|
|
|
|
|
|
constructor(
|
2018-07-12 14:11:31 +02:00
|
|
|
id?: number,
|
|
|
|
identifier?: string,
|
2018-08-08 17:25:39 +02:00
|
|
|
versions?: MotionVersion[],
|
2018-07-04 17:51:31 +02:00
|
|
|
active_version?: number,
|
2018-07-12 14:11:31 +02:00
|
|
|
parent_id?: number,
|
2018-07-04 17:51:31 +02:00
|
|
|
category_id?: number,
|
|
|
|
motion_block_id?: number,
|
|
|
|
origin?: string,
|
2018-08-08 17:25:39 +02:00
|
|
|
submitters?: MotionSubmitter[],
|
2018-07-04 17:51:31 +02:00
|
|
|
supporters_id?: number[],
|
2018-07-12 14:11:31 +02:00
|
|
|
comments?: Object,
|
|
|
|
state_id?: number,
|
|
|
|
state_required_permission_to_see?: string,
|
|
|
|
recommendation_id?: number,
|
2018-07-04 17:51:31 +02:00
|
|
|
tags_id?: number[],
|
2018-07-12 14:11:31 +02:00
|
|
|
attachments_id?: number[],
|
|
|
|
polls?: BaseModel[],
|
|
|
|
agenda_item_id?: number,
|
2018-08-08 17:25:39 +02:00
|
|
|
log_messages?: MotionLog[]
|
2018-07-04 17:51:31 +02:00
|
|
|
) {
|
2018-07-12 14:11:31 +02:00
|
|
|
super();
|
|
|
|
this._collectionString = 'motions/motion';
|
|
|
|
this.id = id;
|
|
|
|
this.identifier = identifier;
|
|
|
|
this.versions = versions;
|
2018-07-04 17:51:31 +02:00
|
|
|
this.active_version = active_version;
|
2018-07-12 14:11:31 +02:00
|
|
|
this.parent_id = parent_id;
|
2018-07-04 17:51:31 +02:00
|
|
|
this.category_id = category_id;
|
|
|
|
this.motion_block_id = motion_block_id;
|
|
|
|
this.origin = origin;
|
|
|
|
this.submitters = submitters;
|
|
|
|
this.supporters_id = supporters_id;
|
2018-07-12 14:11:31 +02:00
|
|
|
this.comments = comments;
|
|
|
|
this.state_id = state_id;
|
|
|
|
this.state_required_permission_to_see = state_required_permission_to_see;
|
|
|
|
this.recommendation_id = recommendation_id;
|
2018-07-04 17:51:31 +02:00
|
|
|
this.tags_id = tags_id;
|
2018-07-12 14:11:31 +02:00
|
|
|
this.attachments_id = attachments_id;
|
|
|
|
this.polls = polls;
|
|
|
|
this.agenda_item_id = agenda_item_id;
|
|
|
|
this.log_messages = log_messages;
|
2018-07-04 17:51:31 +02:00
|
|
|
}
|
2018-08-08 17:25:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* return the submitters as uses objects
|
|
|
|
*/
|
|
|
|
get submitterAsUser() {
|
|
|
|
const submitterIds = [];
|
|
|
|
this.submitters.forEach(submitter => {
|
|
|
|
submitterIds.push(submitter.user_id);
|
|
|
|
});
|
|
|
|
const users = this.DS.get('users/user', ...submitterIds);
|
|
|
|
return users;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return the workflow state
|
|
|
|
*
|
|
|
|
* Right now only the default workflow is assumes
|
|
|
|
*/
|
|
|
|
get stateName() {
|
|
|
|
//get the default workflow
|
|
|
|
const motionsWorkflowConfig = this.DS.filter(Config, config => config.key === 'motions_workflow')[0] as Config;
|
|
|
|
//make sure this is a number
|
|
|
|
const workflowId = +motionsWorkflowConfig.value;
|
|
|
|
//get the workflow for out motion
|
|
|
|
const selectedWorkflow = this.DS.get(Workflow, workflowId) as Workflow;
|
|
|
|
return selectedWorkflow.getStateNameById(this.state_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
deserialize(input: any): this {
|
|
|
|
Object.assign(this, input);
|
|
|
|
|
|
|
|
if (input.versions instanceof Array) {
|
|
|
|
this.versions = [];
|
|
|
|
input.versions.forEach(motionVersionData => {
|
|
|
|
this.versions.push(new MotionVersion().deserialize(motionVersionData));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input.submitters instanceof Array) {
|
|
|
|
this.submitters = [];
|
|
|
|
input.submitters.forEach(SubmitterData => {
|
|
|
|
this.submitters.push(new MotionSubmitter().deserialize(SubmitterData));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input.log_messages instanceof Array) {
|
|
|
|
this.log_messages = [];
|
|
|
|
input.log_messages.forEach(logData => {
|
|
|
|
this.log_messages.push(new MotionLog().deserialize(logData));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
2018-07-04 17:51:31 +02:00
|
|
|
}
|