Skip to content

Commit ee23636

Browse files
committed
Adding in placeholder ext + styling of discussion
1 parent e477196 commit ee23636

File tree

7 files changed

+53
-58
lines changed

7 files changed

+53
-58
lines changed

frontend/components/SearchBar.vue

+8-3
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,14 @@ const notUsingEditor = computed(
121121
);
122122
const { slash } = useMagicKeys({
123123
passive: false,
124-
// onEventFired(e) {
125-
// if (e.key === "/" && e.type === "keydown") e.preventDefault();
126-
// },
124+
onEventFired(e) {
125+
if (
126+
e.key === "/" &&
127+
e.type === "keydown" &&
128+
!activeElement.value?.classList.contains("tiptap")
129+
)
130+
e.preventDefault();
131+
},
127132
});
128133

129134
whenever(logicAnd(slash, notUsingEditor), () => {

frontend/components/card/discussion/CardDiscussionInput.vue

+22-11
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
import type { DiscussionInput } from "~/types/content/discussion";
138138
import { IconMap } from "~/types/icon-map";
139139
import { useEditor, EditorContent } from "@tiptap/vue-3";
140+
import Placeholder from "@tiptap/extension-placeholder";
140141
import StarterKit from "@tiptap/starter-kit";
141142
import Link from "@tiptap/extension-link";
142143
import Mention from "@tiptap/extension-mention";
@@ -149,16 +150,20 @@ const props = defineProps<{
149150
const i18n = useI18n();
150151

151152
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"),
155153
extensions: [
156154
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+
}),
157162
Link,
158163
Mention.configure({
159164
HTMLAttributes: {
160165
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",
162167
},
163168
suggestion: Suggestion,
164169
}),
@@ -171,12 +176,6 @@ const editor = useEditor({
171176
},
172177
});
173178

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-
180179
const at = () => {
181180
console.log("click on at");
182181
editor.value?.chain().focus().insertContent(" @").run();
@@ -218,10 +217,12 @@ const link = () => {
218217
.setLink({ href: url })
219218
.run();
220219
};
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.
222222
// const attach = () => {
223223
// console.log("click on attach");
224224
// };
225+
225226
const listul = () => {
226227
console.log("click on listul");
227228
editor.value?.chain().focus().toggleBulletList().run();
@@ -231,3 +232,13 @@ const listol = () => {
231232
editor.value?.chain().focus().toggleOrderedList().run();
232233
};
233234
</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>

frontend/components/card/discussion/MentionList.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<!-- SPDX-License-Identifier: AGPL-3.0-or-later -->
22
<template>
33
<div
4-
class="relative flex flex-col gap-0.5 overflow-auto rounded-lg border border-gray-200 bg-white p-2 shadow-md"
4+
class="relative flex flex-col gap-0.5 overflow-auto rounded-lg border border-section-div bg-layer-2 p-2 text-primary-text shadow-md"
55
>
66
<template v-if="items.length">
77
<button
88
v-for="(item, index) in items"
99
@click="selectItem(index)"
1010
:key="index"
1111
:class="{
12-
'is-selected rounded-lg bg-gray-50': index === selectedIndex,
12+
'is-selected rounded-lg bg-cta-orange/30': index === selectedIndex,
1313
}"
14-
class="flex w-full items-center gap-1 bg-transparent text-left hover:bg-gray-200 [&.is-selected]:bg-gray-300 hover:[&.is-selected]:bg-gray-400"
14+
class="hover:[&.is-selected]:bg-bg-cta-orange/50 [&.is-selected]:bg-bg-cta-orange/50 flex w-full items-center gap-1 rounded-lg bg-transparent text-left hover:bg-cta-orange/50"
1515
>
1616
<div class="px-1 py-0.5">
1717
{{ item }}
@@ -60,8 +60,8 @@ export default {
6060
return true;
6161
}
6262

63-
if (event.key === "Enter") {
64-
this.enterHandler();
63+
if (event.key === "Enter" || event.key === "Tab") {
64+
this.selectHandler();
6565
return true;
6666
}
6767

@@ -77,7 +77,7 @@ export default {
7777
this.selectedIndex = (this.selectedIndex + 1) % this.items.length;
7878
},
7979

80-
enterHandler() {
80+
selectHandler() {
8181
this.selectItem(this.selectedIndex);
8282
},
8383

frontend/components/card/discussion/Suggestion.js

+1-31
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,7 @@ import MentionList from "./MentionList.vue";
55

66
export default {
77
items: ({ query }) => {
8-
return [
9-
"Lea Thompson",
10-
"Cyndi Lauper",
11-
"Tom Cruise",
12-
"Madonna",
13-
"Jerry Hall",
14-
"Joan Collins",
15-
"Winona Ryder",
16-
"Christina Applegate",
17-
"Alyssa Milano",
18-
"Molly Ringwald",
19-
"Ally Sheedy",
20-
"Debbie Harry",
21-
"Olivia Newton-John",
22-
"Elton John",
23-
"Michael J. Fox",
24-
"Axl Rose",
25-
"Emilio Estevez",
26-
"Ralph Macchio",
27-
"Rob Lowe",
28-
"Jennifer Grey",
29-
"Mickey Rourke",
30-
"John Cusack",
31-
"Matthew Broderick",
32-
"Justine Bateman",
33-
"Lisa Bonet",
34-
]
8+
return ["Jay Doe", "Jane Doe", "John Doe"]
359
.filter((item) => item.toLowerCase().startsWith(query.toLowerCase()))
3610
.slice(0, 5);
3711
},
@@ -43,10 +17,6 @@ export default {
4317
return {
4418
onStart: (props) => {
4519
component = new VueRenderer(MentionList, {
46-
// using vue 2:
47-
// parent: this,
48-
// propsData: props,
49-
// using vue 3:
5020
props,
5121
editor: props.editor,
5222
});

frontend/components/sidebar/left/SidebarLeftSelector.vue

+4-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
<template>
33
<MenuLinkWrapper :id="id" :to="routeUrl" :selected="selected">
44
<div
5-
class="relative z-0 flex w-full items-center text-left text-sm font-medium"
6-
:class="{
7-
'space-x-2': sidebar.collapsed == false || sidebar.collapsedSwitch,
8-
}"
5+
class="relative z-0 flex w-full items-center space-x-2 text-left text-sm font-medium"
96
>
107
<span class="pl-1">
118
<Icon v-if="iconUrl" class="h-5 w-5 flex-shrink-0" :name="iconUrl" />
@@ -18,9 +15,9 @@
1815
<span class="sr-only">{{ $t("i18n._global.navigate_to") }}</span>
1916
{{ $t(label) }}
2017
</p>
21-
<span v-else class="sr-only"
22-
>{{ $t("i18n._global.navigate_to") }} {{ $t(label) }}</span
23-
>
18+
<span v-else class="sr-only">
19+
{{ $t("i18n._global.navigate_to") }} {{ $t(label) }}
20+
</span>
2421
</Transition>
2522
</div>
2623
</MenuLinkWrapper>

frontend/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"@tiptap/core": "^2.11.5",
6969
"@tiptap/extension-link": "^2.11.5",
7070
"@tiptap/extension-mention": "^2.11.5",
71+
"@tiptap/extension-placeholder": "^2.11.5",
7172
"@tiptap/pm": "^2.11.5",
7273
"@tiptap/starter-kit": "^2.11.5",
7374
"@tiptap/suggestion": "^2.11.5",

frontend/yarn.lock

+11
Original file line numberDiff line numberDiff line change
@@ -3625,6 +3625,16 @@ __metadata:
36253625
languageName: node
36263626
linkType: hard
36273627

3628+
"@tiptap/extension-placeholder@npm:^2.11.5":
3629+
version: 2.11.5
3630+
resolution: "@tiptap/extension-placeholder@npm:2.11.5"
3631+
peerDependencies:
3632+
"@tiptap/core": ^2.7.0
3633+
"@tiptap/pm": ^2.7.0
3634+
checksum: 10c0/7072f9d27cdf14e187a017fedbd9ecfce0926a4fff6fd78a33a0673496f787edd0542f7519c97f4e53b3c89845854f2c0fd50c8af869ee39f1fd14e595df2da7
3635+
languageName: node
3636+
linkType: hard
3637+
36283638
"@tiptap/extension-strike@npm:^2.11.5":
36293639
version: 2.11.5
36303640
resolution: "@tiptap/extension-strike@npm:2.11.5"
@@ -5109,6 +5119,7 @@ __metadata:
51095119
"@tiptap/core": "npm:^2.11.5"
51105120
"@tiptap/extension-link": "npm:^2.11.5"
51115121
"@tiptap/extension-mention": "npm:^2.11.5"
5122+
"@tiptap/extension-placeholder": "npm:^2.11.5"
51125123
"@tiptap/pm": "npm:^2.11.5"
51135124
"@tiptap/starter-kit": "npm:^2.11.5"
51145125
"@tiptap/suggestion": "npm:^2.11.5"

0 commit comments

Comments
 (0)