jsmind2.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. <template>
  2. <!-- 普通菜单 -->
  3. <div class="jsmind_layout">
  4. <div class="noMind" v-if="mindV">
  5. <span>暂无数据</span>
  6. </div>
  7. <div :id="jsmindId" ref="container" class="jsmind_container"></div>
  8. </div>
  9. </template>
  10. <script>
  11. import "jsmind/style/jsmind.css";
  12. import jsMind from "jsmind/js/jsmind.js";
  13. window.jsMind = jsMind;
  14. require("jsmind/js/jsmind.draggable.js");
  15. require("jsmind/js/jsmind.screenshot.js");
  16. export default {
  17. props: {
  18. showBar: {
  19. // 是否显示工具栏,显示启用编辑
  20. type: Boolean,
  21. default: true,
  22. },
  23. theme: {
  24. // 主题
  25. type: String,
  26. default: "primary",
  27. },
  28. lineColor: {
  29. // 线条颜色
  30. type: String,
  31. default: "skyblue",
  32. },
  33. mindData: {
  34. type: Object,
  35. default: {},
  36. },
  37. jsmindId: {
  38. type: String,
  39. default: "jsmind_container",
  40. },
  41. },
  42. data() {
  43. return {
  44. mindV: false,
  45. i: 0,
  46. mind: {},
  47. jm: null,
  48. isZoomIn: false,
  49. isZoomOut: false,
  50. level: 0,
  51. nodeOptions: [
  52. { value: 1, label: "展开到一级节点" },
  53. { value: 2, label: "展开到二级节点" },
  54. { value: 3, label: "展开到三级节点" },
  55. { value: 0, label: "展开全部节点" },
  56. { value: -1, label: "隐藏全部节点" },
  57. ],
  58. themeOptions: [
  59. { value: "default", label: "default" },
  60. { value: "primary", label: "primary" },
  61. { value: "warning", label: "warning" },
  62. { value: "danger", label: "danger" },
  63. { value: "success", label: "success" },
  64. { value: "info", label: "info" },
  65. { value: "greensea", label: "greensea" },
  66. { value: "nephrite", label: "nephrite" },
  67. { value: "belizehole", label: "belizehole" },
  68. { value: "wisteria", label: "wisteria" },
  69. { value: "asphalt", label: "asphalt" },
  70. { value: "orange", label: "orange" },
  71. { value: "pumpkin", label: "pumpkin" },
  72. { value: "pomegranate", label: "pomegranate" },
  73. { value: "clouds", label: "clouds" },
  74. { value: "asbestos", label: "asbestos" },
  75. ],
  76. localTheme: this.theme,
  77. dialogVisible: false,
  78. nodeOption: {
  79. content: "",
  80. bgColor: "",
  81. fontColor: "",
  82. fontSize: "",
  83. fontWeight: "",
  84. fontStyle: "",
  85. },
  86. };
  87. },
  88. watch: {
  89. mindData: {
  90. handler: function (cur, old) {
  91. console.log(cur.task);
  92. let data = this.setMindData(cur)
  93. this.mind = data;
  94. this.$forceUpdate()
  95. if (data.data.length) {
  96. if (data.data[0].topic === "" && data.data.length === 1) {
  97. this.mindV = true;
  98. } else {
  99. this.mindV = false;
  100. }
  101. setTimeout(() => {
  102. if (this.jm) {
  103. this.jm.show(this.mind);
  104. } else {
  105. this.open_empty();
  106. }
  107. }, 1000);
  108. }
  109. },
  110. deep: true, //对象内部的属性监听,也叫深度监听
  111. },
  112. },
  113. created() { },
  114. mounted() {
  115. this.getData();
  116. // this.mouseWheel();
  117. },
  118. methods: {
  119. refresh(){
  120. // console.log(cur.task);
  121. let data = this.setMindData(this.mindData)
  122. this.mind = data;
  123. this.$forceUpdate()
  124. if (data.data.length) {
  125. if (data.data[0].topic === "" && data.data.length === 1) {
  126. this.mindV = true;
  127. } else {
  128. this.mindV = false;
  129. }
  130. setTimeout(() => {
  131. if (this.jm) {
  132. this.jm.show(this.mind);
  133. } else {
  134. this.open_empty();
  135. }
  136. }, 1000);
  137. }
  138. },
  139. beforeUpload(file) {
  140. // 上传文件之前钩子
  141. if (file) {
  142. jsMind.util.file.read(file, (jsmindData) => {
  143. const mind = jsMind.util.json.string2json(jsmindData);
  144. if (mind) {
  145. this.jm.show(mind);
  146. this.$message({ type: "success", message: "打开成功" });
  147. } else {
  148. this.prompt_info("不能打开mindmap文件");
  149. }
  150. });
  151. } else {
  152. this.prompt_info("请先选择文件");
  153. return false;
  154. }
  155. },
  156. upload() { },
  157. getData() {
  158. // this.$API({
  159. // name: "getMind",
  160. // })
  161. // .then((res) => {
  162. // this.mind = res.data;
  163. // this.open_empty();
  164. // })
  165. // .catch((error) => {
  166. // this.$message.error(error);
  167. // });
  168. let data = this.setMindData(this.mindData)
  169. this.mind = data;
  170. // debugger
  171. this.$forceUpdate()
  172. if (data.data.length) {
  173. if (data.data[0].topic === "" && data.data.length === 1) {
  174. this.mindV = true;
  175. } else {
  176. this.mindV = false;
  177. }
  178. setTimeout(() => {
  179. if (this.jm) {
  180. this.jm.show(this.mind);
  181. } else {
  182. this.open_empty();
  183. }
  184. }, 1000);
  185. }
  186. },
  187. setMindData(json) {
  188. let data = {
  189. meta: {
  190. name: json.task,
  191. author: "dd@163.com",
  192. version: "0.2",
  193. },
  194. format: "node_array",
  195. data: []
  196. };
  197. data.data.push({ id: "root", isroot: true, topic: json.task });
  198. console.log(`111`, json.task);
  199. let elist = []
  200. let toolChoose = json.toolChoose;
  201. for (let i = 0; i < toolChoose.length; i++) {
  202. if(toolChoose[i].eList && toolChoose[i].eList.length){
  203. let list = toolChoose[i].eList.map(item=>{
  204. return {
  205. ...item,
  206. index: i
  207. }
  208. })
  209. elist.push(...list)
  210. }
  211. }
  212. if(elist.length){
  213. let listName = []
  214. for(var i = 0;i<elist.length;i++){
  215. let item = elist[i]
  216. if(listName.indexOf(item.target) == -1){
  217. listName.push(item.target)
  218. }
  219. }
  220. let _eJson = {}
  221. for(var i = 0;i<listName.length;i++){
  222. let listItem = listName[i]
  223. _eJson[listItem] = {
  224. child: {}
  225. }
  226. for(var j = 0;j<elist.length;j++){
  227. let item2 = elist[j]
  228. if(item2.target == listItem){
  229. if(_eJson[listItem].child[item2.detail]){
  230. if(_eJson[listItem].child[item2.detail].child.indexOf(item2.index) == -1){
  231. _eJson[listItem].child[item2.detail].child.push(item2.index)
  232. }
  233. }else{
  234. _eJson[listItem].child[item2.detail] = {
  235. child: [item2.index]
  236. }
  237. }
  238. }
  239. }
  240. }
  241. let _JsonName = Object.keys(_eJson)
  242. for(var i = 0;i<_JsonName.length;i++){
  243. let item = _eJson[_JsonName[i]]
  244. data.data.push({
  245. id: _JsonName[i],
  246. parentid: "root",
  247. topic: _JsonName[i],
  248. })
  249. let _eJsonz = Object.keys(item.child)
  250. let _e3 = item.child
  251. for(var j = 0;j<_eJsonz.length;j++){
  252. let item2 = _e3[_eJsonz[j]]
  253. data.data.push({
  254. id: _eJsonz[j],
  255. parentid: _JsonName[i],
  256. topic: _eJsonz[j],
  257. })
  258. // let _eJsonz2 = Object.keys(item2.child)
  259. let _e4 = item2.child
  260. // for(var z = 0;z<_eJsonz2.length;z++){
  261. // let item3 = _e4[_eJsonz2[z]]
  262. for(var zz = 0;zz<_e4.length;zz++){
  263. data.data.push({
  264. // id: `${_eJsonz[j]}-${_eJsonz2[z]}-${zz}`,
  265. id: `${_eJsonz[j]}-${zz}`,
  266. parentid: _eJsonz[j],
  267. topic: `工具${_e4[zz] + 1}`,
  268. })
  269. }
  270. // }
  271. }
  272. }
  273. }
  274. console.log(json.task, data);
  275. return data
  276. },
  277. open_empty() {
  278. const options = {
  279. container: this.jsmindId, // 必选,容器ID
  280. editable: this.showBar, // 可选,是否启用编辑
  281. theme: this.localTheme, // 可选,主题
  282. view: {
  283. line_width: 2, // 思维导图线条的粗细
  284. // line_color: this.lineColor, // 思维导图线条的颜色
  285. },
  286. shortcut: {
  287. enable: true, // 禁用快捷键
  288. },
  289. layout: {
  290. hspace: 20, // 节点之间的水平间距
  291. vspace: 10, // 节点之间的垂直间距
  292. pspace: 13, // 节点与连接线之间的水平间距(用于容纳节点收缩/展开控制器)
  293. },
  294. mode: "side", // 显示模式,子节点只分布在根节点右侧
  295. };
  296. this.jm = jsMind.show(options, this.mind);
  297. // 改变窗口大小重置画布
  298. window.onresize = () => {
  299. this.jm.resize();
  300. };
  301. this.getDepth(this.jm.mind.root, 1);
  302. this.$forceUpdate();
  303. setTimeout(()=>{
  304. this.jm.show(this.mind);
  305. },1000)
  306. },
  307. // 获取层级数 i
  308. getDepth(obj, k) {
  309. this.i = Math.max(this.i, k);
  310. if (obj.children) {
  311. obj.children.forEach((v) => {
  312. this.getDepth(v, k + 1);
  313. });
  314. }
  315. },
  316. save_nodearray_file() {
  317. const mindData = this.jm.get_data("node_array");
  318. const mindName = mindData.meta.name;
  319. const mindStr = jsMind.util.json.json2string(mindData);
  320. jsMind.util.file.save(mindStr, "text/jsmind", mindName + ".jm");
  321. },
  322. screen_shot() {
  323. this.jm.screenshot.shootDownload();
  324. },
  325. expand_all() {
  326. this.jm.expand_all();
  327. },
  328. collapse_all() {
  329. this.jm.collapse_all();
  330. },
  331. expand_to_level(num) {
  332. switch (num) {
  333. case -1:
  334. this.collapse_all();
  335. break;
  336. case 0:
  337. this.expand_all();
  338. break;
  339. default:
  340. this.jm.expand_to_depth(num);
  341. break;
  342. }
  343. },
  344. zoomIn() {
  345. if (this.jm.view.zoomIn()) {
  346. this.isZoomOut = false;
  347. } else {
  348. this.isZoomIn = true;
  349. }
  350. },
  351. zoomOut() {
  352. // debugger;
  353. if (this.jm.view.zoomOut()) {
  354. this.isZoomIn = false;
  355. } else {
  356. this.isZoomOut = true;
  357. }
  358. },
  359. prompt_info(msg) {
  360. this.$message({ type: "warning", message: msg });
  361. },
  362. get_nodearray_data() {
  363. const mindData = this.jm.get_data("node_array");
  364. const mindString = jsMind.util.json.json2string(mindData);
  365. this.$message({ type: "info", message: mindString });
  366. },
  367. set_theme(themeName) {
  368. this.jm.set_theme(themeName);
  369. },
  370. scrollFunc(e) {
  371. e = e || window.event;
  372. if (e.wheelDelta) {
  373. if (e.wheelDelta > 0) {
  374. this.zoomIn();
  375. } else {
  376. this.zoomOut();
  377. }
  378. } else if (e.detail) {
  379. if (e.detail > 0) {
  380. this.zoomIn();
  381. } else {
  382. this.zoomOut();
  383. }
  384. }
  385. this.jm.resize();
  386. },
  387. // 鼠标滚轮放大缩小
  388. mouseWheel() {
  389. if (document.addEventListener) {
  390. document.addEventListener("domMouseScroll", this.scrollFunc, false);
  391. }
  392. this.$refs.container.onmousewheel = this.scrollFunc;
  393. },
  394. // 新增节点
  395. addNode() {
  396. let selectedNode = this.jm.get_selected_node();
  397. if (!selectedNode) {
  398. this.$message({ type: "warning", message: "请先选择一个节点!" });
  399. return;
  400. }
  401. let nodeid = jsMind.util.uuid.newid();
  402. let topic = "new Node";
  403. let newNode = this.jm.add_node(selectedNode, nodeid, topic);
  404. if (newNode) {
  405. this.jm.select_node(nodeid);
  406. this.jm.begin_edit(nodeid);
  407. this.getDepth(this.jm.mind.root, 1);
  408. }
  409. },
  410. // 新增兄弟节点
  411. addBrotherNode() {
  412. let selectedNode = this.jm.get_selected_node();
  413. if (!selectedNode) {
  414. this.$message({ type: "warning", message: "请先选择一个节点!" });
  415. return;
  416. } else if (selectedNode.isroot) {
  417. this.$message({
  418. type: "warning",
  419. message: "不能在根节点添加,请重新选择节点!",
  420. });
  421. return;
  422. }
  423. let nodeid = jsMind.util.uuid.newid();
  424. let topic = "new Node";
  425. let newNode = this.jm.insert_node_after(selectedNode, nodeid, topic);
  426. if (newNode) {
  427. this.jm.select_node(nodeid);
  428. this.jm.begin_edit(nodeid);
  429. }
  430. },
  431. // 获取选中标签的 ID
  432. get_selected_nodeid() {
  433. let selectedNode = this.jm.get_selected_node();
  434. if (selectedNode) {
  435. return selectedNode.id;
  436. } else {
  437. return null;
  438. }
  439. },
  440. // 删除节点
  441. removeNode() {
  442. let selectedId = this.get_selected_nodeid();
  443. if (!selectedId) {
  444. this.$message({
  445. type: "warning",
  446. message: "请先选择一个节点!",
  447. });
  448. return;
  449. }
  450. this.jm.remove_node(selectedId);
  451. this.i = 0;
  452. this.getDepth(this.jm.mind.root, 1);
  453. },
  454. // 编辑节点
  455. editNode() {
  456. let selectedId = this.get_selected_nodeid();
  457. if (!selectedId) {
  458. this.$message({ type: "warning", message: "请先选择一个节点!" });
  459. return;
  460. }
  461. let nodeObj = this.jm.get_node(selectedId);
  462. this.nodeOption.content = nodeObj.topic;
  463. this.nodeOption.bgColor = nodeObj.data["background-color"];
  464. this.nodeOption.fontColor = nodeObj.data["foreground-color"];
  465. this.nodeOption.fontSize = nodeObj.data["font-size"];
  466. this.nodeOption.fontWeight = nodeObj.data["font-weight"];
  467. this.nodeOption.fontStyle = nodeObj.data["font-style"];
  468. this.dialogVisible = true;
  469. },
  470. sureEditNode() {
  471. let selectedId = this.get_selected_nodeid();
  472. this.jm.update_node(selectedId, this.nodeOption.content);
  473. this.jm.set_node_font_style(
  474. selectedId,
  475. this.nodeOption.fontSize,
  476. this.nodeOption.fontWeight,
  477. this.nodeOption.fontStyle
  478. );
  479. this.jm.set_node_color(
  480. selectedId,
  481. this.nodeOption.bgColor,
  482. this.nodeOption.fontColor
  483. );
  484. this.nodeOption = {
  485. content: "",
  486. bgColor: "",
  487. fontColor: "",
  488. fontSize: "",
  489. fontWeight: "",
  490. fontStyle: "",
  491. };
  492. this.dialogVisible = false;
  493. },
  494. },
  495. beforeDestroy() {
  496. // document.removeEventListener("domMouseScroll", this.scrollFunc, false);
  497. },
  498. };
  499. </script>
  500. <style scoped>
  501. .jsmind_layout {
  502. display: flex;
  503. flex-direction: column;
  504. /* width: 700px; */
  505. height: calc(100%);
  506. /* height: 500px; */
  507. /* margin: 15px 5px 0 0; */
  508. /* background: #fff; */
  509. overflow: hidden;
  510. flex-shrink: 0;
  511. position: relative;
  512. width: 100%;
  513. width: 100%;
  514. background: #f1f1f1;
  515. border-radius: 5px;
  516. }
  517. .jsmind_title {
  518. position: absolute;
  519. top: 20px;
  520. left: 20px;
  521. font-size: 20px;
  522. color: #8d8d8d;
  523. }
  524. .noMind {
  525. /* position: absolute; */
  526. display: flex;
  527. justify-content: center;
  528. align-items: center;
  529. width: 100%;
  530. height: 200px;
  531. background: #fff;
  532. }
  533. .jsmind_layout .jsmind_toolbar {
  534. width: 100%;
  535. padding: 0 10px 10px 10px;
  536. height: auto;
  537. flex-shrink: 0;
  538. display: flex;
  539. align-items: center;
  540. flex-wrap: wrap;
  541. background-color: #f8f9fa;
  542. box-shadow: 0 0 4px #b8b8b8;
  543. }
  544. .jsmind_layout>>>.el-button--medium,
  545. .jsmind_layout>>>.el-input--medium {
  546. margin-top: 10px;
  547. }
  548. .jsmind_layout #jsmind_container {
  549. /* flex: 1 1 auto; */
  550. height: 100%;
  551. }
  552. .jsmind_layout .jsmind_container {
  553. /* flex: 1 1 auto; */
  554. height: 100%;
  555. }
  556. .jsmind_layout>>>.jsmind-inner {
  557. /* overflow: hidden auto !important; */
  558. /* height: auto; */
  559. }
  560. .jsmind_layout>>>.el-upload-list {
  561. display: none !important;
  562. }
  563. /* 隐藏滚动条 */
  564. .jsmind_layout .jsmind-inner::-webkit-scrollbar {
  565. display: none;
  566. }
  567. .jsmind_layout .pad {
  568. margin-right: 10px;
  569. }
  570. .jsmind_layout .pad-left {
  571. margin-left: 10px;
  572. }
  573. .jsmind_layout>>>jmnode {
  574. white-space: inherit;
  575. word-wrap: break-word;
  576. max-width: 500px;
  577. max-height: 75px;
  578. overflow: auto;
  579. }
  580. .jsmind_layout>>>jmnode::-webkit-scrollbar {
  581. /*滚动条整体样式*/
  582. width: 6px;
  583. /*高宽分别对应横竖滚动条的尺寸*/
  584. height: 6px;
  585. }
  586. /*定义滚动条轨道 内阴影+圆角*/
  587. .jsmind_layout>>>jmnode::-webkit-scrollbar-track {
  588. border-radius: 10px;
  589. background-color: rgba(0, 0, 0, 0.1);
  590. }
  591. /*定义滑块 内阴影+圆角*/
  592. .jsmind_layout>>>jmnode::-webkit-scrollbar-thumb {
  593. border-radius: 10px;
  594. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  595. background-color: rgba(0, 0, 0, 0.1);
  596. }
  597. .jsmind_layout>>>jmnode.selected {
  598. background-color: #b9b9b9;
  599. color: #fff;
  600. box-shadow: 2px 2px 8px #777;
  601. }
  602. .jsmind_layout>>>jmnode.selected {
  603. background-color: #b9b9b9;
  604. color: #fff;
  605. box-shadow: 2px 2px 8px #777;
  606. }
  607. .jsmind_layout>>>jmnode:hover {
  608. box-shadow: 2px 2px 8px #777;
  609. }
  610. .jsmind_layout .form-con {
  611. padding-top: 20px;
  612. }
  613. .jsmind_layout .ele-width {
  614. width: 96%;
  615. }
  616. </style>