@unhingged/vizu-core 0.1.15 → 0.1.17
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/auto.cjs +43 -5
- package/dist/auto.cjs.map +1 -1
- package/dist/auto.js +43 -5
- package/dist/auto.js.map +1 -1
- package/dist/index.cjs +43 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -2
- package/dist/index.d.ts +17 -2
- package/dist/index.js +43 -5
- package/dist/index.js.map +1 -1
- package/dist/internal.cjs +2538 -0
- package/dist/internal.cjs.map +1 -0
- package/dist/internal.d.cts +446 -0
- package/dist/internal.d.ts +446 -0
- package/dist/internal.js +2507 -0
- package/dist/internal.js.map +1 -0
- package/dist/vizu.min.js +10 -6
- package/dist/vizu.min.js.map +1 -1
- package/package.json +8 -1
package/dist/auto.js
CHANGED
|
@@ -86,6 +86,9 @@ function renderAttachmentsHtml(attachments) {
|
|
|
86
86
|
function migrateComment(raw) {
|
|
87
87
|
if (!raw || typeof raw !== "object") return raw;
|
|
88
88
|
const next = { ...raw };
|
|
89
|
+
if (next.id == null && next._id != null) {
|
|
90
|
+
next.id = next._id;
|
|
91
|
+
}
|
|
89
92
|
if (!Array.isArray(next.fingerprints) || next.fingerprints.length === 0) {
|
|
90
93
|
if (next.fingerprint) {
|
|
91
94
|
next.fingerprints = [next.fingerprint];
|
|
@@ -3342,6 +3345,10 @@ var STYLES = `
|
|
|
3342
3345
|
pointer-events: none;
|
|
3343
3346
|
z-index: 1;
|
|
3344
3347
|
}
|
|
3348
|
+
/* Opt-in only during an active dragover. The explicit display:flex
|
|
3349
|
+
* above out-specifics the browser default for [hidden], so we restate
|
|
3350
|
+
* the hide rule here to make the attribute toggle effective. */
|
|
3351
|
+
.vz-attachment-drop-hint[hidden] { display: none; }
|
|
3345
3352
|
|
|
3346
3353
|
/* Pending attachments (uploaded but not yet saved) */
|
|
3347
3354
|
.vz-attachment-list {
|
|
@@ -3738,10 +3745,25 @@ var Vizu = class {
|
|
|
3738
3745
|
/**
|
|
3739
3746
|
* Fetch the list of users who can be @-mentioned on the current
|
|
3740
3747
|
* workspace. Used by the popover's mention dropdown; hosts can also
|
|
3741
|
-
* call this directly to build their own picker.
|
|
3742
|
-
*
|
|
3748
|
+
* call this directly to build their own picker.
|
|
3749
|
+
*
|
|
3750
|
+
* Resolution order:
|
|
3751
|
+
* 1. `options.mentionable` if provided — host-supplied static or
|
|
3752
|
+
* custom resolver. Wins over everything else.
|
|
3753
|
+
* 2. Cloud adapter's API call if running cloud mode.
|
|
3754
|
+
* 3. Empty array (non-cloud, no override).
|
|
3743
3755
|
*/
|
|
3744
3756
|
async searchMentionable() {
|
|
3757
|
+
if (this.opts.mentionable) {
|
|
3758
|
+
try {
|
|
3759
|
+
return await this.opts.mentionable();
|
|
3760
|
+
} catch (err) {
|
|
3761
|
+
if (typeof console !== "undefined") {
|
|
3762
|
+
console.warn("[vizu] options.mentionable threw", err);
|
|
3763
|
+
}
|
|
3764
|
+
return [];
|
|
3765
|
+
}
|
|
3766
|
+
}
|
|
3745
3767
|
if (this.storage instanceof CloudStorageAdapter) {
|
|
3746
3768
|
return this.storage.searchMentionable();
|
|
3747
3769
|
}
|
|
@@ -4262,10 +4284,26 @@ var Vizu = class {
|
|
|
4262
4284
|
this.refreshUi();
|
|
4263
4285
|
}
|
|
4264
4286
|
async removeComment(id) {
|
|
4265
|
-
const
|
|
4266
|
-
if (
|
|
4287
|
+
const idx = this.comments.findIndex((c) => c.id === id);
|
|
4288
|
+
if (idx === -1) return;
|
|
4289
|
+
const comment = this.comments[idx];
|
|
4267
4290
|
this.comments = this.comments.filter((c) => c.id !== id);
|
|
4268
|
-
|
|
4291
|
+
try {
|
|
4292
|
+
await this.storage.removeComment(this.opts.namespace, id);
|
|
4293
|
+
} catch (err) {
|
|
4294
|
+
this.comments.splice(idx, 0, comment);
|
|
4295
|
+
const status = err?.status;
|
|
4296
|
+
const code = err?.code ?? "";
|
|
4297
|
+
const msg = status === 403 || code === "forbidden" ? "Delete failed \u2014 you don't have permission." : status === 401 || code === "auth_required" ? "Delete failed \u2014 please sign in again." : "Delete failed. Please try again.";
|
|
4298
|
+
this.pill?.toast(msg);
|
|
4299
|
+
if (this.popover?.isOpen()) {
|
|
4300
|
+
const anchors = this.popover.getAnchors();
|
|
4301
|
+
if (anchors[0]) this.popover.update(this.commentsForElement(anchors[0]));
|
|
4302
|
+
}
|
|
4303
|
+
this.refreshUi();
|
|
4304
|
+
if (typeof console !== "undefined") console.warn("[vizu] removeComment failed", err);
|
|
4305
|
+
return;
|
|
4306
|
+
}
|
|
4269
4307
|
this.bus.emit("comment:removed", { id, comment });
|
|
4270
4308
|
if (this.popover?.isOpen()) {
|
|
4271
4309
|
const anchors = this.popover.getAnchors();
|