OpenSlides/client/src/app/shared/models/base/agenda-base-model.ts

55 lines
1.7 KiB
TypeScript
Raw Normal View History

import { AgendaInformation } from './agenda-information';
2018-11-07 08:43:48 +01:00
import { Searchable } from './searchable';
import { SearchRepresentation } from '../../../core/ui-services/search.service';
import { BaseModel } from './base-model';
/**
* A base model for models, that can be content objects in the agenda. Provides title and navigation
* information for the agenda.
*/
export abstract class AgendaBaseModel extends BaseModel<AgendaBaseModel> implements AgendaInformation, Searchable {
/**
2018-11-07 08:43:48 +01:00
* A model that can be a content object of an agenda item.
* @param collectionString
* @param verboseName
* @param input
*/
protected constructor(collectionString: string, verboseName: string, input?: any) {
2018-11-07 08:43:48 +01:00
super(collectionString, verboseName, input);
}
2018-11-07 08:43:48 +01:00
/**
* @returns the agenda title
*/
public getAgendaTitle(): string {
return this.getTitle();
}
2018-11-07 08:43:48 +01:00
/**
* @return the agenda title with the verbose name of the content object
*/
public getAgendaTitleWithType(): string {
// Return the agenda title with the model's verbose name appended
2018-11-07 08:43:48 +01:00
return this.getAgendaTitle() + ' (' + this.getVerboseName() + ')';
}
2018-12-11 17:20:32 +01:00
/**
* @returns the (optional) descriptive text to be exported in the CSV.
* May be overridden by inheriting classes
*/
public getCSVExportText(): string {
return '';
}
2018-11-07 08:43:48 +01:00
/**
* Should return a string representation of the object, so there can be searched for.
*/
public abstract formatForSearch(): SearchRepresentation;
/**
* Should return the URL to the detail view. Used for the agenda, that the
* user can navigate to the content object.
*/
public abstract getDetailStateURL(): string;
}