microboard-ui-temp 0.0.46 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/customWebComponents.js +5 -7
- package/dist/index.js +15 -7
- package/package.json +2 -2
|
@@ -322,13 +322,11 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
322
322
|
const { boardsApi, createApp, api } = await import("https://www.unpkg.com/microboard-ui-temp/dist/index.js");
|
|
323
323
|
api.updateURL("https://dev-app.microboard.io/api/v1");
|
|
324
324
|
frontConf.wsURL = "wss://dev-app.microboard.io/ws";
|
|
325
|
-
const
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
await app.getBoard().deserializeHTMLAndEmit(htmlContent);
|
|
331
|
-
window.location.href = `https://dev-app.microboard.io/boards/${boardId}`;
|
|
325
|
+
const boardRes = await boardsApi.createBoard(boardName2, true);
|
|
326
|
+
const publishedSnapshot = await boardsApi.publishSnapshot(htmlContent, boardName2, boardRes.data.id);
|
|
327
|
+
console.log("boardid", boardRes);
|
|
328
|
+
console.log("snapshot pub", publishedSnapshot);
|
|
329
|
+
window.location.href = `https://dev-app.microboard.io/boards/${boardRes.data.id}`;
|
|
332
330
|
};
|
|
333
331
|
shareButton.onclick = handleShareBoard;
|
|
334
332
|
});
|
package/dist/index.js
CHANGED
|
@@ -215912,7 +215912,9 @@ var conf = {
|
|
|
215912
215912
|
FORCE_HOTKEYS: "auto",
|
|
215913
215913
|
debug: false,
|
|
215914
215914
|
FALLBACK_LNG: "en",
|
|
215915
|
-
cursorsMap
|
|
215915
|
+
cursorsMap,
|
|
215916
|
+
DECK_HORIZONTAL_OFFSET: 2,
|
|
215917
|
+
DECK_VERTICAL_OFFSET: 0
|
|
215916
215918
|
};
|
|
215917
215919
|
initDefaultI18N();
|
|
215918
215920
|
|
|
@@ -255896,6 +255898,9 @@ class Card extends BaseItem {
|
|
|
255896
255898
|
this.imageToRender = this.face;
|
|
255897
255899
|
}
|
|
255898
255900
|
}
|
|
255901
|
+
getImage() {
|
|
255902
|
+
return this.imageToRender;
|
|
255903
|
+
}
|
|
255899
255904
|
render(context, left, top) {
|
|
255900
255905
|
if (this.transformationRenderBlock) {
|
|
255901
255906
|
return;
|
|
@@ -255984,8 +255989,8 @@ class Deck extends BaseItem {
|
|
|
255984
255989
|
class: "Transformation",
|
|
255985
255990
|
method: "translateTo",
|
|
255986
255991
|
item: [this.id],
|
|
255987
|
-
x: this.left + (this.index?.list().length || 0) *
|
|
255988
|
-
y: this.top
|
|
255992
|
+
x: this.left + (this.index?.list().length || 0) * conf.DECK_HORIZONTAL_OFFSET,
|
|
255993
|
+
y: this.top - (this.index?.list().length || 0) * conf.DECK_VERTICAL_OFFSET
|
|
255989
255994
|
});
|
|
255990
255995
|
this.board.items.index.remove(foundItem);
|
|
255991
255996
|
foundItem.parent = this.getId();
|
|
@@ -256087,7 +256092,6 @@ class Deck extends BaseItem {
|
|
|
256087
256092
|
const ctx = context.ctx;
|
|
256088
256093
|
if (this.isCacheDirty || !this.cachedCanvas) {
|
|
256089
256094
|
this.updateCache(context);
|
|
256090
|
-
this.isCacheDirty = false;
|
|
256091
256095
|
}
|
|
256092
256096
|
if (this.cachedCanvas && this.cachedCanvas.width && this.cachedCanvas.height) {
|
|
256093
256097
|
ctx.save();
|
|
@@ -256096,9 +256100,12 @@ class Deck extends BaseItem {
|
|
|
256096
256100
|
}
|
|
256097
256101
|
}
|
|
256098
256102
|
updateCache(context) {
|
|
256103
|
+
const cards = this.index?.list();
|
|
256104
|
+
const topCard = cards[cards.length - 1];
|
|
256105
|
+
const topCardImage = topCard?.getImage();
|
|
256099
256106
|
const width2 = this.getWidth();
|
|
256100
256107
|
const height3 = this.getHeight();
|
|
256101
|
-
if (!width2 || !height3) {
|
|
256108
|
+
if (!width2 || !height3 || !topCardImage || !topCardImage.complete) {
|
|
256102
256109
|
return;
|
|
256103
256110
|
}
|
|
256104
256111
|
const tempCanvas = conf.documentFactory.createElement("canvas");
|
|
@@ -256108,10 +256115,11 @@ class Deck extends BaseItem {
|
|
|
256108
256115
|
if (!tempCtx)
|
|
256109
256116
|
return;
|
|
256110
256117
|
const tempContext = { ...context, ctx: tempCtx };
|
|
256111
|
-
|
|
256112
|
-
|
|
256118
|
+
cards.forEach((_, index2) => {
|
|
256119
|
+
topCard.render(tempContext, index2 * conf.DECK_HORIZONTAL_OFFSET, index2 * conf.DECK_VERTICAL_OFFSET);
|
|
256113
256120
|
});
|
|
256114
256121
|
this.cachedCanvas = tempCanvas;
|
|
256122
|
+
this.isCacheDirty = false;
|
|
256115
256123
|
}
|
|
256116
256124
|
}
|
|
256117
256125
|
registerItem({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "microboard-ui-temp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"i18next-browser-languagedetector": "^8.2.0",
|
|
51
51
|
"js-cookie": "^3.0.5",
|
|
52
52
|
"jwt-decode": "^4.0.0",
|
|
53
|
-
"microboard-temp": "^0.4.
|
|
53
|
+
"microboard-temp": "^0.4.97",
|
|
54
54
|
"nanoid": "^5.1.5",
|
|
55
55
|
"prop-types": "^15.8.1",
|
|
56
56
|
"react-hot-toast": "2.4.1",
|