wfGroups.js 17 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
/**
*
*流程图分组
*/
function wfGroups(editorUi, container){
    this.editorUi = editorUi;
    this.container = container;

    this.rowGroups = [];
    this.colGroups = [];
    this.init();
}
/**
groups:[{
    type:'col' || 'row',
    position:{left:'',top:''},
    panelWidth:'',
    value:''
    ...
}]
 */
wfGroups.prototype.init = function(groupsParams){
    groupsParams = groupsParams || {};
    this.rowGroups = groupsParams.row || [];
    this.colGroups = groupsParams.col || [];
    if(this.rowGroups.length > 0 || this.colGroups.length > 0 ){
        this.refresh();
    }
}
/**
*
*/
wfGroups.prototype.refresh = function(modelChange){
    var graph = this.editorUi.editor.graph;
    var scale = graph.view.scale;
    var minimumGraphSize = graph.minimumGraphSize ;
    this.container.style.top = 0 + 'px';
    this.container.style.left = 0 + 'px';
    
    //mxClient.IS_TOUCH
    if(true){ 
        this.container.style.width = (minimumGraphSize?minimumGraphSize.width - 12:mxClient.cellMaxWidth)*scale + 'px';
        this.container.style.height = (minimumGraphSize?minimumGraphSize.height:mxClient.cellMaxHeight)*scale + 'px';
        if(mxClient.IS_READONLY_PAGE && mxClient.IS_FREE_WORKFLOW){
            if(this.colGroups.length == 0){
                this.container.style.width = mxClient.cellMaxWidth*scale + 'px';
            }
            if(this.rowGroups.length == 0){
                this.container.style.height = mxClient.cellMaxHeight*scale + 'px';
            }
        }
    }else{
        this.container.style.width = mxClient.cellMaxWidth*scale + 'px';
        this.container.style.height = mxClient.cellMaxHeight*scale + 'px';
    }
    this.container.innerHTML = '';
    this.paintGroups();
    if(!modelChange){
        graph.graphModelChanged([]);
    }
}
/**
*添加横向分组
 */
wfGroups.prototype.addRowGroup = function(rowObj){
    var newTopPosition = 0;
    for(var i = 0 ; i < this.rowGroups.length ; ++i){
        if(this.rowGroups[i].position.top && this.rowGroups[i].position.top > newTopPosition){
            newTopPosition = this.rowGroups[i].position.top;
        }
    }
    newTopPosition += 180;
    rowObj['position']['top'] = newTopPosition;
    this.rowGroups.push(rowObj);
    this.refresh();
}
/**
*添加纵向分组
 */
wfGroups.prototype.addColGroup = function(colObj){
    var newLeftPosition = 0;
    for(var i = 0 ; i < this.colGroups.length ; ++i){
        if(this.colGroups[i].position.left && this.colGroups[i].position.left > newLeftPosition){
            newLeftPosition = this.colGroups[i].position.left;
        }
    }
    newLeftPosition += 180;
    colObj['position']['left'] = newLeftPosition;
    this.colGroups.push(colObj);
    this.refresh();
}
/**
*绘制分组
 */
wfGroups.prototype.paintGroups = function(){
    var diagramContainer = this.editorUi.diagramContainer;
    var wfNodeInfo = this.editorUi.wfNodeInfo;
    var wfPanelContainer = this.editorUi.wfPanelContainer;
    var graph = this.editorUi.editor.graph;
    var scale = graph.view.scale;
    var wfEditor = this.editorUi.wfEditor;
    var wfActionsHeight = wfEditor.container.clientHeight;
    var gridEnables = graph.isRuleEnabled(); //标尺
    var nodePanelHide = wfNodeInfo.nodePanelHide; //右侧信息栏 

    for(var i = 0 ; i < this.colGroups.length ; ++i){
        if(mxClient.IS_READONLY_PAGE && i == 0){
               var item ={
                    type:'col',
                    position:{left:0,top:0},
                    panelWidth:0,
                    value:''
                }
            
             var elt_F = this.createGroupElement(item);
             this.container.appendChild(elt_F);
        }
        var elt = this.createGroupElement(this.colGroups[i],i);
        var groupPanel = this.createGroupPanelElement(this.colGroups[i],i);
        this.container.appendChild(groupPanel);
        this.container.appendChild(elt);
    }
    var panelWidth = 0;
    for(var i = 0 ; i < this.rowGroups.length ; ++i){
        var rowItem = this.rowGroups[i];
        panelWidth += rowItem.panelWidth;
    }
    for(var i = 0 ; i < this.rowGroups.length ; ++i){
         if(mxClient.IS_READONLY_PAGE && i == 0){
            var item ={
                type:'row',
                position:{left:0,top:0},
                panelWidth:0,
                value:''
            }
             var elt_F = this.createGroupElement(item);
             this.container.appendChild(elt_F);
        }
        var elt = this.createGroupElement(this.rowGroups[i],i);
        var groupPanel = this.createGroupPanelElement(this.rowGroups[i],i, panelWidth);
        this.container.appendChild(groupPanel);
        this.container.appendChild(elt);
    }
    // 控制横纵向分组始终在视图可见区域
    
    jQuery('.geDiagramContainer').bind('scroll',function(e){
        jQuery('#row-group-panel-area').css('top',jQuery('.geDiagramContainer').scrollTop() / scale);
        jQuery('#col-group-panel-area').css('left',jQuery('.geDiagramContainer').scrollLeft() / scale);
    })
    
}
/**
*创建分组元素
 */
