seeddms-code/views/bootstrap/class.WorkflowGraph.php

352 lines
9.9 KiB
PHP
Raw Normal View History

2013-01-24 10:35:33 +00:00
<?php
/**
* Implementation of WorkspaceMgr view
*
* @category DMS
* @package SeedDMS
2013-01-24 10:35:33 +00:00
* @license GPL 2
* @version @version@
* @author Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
/**
* Include parent class
*/
require_once("class.Bootstrap.php");
/**
* Class which outputs the html page for WorkspaceMgr view
*
* @category DMS
* @package SeedDMS
2013-01-24 10:35:33 +00:00
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
class SeedDMS_View_WorkflowGraph extends SeedDMS_Bootstrap_Style {
2013-01-24 10:35:33 +00:00
function js() { /* {{{ */
$this->workflow = $this->params['workflow'];
$this->curtransitions = $this->params['transitions'];
header('Content-Type: application/javascript; charset=UTF-8');
2016-08-31 06:44:45 +00:00
$renderdata = '';
?>
2016-08-31 06:44:45 +00:00
var cy = cytoscape({
container: document.getElementById('canvas'),
style: [
{
selector: 'node',
style: {
'content': 'data(name)',
'height': 40,
'width': 40,
'text-valign': 'top',
'text-halign': 'center',
2016-08-31 06:44:45 +00:00
// 'color': '#fff',
'background-color': '#11479e',
// 'text-outline-color': '#11479e',
// 'text-outline-width': '3px',
// 'font-size': '10px',
'text-wrap': 'wrap'
}
},
{
selector: 'node.action',
style: {
'shape': 'roundrectangle',
2016-08-31 06:44:45 +00:00
'height': 30,
'width': 30,
'background-color': '#91479e',
// 'text-outline-color': '#91479e'
}
},
{
selector: 'node.current',
style: {
'font-weight': 'bold',
}
},
{
selector: 'node.light',
style: {
'opacity': '0.3',
}
},
2016-08-31 06:44:45 +00:00
{
selector: 'node.init',
style: {
'background-color': '#ff9900',
// 'text-outline-color': '#b06000'
}
},
{
selector: 'node.released',
style: {
'background-color': '#00b000',
'text-valign': 'bottom',
'text-margin-y': '3px',
2016-08-31 06:44:45 +00:00
// 'text-outline-color': '#00b000'
}
},
{
selector: 'node.rejected',
style: {
'background-color': '#b00000',
'text-valign': 'bottom',
'text-margin-y': '3px',
2016-08-31 06:44:45 +00:00
// 'text-outline-color': '#b00000'
}
},
{
selector: 'edge',
style: {
'width': 4,
'curve-style': 'bezier',
'target-arrow-shape': 'triangle',
'line-color': '#9dbaea',
'target-arrow-color': '#9dbaea',
'curve-style': 'bezier'
}
},
{
selector: 'edge.light',
style: {
'opacity': '0.3',
}
}
]
2016-08-31 14:09:37 +00:00
});
2016-08-31 06:44:45 +00:00
2016-08-31 14:09:37 +00:00
cy.gridGuide({
discreteDrag: false,
guidelinesStyle: {
strokeStyle: "red"
}
});
2016-08-31 06:44:45 +00:00
cy.on('free', 'node', function(evt) {
$('#png').attr('src', cy.png({'full': true}));
});
cy.on('tap', 'node', function(evt) {
var node = evt.cyTarget;
var scratch = node.scratch('app');
2016-09-02 06:35:51 +00:00
if(typeof scratch !== 'undefined') {
noty({
text: (scratch.users ? '<p><?php printMLText('users'); ?>: ' + scratch.users + '</p>' : '') + (scratch.groups ? '<?php printMLText('groups'); ?>: ' + scratch.groups + '</p>' : ''),
type: 'information',
dismissQueue: true,
layout: 'topCenter',
theme: 'defaultTheme',
timeout: 4000,
killer: true,
});
2016-09-02 06:35:51 +00:00
}
});
cy.on('zoom', function(evt) {
$('#zoom button').text(Math.round(cy.zoom()*100)+'%');
});
2016-09-02 06:35:51 +00:00
<?php
$this->printGraph();
?>
cy.layout({ name: 'cose', ready: function() {$('#png').attr('src', cy.png({'full': true}))} });
2016-09-02 06:35:51 +00:00
cy.maxZoom(2.5);
cy.minZoom(0.4);
$('#zoom button').text(Math.round(cy.zoom()*100)+'%');
$(document).ready(function() {
$('body').on('click', '#setlayout', function(ev){
ev.preventDefault();
var element = $(this);
cy.layout({name: element.data('layout'), ready: function() {$('#png').attr('src', cy.png({'full': true}))}});
});
2016-09-02 06:35:51 +00:00
$('body').on('click', '#zoom button', function(ev){
cy.zoom(1);
cy.center();
});
});
<?php
} /* }}} */
2013-01-24 10:35:33 +00:00
function printGraph() { /* {{{ */
$transitions = $this->workflow->getTransitions();
if($transitions) {
2016-08-31 06:44:45 +00:00
$this->seentrans = array();
$this->states = array();
$this->actions = array();
2013-01-24 10:35:33 +00:00
foreach($transitions as $transition) {
$action = $transition->getAction();
$maxtime = $transition->getMaxTime();
$state = $transition->getState();
$nextstate = $transition->getNextState();
if(1 || !isset($this->actions[$action->getID()])) {
$iscurtransition = false;
if($this->curtransitions) {
foreach($this->curtransitions as $tr)
if($transition->getID() == $tr->getID())
$iscurtransition = true;
2013-01-24 10:35:33 +00:00
}
2013-01-24 10:35:33 +00:00
$this->actions[$action->getID()] = $action->getID();
$transusers = $transition->getUsers();
$unames = array();
foreach($transusers as $transuser) {
$unames[] = $transuser->getUser()->getFullName();
}
2016-08-31 06:44:45 +00:00
$transgroups = $transition->getGroups();
$gnames = array();
foreach($transgroups as $transgroup) {
$gnames[] = $transgroup->getGroup()->getName();
}
echo "cy.add({
data: {
id: 'A".$transition->getID()."-".$action->getID()."',
name: \"".str_replace('"', "\\\"", $action->getName())/*.($unames ? "\\n(".str_replace('"', "\\\"", implode(", ", $unames)).")" : '').($gnames ? "\\n(".str_replace('"', "\\\"", implode(", ", $gnames)).")" : '')*/."\"
2016-08-31 06:44:45 +00:00
},
classes: 'action".($iscurtransition ? " current" : ($this->curtransitions ? " light" : ""))."',
scratch: {
2016-08-31 13:41:52 +00:00
app: {groups: \"".str_replace('"', "\\\"", implode(", ", $gnames))."\", users: \"".str_replace('"', "\\\"", implode(", ", $unames))."\"}
}
2016-08-31 06:44:45 +00:00
});\n";
2013-01-24 10:35:33 +00:00
}
if(!isset($this->states[$state->getID()])) {
$this->states[$state->getID()] = $state;
$initstate = '';
if($state == $this->workflow->getInitState())
2016-08-31 06:44:45 +00:00
$initstate = getMLText('workflow_initstate');
echo "cy.add({
data: {
id: 'S".$state->getID()."',
name: \"".str_replace('"', "\\\"", $state->getName()/*."\\n".$initstate*/)."\"
2016-08-31 06:44:45 +00:00
},
classes: 'state ".($state == $this->workflow->getInitState() ? 'init' : '')."'
});\n";
2013-01-24 10:35:33 +00:00
}
if(!isset($this->states[$nextstate->getID()])) {
$this->states[$nextstate->getID()] = $nextstate;
2016-08-31 06:44:45 +00:00
$docstatus = $nextstate->getDocumentStatus();
echo "cy.add({
data: {
id: 'S".$nextstate->getID()."',
name: '".str_replace('"', "\\\"", $nextstate->getName())/*.($docstatus == S_RELEASED || $docstatus == S_REJECTED ? "\\n(".getOverallStatusText($docstatus).")" : '')*/."'
},
classes: 'state".($docstatus == S_RELEASED ? ' released' : ($docstatus == S_REJECTED ? ' rejected' : ''))."'
});\n";
2013-01-24 10:35:33 +00:00
}
2016-08-31 06:44:45 +00:00
2013-01-24 10:35:33 +00:00
}
foreach($transitions as $transition) {
if(!in_array($transition->getID(), $this->seentrans)) {
$state = $transition->getState();
$nextstate = $transition->getNextState();
$action = $transition->getAction();
$iscurtransition = false;
if($this->curtransitions) {
foreach($this->curtransitions as $tr)
if($transition->getID() == $tr->getID())
$iscurtransition = true;
}
2013-01-24 10:35:33 +00:00
2016-08-31 06:44:45 +00:00
echo "cy.add({
data: {
id: 'E1-".$transition->getID()."',
source: 'S".$state->getID()."',
target: 'A".$transition->getID()."-".$action->getID()."'
},
classes: '".($iscurtransition ? " current" : ($this->curtransitions ? " light" : ""))."',
2016-08-31 06:44:45 +00:00
});\n";
echo "cy.add({
data: {
id: 'E2-".$transition->getID()."',
source: 'A".$transition->getID()."-".$action->getID()."',
target: 'S".$nextstate->getID()."'
},
classes: '".($iscurtransition ? " current" : ($this->curtransitions ? " light" : ""))."',
2016-08-31 06:44:45 +00:00
});\n";
2013-01-24 10:35:33 +00:00
$this->seentrans[] = $transition->getID();
}
}
}
2016-08-31 06:44:45 +00:00
?>
<?php
2013-01-24 10:35:33 +00:00
} /* }}} */
function show() { /* {{{ */
$dms = $this->params['dms'];
$user = $this->params['user'];
$this->workflow = $this->params['workflow'];
$document = $this->params['document'];
if($document) {
$latestContent = $document->getLatestContent();
$this->wkflog = $latestContent->getWorkflowLog();
} else {
$this->wkflog = array();
}
$this->htmlAddHeader(
2016-08-31 06:44:45 +00:00
'<script type="text/javascript" src="../styles/bootstrap/cytoscape/cytoscape.min.js"></script>'."\n");
2016-08-31 14:09:37 +00:00
$this->htmlAddHeader(
'<script type="text/javascript" src="../styles/bootstrap/cytoscape/cytoscape-grid-guide.js"></script>'."\n");
$this->htmlAddHeader('
<style type="text/css">
body {padding: 0px;}
div.buttons {float: right; padding-left: 4px; height: 100px; width: 120px; margin-right: 5px;}
2016-09-02 06:35:51 +00:00
div.buttons button {margin: 3px; _float: right;}
div.buttons #zoom {margin: 3px; _float: right;}
#legend {display: inline-block; margin-left: 10px;}
#preview {height: 115px; background: #f5f5f5; border-top: 1px solid #e3e3e3;}
2016-08-31 13:28:04 +00:00
#preview img {float: left;border: 1px solid #bbb; background: #fff; min-height: 100px; height: 100px; _width: 100px; padding: 3px; margin: 3px;}
</style>
', 'css');
2013-01-24 10:35:33 +00:00
$this->htmlStartPage(getMLText("admin_tools"));
// $this->contentContainerStart();
?>
<div id="canvas" style="width: 100%; height:545px; _border: 1px solid #bbb;"></div>
<div id="preview">
<img id="png" />
<div id="legend">
<i class="icon-circle initstate"></i> <?php printMLText("workflow_initstate"); ?><br />
<i class="icon-circle released"></i> <?php echo getOverallStatusText(S_RELEASED); ?><br />
<i class="icon-circle rejected"></i> <?php echo getOverallStatusText(S_REJECTED); ?><br />
<i class="icon-circle in-workflow"></i> <?php echo getOverallStatusText(S_IN_WORKFLOW); ?><br />
<i class="icon-sign-blank workflow-action"></i> <?php echo printMLText('global_workflow_actions'); ?>
</div>
<div class="buttons">
<div id="zoom"><button class="btn btn-mini btn-default">Zoom</button></div>
<button class="btn btn-mini" id="setlayout" data-layout="cose"><?php printMLText('redraw'); ?></button>
</div>
</div>
2013-01-24 10:35:33 +00:00
<?php
// $this->contentContainerEnd();
if(method_exists($this, 'js'))
echo '<script src="../out/out.'.$this->params['class'].'.php?action=js&'.$_SERVER['QUERY_STRING'].'"></script>'."\n";
2013-01-24 10:35:33 +00:00
echo "</body>\n</html>\n";
} /* }}} */
}
?>