blob: 34295e5fde3fb415306770970da199fb06933555 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import MultiTableController from '../multi-table';
import ColumnDefinition from '../../utils/column-definition';
export default MultiTableController.extend({
breadcrumbs: [{
text: "All Vertices",
routeName: "dag.vertices",
}],
columns: ColumnDefinition.make([{
id: 'name',
headerTitle: 'Vertex Name',
contentPath: 'name',
cellComponentName: 'em-table-linked-cell',
getCellContent: function (row) {
return {
routeName: "vertex",
model: row.get("entityID"),
text: row.get("name")
};
}
},{
id: 'entityID',
headerTitle: 'Vertex Id',
contentPath: 'entityID'
},{
id: 'status',
headerTitle: 'Status',
contentPath: 'finalStatus',
cellComponentName: 'em-table-status-cell',
observePath: true
},{
id: 'progress',
headerTitle: 'Progress',
contentPath: 'progress',
cellComponentName: 'em-table-progress-cell',
observePath: true
},{
id: 'startTime',
headerTitle: 'Start Time',
contentPath: 'startTime',
cellComponentName: 'date-formatter',
},{
id: 'endTime',
headerTitle: 'End Time',
contentPath: 'endTime',
cellComponentName: 'date-formatter',
},{
id: 'duration',
headerTitle: 'Duration',
contentPath: 'duration',
cellDefinition: {
type: 'duration'
}
},{
id: 'firstTaskStartTime',
headerTitle: 'First Task Start Time',
contentPath: 'firstTaskStartTime',
cellComponentName: 'date-formatter',
},{
id: 'totalTasks',
headerTitle: 'Tasks',
contentPath: 'totalTasks',
},{
id: 'succeededTasks',
headerTitle: 'Succeeded Tasks',
contentPath: 'succeededTasks',
observePath: true
},{
id: 'runningTasks',
headerTitle: 'Running Tasks',
contentPath: 'runningTasks',
observePath: true
},{
id: 'pendingTasks',
headerTitle: 'Pending Tasks',
contentPath: 'pendingTasks',
observePath: true
},{
id: 'processorClassName',
headerTitle: 'Processor Class',
contentPath: 'processorClassName',
}]),
beforeSort: function (columnDefinition) {
if(this._super(columnDefinition)) {
if(this.get("polling.isReady")) {
let columnName = columnDefinition.get("headerTitle");
switch(columnDefinition.get("contentPath")) {
case "succeededTasks":
case "runningTasks":
case "pendingTasks":
this.send("openModal", {
title: "Cannot sort!",
content: `Sorting on ${columnName} is disabled for running DAGs while Auto Refresh is enabled!`
});
return false;
}
}
}
return true;
}
});