select.tsx 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. import { IconRotate , IconMove} from "@/assets/icons";
  2. import { css } from "@linaria/core";
  3. import { defineComponent, ref, nextTick, reactive, watch } from "vue";
  4. import { useEditor } from "../../../..";
  5. import { LiveToolbars } from "@/modules/editor/objects/Toolbars/liveTools";
  6. export const SelectTransfer = defineComponent({
  7. setup() {
  8. const editor = useEditor();
  9. const { controls, store } = editor;
  10. const { selectCtrl } = controls;
  11. const { transferStyle } = selectCtrl;
  12. const toolbarRef = ref<HTMLElement>();
  13. const state = reactive({
  14. toolbarW: 0,
  15. })
  16. watch(()=>[store.selectId, store.selected], ()=>{
  17. console.log("changing--")
  18. nextTick(()=>{
  19. nextTick(()=>{
  20. if (!toolbarRef.value) {
  21. return
  22. }
  23. const r = toolbarRef.value.getBoundingClientRect();
  24. state.toolbarW = r.width;
  25. })
  26. })
  27. })
  28. return () => {
  29. let comp: any = null;
  30. if (store.selected.length == 1) {
  31. comp = store.compMap[store.selected[0]];
  32. }
  33. const w :any = selectCtrl.objContainer.getBound();
  34. const isTextEdit = selectCtrl.gizmo.selected.length == 1 && selectCtrl.gizmo.selected[0].comp.compKey == "Text";
  35. let yTop = w?.y;
  36. if ( yTop < 0) {
  37. yTop = 0;
  38. }
  39. return (
  40. <div
  41. class={[
  42. "absolute transfer z-998",
  43. transferStyle.showGizmo && transferStyle.mode != 2 ? showgizmo : hideGizmo,
  44. ]}
  45. style={{
  46. top: transferStyle.baseCardTop
  47. }}
  48. >
  49. <div
  50. id= "toolbar"
  51. class={toolbarStyle}
  52. style={{
  53. top: yTop + "px",
  54. left: (w?.x + w?.width / 2.0 - state.toolbarW / 2.0) + "px",
  55. }}
  56. ref= {toolbarRef}
  57. >
  58. {
  59. LiveToolbars.map((item) => {
  60. return item.getVisible.call(editor, comp) ? (
  61. <item.component
  62. class="p-4px"
  63. value={item.getValue?.(comp)}
  64. onClick={() => item.onClick.call(editor, comp)}
  65. />
  66. ) : null;
  67. })
  68. }
  69. </div>
  70. <div
  71. class={["absolute", selctRectStyle]}
  72. id="movecenter"
  73. style={{
  74. width: transferStyle.width + "px",
  75. height: transferStyle.height + "px",
  76. transform: transferStyle.matrix,
  77. transformOrigin: `0 0`,
  78. }}
  79. >
  80. <div class={borderStyle} style={{ transform: transferStyle.matrixInvert, transformOrigin: `0 0`}} >
  81. <div class={borderContentStyle} style={{width: transferStyle.relWidth + "px", height: transferStyle.relHeight + "px"}}></div>
  82. </div>
  83. <>
  84. {
  85. !isTextEdit && <div
  86. class={[resizeStyle, scaleBottomRightStyle]}
  87. style={{ transform: transferStyle.matrixInvert }}
  88. id="scaleBottomright"
  89. />
  90. }
  91. {
  92. !isTextEdit && <div
  93. class={[resizeStyle, scaleBottomLeftStyle]}
  94. style={{ transform: transferStyle.matrixInvert }}
  95. id="scaleBottomleft"
  96. />
  97. }
  98. {
  99. !isTextEdit && <div
  100. class={[resizeStyle, scaleTopLeftStyle]}
  101. style={{ transform: transferStyle.matrixInvert }}
  102. id="scaleTopleft"
  103. />
  104. }
  105. {
  106. !isTextEdit && <div
  107. class={[resizeStyle, scaleTopRightStyle]}
  108. style={{ transform: transferStyle.matrixInvert }}
  109. id="scaleTopright"
  110. />
  111. }
  112. <div class={transformBtnsStyle} style={{ transform: transferStyle.matrixInvert }}>
  113. <div
  114. class={transBtnStyle}
  115. id="moveicon"
  116. >
  117. <IconMove />
  118. </div>
  119. <div
  120. class={transBtnStyle}
  121. id = "rotate"
  122. >
  123. <IconRotate />
  124. </div>
  125. </div>
  126. {transferStyle.showOrthScale && !isTextEdit && (
  127. <div
  128. class={[resizeHeightBtnCls, scaleTopCls]}
  129. style={{ transform: transferStyle.matrixInvert }}
  130. id="scaletop"
  131. />
  132. )}
  133. {transferStyle.showOrthScale && !isTextEdit && (
  134. <div
  135. class={[resizeHeightBtnCls, scaleBottomCls]}
  136. style={{ transform: transferStyle.matrixInvert }}
  137. id="scalebottom"
  138. />
  139. )}
  140. {transferStyle.showOrthScale && (
  141. <div
  142. class={[resizeWidthBtnCls, scaleRightCls]}
  143. style={{ transform: transferStyle.matrixInvert }}
  144. id="scaleright"
  145. />
  146. )}
  147. {transferStyle.showOrthScale && (
  148. <div
  149. class={[resizeWidthBtnCls, scaleLeftCls]}
  150. style={{ transform: transferStyle.matrixInvert }}
  151. id="scaleleft"
  152. />
  153. )}
  154. </>
  155. </div>
  156. </div>
  157. );
  158. };
  159. },
  160. });
  161. const selctRectStyle = css`
  162. pointer-events: none;
  163. `;
  164. const showgizmo = css`
  165. display: block;
  166. left: 0;
  167. top: 0;
  168. /* pointer-events: none; */
  169. `;
  170. const hideGizmo = css`
  171. display: none;
  172. `;
  173. const borderStyle = css`
  174. position: absolute;
  175. top: 0;
  176. left: 0;
  177. width: 100%;
  178. height: 100%;
  179. pointer-events: none;
  180. z-index: 999;
  181. `;
  182. const borderContentStyle = css`
  183. position: absolute;
  184. top: 0;
  185. left: 0;
  186. width: 100%;
  187. height: 100%;
  188. outline: 2px solid @inf-primary-color;
  189. `
  190. const resizeStyle = css`
  191. position: absolute;
  192. width: 10px;
  193. height: 10px;
  194. border-radius: 50%;
  195. background-color: #fff;
  196. z-index: 999;
  197. transform: translate(50%, 50%);
  198. pointer-events: auto;
  199. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
  200. cursor: nwse-resize;
  201. &:hover {
  202. border-color: @inf-primary-color;
  203. }
  204. `;
  205. const scaleBottomRightStyle = css`
  206. bottom: -8px;
  207. right: -8px;
  208. `;
  209. const scaleBottomLeftStyle = css`
  210. bottom: -8px;
  211. left: -8px;
  212. `;
  213. const scaleTopLeftStyle = css`
  214. top: -8px;
  215. left: -8px;
  216. `;
  217. const scaleTopRightStyle = css`
  218. top: -8px;
  219. right: -8px;
  220. `;
  221. const transformBtnsStyle = css`
  222. @apply space-x-10px whitespace-nowrap;
  223. position: absolute;
  224. bottom: 0px;
  225. left:calc(50% - 32px);
  226. font-size: 16px;
  227. z-index: 999;
  228. pointer-events: auto;
  229. transform-origin: 50% 100%;
  230. pointer-events: none;
  231. `;
  232. const transBtnStyle = css`
  233. display: inline-block;
  234. width: 28px;
  235. height: 28px;
  236. border-radius: 50%;
  237. background-color: #fff;
  238. text-align: center;
  239. line-height: 28px;
  240. font-size: 16px;
  241. color: #333;
  242. position: relative;
  243. top: 50px;
  244. @apply shadow cursor-move;
  245. pointer-events: auto;
  246. &:hover {
  247. color: #fff;
  248. background-color: @inf-primary-color;
  249. }
  250. `;
  251. const toolbarStyle = css`
  252. @apply bg-white shadow rounded space-x-4px p-4px whitespace-nowrap;
  253. position: absolute;
  254. top: 0;
  255. left: 50%;
  256. transform: translate(0%, -45px);
  257. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  258. z-index: 999;
  259. color: black;
  260. padding: 0 !important;
  261. display: flex;
  262. align-items: center;
  263. `;
  264. const resizeHeightBtnCls = css`
  265. position: absolute;
  266. width: 30px;
  267. height: 8px;
  268. border-radius: 4px;
  269. left: 50%;
  270. transform: translate(-50%, -4px);
  271. pointer-events: auto;
  272. cursor: ns-resize;
  273. background: rgba(255, 255, 255, 0.3);
  274. &:hover {
  275. background: @inf-primary-color;
  276. }
  277. @apply shadow;
  278. z-index: 999;
  279. `;
  280. const scaleTopCls = css`
  281. top: -4px;
  282. left: calc(50% - 15px);
  283. `;
  284. const scaleBottomCls = css`
  285. bottom:-4px;
  286. left: calc(50% - 15px);
  287. `;
  288. const resizeWidthBtnCls = css`
  289. position: absolute;
  290. width: 8px;
  291. height: 30px;
  292. border-radius: 4px;
  293. pointer-events: auto;
  294. cursor: ew-resize;
  295. background: rgba(255, 255, 255, 0.3);
  296. &:hover {
  297. background: @inf-primary-color;
  298. }
  299. @apply shadow;
  300. z-index: 999;
  301. `;
  302. const scaleRightCls = css`
  303. right: -4px;
  304. top: calc(50% - 15px);
  305. `;
  306. const scaleLeftCls = css`
  307. left: -4px;
  308. top: calc(50% - 15px);
  309. `;