|
@@ -1,5 +1,5 @@
|
|
|
import { useCtx } from "@/comm/ctx";
|
|
|
-import { pick } from "lodash";
|
|
|
+import { pick, set } from "lodash";
|
|
|
import { Exception, queenApi } from "queenjs";
|
|
|
import { EditorModule } from "..";
|
|
|
import { ScreenshotCtrl } from "../../controllers/ScreenshotCtrl";
|
|
@@ -8,6 +8,7 @@ import { Matrix } from "../../controllers/SelectCtrl/matrix";
|
|
|
import { DesignComp } from "../../objects/DesignTemp/DesignComp";
|
|
|
import { cloneObj, createObj, history } from "../../objects/DesignTemp/factory";
|
|
|
import { ICompKeys } from "../../typings";
|
|
|
+import { DesignTemp } from "../../objects/DesignTemp";
|
|
|
|
|
|
const ctrlState = {
|
|
|
selected: [] as string[],
|
|
@@ -725,6 +726,87 @@ export const editActions = EditorModule.action({
|
|
|
return Promise.reject("保存失败");
|
|
|
}
|
|
|
},
|
|
|
+ async publishDesign(data: DesignTemp) {
|
|
|
+ const publish = data;
|
|
|
+ await this.actions.uplodThumbnail(publish);
|
|
|
+ await this.actions.uploadLocalAssets(publish);
|
|
|
+ await this.https.createDesign(publish);
|
|
|
+ },
|
|
|
+ async uplodThumbnail(data: DesignTemp) {
|
|
|
+ if (!data.thumbnail) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (queenApi.isBlobURL(data.thumbnail)) {
|
|
|
+ queenApi.showLoading("封面上传中");
|
|
|
+ const blobUrl = data.thumbnail;
|
|
|
+ const file = queenApi.blobURLMaps.get(blobUrl);
|
|
|
+ const ret = await this.controls.uploader.uploadFile(
|
|
|
+ file,
|
|
|
+ "queenshow",
|
|
|
+ queenApi.getBlobURLExt(blobUrl)
|
|
|
+ );
|
|
|
+ if (ret.url) {
|
|
|
+ set(data, "thumbnail", ret.url);
|
|
|
+ this.controls.pageCtrl.setDesignThumbnail(ret.url);
|
|
|
+ URL.revokeObjectURL(blobUrl);
|
|
|
+ queenApi.blobURLMaps.delete(blobUrl);
|
|
|
+ }
|
|
|
+ queenApi.hideLoading();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async uploadLocalAssets(data: DesignTemp) {
|
|
|
+ const { prjCtrl } = useCtx();
|
|
|
+ const filesCache = this.store.filesCacheUrl;
|
|
|
+ const todoMap = new Map<string, string>();
|
|
|
+ const keys = Object.keys(data.compMap);
|
|
|
+ const compMap: any = {};
|
|
|
+ keys.forEach((k) => {
|
|
|
+ const compItem = data.compMap[k];
|
|
|
+ if (compItem.compKey == "Image" || compItem.compKey == "Video") {
|
|
|
+ const assetUrl = compItem.value.url;
|
|
|
+ const assetsName = assetUrl.replace(
|
|
|
+ /(.*\/)*((\S|\s)+\.*)(\?.*)?/g,
|
|
|
+ "$2"
|
|
|
+ );
|
|
|
+ const assetKey = assetsName.replace(/\s/g, "");
|
|
|
+ if (filesCache[assetKey]) {
|
|
|
+ compItem.value.url = filesCache[assetKey];
|
|
|
+ } else {
|
|
|
+ todoMap.set(k, prjCtrl.getHttpAbsoluteUri(compItem.value.url));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ compMap[k] = compItem.toJson?.();
|
|
|
+ });
|
|
|
+ let err = "";
|
|
|
+ const todoList = todoMap.entries();
|
|
|
+ const len = Array.from(todoMap.entries()).length;
|
|
|
+
|
|
|
+ if (len > 0) {
|
|
|
+ for (const item of todoList) {
|
|
|
+ const [key, url] = item;
|
|
|
+ const blob: any = await this.helper.urlToBlob(url);
|
|
|
+ let ext = "png";
|
|
|
+ if (blob.type) {
|
|
|
+ ext = blob.type.split("/").pop();
|
|
|
+ }
|
|
|
+ queenApi.showLoading("图片上传中");
|
|
|
+ const ret = await this.controls.uploader.uploadFile(
|
|
|
+ blob as Blob,
|
|
|
+ "queenshow",
|
|
|
+ ext
|
|
|
+ );
|
|
|
+ if (ret.url) {
|
|
|
+ compMap[key].value.url = ret.url;
|
|
|
+ } else {
|
|
|
+ err = ret.error || `上传图片失败[${url}]`;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ queenApi.hideLoading();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (err) throw err;
|
|
|
+ set(data, "compMap", compMap);
|
|
|
+ },
|
|
|
|
|
|
// 截屏保存封面
|
|
|
async updateThumbnailByScreenshot(autoSave?: boolean) {
|