index.tsx 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. import { useEditor } from "@/modules/editor";
  2. import { DesignComp } from "@/modules/editor/objects/DesignTemp/DesignComp";
  3. import {
  4. TopToolbarsLeft,
  5. TopToolbarsRight,
  6. } from "@/modules/editor/objects/Toolbars/topToolbars";
  7. import { useLauncher } from "@/modules/launcher";
  8. import { css, cx } from "@linaria/core";
  9. import { IconPlus, IconReduce } from "@queenjs/icons";
  10. import { InputNumber } from "ant-design-vue";
  11. import { defineUI } from "queenjs";
  12. import { TipIcons } from "../../TipIcons";
  13. import { IconFit } from "@/assets/icons";
  14. import History from "./History";
  15. import SaveOrShare from "../Header/SaveOrShare";
  16. export default defineUI({
  17. setup() {
  18. const editor = useEditor();
  19. const { controls, store, actions, helper } = editor;
  20. const { editorCtrl } = controls;
  21. const launcher = useLauncher();
  22. return () => {
  23. const comp = helper.findComp(controls.selectCtrl.gizmo.selectedIds[0]);
  24. const toolsLeft = comp
  25. ? TopToolbarsLeft.filter((t) => t.getVisible.call(editor, comp))
  26. : [];
  27. const toolsRight = comp
  28. ? TopToolbarsRight.filter((t) => t.getVisible.call(editor, comp))
  29. : [];
  30. const scale = editorCtrl.state.scale;
  31. return (
  32. <div>
  33. {false && (
  34. <div
  35. id="toptoolbar"
  36. class={"p-10px h-50px flex items-center justify-between"}
  37. >
  38. <div class="flex-grow flex items-center">
  39. {toolsLeft.map((item) => {
  40. return (
  41. <item.component
  42. class="p-4px"
  43. value={item.getValue?.(comp as DesignComp)}
  44. onClick={() =>
  45. item.onClick.call(editor, comp as DesignComp)
  46. }
  47. />
  48. );
  49. })}
  50. </div>
  51. <div class="flex items-center">
  52. {toolsRight.map((item) => {
  53. return (
  54. <item.component
  55. class="p-4px"
  56. value={item.getValue?.(comp as DesignComp)}
  57. onClick={() =>
  58. item.onClick.call(editor, comp as DesignComp)
  59. }
  60. />
  61. );
  62. })}
  63. </div>
  64. </div>
  65. )}
  66. <div class={"p-10px h-55px flex items-center justify-between"}>
  67. <History class="ml-20px" />
  68. <SaveOrShare />
  69. </div>
  70. <div class="absolute bottom-30px right-20px flex items-center justify-center z-1000 space-x-10px">
  71. <div
  72. class={cx(group, "flex items-center p-4px rounded bg-[#262626]")}
  73. >
  74. <IconFit
  75. class="text-light-50 text-36px cursor-pointer rounded transition hover:bg-dark-800"
  76. onClick={() => editorCtrl.autoInScreen()}
  77. />
  78. <IconReduce
  79. class="text-light-50 text-36px cursor-pointer rounded transition hover:bg-dark-800"
  80. onClick={() => editorCtrl.clickChangeScale(scale - 0.1)}
  81. />
  82. <IconPlus
  83. class="text-light-50 text-36px cursor-pointer rounded transition hover:bg-dark-800"
  84. onClick={() => editorCtrl.clickChangeScale(scale + 0.1)}
  85. />
  86. <InputNumber
  87. min={0.5}
  88. max={2}
  89. bordered={false}
  90. controls={false}
  91. value={scale}
  92. class="!w-60px text-center !bg-[#303030] rounded"
  93. formatter={(v: any) => Math.floor(v * 100) + "%"}
  94. onPressEnter={(e: any) => {
  95. const newScale = e.target.value.split("%")[0] / 100;
  96. editorCtrl.clickChangeScale(newScale);
  97. }}
  98. />
  99. </div>
  100. {/* <TipIcons.Move
  101. class={cx(
  102. "p-10px rounded text-18px cursor-pointer transition hover:opacity-70",
  103. editorCtrl.state.moveMode
  104. ? "!text-orange bg-[#382916] !hover:(bg-[#382916])"
  105. : "!text-light-50 bg-[#262626] !hover:(bg-[#262626])"
  106. )}
  107. onClick={() => editorCtrl.moveEditor()}
  108. /> */}
  109. <TipIcons.QueenService
  110. class={bottomBtnStyles}
  111. onClick={() => {
  112. launcher.showModal(<launcher.components.Viewport />, {
  113. width: "400px",
  114. });
  115. }}
  116. />
  117. <TipIcons.Screenshot
  118. class={bottomBtnStyles}
  119. onClick={() => actions.updateThumbnailByScreenshot(true)}
  120. />
  121. </div>
  122. </div>
  123. );
  124. };
  125. },
  126. });
  127. const bottomBtnStyles = css`
  128. padding: 10px;
  129. border-radius: 50%;
  130. background-color: #333;
  131. @apply shadow;
  132. `;
  133. const group = css`
  134. .ant-input-number,
  135. .inficon {
  136. transition: all 0.3s ease-in-out;
  137. }
  138. .inficon {
  139. margin-right: -36px;
  140. line-height: 0;
  141. }
  142. .ant-input-number-input {
  143. height: 36px;
  144. line-height: 36px;
  145. text-align: center;
  146. }
  147. &:hover {
  148. .ant-input-number {
  149. margin-left: 10px;
  150. }
  151. .inficon {
  152. margin-right: 0;
  153. }
  154. }
  155. `;