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/handlers/cell/relations-cell-handler.ts

58 lines
2.0 KiB

import {debugLog} from '../../../../helpers/debug_output';
import {$injectFields} from '../../../angular/angular-injector-bridge.functions';
import {tableRowClassName} from '../../builders/rows/single-row-builder';
import {WorkPackageTable} from '../../wp-fast-table';
import {ClickOrEnterHandler} from '../click-or-enter-handler';
import {TableEventHandler} from '../table-handler-registry';
import {
relationCellIndicatorClassName,
relationCellTdClassName
} from '../../builders/relation-cell-builder';
import {WorkPackageTableRelationColumnsService} from '../../state/wp-table-relation-columns.service';
export class RelationsCellHandler extends ClickOrEnterHandler implements TableEventHandler {
// Injections
public wpTableRelationColumns:WorkPackageTableRelationColumnsService;
public get EVENT() {
return 'click.table.relationsCell, keydown.table.relationsCell';
}
public get SELECTOR() {
return `.${relationCellIndicatorClassName}`;
}
public eventScope(table:WorkPackageTable) {
return jQuery(table.container);
}
constructor(table:WorkPackageTable) {
super();
$injectFields(this, 'wpTableRelationColumns');
}
protected processEvent(table:WorkPackageTable, evt:JQueryEventObject):boolean {
debugLog('Handled click on relation cell %o', evt.target);
evt.preventDefault();
// Locate the relation td
const td = jQuery(evt.target).closest(`.${relationCellTdClassName}`);
const columnId = td.data('columnId');
// Locate the row
const rowElement = jQuery(evt.target).closest(`.${tableRowClassName}`);
const workPackageId = rowElement.data('workPackageId');
// Get any existing edit state for this work package
let state = this.wpTableRelationColumns.current;
// If currently expanded
if (state.getExpandFor(workPackageId) === columnId) {
this.wpTableRelationColumns.collapse(workPackageId);
} else {
this.wpTableRelationColumns.expandFor(workPackageId, columnId);
}
return false;
}
}