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/state/timeline-transformer.ts

28 lines
981 B

import { WorkPackageTableTimelineVisible } from './../../wp-table-timeline-visible';
import {States} from "../../../states.service";
import {timelineCellClassName, timelineCollapsedClassName} from "../../builders/timeline-cell-builder";
import {injectorBridge} from "../../../angular/angular-injector-bridge.functions";
import {WorkPackageTable} from "../../wp-fast-table";
export class TimelineTransformer {
public states:States;
constructor(table:WorkPackageTable) {
injectorBridge(this);
this.states.table.timelineVisible
.observeUntil(this.states.table.stopAllSubscriptions).subscribe((state:WorkPackageTableTimelineVisible) => {
this.renderVisibility(state.isVisible);
});
}
/**
* Update all currently visible rows to match the selection state.
*/
private renderVisibility(visible:boolean) {
jQuery(`.${timelineCellClassName}`).toggleClass(timelineCollapsedClassName, !visible);
}
}
TimelineTransformer.$inject = ['states'];