| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- window.renderCell = function(result, {col, row})
- {
- if(col.name == 'path')
- {
- result[0] = '';
- if(row.data.pathType == 'scmPath' && row.data.scmPath)
- {
- const colorStyle = row.data.scmPath.indexOf('http') === 0 ? "style='color:#2463c7;'" : '';
- let scmPathHtml = '';
- scmPathHtml += "<div><i class='icon icon-file-code' " + colorStyle + "title='" + scmPathTip + "'></i> ";
- scmPathHtml += "<span title='" + row.data.scmPath + "'>";
- scmPathHtml += colorStyle.length ? "<a target='_blank' " + colorStyle + " href='" + row.data.filePath + "'>" + row.data.scmPath + "</a>" : row.data.scmPath;
- scmPathHtml += '</span></div>';
- result[result.length] = {html: scmPathHtml};
- }
- if(row.data.pathType == 'filePath' && row.data.filePath)
- {
- const colorStyle = row.data.filePath.indexOf('http') === 0 ? "style='color:#2463c7;'" : '';
- let filePathHtml = '';
- filePathHtml += "<div><i class='icon icon-download' " + colorStyle + "title='" + filePathTip + "'></i> ";
- filePathHtml += "<span title='" + row.data.filePath + "'>";
- filePathHtml += colorStyle.length ? "<a target='_blank' " + colorStyle + " href='" + row.data.filePath + "'>" + row.data.filePath + "</a>" : row.data.filePath;
- filePathHtml += '</span></div>';
- result[result.length] = {html: filePathHtml};
- }
- return result;
- }
- if(col.name == 'name' && row.data.execution == 0)
- {
- result[0].props.className = 'overflow-hidden';
- result[result.length] = {html:'<span class="label gray-pale rounded-xl clip">' + integratedTip + '</span>', className:'flex items-end', style:{flexDirection:"column"}};
- return result;
- }
- if(col.name == 'executionName')
- {
- let executionHtml = "<span title='" + row.data.executionName + "'>" + row.data.executionName + '</span>';
- if(row.data.executionDeleted == 1) executionHtml += " <span class='label danger-pale'>" + deletedTip + '</span>';
- result[0] = {html: executionHtml};
- return result;
- }
- return result;
- }
- /**
- * Change product.
- *
- * @access public
- * @return void
- */
- window.changeProduct = function(e)
- {
- const link = changeProductLink.replace('{productID}', $(e.target).val());
- loadPage(link);
- }
- /**
- * 合并单元格。
- * cell span in the column.
- *
- * @param object cell
- * @access public
- * @return object
- */
- window.getCellSpan = function(cell)
- {
- if(['id', 'name', 'productName', 'branchName', 'system', 'builder', 'date', 'actions'].includes(cell.col.name) && cell.row.data.rowspan)
- {
- return {rowSpan: cell.row.data.rowspan};
- }
- if(cell.col.name == 'path' && cell.row.data.pathRowspan)
- {
- return {rowSpan: cell.row.data.pathRowspan};
- }
- if(cell.col.name == 'execution' && cell.row.data.executionRowspan)
- {
- return {rowSpan: cell.row.data.executionRowspan};
- }
- }
|