microboard-ui-temp 0.0.44 → 0.0.46
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/board.html +3 -3
- package/dist/customWebComponents.js +21 -8
- package/dist/index.js +0 -11
- package/package.json +1 -1
package/dist/board.html
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<link
|
|
12
12
|
rel="stylesheet"
|
|
13
13
|
crossorigin
|
|
14
|
-
href="https://unpkg.com/microboard-ui-temp
|
|
14
|
+
href="https://unpkg.com/microboard-ui-temp/dist/board.css"
|
|
15
15
|
/>
|
|
16
16
|
<body style="overflow-x: hidden; overflow-y: hidden">
|
|
17
17
|
<div id="items">
|
|
@@ -84,11 +84,11 @@
|
|
|
84
84
|
</div>
|
|
85
85
|
<script
|
|
86
86
|
type="module"
|
|
87
|
-
src="https://unpkg.com/microboard-ui-temp
|
|
87
|
+
src="https://unpkg.com/microboard-ui-temp/dist/customWebComponents.js"
|
|
88
88
|
></script>
|
|
89
89
|
<script
|
|
90
90
|
defer
|
|
91
|
-
src="https://unpkg.com/microboard-ui-temp
|
|
91
|
+
src="https://unpkg.com/microboard-ui-temp/dist/loadLinksImages.js"
|
|
92
92
|
></script>
|
|
93
93
|
</body>
|
|
94
94
|
</head>
|
|
@@ -22,6 +22,17 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
|
|
|
22
22
|
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
+
// src/Config.ts
|
|
26
|
+
var frontConf = {
|
|
27
|
+
apiURL: undefined,
|
|
28
|
+
wsURL: undefined
|
|
29
|
+
};
|
|
30
|
+
var isSnapshotInIframe = typeof window !== "undefined" && window.parent && window.parent !== window && window.parent.location.href.includes("/snapshots/");
|
|
31
|
+
var baseUrl = typeof process !== "undefined" && process.env.BASE_URL ? process.env.BASE_URL : isSnapshotInIframe ? `${window.parent.location.protocol}//${window.parent.location.host}` : `${location.protocol}//${location.host}`;
|
|
32
|
+
var parsedUrl = new URL(baseUrl);
|
|
33
|
+
var PROTOCOL = parsedUrl.protocol;
|
|
34
|
+
var HOST = parsedUrl.host;
|
|
35
|
+
|
|
25
36
|
// src/public/customWebComponents.ts
|
|
26
37
|
class RichTextElement extends HTMLElement {
|
|
27
38
|
constructor() {
|
|
@@ -190,8 +201,8 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
190
201
|
editIcon.appendChild(editIconPath);
|
|
191
202
|
editButton.appendChild(editIcon);
|
|
192
203
|
const editFileText = document.createElement("p");
|
|
193
|
-
const
|
|
194
|
-
editFileText.textContent =
|
|
204
|
+
const isSnapshotInIframe2 = window.parent && window.parent !== window && window.parent.location.href.includes("/snapshots/");
|
|
205
|
+
editFileText.textContent = isSnapshotInIframe2 ? "Edit copy" : "Edit file";
|
|
195
206
|
editButton.appendChild(editFileText);
|
|
196
207
|
editButton.style.backgroundColor = "rgba(20, 21, 26, 1)";
|
|
197
208
|
editButton.style.cursor = "pointer";
|
|
@@ -275,9 +286,9 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
275
286
|
translateY = 0;
|
|
276
287
|
scale = 1;
|
|
277
288
|
updateTransform();
|
|
278
|
-
const { initInter } = await import("https://www.unpkg.com/microboard-ui-temp
|
|
289
|
+
const { initInter } = await import("https://www.unpkg.com/microboard-ui-temp/dist/index.js");
|
|
279
290
|
initInter();
|
|
280
|
-
const { createApp } = await import("https://www.unpkg.com/microboard-ui-temp
|
|
291
|
+
const { createApp } = await import("https://www.unpkg.com/microboard-ui-temp/dist/index.js");
|
|
281
292
|
const app = createApp();
|
|
282
293
|
window.app = app;
|
|
283
294
|
const stringed = await app.openAndEditFile();
|
|
@@ -286,12 +297,12 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
286
297
|
app.getBoard().deserializeHTML(stringed);
|
|
287
298
|
app.localRender("items");
|
|
288
299
|
}
|
|
289
|
-
const response = await fetch("https://www.unpkg.com/microboard-ui-temp
|
|
300
|
+
const response = await fetch("https://www.unpkg.com/microboard-ui-temp/dist/index.css");
|
|
290
301
|
const cssText = await response.text();
|
|
291
302
|
const styleEl = document.createElement("style");
|
|
292
303
|
styleEl.textContent = cssText;
|
|
293
304
|
document.body.appendChild(styleEl);
|
|
294
|
-
const responseSvg = await fetch("https://www.unpkg.com/microboard-ui-temp
|
|
305
|
+
const responseSvg = await fetch("https://www.unpkg.com/microboard-ui-temp/dist/sprite.svg");
|
|
295
306
|
const svgText = await responseSvg.text();
|
|
296
307
|
const div = document.createElement("div");
|
|
297
308
|
div.style.display = "none";
|
|
@@ -308,9 +319,11 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
308
319
|
ev.stopPropagation();
|
|
309
320
|
const htmlContent = document.documentElement.innerHTML;
|
|
310
321
|
const boardName2 = document.title?.trim() || "shared-board";
|
|
311
|
-
const { boardsApi, createApp, api } = await import("https://www.unpkg.com/microboard-ui-temp
|
|
322
|
+
const { boardsApi, createApp, api } = await import("https://www.unpkg.com/microboard-ui-temp/dist/index.js");
|
|
312
323
|
api.updateURL("https://dev-app.microboard.io/api/v1");
|
|
313
|
-
|
|
324
|
+
frontConf.wsURL = "wss://dev-app.microboard.io/ws";
|
|
325
|
+
const boardId = await boardsApi.createBoard(boardName2, true);
|
|
326
|
+
console.log("boardid", boardId);
|
|
314
327
|
const app = createApp();
|
|
315
328
|
window.app = app;
|
|
316
329
|
await app.openBoard(boardId);
|
package/dist/index.js
CHANGED
|
@@ -288658,7 +288658,6 @@ __export(exports_boards, {
|
|
|
288658
288658
|
getBoardDetails: () => getBoardDetails,
|
|
288659
288659
|
deleteBoardUnauthed: () => deleteBoardUnauthed,
|
|
288660
288660
|
deleteBoard: () => deleteBoard,
|
|
288661
|
-
createBoardUnAuthed: () => createBoardUnAuthed,
|
|
288662
288661
|
createBoard: () => createBoard,
|
|
288663
288662
|
claim: () => claim
|
|
288664
288663
|
});
|
|
@@ -288675,16 +288674,6 @@ function createBoard(title, isPublic) {
|
|
|
288675
288674
|
cache: "no-cache"
|
|
288676
288675
|
});
|
|
288677
288676
|
}
|
|
288678
|
-
function createBoardUnAuthed(title) {
|
|
288679
|
-
return api.post("/boards/unauthed", {
|
|
288680
|
-
title
|
|
288681
|
-
}, {
|
|
288682
|
-
redirect: "follow",
|
|
288683
|
-
referrerPolicy: "no-referrer",
|
|
288684
|
-
mode: "cors",
|
|
288685
|
-
cache: "no-cache"
|
|
288686
|
-
});
|
|
288687
|
-
}
|
|
288688
288677
|
function claim(body) {
|
|
288689
288678
|
return api.post("/boards/claim", body);
|
|
288690
288679
|
}
|