|
@@ -1,13 +1,25 @@
|
|
|
import { useEditor } from "@/modules/editor";
|
|
|
import { Button, Dropdown } from "ant-design-vue";
|
|
|
-import { defineUI } from "queenjs";
|
|
|
-import { ShareBox } from "./ShareBox";
|
|
|
+import { defineUI, queenApi } from "queenjs";
|
|
|
+import { TipIcons } from "../../TipIcons";
|
|
|
import History from "../Toolbar/History";
|
|
|
-import { IconArrowUp } from "@/assets/icons";
|
|
|
+import { ShareBox } from "./ShareBox";
|
|
|
+import PreviewDesignModal from "./PreviewDesignModal";
|
|
|
|
|
|
export default defineUI({
|
|
|
setup() {
|
|
|
- const { store, actions, controls, jumpIndexHtml } = useEditor();
|
|
|
+ const editor = useEditor();
|
|
|
+ const { store, actions, controls, jumpIndexHtml } = editor;
|
|
|
+
|
|
|
+ function showPreviewModal() {
|
|
|
+ editor.showModal(
|
|
|
+ <PreviewDesignModal data={controls.pageCtrl.designData} />,
|
|
|
+ {
|
|
|
+ fullscreen: true,
|
|
|
+ closable: false,
|
|
|
+ }
|
|
|
+ );
|
|
|
+ }
|
|
|
|
|
|
return () => (
|
|
|
<div class="relative flex justify-between items-center">
|
|
@@ -37,18 +49,26 @@ export default defineUI({
|
|
|
</div>
|
|
|
</div>
|
|
|
<aside class="space-x-16px flex items-center">
|
|
|
- <IconArrowUp class="text-20px text-light-50 bg-dark-50 p-6px transform rotate-90 rounded cursor-pointer transition hover:opacity-80 !hidden" />
|
|
|
+ <TipIcons.Preview
|
|
|
+ class="text-20px text-light-50 bg-dark-50 p-6px transform rotate-90 rounded cursor-pointer transition hover:(!bg-dark-100)"
|
|
|
+ onClick={showPreviewModal}
|
|
|
+ />
|
|
|
{store.isEditPage && (
|
|
|
<Dropdown
|
|
|
overlay={<ShareBox />}
|
|
|
trigger="click"
|
|
|
placement="bottomRight"
|
|
|
>
|
|
|
- <Button class="text-12px">预览</Button>
|
|
|
+ <Button
|
|
|
+ type="default"
|
|
|
+ class="text-12px bg-dark-50 hover:(bg-dark-100 border-transparent text-light-50)"
|
|
|
+ >
|
|
|
+ 分享
|
|
|
+ </Button>
|
|
|
</Dropdown>
|
|
|
)}
|
|
|
<Button
|
|
|
- class="text-12px"
|
|
|
+ class="text-12px text-dark-500 hover:text-dark-500"
|
|
|
type="primary"
|
|
|
onClick={() => actions.saveDesign()}
|
|
|
>
|