gragh.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. import { Graph,Shape } from '@antv/x6';
  2. import { bindKey,myEvents } from './events';
  3. import { configOpt } from './toolConfig';
  4. const { line } = configOpt;
  5. export function myGraph (wrapper,mindmapData) {
  6. console.log(wrapper,'wrapperwrapper');
  7. const graph = new Graph({
  8. container: document.getElementById(wrapper),
  9. // width: $(window).width(),
  10. // height: $(window).height(),
  11. history:true,
  12. autoResize: true,
  13. background: {
  14. color: '#fff',
  15. },
  16. scroller: {
  17. enabled: true,
  18. pannable: true,
  19. minVisibleWidth: 50,
  20. minVisibleHeight: 50,
  21. },
  22. selecting: {
  23. enabled: true,
  24. showNodeSelectionBox: false,
  25. multiple: true
  26. },
  27. snapline: true, //对齐线
  28. // panning: { //画布拖动
  29. // enabled: true,
  30. // eventTypes: ['leftMouseDown', 'rightMouseDown', 'mouseWheel']
  31. // },
  32. clipboard: true,
  33. keyboard: {
  34. enabled: true,
  35. global: true,
  36. },//cv
  37. mousewheel:{
  38. enabled: true,
  39. modifiers:['ctrl','meta']
  40. }, //滚轮缩放
  41. grid: {
  42. size: 10, // 网格大小
  43. visible: false,
  44. },
  45. highlighting: {
  46. // 当链接桩可以被链接时,在链接桩外围渲染一个 2px 宽的红色矩形框
  47. magnetAvailable: {
  48. name: "stroke",
  49. args: {
  50. padding: 0.8,
  51. attrs: {
  52. "stroke-width": 2,
  53. stroke: "skyblue",
  54. },
  55. },
  56. },
  57. // 连线过程中,自动吸附到链接桩时被使用
  58. magnetAdsorbed: {
  59. name: "stroke",
  60. args: {
  61. padding: 0.8,
  62. attrs: {
  63. "stroke-width": 4,
  64. stroke: "skyblue",
  65. },
  66. },
  67. },
  68. },
  69. connecting: {
  70. snap: true,
  71. // 允许连接到空白位置
  72. allowBlank: true,
  73. // 不允许创建循环连线
  74. allowLoop: false,
  75. // 不允许在相同节点创建多条边
  76. // allowMulti: false,
  77. //不允许直接连接到节点
  78. allowNode: false,
  79. // 高亮
  80. highlight: true,
  81. connector: {
  82. name: 'normal',
  83. args: {
  84. padding:1
  85. }
  86. },
  87. connectionPoint: 'anchor',
  88. router: "manhattan",
  89. // 定义边样式
  90. createEdge() {
  91. return new Shape.Edge({
  92. attrs: {
  93. line: {
  94. stroke: line.color,
  95. strokeWidth: line.width,
  96. strokeDasharray: "",//虚线间隔
  97. sourceMarker: false,//起始箭头
  98. targetMarker: 'classic',//终止箭头
  99. },
  100. },
  101. zIndex: 0,
  102. })
  103. },
  104. },//连线
  105. resizing: {
  106. enabled: true,
  107. orthogonal: false,
  108. },
  109. scaling: {
  110. min: 0.5,
  111. max: 2
  112. },
  113. //小地图
  114. minimap: {
  115. enabled: true,
  116. container: document.getElementById("minimap"),
  117. }
  118. })
  119. /* 节点操作事件 */
  120. myEvents(graph,mindmapData);
  121. /* 键盘事件 */
  122. bindKey(graph);
  123. return graph;
  124. }