|
@@ -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;
|