import {WorkPackageTable} from '../../../wp-fast-table'; import {WorkPackageTableRow} from '../../../wp-table.interfaces'; import {WorkPackageResourceInterface} from '../../../../api/api-v3/hal-resources/work-package-resource.service'; import {WorkPackageTableHierarchiesService} from '../../../state/wp-table-hierarchy.service'; import {$injectFields} from '../../../../angular/angular-injector-bridge.functions'; import {RowRefreshBuilder} from '../../rows/row-refresh-builder'; import {WorkPackageEditForm} from '../../../../wp-edit-form/work-package-edit-form'; import { collapsedGroupClass, hasChildrenInTable, hierarchyRootClass } from '../../../helpers/wp-table-hierarchy-helpers'; import {UiStateLinkBuilder} from '../../ui-state-link-builder'; import {QueryColumn} from '../../../../wp-query/query-column'; export const indicatorCollapsedClass = '-hierarchy-collapsed'; export const hierarchyCellClassName = 'wp-table--hierarchy-span'; export class SingleHierarchyRowBuilder extends RowRefreshBuilder { // Injected public wpTableHierarchies:WorkPackageTableHierarchiesService; public uiStateBuilder = new UiStateLinkBuilder(); public text:{ leaf:(level:number) => string; expanded:(level:number) => string; collapsed:(level:number) => string; }; constructor(protected workPackageTable: WorkPackageTable) { super(workPackageTable); $injectFields(this, 'wpTableHierarchies'); this.text = { leaf: (level:number) => this.I18n.t('js.work_packages.hierarchy.leaf', { level: level }), expanded: (level:number) => this.I18n.t('js.work_packages.hierarchy.children_expanded', { level: level }), collapsed: (level:number) => this.I18n.t('js.work_packages.hierarchy.children_collapsed', { level: level }), }; } /** * Refresh a single row after structural changes. * Remembers and re-adds the hierarchy indicator if neccessary. */ public refreshRow(row: WorkPackageTableRow, editForm: WorkPackageEditForm | undefined):[HTMLElement, boolean]|null { // Remove any old hierarchy const result = super.refreshRow(row, editForm); if (result !== null) { const [newRow, _hidden] = result; jQuery(newRow).find(`.wp-table--hierarchy-span`).remove(); this.appendHierarchyIndicator(row.object, newRow); } return result; } /** * Build the columns on the given empty row */ public buildEmpty(workPackage:WorkPackageResourceInterface):[HTMLElement, boolean] { let [element, hidden] = super.buildEmpty(workPackage); const state = this.wpTableHierarchies.currentState; workPackage.ancestors.forEach((ancestor:WorkPackageResourceInterface) => { element.classList.add(`__hierarchy-group-${ancestor.id}`); if (state.collapsed[ancestor.id]) { hidden = true; element.classList.add(collapsedGroupClass(ancestor.id)); } }); element.classList.add(`__hierarchy-root-${workPackage.id}`); this.appendHierarchyIndicator(workPackage, element); return [element, hidden]; } /** * Append an additional ancestor row that is not yet loaded */ public buildAncestorRow( ancestor:WorkPackageResourceInterface, ancestorGroups:string[], index:number):[HTMLElement, boolean] { const loadedRow = this.workPackageTable.rowIndex[ancestor.id]; if (loadedRow) { const [tr, hidden] = this.buildEmpty(loadedRow.object); tr.classList.add('wp-table--hierarchy-aditional-row'); return [tr, hidden]; } const tr = this.createEmptyRow(ancestor); const columns = this.wpTableColumns.getColumns(); tr.classList.add(`wp-table--hierarchy-aditional-row`, hierarchyRootClass(ancestor.id), ...ancestorGroups); // Set available information for ID and subject column // and print hierarchy indicator at subject field. columns.forEach((column:QueryColumn) => { const td = document.createElement('td'); if (column.id === 'subject') { const textNode = document.createTextNode(ancestor.name); td.appendChild(this.buildHierarchyIndicator(ancestor, null, index)); td.appendChild(textNode); } if (column.id === 'id') { const link = this.uiStateBuilder.linkToShow( ancestor.id, ancestor.subject, ancestor.id ); td.appendChild(link); td.classList.add('hierarchy-row--id-cell'); } tr.appendChild(td); }); // Append details icon const td = document.createElement('td'); tr.appendChild(td); return [tr, false]; } /** * Append to the row of hierarchy level a hierarchy indicator. * @param workPackage * @param row * @param level */ private appendHierarchyIndicator(workPackage:WorkPackageResourceInterface, row:HTMLElement, level?:number):void { const jRow = jQuery(row); const hierarchyElement = this.buildHierarchyIndicator(workPackage, jRow, level); jRow.find('td.subject') .addClass('-with-hierarchy') .prepend(hierarchyElement); } /** * Build the hierarchy indicator at the given indentation level. */ private buildHierarchyIndicator(workPackage:WorkPackageResourceInterface, jRow:JQuery|null, index:number|null = null):HTMLElement { const level = index === null ? workPackage.ancestors.length : index; const hierarchyIndicator = document.createElement('span'); const collapsed = this.wpTableHierarchies.collapsed(workPackage.id); const indicatorWidth = 25 + (20 * level) + 'px'; hierarchyIndicator.classList.add(hierarchyCellClassName); hierarchyIndicator.style.width = indicatorWidth; // Set the width of the container if (jRow != null) { jRow .find('td.subject .wp-table--cell-container') .css('width', `calc(100% - ${indicatorWidth})`) .css('display', 'inline-block'); } if (workPackage.$loaded && !hasChildrenInTable(workPackage, this.workPackageTable)) { hierarchyIndicator.innerHTML = ` ${this.text.leaf(level)} `; } else { const className = collapsed ? indicatorCollapsedClass : ''; hierarchyIndicator.innerHTML = ` ${this.text.expanded(level)} ${this.text.collapsed(level)} `; } return hierarchyIndicator; } } SingleHierarchyRowBuilder.$inject = ['states', 'I18n'];