137
137
import type { DiscussionInput } from "~/types/content/discussion";
138
138
import { IconMap } from "~/types/icon-map";
139
139
import { useEditor, EditorContent } from "@tiptap/vue-3";
140
+ import Placeholder from "@tiptap/extension-placeholder";
140
141
import StarterKit from "@tiptap/starter-kit";
141
142
import Link from "@tiptap/extension-link";
142
143
import Mention from "@tiptap/extension-mention";
@@ -149,16 +150,20 @@ const props = defineProps<{
149
150
const i18n = useI18n();
150
151
151
152
const editor = useEditor({
152
- content: props.discussionInput.highRisk
153
- ? i18n.t("i18n.components.card_discussion_input.leave_comment_high_risk")
154
- : i18n.t("i18n.components.card_discussion_input.leave_comment"),
155
153
extensions: [
156
154
StarterKit,
155
+ Placeholder.configure({
156
+ placeholder: props.discussionInput.highRisk
157
+ ? i18n.t(
158
+ "i18n.components.card_discussion_input.leave_comment_high_risk"
159
+ )
160
+ : i18n.t("i18n.components.card_discussion_input.leave_comment"),
161
+ }),
157
162
Link,
158
163
Mention.configure({
159
164
HTMLAttributes: {
160
165
class:
161
- "bg-purple-300 rounded-2xl box-decoration-clone text-purple-900 px-1 py-0.5",
166
+ "hover:underline font-bold rounded-2xl box-decoration-clone px-1 py-0.5",
162
167
},
163
168
suggestion: Suggestion,
164
169
}),
@@ -171,12 +176,6 @@ const editor = useEditor({
171
176
},
172
177
});
173
178
174
- // background-color: var(--purple-light);
175
- // border-radius: 0.4rem;
176
- // box-decoration-break: clone;
177
- // color: var(--purple);
178
- // padding: 0.1rem 0.3rem;
179
-
180
179
const at = () => {
181
180
console.log("click on at");
182
181
editor.value?.chain().focus().insertContent(" @").run();
@@ -218,10 +217,12 @@ const link = () => {
218
217
.setLink({ href: url })
219
218
.run();
220
219
};
221
- // There is as of now no plan to add in attachments.
220
+
221
+ // Note: There is as of now no plan to add in attachments.
222
222
// const attach = () => {
223
223
// console.log("click on attach");
224
224
// };
225
+
225
226
const listul = () => {
226
227
console.log("click on listul");
227
228
editor.value?.chain().focus().toggleBulletList().run();
@@ -231,3 +232,13 @@ const listol = () => {
231
232
editor.value?.chain().focus().toggleOrderedList().run();
232
233
};
233
234
</script>
235
+
236
+ <style>
237
+ .tiptap p.is-editor-empty:first-child::before {
238
+ color: #adb5bd;
239
+ content: attr(data-placeholder);
240
+ float: left;
241
+ height: 0;
242
+ pointer-events: none;
243
+ }
244
+ </style>
0 commit comments