Как нарисовать блок-схему на JavaScript
А в этом нам поможет плагин jsPlumb, к Jquery. В использовании он весьма прост, достаточно подключить его после jquery, а так-же css стили идущие в комплекте к jsPlumb, для преобразования в слоев в визуально приятную форму. Далее в html, расставляем div с идентификаторами и текстом внутри. После чего, простейший вызов, даст соединенные между собой div, линиями.
$(«#block1»).jsplumb({target: ‘sblock2’});
Очень простой API можно почитать здесь. У меня например получилась очень красивая картинка, при рисовании схем «Бизнес процессов:
Использую сей плагин, при рисовании картинок из xml. Вот пример кода вывода картинки:
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 |
<?php // Данный код создан и распространяется по лицензии GPL v3 // Изначальный автор данного кода - Грибов Павел // http://грибовы.рф include_once ("../../../../config.php"); // загружаем первоначальные настройки // загружаем классы include_once("../../../../class/sql.php"); // загружаем классы работы с БД include_once("../../../../class/config.php"); // загружаем классы настроек include_once("../../../../class/users.php"); // загружаем классы работы с пользователями include_once("../../../../class/employees.php"); // загружаем классы работы с профилем пользователя include_once("../../../../class/bp.php"); // загружаем классы работы c "Бизнес процессами" // загружаем все что нужно для работы движка include_once("../../../../inc/connect.php"); // соеденяемся с БД, получаем $mysql_base_id include_once("../../../../inc/config.php"); // подгружаем настройки из БД, получаем заполненый класс $cfg include_once("../../../../inc/functions.php"); // загружаем функции include_once("../../../../inc/login.php"); // логинимся $bpid=_GET("bpid"); function plumb($t1,$t2,$a1,$a2,$title,$color){ echo 'jsPlumb.connect({ source:"'.$t1.'", target:"'.$t2.'", connector:["Flowchart", { curviness:70 }], anchors:["'.$a1.'", "'.$a2.'"], paintStyle:{ lineWidth:3, strokeStyle:"'.$color.'", outlineWidth:1, outlineColor:"#666" }, endpointStyle:{ fillStyle:"#a7b04b" }, overlays : [ ["Label", { cssClass:"l1 component label", label : "'.$title.'", location:0.1, id:"label" }], ["Arrow", { cssClass:"l1arrow", location:0.5, width:20,length:20 }] ] });'; }; echo '<div class="demo kitchensink-demo" id="kitchensink-demo">'; // читаем файл с БП и рисуем Ноды $bp=new Tbp; $bp->GetById($bpid); $xml = simplexml_load_file("../../../../modules/bp/$bp->xml"); //var_dump($xml); foreach($xml->step as $step){ $post=GetPostOrgByid($step->user); $color=''; if (($bp->node==$step->node) and ($bp->status!=2)){$color='background-color: chartreuse;';}; if (($step->node=="-1") and ($bp->status==2)){$color='background-color: chartreuse;';}; echo '<div style="'.$color.'height:'.$step->heigth.';width:'.$step->width.';top:'.$step->top.';left:'.$step->left.';" class="component window" id="window'.$step->node.'"><strong>'.$step->title.'('.$step->node.')</strong><br>'.$post.'<br><strong>'.$step->comment.'</strong></div> '; }; echo '</div>'; ?> <script> jQuery(function($) { jsPlumb.ready(function() { jsPlumb.deleteEveryEndpoint(); <?php foreach($xml->step as $step){ if ($step->accept!="") {plumb("window".$step->node,"window".$step->accept,"BottomCenter", "TopCenter","Утвердить",'#a7b04b');}; if ($step->cancel!="") {plumb("window".$step->node,"window".$step->cancel,"BottomLeft", "TopCenter","Отменить",'#f11515');}; if ($step->yes!="") {plumb("window".$step->node,"window".$step->yes,"BottomCenter", "TopCenter","Да",'#a7b04b');}; if ($step->no!="") {plumb("window".$step->node,"window".$step->no,"Left", "TopCenter","Нет",'#f11515');}; if ($step->thinking!="") {plumb("window".$step->node,"window".$step->thinking,"Left", "TopCenter","Доработать",'#c9b615');}; if ($step->one!="") {plumb("window".$step->node,"window".$step->one,"TopLeft", "TopCenter","1",'#2c2cde');}; if ($step->two!="") {plumb("window".$step->node,"window".$step->two,"TopRight", "TopCenter","2",'#2c2cde');}; if ($step->three!="") {plumb("window".$step->node,"window".$step->three,"BottomLeft", "TopCenter","3",'#2c2cde');}; if ($step->four!="") {plumb("window".$step->node,"window".$step->four,"BottomRight", "TopCenter","4",'#2c2cde');}; }; ?> jsPlumb.draggable(jsPlumb.getSelector(".window"), { containment:".demo"}); jsPlumb.repaintEverything(); }); }); </script> |
Вот файл xml:
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 |
<?xml version="1.0" encoding="UTF-8"?> <bp> <name>БП "Забраковка"</name> <step> <node>1</node> <title>Дополнительные сведения</title> <comment>В комментариях укажите причину отказа в сертификации</comment> <user>6</user> <accept>24</accept> <timer>1</timer> <top>0px</top> <left>0px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>24</node> <title>Продолжить работу с БП "Брак"?</title> <comment></comment> <user>3</user> <no>-1</no> <yes>25</yes> <timer>1</timer> <top>202px</top> <left>50px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>25</node> <title>Переместить ТМЦ</title> <comment>Переместить Брак на склад Брака</comment> <user>4</user> <accept>5</accept> <thinking>24</thinking> <timer>1</timer> <top>34px</top> <left>312px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>5</node> <title>Чей это брак?</title> <comment>1) Брак производства 2) Брак постащика</comment> <user>6</user> <one>7</one> <two>6</two> <thinking>24</thinking> <timer>1</timer> <top>235px</top> <left>398px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>6</node> <title>Что будем делать с браком? 1)Использовать невозможно 2)Использовать возможно с мероприятиями </title> <comment></comment> <user>6</user> <one>10</one> <two>9</two> <thinking>5</thinking> <timer>1</timer> <top>360px</top> <left>523px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>10</node> <title>Бухгалтерской службе необходимо переместить ТМЦ на склад невозвратного брака. Это сделано?</title> <comment></comment> <user>8</user> <yes>11</yes> <thinking>6</thinking> <timer>1</timer> <top>490px</top> <left>431px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>11</node> <title>Снабжению необходимо вернуть ТМЦ производителю. Это сделано?</title> <comment></comment> <user>5</user> <yes>-1</yes> <no>60</no> <thinking>10</thinking> <timer>14</timer> <top>650px</top> <left>455px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>9</node> <title>Будем делать вывод ТМЦ в годный ресурс? 1) До получения компенсации 2) После получения компенсации </title> <comment></comment> <user>3</user> <one>12</one> <two>14</two> <thinking>6</thinking> <timer>1</timer> <top>462px</top> <left>930px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>12</node> <title>ТМЦ переведено в годный ресурс?</title> <comment></comment> <user>6</user> <yes>13</yes> <no>6</no> <timer>5</timer> <top>592px</top> <left>750px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>13</node> <title>Компенсация от поставщика получена?</title> <comment></comment> <user>5</user> <yes>-1</yes> <no>60</no> <timer>14</timer> <top>1138px</top> <left>1013px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>14</node> <title>Компенсация от поставщика получена?</title> <comment></comment> <user>5</user> <yes>15</yes> <no>60</no> <timer>14</timer> <top>807px</top> <left>850px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>15</node> <title>ТМЦ переведен в годный ресурс?</title> <comment></comment> <user>6</user> <yes>-1</yes> <no>6</no> <timer>5</timer> <top>980px</top> <left>815px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>7</node> <title>Что будем делать с браком? 1) Использовать с мероприятиями (исправление) 2) Использовать невозможно</title> <comment></comment> <user>3</user> <one>17</one> <two>16</two> <thinking>5</thinking> <timer>1</timer> <top>106px</top> <left>610px</left> <width>200px</width> <heigth>100px</heigth> </step> <step> <node>17</node> <title>ТМЦ выведено (переведено) в годный ресурс?</title> <comment></comment> <user>6</user> <yes>18</yes> <no>7</no> <timer>5</timer> <top>71px</top> <left>1224px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>18</node> <title>Расчитать финансовые потери от переделки брака. Расчитано?</title> <comment></comment> <user>11</user> <yes>19</yes> <no>17</no> <timer>2</timer> <top>222px</top> <left>1297px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>19</node> <title>Финансовые потери компенсированы?</title> <comment></comment> <user>5</user> <yes>-1</yes> <no>18</no> <timer>14</timer> <top>414px</top> <left>1380px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>16</node> <title>Переместить брак на склад невозвратного брака. Перемещено?</title> <comment></comment> <user>8</user> <yes>20</yes> <no>7</no> <timer>1</timer> <top>230px</top> <left>980px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>20</node> <title>Списать по бухучету. Списано?</title> <comment></comment> <user>8</user> <yes>21</yes> <no>16</no> <timer>1</timer> <top>370px</top> <left>1137px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>21</node> <title>Посчитать потери предприятия. Посчитано?</title> <comment></comment> <user>11</user> <yes>22</yes> <no>20</no> <timer>2</timer> <top>622px</top> <left>1180px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>22</node> <title>Компенсировать затраты. Компенсировано??</title> <comment></comment> <user>5</user> <yes>23</yes> <no>21</no> <timer>14</timer> <top>790px</top> <left>1180px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>23</node> <title>Утилизировать ТМЦ. Утилизировано?</title> <comment></comment> <user>5</user> <yes>-1</yes> <no>22</no> <timer>14</timer> <top>950px</top> <left>1256px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>60</node> <title>БП зашел в тупик. Будем запускать новый цикл?</title> <comment></comment> <user>3</user> <no>-1</no> <yes>24</yes> <timer>1</timer> <top>1131px</top> <left>422px</left> <width>180px</width> <heigth>80px</heigth> </step> <step> <node>-1</node> <title>БП Завершен</title> <top>1010px</top> <left>146px</left> <width>80px</width> <heigth>40px</heigth> </step> </bp> |