edittext.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <template>
  2. <div class="edit-line">
  3. <!-- 所有按钮 -->
  4. <div class="btn-list">
  5. </div>
  6. <div class="content">
  7. <div class="left" id="left">
  8. <!-- <textarea name="" class="text" cols="30" rows="10"></textarea> -->
  9. <canvas id="edit_polygon" width="700" height="460" tabindex="0"/>
  10. </div>
  11. <div class="line-property">
  12. <el-card shadow="always">
  13. <div slot="header" class="clearfix">
  14. <span>属性修改</span>
  15. </div>
  16. <div class="always-item">
  17. <span>字号:</span>
  18. <el-input-number size="small" v-model="size" @change="updateSize" :min="1"
  19. :max="50"></el-input-number>
  20. </div>
  21. <div class="always-item">
  22. <span>文本框:</span>
  23. <el-input
  24. v-model="text"
  25. @change="handleChangeText"
  26. type="textarea"
  27. :autosize="{ minRows: 1, maxRows: 1}"
  28. placeholder="请输入内容"
  29. style="width:200px;"
  30. ></el-input>
  31. </div>
  32. <div class="always-item">
  33. <span>线颜色:</span>
  34. <el-color-picker v-model="color" @change="changeColor" show-alpha></el-color-picker>
  35. </div>
  36. </el-card>
  37. </div>
  38. </div>
  39. </div>
  40. </template>
  41. <script>
  42. import { SGraphMoveCommand, SGraphPropertyCommand, SGraphScene, SGraphView } from "@persagy-web/graph/";
  43. import { SUndoStack } from "@persagy-web/base/lib";
  44. import { SFont } from "@persagy-web/draw/lib";
  45. //注: 开发者引入 SImageItem 包为: import {SImageItem} from "@persagy-web/edit/";
  46. import { EditText } from "./../../../../../guides/edit/items/src/EditText";
  47. import { hexify } from "./../../../../public/until/rgbaUtil";
  48. class SScene extends SGraphScene {
  49. undoStack = new SUndoStack();
  50. textItem = new EditText(null);
  51. /**
  52. * 构造函数
  53. */
  54. constructor() {
  55. super();
  56. this.textItem.moveable = true;
  57. this.textItem.x = 100;
  58. this.textItem.y = 100;
  59. this.addItem(this.textItem);
  60. this.textItem.connect("onMove", this, this.onItemMove.bind(this));
  61. }
  62. updateText(str) {
  63. if (this.textItem.text !== str) {
  64. let old = this.textItem.text;
  65. this.textItem.text = str;
  66. this.undoStack.push(
  67. new SGraphPropertyCommand(this, this.textItem, "text", old, str)
  68. );
  69. }
  70. }
  71. updateColor(color) {
  72. if (this.textItem.color !== color) {
  73. let old = this.textItem.color;
  74. this.textItem.color = color;
  75. this.undoStack.push(
  76. new SGraphPropertyCommand(this, this.textItem, "color", old, color)
  77. );
  78. }
  79. }
  80. updateSize(size) {
  81. if (this.textItem.font.size !== size) {
  82. let old = new SFont(this.textItem.font);
  83. let font = new SFont(this.textItem.font);
  84. font.size = size;
  85. this.textItem.font = font;
  86. this.undoStack.push(
  87. new SGraphPropertyCommand(this, this.textItem, "font", old, font)
  88. );
  89. }
  90. }
  91. onItemMove(item, ...arg) {
  92. this.undoStack.push(
  93. new SGraphMoveCommand(this, item, arg[0][0], arg[0][1])
  94. );
  95. }
  96. }
  97. class TestView extends SGraphView {
  98. /**
  99. * 构造函数
  100. */
  101. constructor() {
  102. super("edit_polygon");
  103. }
  104. }
  105. export default {
  106. name: "edittext",
  107. data() {
  108. return {
  109. /** 命令所属的场景类 */
  110. scene: new SScene(),
  111. text: "测试文本",
  112. size: 20,
  113. color: "#333333"
  114. };
  115. },
  116. /**
  117. * 页面挂载
  118. */
  119. mounted() {
  120. let view = new TestView();
  121. this.scene.updateText(this.text);
  122. this.scene.updateColor(this.color);
  123. this.scene.updateSize(this.size);
  124. view.scene = this.scene;
  125. // this.scene.onMouseUp = this.onMouseUp;
  126. },
  127. methods: {
  128. handleChangeText(text) {
  129. this.scene.updateText(text);
  130. },
  131. handleChangeColor(color) {
  132. this.scene.updateColor(color);
  133. },
  134. updateSize(size) {
  135. this.scene.updateSize(size);
  136. },
  137. undo() {
  138. this.scene.undoStack.undo();
  139. },
  140. redo() {
  141. this.scene.undoStack.redo();
  142. },
  143. reset() {
  144. this.text = "测试文本";
  145. this.size = 20;
  146. this.color = "#333333";
  147. this.scene.updateText(this.text);
  148. this.scene.updateColor(this.color);
  149. this.scene.updateSize(this.size);
  150. },
  151. // 改变颜色
  152. changeColor(val) {
  153. this.scene.updateColor(hexify(val));
  154. },
  155. ///////////////////////////////////
  156. //// 以下为测试代码,请忽略
  157. // 设置tooltip位置
  158. /**
  159. * raduis 灵敏范围
  160. * e 鼠标事件对象
  161. * tipDom 浮动得dom
  162. * boxDom 最外层盒子
  163. * offset 偏移量
  164. */
  165. toolTipPosition(radius, e, tipDom, offset = 0) {
  166. // 滚动高度
  167. const screenTop =
  168. document.documentElement.scrollTop || document.body.scrollTop;
  169. const screenLeft =
  170. document.documentElement.scrollLeft || document.body.scrollLeft;
  171. radius = radius + offset;
  172. const mapBox = document.getElementById("edit_polygon");
  173. // 测试边界mousePosition = 1(右下) 2 (右上)3 (左上) 4 (左下)
  174. const mousePosition = this.Boxboundary(radius, e, mapBox);
  175. const absPosition = this.offsetTL(mapBox);
  176. const absPositionLeft = absPosition.left;
  177. const absPositionTop = absPosition.top;
  178. const mClientY = e.clientY + screenTop;
  179. const mClientX = e.clientX + screenLeft;
  180. const fuzzy_model_width = tipDom.offsetWidth;
  181. const fuzzy_model_height = tipDom.offsetHeight;
  182. // let offsetTL
  183. if (mousePosition == 2) {
  184. tipDom.style.left = `${mClientX - absPositionLeft + offset}px`;
  185. tipDom.style.top = `${mClientY -
  186. fuzzy_model_height -
  187. absPositionTop -
  188. offset}px`;
  189. } else if (mousePosition == 3) {
  190. tipDom.style.left = `${mClientX -
  191. fuzzy_model_width -
  192. absPositionLeft -
  193. offset}px`;
  194. tipDom.style.top = `${mClientY -
  195. fuzzy_model_height -
  196. absPositionTop -
  197. offset}px`;
  198. } else if (mousePosition == 4) {
  199. tipDom.style.left = `${mClientX -
  200. fuzzy_model_width -
  201. absPositionLeft -
  202. offset}px`;
  203. tipDom.style.top = `${mClientY - absPositionTop + offset}px`;
  204. } else {
  205. tipDom.style.left = `${mClientX - absPositionLeft + offset}px`;
  206. tipDom.style.top = `${mClientY - absPositionTop + offset}px`;
  207. }
  208. },
  209. Boxboundary(radius, event, box) {
  210. const screenTop =
  211. document.documentElement.scrollTop || document.body.scrollTop;
  212. const boxWidth = Number(box.style.width.slice(0, -2));
  213. const boxHeight = Number(box.style.height.slice(0, -2));
  214. const absPosition = this.offsetTL(box);
  215. const boxClientX = absPosition.left;
  216. const boxClientY = absPosition.top;
  217. const mouseX = event.clientX;
  218. const mouseY = event.clientY + screenTop;
  219. if (mouseY >= boxClientY + boxHeight - radius) {
  220. if (mouseX <= radius + boxClientX) {
  221. return 2;
  222. } else if (mouseX >= boxClientX + boxWidth - radius) {
  223. return 3;
  224. } else {
  225. return 2;
  226. }
  227. } else if (mouseX >= boxClientX + boxWidth - radius) {
  228. return 4;
  229. } else {
  230. return 1;
  231. }
  232. },
  233. offsetTL(obj) {
  234. //获取到body的offsetTop和offsetLeft
  235. var t = 0,
  236. l = 0;
  237. while (obj) {
  238. t = t + obj.offsetTop;
  239. l = l + obj.offsetLeft;
  240. obj = obj.offsetParent;
  241. }
  242. return {
  243. top: t,
  244. left: l
  245. };
  246. },
  247. /**
  248. * 鼠标抬起事件
  249. *
  250. * @param event 事件参数
  251. */
  252. onMouseUp(event) {
  253. const dom = "<textarea autofocus ref='textarea' class='text'></textarea>";
  254. let parentDom = document.getElementById("left");
  255. parentDom.innerHTML = parentDom.innerHTML + dom;
  256. const textareaDom = this.$refs.textarea;
  257. // console.log('textareaDom',parentDom.children[0])
  258. this.toolTipPosition(1, event, textareaDom, 0);
  259. }
  260. },
  261. watch: {
  262. // cmdStatus(val) {
  263. // this.scene.cmdStatus = val;
  264. // }
  265. }
  266. };
  267. </script>
  268. <style scoped lang="less">
  269. .text {
  270. overflow: auto;
  271. word-break: break-all;
  272. outline: none;
  273. // background: #409eff;
  274. position: absolute;
  275. left: 0;
  276. top: 0;
  277. }
  278. .edit-line {
  279. width: 100%;
  280. height: 500px;
  281. position: relative;
  282. .content {
  283. display: flex;
  284. justify-content: flex-start;
  285. .left {
  286. margin-right: 20px;
  287. }
  288. .line-property {
  289. width: 300px;
  290. margin-top: 20px;
  291. .always {
  292. width: 100%;
  293. height: 100%;
  294. }
  295. .always-item {
  296. display: flex;
  297. margin-top: 10px;
  298. justify-content: space-between;
  299. }
  300. }
  301. }
  302. .heightLight {
  303. color: #409eff;
  304. border-color: #c6e2ff;
  305. background-color: #ecf5ff;
  306. }
  307. }
  308. </style>