OpenProject is the leading open source project management software.
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.
openproject/frontend/app/components/wp-fast-table/builders/rows/rows-builder.ts

45 lines
1.4 KiB

import {EditingRowBuilder} from './editing-row-builder';
import {States} from '../../../states.service';
import {SingleRowBuilder} from './single-row-builder';
import {WorkPackageTableColumnsService} from '../../state/wp-table-columns.service';
import {injectorBridge} from '../../../angular/angular-injector-bridge.functions';
import {WorkPackageTable} from '../../wp-fast-table';
import {WorkPackageTableRow} from '../../wp-table.interfaces';
export abstract class RowsBuilder {
public states:States;
8 years ago
protected rowBuilder:SingleRowBuilder;
protected editingRowBuilder;
constructor() {
this.rowBuilder = new SingleRowBuilder();
this.editingRowBuilder = new EditingRowBuilder();
}
/**
* Build all rows of the table.
*/
public abstract buildRows(table:WorkPackageTable):DocumentFragment;
/**
* Refresh a single row after structural changes.
* Will perform dirty checking for when a work package is currently being edited.
*/
public refreshRow(row:WorkPackageTableRow, table:WorkPackageTable):HTMLElement {
let editing = this.states.editing.get(row.workPackageId).getCurrentValue();
if (editing) {
return this.editingRowBuilder.refreshEditing(row, editing);
}
return this.buildEmptyRow(row, table);
}
/**
* Build an empty row for the given work package.
*/
protected abstract buildEmptyRow(row:WorkPackageTableRow, table:WorkPackageTable):HTMLElement;
}
RowsBuilder.$inject = ['states'];