@illinois-grad/grad-vue-rte 2.3.3 → 2.3.5
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/components/GRichTextContent.vue.d.ts +10 -0
- package/dist/composables/useRichTextRenderer.d.ts +13 -0
- package/dist/grad-vue-rte.css +1 -1
- package/dist/grad-vue-rte.d.ts +3 -1
- package/dist/grad-vue-rte.js +5 -3
- package/dist/main-Bh1IF4ob.js +384 -0
- package/dist/main-Bh1IF4ob.js.map +1 -0
- package/dist/plugin.d.ts +2 -1
- package/dist/plugin.js +12 -4
- package/dist/plugin.js.map +1 -1
- package/package.json +12 -12
- package/dist/main-EtH7847A.js +0 -338
- package/dist/main-EtH7847A.js.map +0 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
/**
|
|
3
|
+
* Error message when rendering fails
|
|
4
|
+
*/
|
|
5
|
+
error?: string;
|
|
6
|
+
content: string;
|
|
7
|
+
}
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type Ref } from "vue";
|
|
2
|
+
/**
|
|
3
|
+
* Composable for rendering a JSON string of tiptap content to HTML.
|
|
4
|
+
* Supports all extensions used by GChatInput and GNoteInput.
|
|
5
|
+
*
|
|
6
|
+
* @param content - A reactive ref or plain string containing JSON-encoded tiptap content
|
|
7
|
+
* @returns `rendered` — rendered HTML string, empty string for empty content, or `null` when rendering fails;
|
|
8
|
+
* `hasError` — `true` when the content cannot be parsed or rendered
|
|
9
|
+
*/
|
|
10
|
+
export declare function useRichTextRenderer(content: Ref<string>): {
|
|
11
|
+
rendered: Ref<string | null, string | null>;
|
|
12
|
+
hasError: import("vue").ComputedRef<boolean>;
|
|
13
|
+
};
|
package/dist/grad-vue-rte.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.g-rich-text-toolbar[data-v-8c490655]{display:flex}.g-rich-text-toolbar button[data-v-8c490655]{background-color:unset;padding:.4rem .5rem;font-size:.875rem;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center}.g-rich-text-toolbar button.bold[data-v-8c490655]{font-weight:700}.g-rich-text-toolbar button.italic[data-v-8c490655]{font-style:italic}.g-rich-text-toolbar button.is-active[data-v-8c490655]{color:var(--g-accent-700);background-color:var(--g-surface-150)}.g-rich-text-toolbar button[data-v-8c490655]:hover{background-color:var(--g-primary-300);color:var(--g-primary-text)}.g-chat-input-wrap .tiptap{background:transparent;border:none;padding:.15em 0;font-size:15px;max-height:10em;flex:1;outline:none}.g-chat-input-wrap .tiptap p{margin:.375em 0 0}.g-chat-input-wrap .tiptap>:first-child{margin-top:0}.g-chat-input-wrap .tiptap>:last-child{margin-bottom:0}.g-chat-input-wrap .tiptap ul,.g-chat-input-wrap .tiptap ol{padding:0 1em;margin:.375em 1em 0 .4em}:is(.g-chat-input-wrap .tiptap ul,.g-chat-input-wrap .tiptap ol) li p{margin-top:0;margin-bottom:0}.g-chat-input-wrap .tiptap p.is-editor-empty:first-child:before{color:var(--g-surface-600);content:attr(data-placeholder);float:left;height:0;pointer-events:none}.bubble-menu[data-v-45a4a5f2]{box-shadow:0 1px 4px #00000080;background-color:var(--g-surface-100)}.bubble-menu [data-v-45a4a5f2] button:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.bubble-menu [data-v-45a4a5f2] button:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.g-chat-input-wrap[data-v-45a4a5f2]{position:relative;display:flex;align-items:center;background:var(--g-surface-0);border:2px solid var(--g-primary-500);border-radius:4px;padding:.5em}.g-chat-input-wrap[data-v-45a4a5f2]:has(.ProseMirror-focused){outline:2px solid var(--g-primary-500);outline-offset:2px;box-shadow:0 0 0 2px var(--g-info-200);border-color:var(--g-info-200)}.editor-content[data-v-45a4a5f2]{flex:1;min-width:0}.g-chat-send-btn[data-v-45a4a5f2]{color:var(--g-primary-500);font-size:1em;border:2px solid transparent;border-radius:4px;padding:.4em;margin:0;align-self:flex-end;cursor:pointer;display:flex;align-items:center;justify-content:center;background:transparent;flex-shrink:0}.g-chat-send-btn[data-v-45a4a5f2]:hover:not(:disabled){color:var(--g-accent-700);background-color:var(--g-surface-100)}.g-chat-send-btn[data-v-45a4a5f2]:focus:not(:disabled){background-color:var(--g-info-200);color:var(--g-primary-500)}.g-chat-send-btn[data-v-45a4a5f2]:active:not(:disabled){background-color:var(--g-primary-500);color:var(--g-surface-0)}.g-chat-send-btn[data-v-45a4a5f2]:disabled{color:var(--g-surface-300);cursor:not-allowed}.g-note-input-wrap .tiptap{background:transparent;border:none;padding:.5em;font-size:15px;min-height:12em;flex:1;outline:none}.g-note-input-wrap .tiptap p{margin:.375em 0 0}.g-note-input-wrap .tiptap>:first-child{margin-top:0}.g-note-input-wrap .tiptap>:last-child{margin-bottom:0}.g-note-input-wrap .tiptap ul,.g-note-input-wrap .tiptap ol{padding:0 1em;margin:.375em 1em 0 .4em}:is(.g-note-input-wrap .tiptap ul,.g-note-input-wrap .tiptap ol) li p{margin-top:0;margin-bottom:0}.g-note-input-wrap .tiptap p.is-editor-empty:first-child:before{color:var(--g-surface-600);content:attr(data-placeholder);float:left;height:0;pointer-events:none}.g-note-input-wrap[data-v-c2d30b96]{display:flex;flex-direction:column;background:var(--g-surface-0);border:2px solid var(--g-primary-500);border-radius:4px}.g-note-input-wrap[data-v-c2d30b96]:has(.ProseMirror-focused){outline:2px solid var(--g-primary-500);outline-offset:2px;box-shadow:0 0 0 2px var(--g-info-200);border-color:var(--g-info-200)}.toolbar[data-v-c2d30b96]{border-bottom:1px solid var(--g-surface-200);background-color:var(--g-surface-0);padding:.25rem}.toolbar [data-v-c2d30b96] button{border-radius:4px}.toolbar [data-v-c2d30b96] button:focus{outline:2px solid var(--g-primary-500);outline-offset:2px}.editor-content[data-v-c2d30b96]{flex:1;min-width:0}
|
|
1
|
+
.g-rich-text-toolbar[data-v-8c490655]{display:flex}.g-rich-text-toolbar button[data-v-8c490655]{background-color:unset;padding:.4rem .5rem;font-size:.875rem;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center}.g-rich-text-toolbar button.bold[data-v-8c490655]{font-weight:700}.g-rich-text-toolbar button.italic[data-v-8c490655]{font-style:italic}.g-rich-text-toolbar button.is-active[data-v-8c490655]{color:var(--g-accent-700);background-color:var(--g-surface-150)}.g-rich-text-toolbar button[data-v-8c490655]:hover{background-color:var(--g-primary-300);color:var(--g-primary-text)}.g-chat-input-wrap .tiptap{background:transparent;border:none;padding:.15em 0;font-size:15px;max-height:10em;flex:1;outline:none}.g-chat-input-wrap .tiptap p{margin:.375em 0 0}.g-chat-input-wrap .tiptap>:first-child{margin-top:0}.g-chat-input-wrap .tiptap>:last-child{margin-bottom:0}.g-chat-input-wrap .tiptap ul,.g-chat-input-wrap .tiptap ol{padding:0 1em;margin:.375em 1em 0 .4em}:is(.g-chat-input-wrap .tiptap ul,.g-chat-input-wrap .tiptap ol) li p{margin-top:0;margin-bottom:0}.g-chat-input-wrap .tiptap p.is-editor-empty:first-child:before{color:var(--g-surface-600);content:attr(data-placeholder);float:left;height:0;pointer-events:none}.bubble-menu[data-v-45a4a5f2]{box-shadow:0 1px 4px #00000080;background-color:var(--g-surface-100)}.bubble-menu [data-v-45a4a5f2] button:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.bubble-menu [data-v-45a4a5f2] button:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.g-chat-input-wrap[data-v-45a4a5f2]{position:relative;display:flex;align-items:center;background:var(--g-surface-0);border:2px solid var(--g-primary-500);border-radius:4px;padding:.5em}.g-chat-input-wrap[data-v-45a4a5f2]:has(.ProseMirror-focused){outline:2px solid var(--g-primary-500);outline-offset:2px;box-shadow:0 0 0 2px var(--g-info-200);border-color:var(--g-info-200)}.editor-content[data-v-45a4a5f2]{flex:1;min-width:0}.g-chat-send-btn[data-v-45a4a5f2]{color:var(--g-primary-500);font-size:1em;border:2px solid transparent;border-radius:4px;padding:.4em;margin:0;align-self:flex-end;cursor:pointer;display:flex;align-items:center;justify-content:center;background:transparent;flex-shrink:0}.g-chat-send-btn[data-v-45a4a5f2]:hover:not(:disabled){color:var(--g-accent-700);background-color:var(--g-surface-100)}.g-chat-send-btn[data-v-45a4a5f2]:focus:not(:disabled){background-color:var(--g-info-200);color:var(--g-primary-500)}.g-chat-send-btn[data-v-45a4a5f2]:active:not(:disabled){background-color:var(--g-primary-500);color:var(--g-surface-0)}.g-chat-send-btn[data-v-45a4a5f2]:disabled{color:var(--g-surface-300);cursor:not-allowed}.g-note-input-wrap .tiptap{background:transparent;border:none;padding:.5em;font-size:15px;min-height:12em;flex:1;outline:none}.g-note-input-wrap .tiptap p{margin:.375em 0 0}.g-note-input-wrap .tiptap>:first-child{margin-top:0}.g-note-input-wrap .tiptap>:last-child{margin-bottom:0}.g-note-input-wrap .tiptap ul,.g-note-input-wrap .tiptap ol{padding:0 1em;margin:.375em 1em 0 .4em}:is(.g-note-input-wrap .tiptap ul,.g-note-input-wrap .tiptap ol) li p{margin-top:0;margin-bottom:0}.g-note-input-wrap .tiptap p.is-editor-empty:first-child:before{color:var(--g-surface-600);content:attr(data-placeholder);float:left;height:0;pointer-events:none}.g-note-input-wrap[data-v-c2d30b96]{display:flex;flex-direction:column;background:var(--g-surface-0);border:2px solid var(--g-primary-500);border-radius:4px}.g-note-input-wrap[data-v-c2d30b96]:has(.ProseMirror-focused){outline:2px solid var(--g-primary-500);outline-offset:2px;box-shadow:0 0 0 2px var(--g-info-200);border-color:var(--g-info-200)}.toolbar[data-v-c2d30b96]{border-bottom:1px solid var(--g-surface-200);background-color:var(--g-surface-0);padding:.25rem}.toolbar [data-v-c2d30b96] button{border-radius:4px}.toolbar [data-v-c2d30b96] button:focus{outline:2px solid var(--g-primary-500);outline-offset:2px}.editor-content[data-v-c2d30b96]{flex:1;min-width:0}.g-rich-text-content p[data-v-923b2b7c]{margin:.375em 0}.g-rich-text-content [data-v-923b2b7c]>:first-child{margin-top:0}.g-rich-text-content [data-v-923b2b7c]>:last-child{margin-bottom:0}:is(.g-rich-text-content ul,.g-rich-text-content ol)[data-v-923b2b7c]{padding:0 1em;margin:.375em 1em 0 .4em}:is(.g-rich-text-content ul,.g-rich-text-content ol) li p[data-v-923b2b7c]{margin-top:0;margin-bottom:0}.g-rich-text-content-error[data-v-923b2b7c]{color:var(--g-danger-700);font-size:.875em}
|
package/dist/grad-vue-rte.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import GChatInput from "./components/GChatInput.vue";
|
|
2
2
|
import GNoteInput from "./components/GNoteInput.vue";
|
|
3
|
+
import GRichTextContent from "./components/GRichTextContent.vue";
|
|
3
4
|
import "./css/main.css";
|
|
4
|
-
export {
|
|
5
|
+
export { useRichTextRenderer } from "./composables/useRichTextRenderer";
|
|
6
|
+
export { GChatInput, GNoteInput, GRichTextContent, };
|
package/dist/grad-vue-rte.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import { G as
|
|
1
|
+
import { G as a, a as n, b as s, u as o } from "./main-Bh1IF4ob.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
a as GChatInput,
|
|
4
|
+
n as GNoteInput,
|
|
5
|
+
s as GRichTextContent,
|
|
6
|
+
o as useRichTextRenderer
|
|
5
7
|
};
|
|
6
8
|
//# sourceMappingURL=grad-vue-rte.js.map
|
|
@@ -0,0 +1,384 @@
|
|
|
1
|
+
import { watch as y, toRaw as N, ref as C, defineComponent as w, computed as v, openBlock as p, createElementBlock as b, unref as c, createElementVNode as d, normalizeClass as g, createCommentVNode as L, useModel as M, createBlock as O, withCtx as $, createVNode as x, mergeModels as k, onMounted as D, toValue as G, toRef as J, toDisplayString as K } from "vue";
|
|
2
|
+
import { useEditor as P, EditorContent as V } from "@tiptap/vue-3";
|
|
3
|
+
import { BubbleMenu as U } from "@tiptap/vue-3/menus";
|
|
4
|
+
import I from "@tiptap/extension-document";
|
|
5
|
+
import T from "@tiptap/extension-paragraph";
|
|
6
|
+
import B from "@tiptap/extension-text";
|
|
7
|
+
import A from "@tiptap/extension-bold";
|
|
8
|
+
import z from "@tiptap/extension-italic";
|
|
9
|
+
import { ListKit as R } from "@tiptap/extension-list";
|
|
10
|
+
import { UndoRedo as _, Placeholder as F } from "@tiptap/extensions";
|
|
11
|
+
import { generateHTML as j } from "@tiptap/core";
|
|
12
|
+
function S(e) {
|
|
13
|
+
const { content: l, placeholder: s, label: o, onUpdate: n, editorProps: r = {} } = e, a = typeof s == "string" ? s : s.value, t = typeof o == "string" ? o : o.value, i = P({
|
|
14
|
+
content: l.value || "",
|
|
15
|
+
extensions: [
|
|
16
|
+
I,
|
|
17
|
+
T,
|
|
18
|
+
B,
|
|
19
|
+
A,
|
|
20
|
+
z,
|
|
21
|
+
R,
|
|
22
|
+
_,
|
|
23
|
+
F.configure({ placeholder: a })
|
|
24
|
+
],
|
|
25
|
+
editorProps: {
|
|
26
|
+
...r,
|
|
27
|
+
attributes: {
|
|
28
|
+
"aria-label": t,
|
|
29
|
+
...r.attributes
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
onUpdate({ editor: u }) {
|
|
33
|
+
l.value = u.getJSON(), n && n(u);
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
y(
|
|
37
|
+
() => typeof o == "string" ? o : o.value,
|
|
38
|
+
(u) => {
|
|
39
|
+
i.value && i.value?.setOptions({
|
|
40
|
+
editorProps: {
|
|
41
|
+
attributes: {
|
|
42
|
+
"aria-label": u
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
), y(
|
|
48
|
+
() => l.value,
|
|
49
|
+
(u) => {
|
|
50
|
+
i.value && JSON.stringify(u) !== JSON.stringify(i.value.getJSON()) && i.value.commands.setContent(N(u) || "");
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
function f() {
|
|
54
|
+
i.value?.commands?.focus();
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
editor: i,
|
|
58
|
+
focusEditor: f
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
function q(e, l) {
|
|
62
|
+
const s = C(0);
|
|
63
|
+
function o(r) {
|
|
64
|
+
const a = l.value;
|
|
65
|
+
if (!a) return;
|
|
66
|
+
const t = Array.from(
|
|
67
|
+
a.querySelectorAll("button")
|
|
68
|
+
), i = t.findIndex(
|
|
69
|
+
(u) => u === document.activeElement
|
|
70
|
+
);
|
|
71
|
+
if (r.key === "Escape") {
|
|
72
|
+
r.preventDefault(), e.value?.commands?.focus();
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
if (r.key === "Tab")
|
|
76
|
+
return;
|
|
77
|
+
let f = i;
|
|
78
|
+
switch (r.key) {
|
|
79
|
+
case "ArrowRight":
|
|
80
|
+
case "ArrowDown":
|
|
81
|
+
r.preventDefault(), f = i < t.length - 1 ? i + 1 : 0;
|
|
82
|
+
break;
|
|
83
|
+
case "ArrowLeft":
|
|
84
|
+
case "ArrowUp":
|
|
85
|
+
r.preventDefault(), f = i > 0 ? i - 1 : t.length - 1;
|
|
86
|
+
break;
|
|
87
|
+
case "Home":
|
|
88
|
+
r.preventDefault(), f = 0;
|
|
89
|
+
break;
|
|
90
|
+
case "End":
|
|
91
|
+
r.preventDefault(), f = t.length - 1;
|
|
92
|
+
break;
|
|
93
|
+
default:
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
s.value = f, t[f]?.focus();
|
|
97
|
+
}
|
|
98
|
+
function n(r) {
|
|
99
|
+
return r === s.value ? 0 : -1;
|
|
100
|
+
}
|
|
101
|
+
return {
|
|
102
|
+
activeButtonIndex: s,
|
|
103
|
+
handleToolbarKeyDown: o,
|
|
104
|
+
getButtonTabIndex: n
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
const W = ["aria-pressed", "tabindex"], Q = ["aria-pressed", "tabindex"], X = ["aria-pressed", "tabindex"], Y = ["aria-pressed", "tabindex"], Z = /* @__PURE__ */ w({
|
|
108
|
+
__name: "GRichTextToolbar",
|
|
109
|
+
props: {
|
|
110
|
+
editor: {}
|
|
111
|
+
},
|
|
112
|
+
setup(e) {
|
|
113
|
+
const l = e, s = C(null), o = v(() => l.editor), { handleToolbarKeyDown: n, getButtonTabIndex: r } = q(
|
|
114
|
+
o,
|
|
115
|
+
s
|
|
116
|
+
);
|
|
117
|
+
return (a, t) => e.editor ? (p(), b("div", {
|
|
118
|
+
key: 0,
|
|
119
|
+
class: "g-rich-text-toolbar",
|
|
120
|
+
role: "toolbar",
|
|
121
|
+
"aria-label": "Text formatting",
|
|
122
|
+
ref_key: "toolbarRef",
|
|
123
|
+
ref: s,
|
|
124
|
+
onKeydown: t[4] || (t[4] = //@ts-ignore
|
|
125
|
+
(...i) => c(n) && c(n)(...i)),
|
|
126
|
+
tabindex: "-1"
|
|
127
|
+
}, [
|
|
128
|
+
d("button", {
|
|
129
|
+
onClick: t[0] || (t[0] = (i) => e.editor.chain().focus().toggleBold().run()),
|
|
130
|
+
class: g({
|
|
131
|
+
bold: !0,
|
|
132
|
+
"is-active": e.editor.isActive("bold")
|
|
133
|
+
}),
|
|
134
|
+
"aria-pressed": e.editor.isActive("bold"),
|
|
135
|
+
title: "Bold",
|
|
136
|
+
"aria-label": "Bold",
|
|
137
|
+
type: "button",
|
|
138
|
+
tabindex: c(r)(0)
|
|
139
|
+
}, [...t[5] || (t[5] = [
|
|
140
|
+
d("svg", {
|
|
141
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
142
|
+
viewBox: "0 0 384 512",
|
|
143
|
+
width: "16",
|
|
144
|
+
height: "16",
|
|
145
|
+
fill: "currentColor",
|
|
146
|
+
"aria-hidden": "true"
|
|
147
|
+
}, [
|
|
148
|
+
d("path", { d: "M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z" })
|
|
149
|
+
], -1)
|
|
150
|
+
])], 10, W),
|
|
151
|
+
d("button", {
|
|
152
|
+
onClick: t[1] || (t[1] = (i) => e.editor.chain().focus().toggleItalic().run()),
|
|
153
|
+
class: g({
|
|
154
|
+
italic: !0,
|
|
155
|
+
"is-active": e.editor.isActive("italic")
|
|
156
|
+
}),
|
|
157
|
+
"aria-pressed": e.editor.isActive("italic"),
|
|
158
|
+
title: "Italic",
|
|
159
|
+
"aria-label": "Italic",
|
|
160
|
+
type: "button",
|
|
161
|
+
tabindex: c(r)(1)
|
|
162
|
+
}, [...t[6] || (t[6] = [
|
|
163
|
+
d("svg", {
|
|
164
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
165
|
+
viewBox: "0 0 384 512",
|
|
166
|
+
width: "16",
|
|
167
|
+
height: "16",
|
|
168
|
+
fill: "currentColor",
|
|
169
|
+
"aria-hidden": "true"
|
|
170
|
+
}, [
|
|
171
|
+
d("path", { d: "M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z" })
|
|
172
|
+
], -1)
|
|
173
|
+
])], 10, Q),
|
|
174
|
+
d("button", {
|
|
175
|
+
onClick: t[2] || (t[2] = (i) => e.editor.chain().focus().toggleOrderedList().run()),
|
|
176
|
+
class: g({ "is-active": e.editor.isActive("orderedList") }),
|
|
177
|
+
"aria-pressed": e.editor.isActive("orderedList"),
|
|
178
|
+
title: "Ordered List",
|
|
179
|
+
"aria-label": "Ordered List",
|
|
180
|
+
type: "button",
|
|
181
|
+
tabindex: c(r)(2)
|
|
182
|
+
}, [...t[7] || (t[7] = [
|
|
183
|
+
d("svg", {
|
|
184
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
185
|
+
viewBox: "0 0 512 512",
|
|
186
|
+
width: "16",
|
|
187
|
+
height: "16",
|
|
188
|
+
fill: "currentColor",
|
|
189
|
+
"aria-hidden": "true"
|
|
190
|
+
}, [
|
|
191
|
+
d("path", { d: "M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-13.3 0-24-10.7-24-24s10.7-24 24-24H64V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" })
|
|
192
|
+
], -1)
|
|
193
|
+
])], 10, X),
|
|
194
|
+
d("button", {
|
|
195
|
+
onClick: t[3] || (t[3] = (i) => e.editor.chain().focus().toggleBulletList().run()),
|
|
196
|
+
class: g({ "is-active": e.editor.isActive("bulletList") }),
|
|
197
|
+
"aria-pressed": e.editor.isActive("bulletList"),
|
|
198
|
+
title: "Unordered List",
|
|
199
|
+
"aria-label": "Unordered List",
|
|
200
|
+
type: "button",
|
|
201
|
+
tabindex: c(r)(3)
|
|
202
|
+
}, [...t[8] || (t[8] = [
|
|
203
|
+
d("svg", {
|
|
204
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
205
|
+
viewBox: "0 0 512 512",
|
|
206
|
+
width: "16",
|
|
207
|
+
height: "16",
|
|
208
|
+
fill: "currentColor",
|
|
209
|
+
"aria-hidden": "true"
|
|
210
|
+
}, [
|
|
211
|
+
d("path", { d: "M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z" })
|
|
212
|
+
], -1)
|
|
213
|
+
])], 10, Y)
|
|
214
|
+
], 544)) : L("", !0);
|
|
215
|
+
}
|
|
216
|
+
}), H = (e, l) => {
|
|
217
|
+
const s = e.__vccOpts || e;
|
|
218
|
+
for (const [o, n] of l)
|
|
219
|
+
s[o] = n;
|
|
220
|
+
return s;
|
|
221
|
+
}, E = /* @__PURE__ */ H(Z, [["__scopeId", "data-v-8c490655"]]), ee = { class: "g-chat-input-wrap" }, te = ["disabled"], oe = /* @__PURE__ */ w({
|
|
222
|
+
inheritAttrs: !1,
|
|
223
|
+
__name: "GChatInput",
|
|
224
|
+
props: /* @__PURE__ */ k({
|
|
225
|
+
placeholder: { default: "Type a comment" },
|
|
226
|
+
disabled: { type: Boolean, default: !1 },
|
|
227
|
+
maxRows: { default: 5 },
|
|
228
|
+
label: { default: "Comment input" }
|
|
229
|
+
}, {
|
|
230
|
+
modelValue: {},
|
|
231
|
+
modelModifiers: {}
|
|
232
|
+
}),
|
|
233
|
+
emits: /* @__PURE__ */ k(["send"], ["update:modelValue"]),
|
|
234
|
+
setup(e, { expose: l, emit: s }) {
|
|
235
|
+
const o = e, n = M(e, "modelValue"), r = s, { editor: a, focusEditor: t } = S({
|
|
236
|
+
content: n,
|
|
237
|
+
placeholder: v(() => o.placeholder),
|
|
238
|
+
label: v(() => o.label),
|
|
239
|
+
editorProps: {
|
|
240
|
+
handleKeyDown(h, m) {
|
|
241
|
+
if (a.value && m.key === "Enter") {
|
|
242
|
+
if (a.value.isActive("orderedList") || a.value.isActive("bulletList"))
|
|
243
|
+
return !1;
|
|
244
|
+
if (m.shiftKey)
|
|
245
|
+
a.value.commands.splitBlock();
|
|
246
|
+
else
|
|
247
|
+
return n.value = a.value?.getJSON(), m.preventDefault(), i(a.value?.getJSON()), !0;
|
|
248
|
+
}
|
|
249
|
+
return !1;
|
|
250
|
+
},
|
|
251
|
+
attributes: {
|
|
252
|
+
"aria-keyshortcuts": "Shift+Enter"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
});
|
|
256
|
+
function i(h) {
|
|
257
|
+
h && r("send", h);
|
|
258
|
+
}
|
|
259
|
+
function f() {
|
|
260
|
+
i(a.value?.getJSON());
|
|
261
|
+
}
|
|
262
|
+
function u() {
|
|
263
|
+
t();
|
|
264
|
+
}
|
|
265
|
+
return l({ focusInput: u }), (h, m) => (p(), b("div", ee, [
|
|
266
|
+
c(a) ? (p(), O(c(U), {
|
|
267
|
+
key: 0,
|
|
268
|
+
editor: c(a)
|
|
269
|
+
}, {
|
|
270
|
+
default: $(() => [
|
|
271
|
+
x(E, {
|
|
272
|
+
editor: c(a),
|
|
273
|
+
class: "bubble-menu"
|
|
274
|
+
}, null, 8, ["editor"])
|
|
275
|
+
]),
|
|
276
|
+
_: 1
|
|
277
|
+
}, 8, ["editor"])) : L("", !0),
|
|
278
|
+
x(c(V), {
|
|
279
|
+
editor: c(a),
|
|
280
|
+
class: "editor-content"
|
|
281
|
+
}, null, 8, ["editor"]),
|
|
282
|
+
d("button", {
|
|
283
|
+
class: "g-chat-send-btn",
|
|
284
|
+
disabled: o.disabled || !n.value || n.value && Object.keys(n.value).length === 0,
|
|
285
|
+
onClick: f,
|
|
286
|
+
title: "Send",
|
|
287
|
+
"aria-label": "Send",
|
|
288
|
+
type: "button"
|
|
289
|
+
}, [...m[0] || (m[0] = [
|
|
290
|
+
d("svg", {
|
|
291
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
292
|
+
viewBox: "0 0 512 512",
|
|
293
|
+
width: "16",
|
|
294
|
+
height: "16",
|
|
295
|
+
fill: "currentColor",
|
|
296
|
+
"aria-hidden": "true"
|
|
297
|
+
}, [
|
|
298
|
+
d("path", { d: "M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" })
|
|
299
|
+
], -1)
|
|
300
|
+
])], 8, te)
|
|
301
|
+
]));
|
|
302
|
+
}
|
|
303
|
+
}), ye = /* @__PURE__ */ H(oe, [["__scopeId", "data-v-45a4a5f2"]]), re = { class: "g-note-input-wrap" }, ne = /* @__PURE__ */ w({
|
|
304
|
+
inheritAttrs: !1,
|
|
305
|
+
__name: "GNoteInput",
|
|
306
|
+
props: /* @__PURE__ */ k({
|
|
307
|
+
placeholder: { default: "Write a note..." },
|
|
308
|
+
label: { default: "Note input" }
|
|
309
|
+
}, {
|
|
310
|
+
modelValue: {},
|
|
311
|
+
modelModifiers: {}
|
|
312
|
+
}),
|
|
313
|
+
emits: ["update:modelValue"],
|
|
314
|
+
setup(e, { expose: l }) {
|
|
315
|
+
const s = e, o = M(e, "modelValue"), { editor: n, focusEditor: r } = S({
|
|
316
|
+
content: o,
|
|
317
|
+
placeholder: v(() => s.placeholder),
|
|
318
|
+
label: v(() => s.label)
|
|
319
|
+
});
|
|
320
|
+
function a() {
|
|
321
|
+
r();
|
|
322
|
+
}
|
|
323
|
+
return l({ focusInput: a }), (t, i) => (p(), b("div", re, [
|
|
324
|
+
x(E, {
|
|
325
|
+
editor: c(n),
|
|
326
|
+
class: "toolbar"
|
|
327
|
+
}, null, 8, ["editor"]),
|
|
328
|
+
x(c(V), {
|
|
329
|
+
editor: c(n),
|
|
330
|
+
class: "editor-content"
|
|
331
|
+
}, null, 8, ["editor"])
|
|
332
|
+
]));
|
|
333
|
+
}
|
|
334
|
+
}), ke = /* @__PURE__ */ H(ne, [["__scopeId", "data-v-c2d30b96"]]), ie = [I, T, B, A, z, R];
|
|
335
|
+
function se(e) {
|
|
336
|
+
const l = C("");
|
|
337
|
+
D(() => {
|
|
338
|
+
y(e, () => {
|
|
339
|
+
const o = G(e);
|
|
340
|
+
if (!o || o.trim() === "")
|
|
341
|
+
return "";
|
|
342
|
+
try {
|
|
343
|
+
const n = JSON.parse(o);
|
|
344
|
+
let r = j(
|
|
345
|
+
n,
|
|
346
|
+
ie
|
|
347
|
+
);
|
|
348
|
+
l.value = r;
|
|
349
|
+
} catch (n) {
|
|
350
|
+
console.error("Failed to parse content:", o), console.error(n), l.value = null;
|
|
351
|
+
}
|
|
352
|
+
}, { immediate: !0 });
|
|
353
|
+
});
|
|
354
|
+
const s = v(() => l.value === null);
|
|
355
|
+
return { rendered: l, hasError: s };
|
|
356
|
+
}
|
|
357
|
+
const ae = { class: "g-rich-text-content-wrap" }, le = {
|
|
358
|
+
key: 0,
|
|
359
|
+
role: "alert",
|
|
360
|
+
class: "g-rich-text-content-error"
|
|
361
|
+
}, ce = ["innerHTML"], de = /* @__PURE__ */ w({
|
|
362
|
+
__name: "GRichTextContent",
|
|
363
|
+
props: {
|
|
364
|
+
error: {},
|
|
365
|
+
content: {}
|
|
366
|
+
},
|
|
367
|
+
setup(e) {
|
|
368
|
+
const s = J(e, "content"), { rendered: o, hasError: n } = se(s);
|
|
369
|
+
return (r, a) => (p(), b("div", ae, [
|
|
370
|
+
c(n) ? (p(), b("div", le, K(e.error || "Failed to render content."), 1)) : c(o) ? (p(), b("div", {
|
|
371
|
+
key: 1,
|
|
372
|
+
class: "g-rich-text-content",
|
|
373
|
+
innerHTML: c(o)
|
|
374
|
+
}, null, 8, ce)) : L("", !0)
|
|
375
|
+
]));
|
|
376
|
+
}
|
|
377
|
+
}), Ce = /* @__PURE__ */ H(de, [["__scopeId", "data-v-923b2b7c"]]);
|
|
378
|
+
export {
|
|
379
|
+
ye as G,
|
|
380
|
+
ke as a,
|
|
381
|
+
Ce as b,
|
|
382
|
+
se as u
|
|
383
|
+
};
|
|
384
|
+
//# sourceMappingURL=main-Bh1IF4ob.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main-Bh1IF4ob.js","sources":["../src/composables/useRichTextEditor.ts","../src/composables/useToolbarNavigation.ts","../src/components/editor/GRichTextToolbar.vue","../src/components/GChatInput.vue","../src/components/GNoteInput.vue","../src/composables/useRichTextRenderer.ts","../src/components/GRichTextContent.vue"],"sourcesContent":["import { toRaw, watch, type Ref } from \"vue\";\nimport { useEditor } from \"@tiptap/vue-3\";\nimport Document from \"@tiptap/extension-document\";\nimport Paragraph from \"@tiptap/extension-paragraph\";\nimport Text from \"@tiptap/extension-text\";\nimport Bold from \"@tiptap/extension-bold\";\nimport Italic from \"@tiptap/extension-italic\";\nimport { ListKit } from \"@tiptap/extension-list\";\nimport { UndoRedo, Placeholder } from \"@tiptap/extensions\";\n\ninterface UseRichTextEditorOptions {\n content: Ref<object | \"\" | undefined>;\n placeholder: Ref<string> | string;\n label: Ref<string> | string;\n onUpdate?: (editor: any) => void;\n editorProps?: Record<string, any>;\n}\n\nexport function useRichTextEditor(options: UseRichTextEditorOptions) {\n const { content, placeholder, label, onUpdate, editorProps = {} } = options;\n\n const placeholderValue = typeof placeholder === 'string' ? placeholder : placeholder.value;\n const labelValue = typeof label === 'string' ? label : label.value;\n\n const editor = useEditor({\n content: content.value || \"\",\n extensions: [\n Document,\n Paragraph,\n Text,\n Bold,\n Italic,\n ListKit,\n UndoRedo,\n Placeholder.configure({ placeholder: placeholderValue }),\n ],\n editorProps: {\n ...editorProps,\n attributes: {\n \"aria-label\": labelValue,\n ...editorProps.attributes,\n },\n },\n onUpdate({ editor }) {\n content.value = editor.getJSON();\n if (onUpdate) {\n onUpdate(editor);\n }\n },\n });\n\n // Watch for label changes and update editor\n watch(\n () => typeof label === 'string' ? label : label.value,\n (val) => {\n if (editor.value) {\n editor.value?.setOptions({\n editorProps: {\n attributes: {\n \"aria-label\": val,\n },\n },\n });\n }\n },\n );\n\n // Watch for content changes and update editor\n watch(\n () => content.value,\n (val) => {\n if (\n editor.value &&\n JSON.stringify(val) !== JSON.stringify(editor.value.getJSON())\n ) {\n editor.value.commands.setContent(toRaw(val) || \"\");\n }\n },\n );\n\n function focusEditor() {\n editor.value?.commands?.focus();\n }\n\n return {\n editor,\n focusEditor,\n };\n}\n","import { ref, type Ref } from \"vue\";\nimport type { Editor } from \"@tiptap/vue-3\";\n\nexport function useToolbarNavigation(editor: Ref<Editor | undefined>, toolbarRef: Ref<HTMLElement | null>) {\n const activeButtonIndex = ref(0);\n\n function handleToolbarKeyDown(event: KeyboardEvent) {\n const toolbar = toolbarRef.value;\n if (!toolbar) return;\n\n const buttons = Array.from(\n toolbar.querySelectorAll(\"button\"),\n ) as HTMLButtonElement[];\n const currentIndex = buttons.findIndex(\n (btn) => btn === document.activeElement,\n );\n\n // Handle Escape key - return focus to editor\n if (event.key === \"Escape\") {\n event.preventDefault();\n editor.value?.commands?.focus();\n return;\n }\n\n // Don't handle Tab - let it exit the toolbar naturally\n if (event.key === \"Tab\") {\n return;\n }\n\n let nextIndex = currentIndex;\n\n switch (event.key) {\n case \"ArrowRight\":\n case \"ArrowDown\":\n event.preventDefault();\n nextIndex =\n currentIndex < buttons.length - 1 ? currentIndex + 1 : 0;\n break;\n case \"ArrowLeft\":\n case \"ArrowUp\":\n event.preventDefault();\n nextIndex =\n currentIndex > 0 ? currentIndex - 1 : buttons.length - 1;\n break;\n case \"Home\":\n event.preventDefault();\n nextIndex = 0;\n break;\n case \"End\":\n event.preventDefault();\n nextIndex = buttons.length - 1;\n break;\n default:\n return;\n }\n\n // Update active button index and focus\n activeButtonIndex.value = nextIndex;\n buttons[nextIndex]?.focus();\n }\n\n function getButtonTabIndex(index: number): number {\n return index === activeButtonIndex.value ? 0 : -1;\n }\n\n return {\n activeButtonIndex,\n handleToolbarKeyDown,\n getButtonTabIndex,\n };\n}\n","<script lang=\"ts\" setup>\nimport { ref, computed } from \"vue\";\nimport type { Editor } from \"@tiptap/vue-3\";\nimport { useToolbarNavigation } from \"../../composables/useToolbarNavigation.ts\";\n\ninterface Props {\n editor: Editor | undefined;\n}\n\nconst props = defineProps<Props>();\n\nconst toolbarRef = ref<HTMLElement | null>(null);\nconst editorRef = computed(() => props.editor);\nconst { handleToolbarKeyDown, getButtonTabIndex } = useToolbarNavigation(\n editorRef,\n toolbarRef,\n);\n</script>\n\n<template>\n <div\n v-if=\"editor\"\n class=\"g-rich-text-toolbar\"\n role=\"toolbar\"\n aria-label=\"Text formatting\"\n ref=\"toolbarRef\"\n @keydown=\"handleToolbarKeyDown\"\n tabindex=\"-1\"\n >\n <button\n @click=\"editor.chain().focus().toggleBold().run()\"\n :class=\"{\n bold: true,\n 'is-active': editor.isActive('bold'),\n }\"\n :aria-pressed=\"editor.isActive('bold')\"\n title=\"Bold\"\n aria-label=\"Bold\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(0)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 384 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z\"\n />\n </svg>\n </button>\n <button\n @click=\"editor.chain().focus().toggleItalic().run()\"\n :class=\"{\n italic: true,\n 'is-active': editor.isActive('italic'),\n }\"\n :aria-pressed=\"editor.isActive('italic')\"\n title=\"Italic\"\n aria-label=\"Italic\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(1)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 384 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z\"\n />\n </svg>\n </button>\n <button\n @click=\"editor.chain().focus().toggleOrderedList().run()\"\n :class=\"{ 'is-active': editor.isActive('orderedList') }\"\n :aria-pressed=\"editor.isActive('orderedList')\"\n title=\"Ordered List\"\n aria-label=\"Ordered List\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(2)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 512 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-13.3 0-24-10.7-24-24s10.7-24 24-24H64V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z\"\n />\n </svg>\n </button>\n <button\n @click=\"editor.chain().focus().toggleBulletList().run()\"\n :class=\"{ 'is-active': editor.isActive('bulletList') }\"\n :aria-pressed=\"editor.isActive('bulletList')\"\n title=\"Unordered List\"\n aria-label=\"Unordered List\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(3)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 512 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z\"\n />\n </svg>\n </button>\n </div>\n</template>\n\n<style scoped>\n.g-rich-text-toolbar {\n display: flex;\n\n button {\n background-color: unset;\n padding: 0.4rem 0.5rem;\n font-size: 0.875rem;\n border: none;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n\n &.bold {\n font-weight: 700;\n }\n &.italic {\n font-style: italic;\n }\n\n &.is-active {\n color: var(--g-accent-700);\n background-color: var(--g-surface-150);\n }\n\n &:hover {\n background-color: var(--g-primary-300);\n color: var(--g-primary-text);\n }\n }\n}\n</style>\n","<script lang=\"ts\" setup>\n/**\n * The GChatInput component provides a rich text editing experience using Tiptap. It supports:\n *\n * - **Bold** and *italic* text formatting\n * - Bullet and numbered lists\n * - Bubble menu for formatting (appears when text is selected)\n * - Press <kbd>Enter</kbd> to send, <kbd>Shift+Enter</kbd> for new line\n * - Undo/redo support\n *\n * **Note**: This component is part of the `@illinois-grad/grad-vue-rte` package, which includes Tiptap dependencies.\n */\nimport { computed } from \"vue\";\nimport { EditorContent } from \"@tiptap/vue-3\";\nimport { BubbleMenu } from \"@tiptap/vue-3/menus\";\nimport { useRichTextEditor } from \"../composables/useRichTextEditor\";\nimport GRichTextToolbar from \"./editor/GRichTextToolbar.vue\";\n\ndefineOptions({ inheritAttrs: false });\n\ninterface Props {\n /**\n * Placeholder text\n */\n placeholder?: string;\n /**\n * Disabled\n */\n disabled?: boolean;\n /**\n * Maximum number of rows\n */\n maxRows?: number;\n /**\n * Accessible label\n */\n label?: string;\n}\n\nconst props = withDefaults(defineProps<Props>(), {\n placeholder: \"Type a comment\",\n label: \"Comment input\",\n disabled: false,\n maxRows: 5,\n});\nconst model = defineModel<object | \"\">();\nconst emit = defineEmits<{ send: [content: object] }>();\n\nconst { editor, focusEditor } = useRichTextEditor({\n content: model as any,\n placeholder: computed(() => props.placeholder),\n label: computed(() => props.label),\n editorProps: {\n handleKeyDown(view: any, event: any) {\n if (editor.value && event.key === \"Enter\") {\n if (\n editor.value.isActive(\"orderedList\") ||\n editor.value.isActive(\"bulletList\")\n ) {\n return false;\n }\n if (!event.shiftKey) {\n model.value = editor.value?.getJSON();\n event.preventDefault();\n onSend(editor.value?.getJSON());\n return true;\n } else {\n editor.value.commands.splitBlock();\n }\n }\n return false;\n },\n attributes: {\n \"aria-keyshortcuts\": \"Shift+Enter\",\n },\n },\n});\n\nfunction onSend(content: any) {\n if (content) {\n emit(\"send\", content);\n }\n}\n\nfunction clickSend() {\n onSend(editor.value?.getJSON());\n}\n\nfunction focusInput() {\n focusEditor();\n}\n\ndefineExpose({ focusInput });\n</script>\n\n<template>\n <div class=\"g-chat-input-wrap\">\n <BubbleMenu :editor=\"editor\" v-if=\"editor\">\n <GRichTextToolbar :editor=\"editor\" class=\"bubble-menu\" />\n </BubbleMenu>\n <EditorContent :editor=\"editor\" class=\"editor-content\" />\n <button\n class=\"g-chat-send-btn\"\n :disabled=\"\n props.disabled ||\n !model ||\n (model && Object.keys(model).length === 0)\n \"\n @click=\"clickSend\"\n title=\"Send\"\n aria-label=\"Send\"\n type=\"button\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 512 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z\"\n />\n </svg>\n </button>\n </div>\n</template>\n\n<style>\n.g-chat-input-wrap {\n .tiptap {\n background: transparent;\n border: none;\n padding: 0.15em 0;\n font-size: 15px;\n max-height: 10em;\n flex: 1;\n outline: none;\n\n p {\n margin: 0.375em 0 0;\n }\n\n > :first-child {\n margin-top: 0;\n }\n > :last-child {\n margin-bottom: 0;\n }\n\n ul,\n ol {\n padding: 0 1em;\n margin: 0.375em 1em 0 0.4em;\n\n li p {\n margin-top: 0;\n margin-bottom: 0;\n }\n }\n p.is-editor-empty:first-child::before {\n color: var(--g-surface-600);\n content: attr(data-placeholder);\n float: left;\n height: 0;\n pointer-events: none;\n }\n }\n}\n</style>\n\n<style scoped>\n.bubble-menu {\n box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);\n background-color: var(--g-surface-100);\n\n :deep(button) {\n &:first-child {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n }\n &:last-child {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n }\n }\n}\n\n.g-chat-input-wrap {\n position: relative;\n display: flex;\n align-items: center;\n background: var(--g-surface-0);\n border: 2px solid var(--g-primary-500);\n border-radius: 4px;\n padding: 0.5em;\n\n &:has(.ProseMirror-focused) {\n outline: 2px solid var(--g-primary-500);\n outline-offset: 2px;\n box-shadow: 0 0 0 2px var(--g-info-200);\n border-color: var(--g-info-200);\n }\n}\n\n.editor-content {\n flex: 1;\n min-width: 0;\n}\n\n.g-chat-send-btn {\n color: var(--g-primary-500);\n font-size: 1em;\n border: 2px solid transparent;\n border-radius: 4px;\n padding: 0.4em;\n margin: 0;\n align-self: flex-end;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n background: transparent;\n flex-shrink: 0;\n\n &:hover:not(:disabled) {\n color: var(--g-accent-700);\n background-color: var(--g-surface-100);\n }\n\n &:focus:not(:disabled) {\n background-color: var(--g-info-200);\n color: var(--g-primary-500);\n }\n\n &:active:not(:disabled) {\n background-color: var(--g-primary-500);\n color: var(--g-surface-0);\n }\n\n &:disabled {\n color: var(--g-surface-300);\n cursor: not-allowed;\n }\n}\n</style>\n","<script lang=\"ts\" setup>\n/**\n * The GNoteInput component provides a rich text editing experience using Tiptap for writing notes. It supports:\n *\n * - **Bold** and *italic* text formatting\n * - Bullet and numbered lists\n * - Always visible toolbar for formatting\n * - Undo/redo support\n *\n * **Note**: This component is part of the `@illinois-grad/grad-vue-rte` package, which includes Tiptap dependencies.\n */\nimport { computed } from \"vue\";\nimport { EditorContent } from \"@tiptap/vue-3\";\nimport { useRichTextEditor } from \"../composables/useRichTextEditor\";\nimport GRichTextToolbar from \"./editor/GRichTextToolbar.vue\";\n\ndefineOptions({ inheritAttrs: false });\n\ninterface Props {\n /**\n * Placeholder text\n */\n placeholder?: string;\n /**\n * Accessible label\n */\n label?: string;\n}\n\nconst props = withDefaults(defineProps<Props>(), {\n placeholder: \"Write a note...\",\n label: \"Note input\",\n});\nconst model = defineModel<object | \"\">();\n\nconst { editor, focusEditor } = useRichTextEditor({\n content: model as any,\n placeholder: computed(() => props.placeholder),\n label: computed(() => props.label),\n});\n\nfunction focusInput() {\n focusEditor();\n}\n\ndefineExpose({ focusInput });\n</script>\n\n<template>\n <div class=\"g-note-input-wrap\">\n <GRichTextToolbar :editor=\"editor\" class=\"toolbar\" />\n <EditorContent :editor=\"editor\" class=\"editor-content\" />\n </div>\n</template>\n\n<style>\n.g-note-input-wrap {\n .tiptap {\n background: transparent;\n border: none;\n padding: 0.5em;\n font-size: 15px;\n min-height: 12em;\n flex: 1;\n outline: none;\n\n p {\n margin: 0.375em 0 0;\n }\n\n > :first-child {\n margin-top: 0;\n }\n > :last-child {\n margin-bottom: 0;\n }\n\n ul,\n ol {\n padding: 0 1em;\n margin: 0.375em 1em 0 0.4em;\n\n li p {\n margin-top: 0;\n margin-bottom: 0;\n }\n }\n p.is-editor-empty:first-child::before {\n color: var(--g-surface-600);\n content: attr(data-placeholder);\n float: left;\n height: 0;\n pointer-events: none;\n }\n }\n}\n</style>\n\n<style scoped>\n.g-note-input-wrap {\n display: flex;\n flex-direction: column;\n background: var(--g-surface-0);\n border: 2px solid var(--g-primary-500);\n border-radius: 4px;\n\n &:has(.ProseMirror-focused) {\n outline: 2px solid var(--g-primary-500);\n outline-offset: 2px;\n box-shadow: 0 0 0 2px var(--g-info-200);\n border-color: var(--g-info-200);\n }\n}\n\n.toolbar {\n border-bottom: 1px solid var(--g-surface-200);\n background-color: var(--g-surface-0);\n padding: 0.25rem;\n\n :deep(button) {\n border-radius: 4px;\n\n &:focus {\n outline: 2px solid var(--g-primary-500);\n outline-offset: 2px;\n }\n }\n}\n\n.editor-content {\n flex: 1;\n min-width: 0;\n}\n</style>\n","import { computed, onMounted, ref, type Ref, toValue, watch } from \"vue\";\nimport Document from \"@tiptap/extension-document\";\nimport Paragraph from \"@tiptap/extension-paragraph\";\nimport Text from \"@tiptap/extension-text\";\nimport Bold from \"@tiptap/extension-bold\";\nimport Italic from \"@tiptap/extension-italic\";\nimport { ListKit } from \"@tiptap/extension-list\";\nimport { generateHTML } from \"@tiptap/core\";\n\nconst extensions = [Document, Paragraph, Text, Bold, Italic, ListKit];\n\n/**\n * Composable for rendering a JSON string of tiptap content to HTML.\n * Supports all extensions used by GChatInput and GNoteInput.\n *\n * @param content - A reactive ref or plain string containing JSON-encoded tiptap content\n * @returns `rendered` — rendered HTML string, empty string for empty content, or `null` when rendering fails;\n * `hasError` — `true` when the content cannot be parsed or rendered\n */\nexport function useRichTextRenderer(content: Ref<string>) {\n const rendered = ref<string | null>(\"\");\n\n onMounted(() => {\n watch(content, () => {\n const value = toValue(content);\n if (!value || value.trim() === \"\") {\n return \"\";\n }\n\n try {\n const parsed = JSON.parse(value);\n let html = generateHTML(\n parsed,\n extensions\n );\n rendered.value = html;\n } catch (error) {\n console.error(\"Failed to parse content:\", value);\n console.error(error);\n rendered.value = null;\n }\n }, {immediate: true});\n });\n\n const hasError = computed(() => rendered.value === null);\n\n return { rendered, hasError };\n}\n","<script setup lang=\"ts\">\n/**\n * Renders a JSON string of tiptap content as HTML.\n * Supports all formatting produced by GChatInput and GNoteInput:\n * bold, italic, ordered lists, and bullet lists.\n *\n * - Empty content is handled gracefully (renders nothing).\n * - Displays an error message when the content cannot be parsed or rendered.\n *\n * The rendering only happens in the client when used with Nuxt.js.\n *\n * **Security note**: rendered HTML is produced by tiptap's `generateHTML`, which only\n * serializes recognized document nodes - it does not inject raw HTML from the JSON.\n *\n * **Note**: This component is part of the `@illinois-grad/grad-vue-rte` package, which includes Tiptap dependencies.\n */\nimport { toRef } from \"vue\";\nimport { useRichTextRenderer } from \"../composables/useRichTextRenderer\";\n\ninterface Props {\n /**\n * Error message when rendering fails\n */\n error?: string;\n\n // JSON-encoded tiptap content string to render.\n content: string;\n}\n\nconst props = defineProps<Props>();\n\nconst contentRef = toRef(props, \"content\");\n\nconst { rendered, hasError } = useRichTextRenderer(contentRef);\n\n</script>\n\n<template>\n <div class=\"g-rich-text-content-wrap\">\n <div v-if=\"hasError\" role=\"alert\" class=\"g-rich-text-content-error\">\n {{ error || 'Failed to render content.' }}\n </div>\n <div v-else-if=\"rendered\" class=\"g-rich-text-content\" v-html=\"rendered\"></div>\n </div>\n</template>\n\n<style scoped>\n.g-rich-text-content {\n p {\n margin: 0.375em 0;\n }\n\n > :first-child {\n margin-top: 0;\n }\n\n > :last-child {\n margin-bottom: 0;\n }\n\n ul,\n ol {\n padding: 0 1em;\n margin: 0.375em 1em 0 0.4em;\n\n li p {\n margin-top: 0;\n margin-bottom: 0;\n }\n }\n}\n\n.g-rich-text-content-error {\n color: var(--g-danger-700);\n font-size: 0.875em;\n}\n</style>\n"],"names":["useRichTextEditor","options","content","placeholder","label","onUpdate","editorProps","placeholderValue","labelValue","editor","useEditor","Document","Paragraph","Text","Bold","Italic","ListKit","UndoRedo","Placeholder","watch","val","toRaw","focusEditor","useToolbarNavigation","toolbarRef","activeButtonIndex","ref","handleToolbarKeyDown","event","toolbar","buttons","currentIndex","btn","nextIndex","getButtonTabIndex","index","props","__props","editorRef","computed","_createElementBlock","_cache","_unref","args","_createElementVNode","$event","_normalizeClass","model","_useModel","emit","__emit","view","onSend","clickSend","focusInput","__expose","_openBlock","_hoisted_1","_createBlock","BubbleMenu","_createVNode","GRichTextToolbar","EditorContent","extensions","useRichTextRenderer","rendered","onMounted","value","toValue","parsed","html","generateHTML","error","hasError","contentRef","toRef","_hoisted_2","_toDisplayString"],"mappings":"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"}
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { App } from "vue";
|
|
2
|
-
import { GChatInput, GNoteInput } from "./grad-vue-rte.ts";
|
|
2
|
+
import { GChatInput, GNoteInput, GRichTextContent } from "./grad-vue-rte.ts";
|
|
3
3
|
declare const _default: {
|
|
4
4
|
install(app: App): void;
|
|
5
5
|
};
|
|
@@ -8,5 +8,6 @@ declare module "vue" {
|
|
|
8
8
|
interface GlobalComponents {
|
|
9
9
|
GChatInput: typeof GChatInput;
|
|
10
10
|
GNoteInput: typeof GNoteInput;
|
|
11
|
+
GRichTextContent: typeof GRichTextContent;
|
|
11
12
|
}
|
|
12
13
|
}
|
package/dist/plugin.js
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
|
-
import { G as
|
|
2
|
-
|
|
1
|
+
import { G as o, a as n, b as p } from "./main-Bh1IF4ob.js";
|
|
2
|
+
import "vue";
|
|
3
|
+
import "@tiptap/extension-document";
|
|
4
|
+
import "@tiptap/extension-paragraph";
|
|
5
|
+
import "@tiptap/extension-text";
|
|
6
|
+
import "@tiptap/extension-bold";
|
|
7
|
+
import "@tiptap/extension-italic";
|
|
8
|
+
import "@tiptap/extension-list";
|
|
9
|
+
import "@tiptap/core";
|
|
10
|
+
const h = {
|
|
3
11
|
install(t) {
|
|
4
|
-
t.component("GChatInput",
|
|
12
|
+
t.component("GChatInput", o), t.component("GNoteInput", n), t.component("GRichTextContent", p);
|
|
5
13
|
}
|
|
6
14
|
};
|
|
7
15
|
export {
|
|
8
|
-
|
|
16
|
+
h as default
|
|
9
17
|
};
|
|
10
18
|
//# sourceMappingURL=plugin.js.map
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sources":["../src/plugin.ts"],"sourcesContent":["import type { App } from \"vue\";\nimport {\n GChatInput,\n GNoteInput,\n} from \"./grad-vue-rte.ts\";\n\nexport default {\n install(app: App) {\n app.component(\"GChatInput\", GChatInput);\n app.component(\"GNoteInput\", GNoteInput);\n },\n};\n\ndeclare module \"vue\" {\n export interface GlobalComponents {\n GChatInput: typeof GChatInput;\n GNoteInput: typeof GNoteInput;\n }\n}\n"],"names":["plugin","app","GChatInput","GNoteInput"],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.js","sources":["../src/plugin.ts"],"sourcesContent":["import type { App } from \"vue\";\nimport {\n GChatInput,\n GNoteInput,\n GRichTextContent,\n} from \"./grad-vue-rte.ts\";\n\nexport default {\n install(app: App) {\n app.component(\"GChatInput\", GChatInput);\n app.component(\"GNoteInput\", GNoteInput);\n app.component(\"GRichTextContent\", GRichTextContent);\n },\n};\n\ndeclare module \"vue\" {\n export interface GlobalComponents {\n GChatInput: typeof GChatInput;\n GNoteInput: typeof GNoteInput;\n GRichTextContent: typeof GRichTextContent;\n }\n}\n"],"names":["plugin","app","GChatInput","GNoteInput","GRichTextContent"],"mappings":";;;;;;;;;AAOA,MAAAA,IAAe;AAAA,EACX,QAAQC,GAAU;AACd,IAAAA,EAAI,UAAU,cAAcC,CAAU,GACtCD,EAAI,UAAU,cAAcE,CAAU,GACtCF,EAAI,UAAU,oBAAoBG,CAAgB;AAAA,EACtD;AACJ;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@illinois-grad/grad-vue-rte",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.5",
|
|
4
4
|
"description": "Rich text editor components for Graduate College apps using Tiptap.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
|
-
"build": "vite build && vue-tsc --emitDeclarationOnly"
|
|
37
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
38
|
+
"watch": "vite build --watch"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"@tiptap/
|
|
41
|
-
"@tiptap/extension-
|
|
42
|
-
"@tiptap/extension-
|
|
43
|
-
"@tiptap/extension-
|
|
44
|
-
"@tiptap/extension-
|
|
45
|
-
"@tiptap/extension-
|
|
46
|
-
"@tiptap/extension-
|
|
47
|
-
"@tiptap/
|
|
48
|
-
"@tiptap/
|
|
49
|
-
"@tiptap/vue-3": "^3.4.0",
|
|
41
|
+
"@tiptap/extension-bold": "^3.20.1",
|
|
42
|
+
"@tiptap/extension-document": "^3.20.1",
|
|
43
|
+
"@tiptap/extension-italic": "^3.20.1",
|
|
44
|
+
"@tiptap/extension-list": "^3.20.1",
|
|
45
|
+
"@tiptap/extension-paragraph": "^3.20.1",
|
|
46
|
+
"@tiptap/extension-placeholder": "^3.20.1",
|
|
47
|
+
"@tiptap/extension-text": "^3.20.1",
|
|
48
|
+
"@tiptap/extensions": "^3.20.1",
|
|
49
|
+
"@tiptap/vue-3": "^3.20.1",
|
|
50
50
|
"vue": "^3.5"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
package/dist/main-EtH7847A.js
DELETED
|
@@ -1,338 +0,0 @@
|
|
|
1
|
-
import { watch as k, toRaw as z, ref as C, defineComponent as x, computed as m, createElementBlock as H, createCommentVNode as L, openBlock as h, unref as d, createElementVNode as s, normalizeClass as v, mergeModels as w, useModel as V, createBlock as M, createVNode as g, withCtx as N } from "vue";
|
|
2
|
-
import { useEditor as S, EditorContent as B } from "@tiptap/vue-3";
|
|
3
|
-
import { BubbleMenu as T } from "@tiptap/vue-3/menus";
|
|
4
|
-
import E from "@tiptap/extension-document";
|
|
5
|
-
import O from "@tiptap/extension-paragraph";
|
|
6
|
-
import D from "@tiptap/extension-text";
|
|
7
|
-
import R from "@tiptap/extension-bold";
|
|
8
|
-
import $ from "@tiptap/extension-italic";
|
|
9
|
-
import { ListKit as G } from "@tiptap/extension-list";
|
|
10
|
-
import { UndoRedo as J, Placeholder as K } from "@tiptap/extensions";
|
|
11
|
-
function I(t) {
|
|
12
|
-
const { content: c, placeholder: l, label: a, onUpdate: n, editorProps: i = {} } = t, r = typeof l == "string" ? l : l.value, e = typeof a == "string" ? a : a.value, o = S({
|
|
13
|
-
content: c.value || "",
|
|
14
|
-
extensions: [
|
|
15
|
-
E,
|
|
16
|
-
O,
|
|
17
|
-
D,
|
|
18
|
-
R,
|
|
19
|
-
$,
|
|
20
|
-
G,
|
|
21
|
-
J,
|
|
22
|
-
K.configure({ placeholder: r })
|
|
23
|
-
],
|
|
24
|
-
editorProps: {
|
|
25
|
-
...i,
|
|
26
|
-
attributes: {
|
|
27
|
-
"aria-label": e,
|
|
28
|
-
...i.attributes
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
onUpdate({ editor: u }) {
|
|
32
|
-
c.value = u.getJSON(), n && n(u);
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
k(
|
|
36
|
-
() => typeof a == "string" ? a : a.value,
|
|
37
|
-
(u) => {
|
|
38
|
-
o.value && o.value?.setOptions({
|
|
39
|
-
editorProps: {
|
|
40
|
-
attributes: {
|
|
41
|
-
"aria-label": u
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
), k(
|
|
47
|
-
() => c.value,
|
|
48
|
-
(u) => {
|
|
49
|
-
o.value && JSON.stringify(u) !== JSON.stringify(o.value.getJSON()) && o.value.commands.setContent(z(u) || "");
|
|
50
|
-
}
|
|
51
|
-
);
|
|
52
|
-
function f() {
|
|
53
|
-
o.value?.commands?.focus();
|
|
54
|
-
}
|
|
55
|
-
return {
|
|
56
|
-
editor: o,
|
|
57
|
-
focusEditor: f
|
|
58
|
-
};
|
|
59
|
-
}
|
|
60
|
-
function P(t, c) {
|
|
61
|
-
const l = C(0);
|
|
62
|
-
function a(i) {
|
|
63
|
-
const r = c.value;
|
|
64
|
-
if (!r) return;
|
|
65
|
-
const e = Array.from(
|
|
66
|
-
r.querySelectorAll("button")
|
|
67
|
-
), o = e.findIndex(
|
|
68
|
-
(u) => u === document.activeElement
|
|
69
|
-
);
|
|
70
|
-
if (i.key === "Escape") {
|
|
71
|
-
i.preventDefault(), t.value?.commands?.focus();
|
|
72
|
-
return;
|
|
73
|
-
}
|
|
74
|
-
if (i.key === "Tab")
|
|
75
|
-
return;
|
|
76
|
-
let f = o;
|
|
77
|
-
switch (i.key) {
|
|
78
|
-
case "ArrowRight":
|
|
79
|
-
case "ArrowDown":
|
|
80
|
-
i.preventDefault(), f = o < e.length - 1 ? o + 1 : 0;
|
|
81
|
-
break;
|
|
82
|
-
case "ArrowLeft":
|
|
83
|
-
case "ArrowUp":
|
|
84
|
-
i.preventDefault(), f = o > 0 ? o - 1 : e.length - 1;
|
|
85
|
-
break;
|
|
86
|
-
case "Home":
|
|
87
|
-
i.preventDefault(), f = 0;
|
|
88
|
-
break;
|
|
89
|
-
case "End":
|
|
90
|
-
i.preventDefault(), f = e.length - 1;
|
|
91
|
-
break;
|
|
92
|
-
default:
|
|
93
|
-
return;
|
|
94
|
-
}
|
|
95
|
-
l.value = f, e[f]?.focus();
|
|
96
|
-
}
|
|
97
|
-
function n(i) {
|
|
98
|
-
return i === l.value ? 0 : -1;
|
|
99
|
-
}
|
|
100
|
-
return {
|
|
101
|
-
activeButtonIndex: l,
|
|
102
|
-
handleToolbarKeyDown: a,
|
|
103
|
-
getButtonTabIndex: n
|
|
104
|
-
};
|
|
105
|
-
}
|
|
106
|
-
const U = ["aria-pressed", "tabindex"], j = ["aria-pressed", "tabindex"], q = ["aria-pressed", "tabindex"], W = ["aria-pressed", "tabindex"], F = /* @__PURE__ */ x({
|
|
107
|
-
__name: "GRichTextToolbar",
|
|
108
|
-
props: {
|
|
109
|
-
editor: {}
|
|
110
|
-
},
|
|
111
|
-
setup(t) {
|
|
112
|
-
const c = t, l = C(null), a = m(() => c.editor), { handleToolbarKeyDown: n, getButtonTabIndex: i } = P(
|
|
113
|
-
a,
|
|
114
|
-
l
|
|
115
|
-
);
|
|
116
|
-
return (r, e) => t.editor ? (h(), H("div", {
|
|
117
|
-
key: 0,
|
|
118
|
-
class: "g-rich-text-toolbar",
|
|
119
|
-
role: "toolbar",
|
|
120
|
-
"aria-label": "Text formatting",
|
|
121
|
-
ref_key: "toolbarRef",
|
|
122
|
-
ref: l,
|
|
123
|
-
onKeydown: e[4] || (e[4] = //@ts-ignore
|
|
124
|
-
(...o) => d(n) && d(n)(...o)),
|
|
125
|
-
tabindex: "-1"
|
|
126
|
-
}, [
|
|
127
|
-
s("button", {
|
|
128
|
-
onClick: e[0] || (e[0] = (o) => t.editor.chain().focus().toggleBold().run()),
|
|
129
|
-
class: v({
|
|
130
|
-
bold: !0,
|
|
131
|
-
"is-active": t.editor.isActive("bold")
|
|
132
|
-
}),
|
|
133
|
-
"aria-pressed": t.editor.isActive("bold"),
|
|
134
|
-
title: "Bold",
|
|
135
|
-
"aria-label": "Bold",
|
|
136
|
-
type: "button",
|
|
137
|
-
tabindex: d(i)(0)
|
|
138
|
-
}, [...e[5] || (e[5] = [
|
|
139
|
-
s("svg", {
|
|
140
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
141
|
-
viewBox: "0 0 384 512",
|
|
142
|
-
width: "16",
|
|
143
|
-
height: "16",
|
|
144
|
-
fill: "currentColor",
|
|
145
|
-
"aria-hidden": "true"
|
|
146
|
-
}, [
|
|
147
|
-
s("path", { d: "M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z" })
|
|
148
|
-
], -1)
|
|
149
|
-
])], 10, U),
|
|
150
|
-
s("button", {
|
|
151
|
-
onClick: e[1] || (e[1] = (o) => t.editor.chain().focus().toggleItalic().run()),
|
|
152
|
-
class: v({
|
|
153
|
-
italic: !0,
|
|
154
|
-
"is-active": t.editor.isActive("italic")
|
|
155
|
-
}),
|
|
156
|
-
"aria-pressed": t.editor.isActive("italic"),
|
|
157
|
-
title: "Italic",
|
|
158
|
-
"aria-label": "Italic",
|
|
159
|
-
type: "button",
|
|
160
|
-
tabindex: d(i)(1)
|
|
161
|
-
}, [...e[6] || (e[6] = [
|
|
162
|
-
s("svg", {
|
|
163
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
164
|
-
viewBox: "0 0 384 512",
|
|
165
|
-
width: "16",
|
|
166
|
-
height: "16",
|
|
167
|
-
fill: "currentColor",
|
|
168
|
-
"aria-hidden": "true"
|
|
169
|
-
}, [
|
|
170
|
-
s("path", { d: "M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z" })
|
|
171
|
-
], -1)
|
|
172
|
-
])], 10, j),
|
|
173
|
-
s("button", {
|
|
174
|
-
onClick: e[2] || (e[2] = (o) => t.editor.chain().focus().toggleOrderedList().run()),
|
|
175
|
-
class: v({ "is-active": t.editor.isActive("orderedList") }),
|
|
176
|
-
"aria-pressed": t.editor.isActive("orderedList"),
|
|
177
|
-
title: "Ordered List",
|
|
178
|
-
"aria-label": "Ordered List",
|
|
179
|
-
type: "button",
|
|
180
|
-
tabindex: d(i)(2)
|
|
181
|
-
}, [...e[7] || (e[7] = [
|
|
182
|
-
s("svg", {
|
|
183
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
184
|
-
viewBox: "0 0 512 512",
|
|
185
|
-
width: "16",
|
|
186
|
-
height: "16",
|
|
187
|
-
fill: "currentColor",
|
|
188
|
-
"aria-hidden": "true"
|
|
189
|
-
}, [
|
|
190
|
-
s("path", { d: "M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-13.3 0-24-10.7-24-24s10.7-24 24-24H64V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" })
|
|
191
|
-
], -1)
|
|
192
|
-
])], 10, q),
|
|
193
|
-
s("button", {
|
|
194
|
-
onClick: e[3] || (e[3] = (o) => t.editor.chain().focus().toggleBulletList().run()),
|
|
195
|
-
class: v({ "is-active": t.editor.isActive("bulletList") }),
|
|
196
|
-
"aria-pressed": t.editor.isActive("bulletList"),
|
|
197
|
-
title: "Unordered List",
|
|
198
|
-
"aria-label": "Unordered List",
|
|
199
|
-
type: "button",
|
|
200
|
-
tabindex: d(i)(3)
|
|
201
|
-
}, [...e[8] || (e[8] = [
|
|
202
|
-
s("svg", {
|
|
203
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
204
|
-
viewBox: "0 0 512 512",
|
|
205
|
-
width: "16",
|
|
206
|
-
height: "16",
|
|
207
|
-
fill: "currentColor",
|
|
208
|
-
"aria-hidden": "true"
|
|
209
|
-
}, [
|
|
210
|
-
s("path", { d: "M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z" })
|
|
211
|
-
], -1)
|
|
212
|
-
])], 10, W)
|
|
213
|
-
], 544)) : L("", !0);
|
|
214
|
-
}
|
|
215
|
-
}), y = (t, c) => {
|
|
216
|
-
const l = t.__vccOpts || t;
|
|
217
|
-
for (const [a, n] of c)
|
|
218
|
-
l[a] = n;
|
|
219
|
-
return l;
|
|
220
|
-
}, A = /* @__PURE__ */ y(F, [["__scopeId", "data-v-8c490655"]]), Q = { class: "g-chat-input-wrap" }, X = ["disabled"], Y = /* @__PURE__ */ x({
|
|
221
|
-
inheritAttrs: !1,
|
|
222
|
-
__name: "GChatInput",
|
|
223
|
-
props: /* @__PURE__ */ w({
|
|
224
|
-
placeholder: { default: "Type a comment" },
|
|
225
|
-
disabled: { type: Boolean, default: !1 },
|
|
226
|
-
maxRows: { default: 5 },
|
|
227
|
-
label: { default: "Comment input" }
|
|
228
|
-
}, {
|
|
229
|
-
modelValue: {},
|
|
230
|
-
modelModifiers: {}
|
|
231
|
-
}),
|
|
232
|
-
emits: /* @__PURE__ */ w(["send"], ["update:modelValue"]),
|
|
233
|
-
setup(t, { expose: c, emit: l }) {
|
|
234
|
-
const a = t, n = V(t, "modelValue"), i = l, { editor: r, focusEditor: e } = I({
|
|
235
|
-
content: n,
|
|
236
|
-
placeholder: m(() => a.placeholder),
|
|
237
|
-
label: m(() => a.label),
|
|
238
|
-
editorProps: {
|
|
239
|
-
handleKeyDown(p, b) {
|
|
240
|
-
if (r.value && b.key === "Enter") {
|
|
241
|
-
if (r.value.isActive("orderedList") || r.value.isActive("bulletList"))
|
|
242
|
-
return !1;
|
|
243
|
-
if (b.shiftKey)
|
|
244
|
-
r.value.commands.splitBlock();
|
|
245
|
-
else
|
|
246
|
-
return n.value = r.value?.getJSON(), b.preventDefault(), o(r.value?.getJSON()), !0;
|
|
247
|
-
}
|
|
248
|
-
return !1;
|
|
249
|
-
},
|
|
250
|
-
attributes: {
|
|
251
|
-
"aria-keyshortcuts": "Shift+Enter"
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
});
|
|
255
|
-
function o(p) {
|
|
256
|
-
p && i("send", p);
|
|
257
|
-
}
|
|
258
|
-
function f() {
|
|
259
|
-
o(r.value?.getJSON());
|
|
260
|
-
}
|
|
261
|
-
function u() {
|
|
262
|
-
e();
|
|
263
|
-
}
|
|
264
|
-
return c({ focusInput: u }), (p, b) => (h(), H("div", Q, [
|
|
265
|
-
d(r) ? (h(), M(d(T), {
|
|
266
|
-
key: 0,
|
|
267
|
-
editor: d(r)
|
|
268
|
-
}, {
|
|
269
|
-
default: N(() => [
|
|
270
|
-
g(A, {
|
|
271
|
-
editor: d(r),
|
|
272
|
-
class: "bubble-menu"
|
|
273
|
-
}, null, 8, ["editor"])
|
|
274
|
-
]),
|
|
275
|
-
_: 1
|
|
276
|
-
}, 8, ["editor"])) : L("", !0),
|
|
277
|
-
g(d(B), {
|
|
278
|
-
editor: d(r),
|
|
279
|
-
class: "editor-content"
|
|
280
|
-
}, null, 8, ["editor"]),
|
|
281
|
-
s("button", {
|
|
282
|
-
class: "g-chat-send-btn",
|
|
283
|
-
disabled: a.disabled || !n.value || n.value && Object.keys(n.value).length === 0,
|
|
284
|
-
onClick: f,
|
|
285
|
-
title: "Send",
|
|
286
|
-
"aria-label": "Send",
|
|
287
|
-
type: "button"
|
|
288
|
-
}, [...b[0] || (b[0] = [
|
|
289
|
-
s("svg", {
|
|
290
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
291
|
-
viewBox: "0 0 512 512",
|
|
292
|
-
width: "16",
|
|
293
|
-
height: "16",
|
|
294
|
-
fill: "currentColor",
|
|
295
|
-
"aria-hidden": "true"
|
|
296
|
-
}, [
|
|
297
|
-
s("path", { d: "M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" })
|
|
298
|
-
], -1)
|
|
299
|
-
])], 8, X)
|
|
300
|
-
]));
|
|
301
|
-
}
|
|
302
|
-
}), ce = /* @__PURE__ */ y(Y, [["__scopeId", "data-v-45a4a5f2"]]), Z = { class: "g-note-input-wrap" }, _ = /* @__PURE__ */ x({
|
|
303
|
-
inheritAttrs: !1,
|
|
304
|
-
__name: "GNoteInput",
|
|
305
|
-
props: /* @__PURE__ */ w({
|
|
306
|
-
placeholder: { default: "Write a note..." },
|
|
307
|
-
label: { default: "Note input" }
|
|
308
|
-
}, {
|
|
309
|
-
modelValue: {},
|
|
310
|
-
modelModifiers: {}
|
|
311
|
-
}),
|
|
312
|
-
emits: ["update:modelValue"],
|
|
313
|
-
setup(t, { expose: c }) {
|
|
314
|
-
const l = t, a = V(t, "modelValue"), { editor: n, focusEditor: i } = I({
|
|
315
|
-
content: a,
|
|
316
|
-
placeholder: m(() => l.placeholder),
|
|
317
|
-
label: m(() => l.label)
|
|
318
|
-
});
|
|
319
|
-
function r() {
|
|
320
|
-
i();
|
|
321
|
-
}
|
|
322
|
-
return c({ focusInput: r }), (e, o) => (h(), H("div", Z, [
|
|
323
|
-
g(A, {
|
|
324
|
-
editor: d(n),
|
|
325
|
-
class: "toolbar"
|
|
326
|
-
}, null, 8, ["editor"]),
|
|
327
|
-
g(d(B), {
|
|
328
|
-
editor: d(n),
|
|
329
|
-
class: "editor-content"
|
|
330
|
-
}, null, 8, ["editor"])
|
|
331
|
-
]));
|
|
332
|
-
}
|
|
333
|
-
}), ue = /* @__PURE__ */ y(_, [["__scopeId", "data-v-c2d30b96"]]);
|
|
334
|
-
export {
|
|
335
|
-
ce as G,
|
|
336
|
-
ue as a
|
|
337
|
-
};
|
|
338
|
-
//# sourceMappingURL=main-EtH7847A.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"main-EtH7847A.js","sources":["../src/composables/useRichTextEditor.ts","../src/composables/useToolbarNavigation.ts","../src/components/editor/GRichTextToolbar.vue","../src/components/GChatInput.vue","../src/components/GNoteInput.vue"],"sourcesContent":["import { toRaw, watch, type Ref } from \"vue\";\nimport { useEditor } from \"@tiptap/vue-3\";\nimport Document from \"@tiptap/extension-document\";\nimport Paragraph from \"@tiptap/extension-paragraph\";\nimport Text from \"@tiptap/extension-text\";\nimport Bold from \"@tiptap/extension-bold\";\nimport Italic from \"@tiptap/extension-italic\";\nimport { ListKit } from \"@tiptap/extension-list\";\nimport { UndoRedo, Placeholder } from \"@tiptap/extensions\";\n\ninterface UseRichTextEditorOptions {\n content: Ref<object | \"\" | undefined>;\n placeholder: Ref<string> | string;\n label: Ref<string> | string;\n onUpdate?: (editor: any) => void;\n editorProps?: Record<string, any>;\n}\n\nexport function useRichTextEditor(options: UseRichTextEditorOptions) {\n const { content, placeholder, label, onUpdate, editorProps = {} } = options;\n\n const placeholderValue = typeof placeholder === 'string' ? placeholder : placeholder.value;\n const labelValue = typeof label === 'string' ? label : label.value;\n\n const editor = useEditor({\n content: content.value || \"\",\n extensions: [\n Document,\n Paragraph,\n Text,\n Bold,\n Italic,\n ListKit,\n UndoRedo,\n Placeholder.configure({ placeholder: placeholderValue }),\n ],\n editorProps: {\n ...editorProps,\n attributes: {\n \"aria-label\": labelValue,\n ...editorProps.attributes,\n },\n },\n onUpdate({ editor }) {\n content.value = editor.getJSON();\n if (onUpdate) {\n onUpdate(editor);\n }\n },\n });\n\n // Watch for label changes and update editor\n watch(\n () => typeof label === 'string' ? label : label.value,\n (val) => {\n if (editor.value) {\n editor.value?.setOptions({\n editorProps: {\n attributes: {\n \"aria-label\": val,\n },\n },\n });\n }\n },\n );\n\n // Watch for content changes and update editor\n watch(\n () => content.value,\n (val) => {\n if (\n editor.value &&\n JSON.stringify(val) !== JSON.stringify(editor.value.getJSON())\n ) {\n editor.value.commands.setContent(toRaw(val) || \"\");\n }\n },\n );\n\n function focusEditor() {\n editor.value?.commands?.focus();\n }\n\n return {\n editor,\n focusEditor,\n };\n}\n","import { ref, type Ref } from \"vue\";\nimport type { Editor } from \"@tiptap/vue-3\";\n\nexport function useToolbarNavigation(editor: Ref<Editor | undefined>, toolbarRef: Ref<HTMLElement | null>) {\n const activeButtonIndex = ref(0);\n\n function handleToolbarKeyDown(event: KeyboardEvent) {\n const toolbar = toolbarRef.value;\n if (!toolbar) return;\n\n const buttons = Array.from(\n toolbar.querySelectorAll(\"button\"),\n ) as HTMLButtonElement[];\n const currentIndex = buttons.findIndex(\n (btn) => btn === document.activeElement,\n );\n\n // Handle Escape key - return focus to editor\n if (event.key === \"Escape\") {\n event.preventDefault();\n editor.value?.commands?.focus();\n return;\n }\n\n // Don't handle Tab - let it exit the toolbar naturally\n if (event.key === \"Tab\") {\n return;\n }\n\n let nextIndex = currentIndex;\n\n switch (event.key) {\n case \"ArrowRight\":\n case \"ArrowDown\":\n event.preventDefault();\n nextIndex =\n currentIndex < buttons.length - 1 ? currentIndex + 1 : 0;\n break;\n case \"ArrowLeft\":\n case \"ArrowUp\":\n event.preventDefault();\n nextIndex =\n currentIndex > 0 ? currentIndex - 1 : buttons.length - 1;\n break;\n case \"Home\":\n event.preventDefault();\n nextIndex = 0;\n break;\n case \"End\":\n event.preventDefault();\n nextIndex = buttons.length - 1;\n break;\n default:\n return;\n }\n\n // Update active button index and focus\n activeButtonIndex.value = nextIndex;\n buttons[nextIndex]?.focus();\n }\n\n function getButtonTabIndex(index: number): number {\n return index === activeButtonIndex.value ? 0 : -1;\n }\n\n return {\n activeButtonIndex,\n handleToolbarKeyDown,\n getButtonTabIndex,\n };\n}\n","<script lang=\"ts\" setup>\nimport { ref, computed } from \"vue\";\nimport type { Editor } from \"@tiptap/vue-3\";\nimport { useToolbarNavigation } from \"../../composables/useToolbarNavigation.ts\";\n\ninterface Props {\n editor: Editor | undefined;\n}\n\nconst props = defineProps<Props>();\n\nconst toolbarRef = ref<HTMLElement | null>(null);\nconst editorRef = computed(() => props.editor);\nconst { handleToolbarKeyDown, getButtonTabIndex } = useToolbarNavigation(\n editorRef,\n toolbarRef,\n);\n</script>\n\n<template>\n <div\n v-if=\"editor\"\n class=\"g-rich-text-toolbar\"\n role=\"toolbar\"\n aria-label=\"Text formatting\"\n ref=\"toolbarRef\"\n @keydown=\"handleToolbarKeyDown\"\n tabindex=\"-1\"\n >\n <button\n @click=\"editor.chain().focus().toggleBold().run()\"\n :class=\"{\n bold: true,\n 'is-active': editor.isActive('bold'),\n }\"\n :aria-pressed=\"editor.isActive('bold')\"\n title=\"Bold\"\n aria-label=\"Bold\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(0)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 384 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z\"\n />\n </svg>\n </button>\n <button\n @click=\"editor.chain().focus().toggleItalic().run()\"\n :class=\"{\n italic: true,\n 'is-active': editor.isActive('italic'),\n }\"\n :aria-pressed=\"editor.isActive('italic')\"\n title=\"Italic\"\n aria-label=\"Italic\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(1)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 384 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z\"\n />\n </svg>\n </button>\n <button\n @click=\"editor.chain().focus().toggleOrderedList().run()\"\n :class=\"{ 'is-active': editor.isActive('orderedList') }\"\n :aria-pressed=\"editor.isActive('orderedList')\"\n title=\"Ordered List\"\n aria-label=\"Ordered List\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(2)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 512 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-13.3 0-24-10.7-24-24s10.7-24 24-24H64V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H48c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z\"\n />\n </svg>\n </button>\n <button\n @click=\"editor.chain().focus().toggleBulletList().run()\"\n :class=\"{ 'is-active': editor.isActive('bulletList') }\"\n :aria-pressed=\"editor.isActive('bulletList')\"\n title=\"Unordered List\"\n aria-label=\"Unordered List\"\n type=\"button\"\n :tabindex=\"getButtonTabIndex(3)\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 512 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z\"\n />\n </svg>\n </button>\n </div>\n</template>\n\n<style scoped>\n.g-rich-text-toolbar {\n display: flex;\n\n button {\n background-color: unset;\n padding: 0.4rem 0.5rem;\n font-size: 0.875rem;\n border: none;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n\n &.bold {\n font-weight: 700;\n }\n &.italic {\n font-style: italic;\n }\n\n &.is-active {\n color: var(--g-accent-700);\n background-color: var(--g-surface-150);\n }\n\n &:hover {\n background-color: var(--g-primary-300);\n color: var(--g-primary-text);\n }\n }\n}\n</style>\n","<script lang=\"ts\" setup>\n/**\n * The GChatInput component provides a rich text editing experience using Tiptap. It supports:\n *\n * - **Bold** and *italic* text formatting\n * - Bullet and numbered lists\n * - Bubble menu for formatting (appears when text is selected)\n * - Press <kbd>Enter</kbd> to send, <kbd>Shift+Enter</kbd> for new line\n * - Undo/redo support\n *\n * **Note**: This component is part of the `@illinois-grad/grad-vue-rte` package, which includes Tiptap dependencies.\n */\nimport { computed } from \"vue\";\nimport { EditorContent } from \"@tiptap/vue-3\";\nimport { BubbleMenu } from \"@tiptap/vue-3/menus\";\nimport { useRichTextEditor } from \"../composables/useRichTextEditor\";\nimport GRichTextToolbar from \"./editor/GRichTextToolbar.vue\";\n\ndefineOptions({ inheritAttrs: false });\n\ninterface Props {\n /**\n * Placeholder text\n */\n placeholder?: string;\n /**\n * Disabled\n */\n disabled?: boolean;\n /**\n * Maximum number of rows\n */\n maxRows?: number;\n /**\n * Accessible label\n */\n label?: string;\n}\n\nconst props = withDefaults(defineProps<Props>(), {\n placeholder: \"Type a comment\",\n label: \"Comment input\",\n disabled: false,\n maxRows: 5,\n});\nconst model = defineModel<object | \"\">();\nconst emit = defineEmits<{ send: [content: object] }>();\n\nconst { editor, focusEditor } = useRichTextEditor({\n content: model as any,\n placeholder: computed(() => props.placeholder),\n label: computed(() => props.label),\n editorProps: {\n handleKeyDown(view: any, event: any) {\n if (editor.value && event.key === \"Enter\") {\n if (\n editor.value.isActive(\"orderedList\") ||\n editor.value.isActive(\"bulletList\")\n ) {\n return false;\n }\n if (!event.shiftKey) {\n model.value = editor.value?.getJSON();\n event.preventDefault();\n onSend(editor.value?.getJSON());\n return true;\n } else {\n editor.value.commands.splitBlock();\n }\n }\n return false;\n },\n attributes: {\n \"aria-keyshortcuts\": \"Shift+Enter\",\n },\n },\n});\n\nfunction onSend(content: any) {\n if (content) {\n emit(\"send\", content);\n }\n}\n\nfunction clickSend() {\n onSend(editor.value?.getJSON());\n}\n\nfunction focusInput() {\n focusEditor();\n}\n\ndefineExpose({ focusInput });\n</script>\n\n<template>\n <div class=\"g-chat-input-wrap\">\n <BubbleMenu :editor=\"editor\" v-if=\"editor\">\n <GRichTextToolbar :editor=\"editor\" class=\"bubble-menu\" />\n </BubbleMenu>\n <EditorContent :editor=\"editor\" class=\"editor-content\" />\n <button\n class=\"g-chat-send-btn\"\n :disabled=\"\n props.disabled ||\n !model ||\n (model && Object.keys(model).length === 0)\n \"\n @click=\"clickSend\"\n title=\"Send\"\n aria-label=\"Send\"\n type=\"button\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 512 512\"\n width=\"16\"\n height=\"16\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z\"\n />\n </svg>\n </button>\n </div>\n</template>\n\n<style>\n.g-chat-input-wrap {\n .tiptap {\n background: transparent;\n border: none;\n padding: 0.15em 0;\n font-size: 15px;\n max-height: 10em;\n flex: 1;\n outline: none;\n\n p {\n margin: 0.375em 0 0;\n }\n\n > :first-child {\n margin-top: 0;\n }\n > :last-child {\n margin-bottom: 0;\n }\n\n ul,\n ol {\n padding: 0 1em;\n margin: 0.375em 1em 0 0.4em;\n\n li p {\n margin-top: 0;\n margin-bottom: 0;\n }\n }\n p.is-editor-empty:first-child::before {\n color: var(--g-surface-600);\n content: attr(data-placeholder);\n float: left;\n height: 0;\n pointer-events: none;\n }\n }\n}\n</style>\n\n<style scoped>\n.bubble-menu {\n box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);\n background-color: var(--g-surface-100);\n\n :deep(button) {\n &:first-child {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n }\n &:last-child {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n }\n }\n}\n\n.g-chat-input-wrap {\n position: relative;\n display: flex;\n align-items: center;\n background: var(--g-surface-0);\n border: 2px solid var(--g-primary-500);\n border-radius: 4px;\n padding: 0.5em;\n\n &:has(.ProseMirror-focused) {\n outline: 2px solid var(--g-primary-500);\n outline-offset: 2px;\n box-shadow: 0 0 0 2px var(--g-info-200);\n border-color: var(--g-info-200);\n }\n}\n\n.editor-content {\n flex: 1;\n min-width: 0;\n}\n\n.g-chat-send-btn {\n color: var(--g-primary-500);\n font-size: 1em;\n border: 2px solid transparent;\n border-radius: 4px;\n padding: 0.4em;\n margin: 0;\n align-self: flex-end;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n background: transparent;\n flex-shrink: 0;\n\n &:hover:not(:disabled) {\n color: var(--g-accent-700);\n background-color: var(--g-surface-100);\n }\n\n &:focus:not(:disabled) {\n background-color: var(--g-info-200);\n color: var(--g-primary-500);\n }\n\n &:active:not(:disabled) {\n background-color: var(--g-primary-500);\n color: var(--g-surface-0);\n }\n\n &:disabled {\n color: var(--g-surface-300);\n cursor: not-allowed;\n }\n}\n</style>\n","<script lang=\"ts\" setup>\n/**\n * The GNoteInput component provides a rich text editing experience using Tiptap for writing notes. It supports:\n *\n * - **Bold** and *italic* text formatting\n * - Bullet and numbered lists\n * - Always visible toolbar for formatting\n * - Undo/redo support\n *\n * **Note**: This component is part of the `@illinois-grad/grad-vue-rte` package, which includes Tiptap dependencies.\n */\nimport { computed } from \"vue\";\nimport { EditorContent } from \"@tiptap/vue-3\";\nimport { useRichTextEditor } from \"../composables/useRichTextEditor\";\nimport GRichTextToolbar from \"./editor/GRichTextToolbar.vue\";\n\ndefineOptions({ inheritAttrs: false });\n\ninterface Props {\n /**\n * Placeholder text\n */\n placeholder?: string;\n /**\n * Accessible label\n */\n label?: string;\n}\n\nconst props = withDefaults(defineProps<Props>(), {\n placeholder: \"Write a note...\",\n label: \"Note input\",\n});\nconst model = defineModel<object | \"\">();\n\nconst { editor, focusEditor } = useRichTextEditor({\n content: model as any,\n placeholder: computed(() => props.placeholder),\n label: computed(() => props.label),\n});\n\nfunction focusInput() {\n focusEditor();\n}\n\ndefineExpose({ focusInput });\n</script>\n\n<template>\n <div class=\"g-note-input-wrap\">\n <GRichTextToolbar :editor=\"editor\" class=\"toolbar\" />\n <EditorContent :editor=\"editor\" class=\"editor-content\" />\n </div>\n</template>\n\n<style>\n.g-note-input-wrap {\n .tiptap {\n background: transparent;\n border: none;\n padding: 0.5em;\n font-size: 15px;\n min-height: 12em;\n flex: 1;\n outline: none;\n\n p {\n margin: 0.375em 0 0;\n }\n\n > :first-child {\n margin-top: 0;\n }\n > :last-child {\n margin-bottom: 0;\n }\n\n ul,\n ol {\n padding: 0 1em;\n margin: 0.375em 1em 0 0.4em;\n\n li p {\n margin-top: 0;\n margin-bottom: 0;\n }\n }\n p.is-editor-empty:first-child::before {\n color: var(--g-surface-600);\n content: attr(data-placeholder);\n float: left;\n height: 0;\n pointer-events: none;\n }\n }\n}\n</style>\n\n<style scoped>\n.g-note-input-wrap {\n display: flex;\n flex-direction: column;\n background: var(--g-surface-0);\n border: 2px solid var(--g-primary-500);\n border-radius: 4px;\n\n &:has(.ProseMirror-focused) {\n outline: 2px solid var(--g-primary-500);\n outline-offset: 2px;\n box-shadow: 0 0 0 2px var(--g-info-200);\n border-color: var(--g-info-200);\n }\n}\n\n.toolbar {\n border-bottom: 1px solid var(--g-surface-200);\n background-color: var(--g-surface-0);\n padding: 0.25rem;\n\n :deep(button) {\n border-radius: 4px;\n\n &:focus {\n outline: 2px solid var(--g-primary-500);\n outline-offset: 2px;\n }\n }\n}\n\n.editor-content {\n flex: 1;\n min-width: 0;\n}\n</style>\n"],"names":["useRichTextEditor","options","content","placeholder","label","onUpdate","editorProps","placeholderValue","labelValue","editor","useEditor","Document","Paragraph","Text","Bold","Italic","ListKit","UndoRedo","Placeholder","watch","val","toRaw","focusEditor","useToolbarNavigation","toolbarRef","activeButtonIndex","ref","handleToolbarKeyDown","event","toolbar","buttons","currentIndex","btn","nextIndex","getButtonTabIndex","index","props","__props","editorRef","computed","_createElementBlock","_cache","_unref","args","_createElementVNode","$event","_normalizeClass","model","_useModel","emit","__emit","view","onSend","clickSend","focusInput","__expose","_openBlock","_hoisted_1","_createBlock","BubbleMenu","_createVNode","GRichTextToolbar","EditorContent"],"mappings":"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"}
|