bianjiang 1 ano atrás
pai
commit
89882adfeb

+ 1 - 1
src/comm/controllers/ProjectCtrl/index.ts

@@ -114,7 +114,7 @@ export class ProjectController extends Controller {
       );
       let data = {} as any;
       if (!text) {
-        data = { categories: ["64e4281a12c676099617ffc6"], title: "pc" };
+        data = { categories: ["64e4281a12c676099617ffc6"], title: "" };
       } else {
         data = JSON.parse(text);
       }

+ 7 - 0
src/modules/editor/components/Viewport/Header/SaveOrShare.tsx

@@ -53,6 +53,13 @@ export default defineUI({
         >
           保存
         </Button>
+        {/* <Button
+          type="default"
+          class="text-12px bg-dark-50 hover:(bg-dark-100 border-transparent text-light-50)"
+          onClick={()=>actions.publishDesign()}
+        >
+          发布
+        </Button> */}
       </aside>
     );
   },

+ 1 - 1
src/modules/editor/controllers/PageCtrl/index.ts

@@ -64,7 +64,7 @@ export class PageCtrl extends ModuleControl<EditorModule> {
     const out: any = {
       _id: this.designData._id,
       version: this.designData.version,
-
+      categories:this.designData.categories,
       title: this.designData.title,
       desc: this.designData.desc,
       pageStyle: this.designData.pageStyle,

+ 25 - 2
src/modules/editor/module/actions/edit.tsx

@@ -569,7 +569,11 @@ export const editActions = EditorModule.action({
   async removeStreamCard(compId: string) {
     const ctrl = this.controls.pageCtrl;
 
-    await queenApi.showConfirm({ title: "删除提示", content: "确认删除当前页面?" });
+    await queenApi.showConfirm({
+      title: "删除提示",
+      content: "确认删除当前页面?",
+      type: "danger",
+    });
 
     let nextCard = ctrl.currStreamCardId;
     if (compId == ctrl.currStreamCardId) {
@@ -705,6 +709,7 @@ export const editActions = EditorModule.action({
   },
   async saveDesignLocal() {
     const ctrl = this.controls.pageCtrl;
+
     const { deviceCtrl, prjCtrl } = useCtx();
     const ok = await deviceCtrl.WriteFileText(
       `${prjCtrl.RootDir}/queen5/project.queen5`,
@@ -743,7 +748,25 @@ export const editActions = EditorModule.action({
       queenApi.hideLoading();
     }
   },
-
+  //发布项目
+  async publishDesign() {
+    const ctrl = this.controls.pageCtrl;
+    if (!ctrl.designData.thumbnail) {
+      await this.actions.updateThumbnailByScreenshot();
+    }
+    // this.showModal()
+
+    // await this.controls.uploader.uploadBlobs(ctrl.designData);
+    // if (this.store.isWk) {
+    //   await this.https[this.store.isEditPage ? "saveWkDesign" : "saveComp"](
+    //     ctrl.toJson()
+    //   );
+    // } else {
+    //   await this.https[this.store.isEditPage ? "saveDesign" : "saveComp"](
+    //     ctrl.toJson()
+    //   );
+    // }
+  },
   // 设置组件变换
   setCompTransformMatrix(comp: DesignComp, transformMatrix: string) {
     if (!comp) return;

+ 9 - 4
src/modules/editor/objects/DesignTemp/index.ts

@@ -7,8 +7,12 @@ import { dataTransform as V102Upgrade } from "./versions/1.0.2";
 export type CardState = {
   id: string;
   size: [number, number];
-  children: {id:string, matrix: string, size: [number, number, { unit?: "px" | "%" }?]}[]
-}
+  children: {
+    id: string;
+    matrix: string;
+    size: [number, number, { unit?: "px" | "%" }?];
+  }[];
+};
 
 export class DesignTemp {
   version?: string;
@@ -18,13 +22,14 @@ export class DesignTemp {
   pageStyle?: any;
   content: string[] = ["root"]; //rootPcShort rootPcNormal rootPcLong rootMobShort rootMobLong
   thumbnail?: string;
+  categories: string[] = [];
   compMap: { [compId: string]: DesignComp } = {};
-  compScreenMap: {[Screen: string]: CardState[]} = {}
+  compScreenMap: { [Screen: string]: CardState[] } = {};
 
   constructor(data?: Partial<DesignTemp>) {
     if (!data) return;
 
-    const res = V101Upgrade(data)
+    const res = V101Upgrade(data);
     Object.assign(this, V102Upgrade(res));
     // 初始化DesignComp
     Object.entries(this.compMap).forEach(([key, value]) => {