wfGroups.prototype.createGroupElement = function(item,index){
    var graph = this.editorUi.editor.graph;
    var scale = graph.view.scale;
    if(item == null){
        return;
    }
    var element = document.createElement('p');
    item.type == 'col' ? element.className = 'workflow-col-group' : element.className = 'workflow-row-group';
    if(mxClient.IS_READONLY_PAGE){
        item.type == 'col' ? element.className = 'workflow-col-group-wfForm' : element.className = 'workflow-row-group-wfForm';
    }
    
    for(var key in item['position']){
        element.style[key] = item['position'][key]*scale + 'px';
    }
    if(!mxClient.IS_READONLY_PAGE){
        this.groupDragAction(element,item.type,index);
    }
    return element;
}
/**
*创建每个分组面板信息元素
*
*/
wfGroups.prototype.createGroupPanelElement = function(item,index, panelWidth){
    var graph = this.editorUi.editor.graph;
    var scale = graph.view.scale;
    if(item == null){
        return;
    }
    var groupArea,groupItem;
    if(item.type == 'row'){
        if(document.getElementById('col-group-panel-area')){
            groupArea = document.getElementById('col-group-panel-area');
        }else{
            groupArea = document.createElement('div');
            groupArea.id = 'col-group-panel-area';
        }
        // groupArea.style.height = (25*scale) + 'px';
        graph.minimumGraphSize ? groupArea.style.width = graph.minimumGraphSize.height + 'px' : '';
    }else{
        if(document.getElementById('row-group-panel-area')){
            groupArea = document.getElementById('row-group-panel-area');
        }else{
            groupArea = document.createElement('div');
            groupArea.id = 'row-group-panel-area';
        }
    }
    if(mxClient.IS_IE){
        groupArea.style.zIndex = 4;
    }
    //当前条件下svg部分zindex为2 避免绘制区域在分组之上的问题
    if(window.urlParams['isFromWfForm'] == 'true'){// || window.urlParams['backstageReadOnly'] == 'true'
        groupArea.style.zIndex = 3;
        groupArea.style.backgroundColor = '#f4f4f4';
        groupArea.style.border = '1px solid #ddd';
        // (mxClient.IS_IE || mxClient.IS_EDGE || mxClient.IS_IE11) ? 
        //  groupArea.style.width = (graph.minimumGraphSize ? graph.minimumGraphSize.width : mxClient.cellMaxWidth)+'px' :
         groupArea.style.width = panelWidth + 2 + 'px';
    }
    if(window.urlParams['backstageReadOnly'] == 'true'){
        groupArea.style.zIndex = 3;
        // (mxClient.IS_IE || mxClient.IS_EDGE || mxClient.IS_IE11 ) ? 
        //  groupArea.style.width = (graph.minimumGraphSize ? graph.minimumGraphSize.width : mxClient.cellMaxWidth)+'px' :
         groupArea.style.width = panelWidth + 2 + 'px';
    }

    groupArea.style.zoom = scale;
    groupItem = this.createGroupPanelItem(item,index,scale);
    groupArea.appendChild(groupItem);
    return groupArea;
}
/**
* icon : ↑-icon-coms-Reverse  ↓-icon-coms-positive-sequence  ←-icon-coms-Last-step  →-icon-coms-Next-step
* ×-anticon anticon-cross
*/
wfGroups.prototype.createGroupPanelItem = function(item,index,scale){
    var groupItem = document.createElement('div');
    var infoArea = document.createElement('div');
    var infoTextP= document.createElement('p');
    var actionArea = document.createElement('div');
    var inputName = document.createElement('input');
    inputName.className = 'group-item-input';
    inputName.classListIndex = index;
    var sb = this;
    inputName.onblur = function(e){
        this.style.display = 'none';
        e.target.previousSibling?e.target.previousSibling.style.display = 'block':'';
        var val = e.target.value;
        e.target.id = '';
        var nowIndex = Number(this.classListIndex);
        if(val.trim() == ''){
            wfModal.warning({
                title: wfGetLabel(131329, "信息确认"),
                content:wfGetLabel(390396, "分组名称不能为空"),
                okText: wfGetLabel(83446, "确定"),
                onOk:function(){
                    e.target.value = item.type=='col'?sb.colGroups[nowIndex].value : sb.rowGroups[nowIndex].value;
                },
            });
        }else{
            item.type=='col'?sb.colGroups[nowIndex].value = val:sb.rowGroups[nowIndex].value = val;
        }
        sb.refresh();
    }

    var actions = ['icon-coms-Last-step','icon-coms-Next-step','anticon anticon-cross'];
    for(var i = 0 ; i < actions.length;++i){
        var actionItem = document.createElement('span');
        actionItem.className = actions[i]+" action-item";
        actionItem = this.groupPanelActionEvent(actionItem,actions[i],index,item);
        actionArea.appendChild(actionItem);
    }

    groupItem.className = item.type+"-group-item";
    if(window.urlParams.isFromWfForm=='true' || window.urlParams.backstageReadOnly=='true'){
        groupItem.className = item.type+"-group-item-wfForm";
    }
    groupItem.style.width = (item.panelWidth || 150) + 'px';
    actionArea.className = 'group-item-action';
    infoArea.className = 'group-item-info';
    // infoArea.innerHTML = item.value;
    infoTextP.innerHTML = item.value;
    inputName.value = item.value;

    if(scale<1){
        actionArea.style.transform = "scale("+scale+")";
        actionArea.style.transformOrigin = "center top";
        actionArea.style.msTransform = "scale("+scale+")";
        actionArea.style.msTransformOrigin = "center top";
        actionArea.style.position = 'absolute';
        actionArea.style.right = '0';

        infoArea.style.transform = "scale("+scale+")";
        infoArea.style.transformOrigin = "center top";
        infoArea.style.msTransform = "scale("+scale+")";
        infoArea.style.msTransformOrigin = "center top";
    }
    infoArea.title = item.value;
    if(!(window.urlParams.isFromWfForm=='true' || window.urlParams['backstageReadOnly']=='true')){
        infoArea.ondblclick = function(e){
            if(e.target.className == 'group-item-input'){
                return;
            }
            e.stopPropagation();
            e.target.style.display = 'none';
            var input = e.target.nextSibling;
            input.style.display = 'inline-block';
            input.focus();
            input.value = item.value;
            if(document.getElementById('groups-item-focused')){
                var itemFocused = document.getElementById('groups-item-focused');
                itemFocused.setAttribute('id','');
            }
            input.id = 'groups-item-focused';
        }
    }
    infoArea.appendChild(infoTextP);
    infoArea.appendChild(inputName);
    groupItem.appendChild(infoArea);
    groupItem.appendChild(actionArea);
    // groupItem.style.zoom = scale;
    // groupItem.style.transform = "scale("+scale+")";
    return groupItem;
}
/**
*分组事件 拖拽
*
 */
