kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
3.6 KiB
110 lines
3.6 KiB
import {WorkPackageTableSelection} from "../../state/wp-table-selection.service";
|
|
import {CellBuilder} from "../cell-builder";
|
|
import {DetailsLinkBuilder} from "../details-link-builder";
|
|
import {$injectFields} from "../../../angular/angular-injector-bridge.functions";
|
|
import {
|
|
WorkPackageResource,
|
|
WorkPackageResourceInterface
|
|
} from "../../../api/api-v3/hal-resources/work-package-resource.service";
|
|
import {WorkPackageTableColumnsService} from "../../state/wp-table-columns.service";
|
|
import {QueryColumn} from "../../../api/api-v3/hal-resources/query-resource.service";
|
|
import {checkedClassName} from "../ui-state-link-builder";
|
|
import {rowId} from "../../helpers/wp-table-row-helpers";
|
|
import {Observable} from "rxjs";
|
|
import {WorkPackageTable} from "../../wp-fast-table";
|
|
import {queryColumnTypes} from '../../../wp-query/query-column';
|
|
import {RelationCellbuilder} from '../relation-cell-builder';
|
|
|
|
// Work package table row entries
|
|
export const rowClassName = 'wp-table--row';
|
|
// Class name for both table and timeline rows
|
|
export const commonRowClassName = 'wp--row';
|
|
|
|
export const internalDetailsColumn = {
|
|
id: '__internal-detailsLink'
|
|
} as QueryColumn;
|
|
|
|
export class SingleRowBuilder {
|
|
// Injections
|
|
public wpTableSelection:WorkPackageTableSelection;
|
|
public wpTableColumns:WorkPackageTableColumnsService;
|
|
public I18n:op.I18n;
|
|
|
|
// Cell builder instance
|
|
protected cellBuilder = new CellBuilder();
|
|
// Relation cell builder instance
|
|
protected relationCellBuilder = new RelationCellbuilder();
|
|
|
|
// Details Link builder
|
|
protected detailsLinkBuilder = new DetailsLinkBuilder();
|
|
|
|
constructor(protected workPackageTable:WorkPackageTable) {
|
|
$injectFields(this, 'wpTableSelection', 'wpTableColumns', 'I18n');
|
|
}
|
|
|
|
/**
|
|
* Returns the current set of columns
|
|
*/
|
|
public get columns():QueryColumn[] {
|
|
return this.wpTableColumns.getColumns();
|
|
}
|
|
|
|
/**
|
|
* Returns the current set of columns, augmented by the internal columns
|
|
* we add for buttons and timeline.
|
|
*/
|
|
public get augmentedColumns():QueryColumn[] {
|
|
return this.columns.concat(internalDetailsColumn);
|
|
}
|
|
|
|
public buildCell(workPackage:WorkPackageResourceInterface, column:QueryColumn):HTMLElement {
|
|
|
|
// handle relation types
|
|
const relationTypes = [queryColumnTypes.RELATION_TO_TYPE, queryColumnTypes.RELATION_OF_TYPE];
|
|
if (relationTypes.indexOf(column._type) >= 0) {
|
|
return this.relationCellBuilder.build(workPackage, column);
|
|
}
|
|
|
|
// Handle property types
|
|
switch (column.id) {
|
|
case internalDetailsColumn.id:
|
|
return this.detailsLinkBuilder.build(workPackage);
|
|
default:
|
|
return this.cellBuilder.build(workPackage, column.id);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build the columns on the given empty row
|
|
*/
|
|
public buildEmpty(workPackage:WorkPackageResourceInterface):[HTMLElement,boolean] {
|
|
let row = this.createEmptyRow(workPackage);
|
|
let cell = null;
|
|
|
|
this.augmentedColumns.forEach((column:QueryColumn) => {
|
|
cell = this.buildCell(workPackage, column);
|
|
row.appendChild(cell);
|
|
});
|
|
|
|
// Set the row selection state
|
|
if (this.wpTableSelection.isSelected(<string>workPackage.id)) {
|
|
row.classList.add(checkedClassName);
|
|
}
|
|
|
|
return [row, false];
|
|
}
|
|
|
|
/**
|
|
* Create an empty unattached row element for the given work package
|
|
* @param workPackage
|
|
* @returns {any}
|
|
*/
|
|
public createEmptyRow(workPackage:WorkPackageResource) {
|
|
let tr = document.createElement('tr');
|
|
tr.id = rowId(workPackage.id);
|
|
tr.dataset['workPackageId'] = workPackage.id;
|
|
tr.classList.add(rowClassName, commonRowClassName, `${commonRowClassName}-${workPackage.id}`, 'issue');
|
|
|
|
return tr;
|
|
}
|
|
}
|
|
|