web-xiangsonghua/dwt-circuit/webpack-circuit/src/pages/draw/config/sample-graphs.js

16 lines
23 KiB
JavaScript
Raw Normal View History

2024-12-23 15:13:57 +08:00
// demo 画板上的自带的示例图形 (类似 json 文件)
var App = App || {};
App.config = App.config || {};
(function () {
'use strict';
App.config.sampleGraphs = {
// credit goes to `http://www.continuitycentral.com/`
emergencyProcedure: '{"cells":[{"type":"standard.Polygon","position":{"x":435,"y":225.50000000000003},"size":{"width":160,"height":98.99999999999994},"angle":0,"id":"bbbd5104-4965-4b86-bcb1-1552bfbb04d6","z":88,"attrs":{"body":{"refPoints":"50,0 100,50 50,100 0,50","stroke":"#7c68fc","fill":"transparent","strokeDasharray":"0"},"label":{"fontSize":15,"fill":"#7c68fc","text":"Auto alarm\\nactivated?","fontFamily":"Roboto Condensed","fontWeight":"Normal","strokeWidth":0},"root":{"dataTooltipPosition":"left","dataTooltipPositionSelector":".joint-stencil"}}},{"type":"standard.Ellipse","position":{"x":475,"y":82},"size":{"width":80,"height":80},"angle":0,"id":"6374dec5-83d1-4e31-832a-ac24755672a2","z":89,"attrs":{"body":{"stroke":"#fe854f","fill":"transparent","width":50,"height":30,"strokeDasharray":"10,5"},"label":{"fontSize":16,"fill":"#fe854f","text":"Fire\\nIncident","fontFamily":"Roboto Condensed","fontWeight":"Bold","strokeWidth":0},"root":{"dataTooltipPosition":"left","dataTooltipPositionSelector":".joint-stencil"}}},{"type":"app.Link","router":{"name":"normal"},"connector":{"name":"rounded"},"source":{"id":"6374dec5-83d1-4e31-832a-ac24755672a2"},"target":{"id":"bbbd5104-4965-4b86-bcb1-1552bfbb04d6"},"id":"56dc6e7b-916d-42fa-8d5b-0942474383e5","z":90,"labels":[],"attrs":{"line":{"stroke":"#8f8f8f","strokeWidth":2},".connection":{"stroke":"#222138"},".marker-target":{"fill":"#222138"},".marker-source":{"fill":"#222138"}}},{"type":"standard.Ellipse","position":{"x":375,"y":260},"size":{"width":30,"height":30},"angle":0,"id":"064747aa-f153-43bd-af2d-76e5b9a63a8c","z":91,"attrs":{"body":{"stroke":"#7c68fc","fill":"transparent","width":50,"height":30,"strokeDasharray":"0"},"label":{"fontSize":11,"fill":"#7c68fc","text":"No","fontFamily":"Roboto Condensed","fontWeight":"Normal","strokeWidth":0},"root":{"dataTooltipPosition":"left","dataTooltipPositionSelector":".joint-stencil"}}},{"type":"app.Link","router":{"name":"normal"},"connector":{"name":"rounded"},"source":{"id":"bbbd5104-4965-4b86-bcb1-1552bfbb04d6"},"target":{"id":"064747aa-f153-43bd-af2d-76e5b9a63a8c"},"id":"4c3c6d56-4c5e-4def-93f7-953972f65086","z":92,"labels":[],"attrs":{"line":{"stroke":"#7c68fc","strokeWidth":2,"targetMarker":{"d":"M 0 0 0 0"}},".connection":{"stroke":"#222138"},".marker-target":{"fill":"#222138"},".marker-source":{"fill":"#222138"}}},{"type":"standard.Ellipse","position":{"x":500,"y":351},"size":{"width":30,"height":30},"angle":0,"id":"3fd6a2d5-959c-4124-aa18-cc9cdc33cd3a","z":94,"attrs":{"body":{"stroke":"#7c68fc","fill":"transparent","width":50,"height":30,"strokeDasharray":"0"},"label":{"fontSize":11,"fill":"#7c68fc","text":"Yes","fontFamily":"Roboto Condensed","fontWeight":"Normal","strokeWidth":0},"root":{"dataTooltipPosition":"left","dataTooltipPositionSelector":".joint-stencil"}}},{"type":"app.Link","router":{"name":"normal"},"connector":{"name":"rounded"},"source":{"id":"bbbd5104-4965-4b86-bcb1-1552bfbb04d6"},"target":{"id":"3fd6a2d5-959c-4124-aa18-cc9cdc33cd3a"},"id":"627c93be-f5f9-4a06-bf62-cfdc8eec3df2","z":95,"labels":[],"attrs":{"line":{"stroke":"#7c68fc","strokeWidth":2,"targetMarker":{"d":"M 0 0 0 0"}},".connection":{"stroke":"#222138"},".marker-target":{"fill":"#222138"},".marker-source":{"fill":"#222138"}}},{"type":"standard.Rectangle","position":{"x":660,"y":248},"size":{"width":90,"height":54},"angle":0,"id":"0619ff3d-7bb1-4d5f-94e3-2b359b545077","z":96,"attrs":{"body":{"stroke":"#fe854f","fill":"transparent","rx":2,"ry":2,"width":50,"height":30,"strokeDasharray":"10,5"},"label":{"fontSize":15,"fill":"#fe854f","text":"Activate\\nevacuation","fontFamily":"Roboto Condensed","fontWeight":"Normal","strokeWidth":0},"root":{"dataTooltipPosition":"left","dataTooltipPositionSelector":".joint-stencil"}}},{"type":"app.Link","router":{"name":"normal"},"connector":{"name":"rounded"},"source":{"id":"bbbd5104-4965-4b86-bcb1-1552bfbb04d6"},"target":{"id":"0619ff3d-7bb1-4d5f-94e3-2b359b545077"},"id":"bcaae721-b040-4916-815d-6abe67f9119f","z":98,"labels":[],"attrs":{"line":{"stroke":"#8f8f8f","strokeWidth":2},".connection":{"stroke
};
App.config.sampleGraphs = null;
})();