wfGroups.prototype.groupDragAction = function(element,direction,index){
    if(window.urlParams.isFromWfForm=='true' || window.urlParams.backstageReadOnly=='true'){
        return;
    }
	var mouseDownX,mouseDownY,initX,initY,flag = false;
    var sb = this;
	element.onmousedown = function(e) {
		e.stopPropagation();
		//鼠标按下时的鼠标所在的X,Y坐标
		mouseDownX = e.pageX;
		mouseDownY = e.pageY;
	
		//初始位置的X,Y 坐标
		initX = element.offsetLeft;
		initY = element.offsetTop;

		document.onmousemove = function(ev) {
            var graph = sb.editorUi.editor.graph;
            var scale = graph.view.scale;
			var groupMinWidth = 150*scale, groupMinHeight = 100*scale;
            
			var mouseMoveX = ev.pageX,mouseMoveY = ev.pageY;
            if(direction == 'col'){
                var left = parseInt(mouseMoveX) - parseInt(mouseDownX) + parseInt(initX);

                var _groups = sb.colGroups;
                var leftNum = left - sb.colGroups[index].position.left*scale;
                var numVal = _groups[index].panelWidth*scale + leftNum;
                numVal <= groupMinWidth ? leftNum = 0 : '';
                for(var i = 0 ; i < _groups.length;++i){
                    if(i>=index && _groups[i].type == 'col'){//在之后的分组位置需变化
                        _groups[i].position.left = _groups[i].position.left + (leftNum/scale);
                        i==index ? _groups[i].panelWidth = _groups[index].panelWidth + (leftNum/scale) : '';
                    }
                }
                sb.colGroups = _groups;
            }else{
                var top = parseInt(mouseMoveY) - parseInt(mouseDownY) + parseInt(initY);

                var _groups = sb.rowGroups;
                var topNum = top - sb.rowGroups[index].position.top*scale;
                var numVal = _groups[index].panelWidth*scale + topNum;
                numVal <= groupMinHeight ? topNum = 0 : '';
                for(var i = 0 ; i < _groups.length;++i){
                    if(i>=index && _groups[i].type == 'row'){
                        _groups[i].position.top = _groups[i].position.top + (topNum/scale);
                        i == index ? _groups[i].panelWidth = _groups[i].panelWidth + (topNum/scale) : '';
                    }
                }
                sb.rowGroups = _groups;
            }
            sb.refresh();
		}
	}
	document.onmouseup = function(e) {
		e.stopPropagation();
		//标识已松开鼠标
		document.onmousemove = null;
		// this.onmouseup = null;
	}
	
}
/**
*分组面板操作事件 <- -> ×
*
*/
wfGroups.prototype.groupPanelActionEvent = function(elt,item,groupIndex,groupItem){
    if(window.urlParams.isFromWfForm=='true' || window.urlParams.backstageReadOnly=='true'){
        return elt;
    }
    var sb = this;
    if(item.indexOf('Last') != -1){// 向前 <-
        elt.onclick = function(){
            var groupListInput = document.getElementById('groups-item-focused');
            groupListInput && groupListInput.blur();
            if(groupIndex == 0){ 
                return;
            }else{
                var _groups = groupItem.type=='col'?sb.colGroups:sb.rowGroups;
                _groups.splice(groupIndex,1);
                groupItem.type=='col'?groupItem.position.left -= _groups[groupIndex-1].panelWidth:
                                       groupItem.position.top -= _groups[groupIndex-1].panelWidth;
                
                _groups.splice(groupIndex-1,0,groupItem);
                groupItem.type=='col'?_groups[groupIndex].position.left += groupItem.panelWidth:
                                    _groups[groupIndex].position.top += groupItem.panelWidth;
                sb.refresh();
            }
        }
    }else if(item.indexOf('Next') != -1){//向后 ->
        elt.onclick = function(){
            var groupListInput = document.getElementById('groups-item-focused');
            groupListInput && groupListInput.blur();
            var _groups = groupItem.type=='col'?sb.colGroups:sb.rowGroups;
            if(groupIndex == _groups.length - 1){
                return;
            }else{
                _groups.splice(groupIndex,1);
                groupItem.type=='col'?groupItem.position.left += _groups[groupIndex].panelWidth:
                                    groupItem.position.top += _groups[groupIndex].panelWidth;
                _groups.splice(groupIndex+1,0,groupItem);
                groupItem.type=='col'?_groups[groupIndex].position.left -= groupItem.panelWidth:
                                    _groups[groupIndex].position.top -= groupItem.panelWidth;
                sb.refresh();
            }
        }
    }else{//删除 ×
        elt.onclick = function(){
            var groupListInput = document.getElementById('groups-item-focused');
            groupListInput && groupListInput.blur();
            var _groups = groupItem.type=='col'?sb.colGroups:sb.rowGroups;
            _groups.splice(groupIndex,1);
            for(var i = 0 ; i < _groups.length;++i){
                if(i>=groupIndex){
                    groupItem.type=='col'?_groups[i].position.left -= groupItem.panelWidth:
                                    _groups[i].position.top -= groupItem.panelWidth;
                    
                }
            }
            sb.refresh();
        }
    }
    return elt;
}
/**
 */
wfGroups.prototype.getGroupsValue = function(){
    return {row:this.rowGroups,col:this.colGroups};
}