mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 03:04:05 +00:00
Refactor editor and allow links
This commit is contained in:
13
package.json
13
package.json
@@ -2,7 +2,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite --host",
|
"dev": "vite",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"serve": "vite preview",
|
"serve": "vite preview",
|
||||||
"test": "eslint ./resources/scripts --ext .js,.vue"
|
"test": "eslint ./resources/scripts --ext .js,.vue"
|
||||||
@@ -30,11 +30,12 @@
|
|||||||
"@heroicons/vue": "^1.0.6",
|
"@heroicons/vue": "^1.0.6",
|
||||||
"@popperjs/core": "^2.11.8",
|
"@popperjs/core": "^2.11.8",
|
||||||
"@stripe/stripe-js": "^2.4.0",
|
"@stripe/stripe-js": "^2.4.0",
|
||||||
"@tiptap/core": "^2.1.16",
|
"@tiptap/core": "^2.8.0",
|
||||||
"@tiptap/extension-text-align": "^2.1.16",
|
"@tiptap/extension-link": "^2.8.0",
|
||||||
"@tiptap/starter-kit": "^2.1.16",
|
"@tiptap/extension-text-align": "^2.8.0",
|
||||||
"@tiptap/vue-3": "^2.1.16",
|
"@tiptap/pm": "^2.8.0",
|
||||||
"@tiptap/pm": "^2.0.0",
|
"@tiptap/starter-kit": "^2.8.0",
|
||||||
|
"@tiptap/vue-3": "^2.8.0",
|
||||||
"@types/node": "^20.11.9",
|
"@types/node": "^20.11.9",
|
||||||
"@vuelidate/components": "^1.2.6",
|
"@vuelidate/components": "^1.2.6",
|
||||||
"@vuelidate/core": "^2.0.3",
|
"@vuelidate/core": "^2.0.3",
|
||||||
|
|||||||
@@ -8,598 +8,73 @@
|
|||||||
</BaseContentPlaceholders>
|
</BaseContentPlaceholders>
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
class="
|
class="box-border w-full text-sm leading-8 text-left bg-white border border-gray-200 rounded-md min-h-[200px] overflow-hidden"
|
||||||
box-border
|
|
||||||
w-full
|
|
||||||
text-sm
|
|
||||||
leading-8
|
|
||||||
text-left
|
|
||||||
bg-white
|
|
||||||
border border-gray-200
|
|
||||||
rounded-md
|
|
||||||
min-h-[200px]
|
|
||||||
overflow-hidden
|
|
||||||
"
|
|
||||||
>
|
>
|
||||||
<div v-if="editor" class="editor-content">
|
<div v-if="editor" class="editor-content">
|
||||||
<div class="flex justify-end p-2 border-b border-gray-200 md:hidden">
|
<div class="flex justify-end p-2 border-b border-gray-200 md:hidden">
|
||||||
<BaseDropdown width-class="w-48">
|
<BaseDropdown width-class="w-48">
|
||||||
<template #activator>
|
<template #activator>
|
||||||
<div
|
<div
|
||||||
class="
|
class="flex items-center justify-center w-6 h-6 ml-2 text-sm text-black bg-white rounded-sm md:h-9 md:w-9"
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
ml-2
|
|
||||||
text-sm text-black
|
|
||||||
bg-white
|
|
||||||
rounded-sm
|
|
||||||
md:h-9 md:w-9
|
|
||||||
"
|
|
||||||
>
|
>
|
||||||
<dots-vertical-icon class="w-6 h-6 text-gray-600" />
|
<dots-vertical-icon class="w-6 h-6 text-gray-600" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<div class="flex flex-wrap space-x-1">
|
<div class="flex flex-wrap space-x-1">
|
||||||
<span
|
<button
|
||||||
class="
|
v-for="button in editorButtons"
|
||||||
flex
|
type="button"
|
||||||
items-center
|
:key="button.name"
|
||||||
justify-center
|
class="p-1 rounded hover:bg-gray-100"
|
||||||
w-6
|
@click="button.action"
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('bold') }"
|
|
||||||
@click="editor.chain().focus().toggleBold().run()"
|
|
||||||
>
|
>
|
||||||
<bold-icon class="h-3 cursor-pointer fill-current" />
|
<component
|
||||||
</span>
|
:is="button.icon"
|
||||||
<span
|
v-if="button.icon"
|
||||||
class="
|
class="w-4 h-4 text-gray-700 fill-gray-700"
|
||||||
flex
|
/>
|
||||||
items-center
|
<span v-else-if="button.text" class="px-1 text-sm font-medium text-gray-600">
|
||||||
justify-center
|
{{ button.text }}
|
||||||
w-6
|
</span>
|
||||||
h-6
|
</button>
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('italic') }"
|
|
||||||
@click="editor.chain().focus().toggleItalic().run()"
|
|
||||||
>
|
|
||||||
<italic-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('strike') }"
|
|
||||||
@click="editor.chain().focus().toggleStrike().run()"
|
|
||||||
>
|
|
||||||
<strikethrough-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('code') }"
|
|
||||||
@click="editor.chain().focus().toggleCode().run()"
|
|
||||||
>
|
|
||||||
<coding-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('paragraph') }"
|
|
||||||
@click="editor.chain().focus().setParagraph().run()"
|
|
||||||
>
|
|
||||||
<paragraph-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{
|
|
||||||
'bg-gray-200': editor.isActive('heading', { level: 1 }),
|
|
||||||
}"
|
|
||||||
@click="editor.chain().focus().toggleHeading({ level: 1 }).run()"
|
|
||||||
>
|
|
||||||
H1
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{
|
|
||||||
'bg-gray-200': editor.isActive('heading', { level: 2 }),
|
|
||||||
}"
|
|
||||||
@click="editor.chain().focus().toggleHeading({ level: 2 }).run()"
|
|
||||||
>
|
|
||||||
H2
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{
|
|
||||||
'bg-gray-200': editor.isActive('heading', { level: 3 }),
|
|
||||||
}"
|
|
||||||
@click="editor.chain().focus().toggleHeading({ level: 3 }).run()"
|
|
||||||
>
|
|
||||||
H3
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('bulletList') }"
|
|
||||||
@click="editor.chain().focus().toggleBulletList().run()"
|
|
||||||
>
|
|
||||||
<list-ul-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('orderedList') }"
|
|
||||||
@click="editor.chain().focus().toggleOrderedList().run()"
|
|
||||||
>
|
|
||||||
<list-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('blockquote') }"
|
|
||||||
@click="editor.chain().focus().toggleBlockquote().run()"
|
|
||||||
>
|
|
||||||
<quote-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('codeBlock') }"
|
|
||||||
@click="editor.chain().focus().toggleCodeBlock().run()"
|
|
||||||
>
|
|
||||||
<code-block-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('undo') }"
|
|
||||||
@click="editor.chain().focus().undo().run()"
|
|
||||||
>
|
|
||||||
<undo-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('redo') }"
|
|
||||||
@click="editor.chain().focus().redo().run()"
|
|
||||||
>
|
|
||||||
<redo-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</BaseDropdown>
|
</BaseDropdown>
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden p-2 border-b border-gray-200 md:flex">
|
<div class="hidden p-2 border-b border-gray-200 md:flex">
|
||||||
<div class="flex flex-wrap space-x-1">
|
<div class="flex flex-wrap space-x-1">
|
||||||
<span
|
<button
|
||||||
class="
|
v-for="button in editorButtons"
|
||||||
flex
|
type="button"
|
||||||
items-center
|
:key="button.name"
|
||||||
justify-center
|
class="p-1 rounded hover:bg-gray-100"
|
||||||
w-6
|
@click="button.action"
|
||||||
h-6
|
>
|
||||||
rounded-sm
|
<component
|
||||||
cursor-pointer
|
:is="button.icon"
|
||||||
hover:bg-gray-100
|
v-if="button.icon"
|
||||||
"
|
class="w-4 h-4 text-gray-700 fill-gray-700"
|
||||||
:class="{ 'bg-gray-200': editor.isActive('bold') }"
|
/>
|
||||||
@click="editor.chain().focus().toggleBold().run()"
|
<span v-else-if="button.text" class="px-1 text-sm font-medium text-gray-600">
|
||||||
>
|
{{ button.text }}
|
||||||
<bold-icon class="h-3 cursor-pointer fill-current" />
|
</span>
|
||||||
</span>
|
</button>
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('italic') }"
|
|
||||||
@click="editor.chain().focus().toggleItalic().run()"
|
|
||||||
>
|
|
||||||
<italic-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('strike') }"
|
|
||||||
@click="editor.chain().focus().toggleStrike().run()"
|
|
||||||
>
|
|
||||||
<strikethrough-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('code') }"
|
|
||||||
@click="editor.chain().focus().toggleCode().run()"
|
|
||||||
>
|
|
||||||
<coding-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('paragraph') }"
|
|
||||||
@click="editor.chain().focus().setParagraph().run()"
|
|
||||||
>
|
|
||||||
<paragraph-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('heading', { level: 1 }) }"
|
|
||||||
@click="editor.chain().focus().toggleHeading({ level: 1 }).run()"
|
|
||||||
>
|
|
||||||
H1
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('heading', { level: 2 }) }"
|
|
||||||
@click="editor.chain().focus().toggleHeading({ level: 2 }).run()"
|
|
||||||
>
|
|
||||||
H2
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('heading', { level: 3 }) }"
|
|
||||||
@click="editor.chain().focus().toggleHeading({ level: 3 }).run()"
|
|
||||||
>
|
|
||||||
H3
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('bulletList') }"
|
|
||||||
@click="editor.chain().focus().toggleBulletList().run()"
|
|
||||||
>
|
|
||||||
<list-ul-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('orderedList') }"
|
|
||||||
@click="editor.chain().focus().toggleOrderedList().run()"
|
|
||||||
>
|
|
||||||
<list-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('blockquote') }"
|
|
||||||
@click="editor.chain().focus().toggleBlockquote().run()"
|
|
||||||
>
|
|
||||||
<quote-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('codeBlock') }"
|
|
||||||
@click="editor.chain().focus().toggleCodeBlock().run()"
|
|
||||||
>
|
|
||||||
<code-block-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('undo') }"
|
|
||||||
@click="editor.chain().focus().undo().run()"
|
|
||||||
>
|
|
||||||
<undo-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive('redo') }"
|
|
||||||
@click="editor.chain().focus().redo().run()"
|
|
||||||
>
|
|
||||||
<redo-icon class="h-3 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive({ textAlign: 'left' }) }"
|
|
||||||
@click="editor.chain().focus().setTextAlign('left').run()"
|
|
||||||
>
|
|
||||||
<menu-alt2-icon class="h-5 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive({ textAlign: 'right' }) }"
|
|
||||||
@click="editor.chain().focus().setTextAlign('right').run()"
|
|
||||||
>
|
|
||||||
<menu-alt3-icon class="h-5 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{
|
|
||||||
'bg-gray-200': editor.isActive({ textAlign: 'justify' }),
|
|
||||||
}"
|
|
||||||
@click="editor.chain().focus().setTextAlign('justify').run()"
|
|
||||||
>
|
|
||||||
<menu-icon class="h-5 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="
|
|
||||||
flex
|
|
||||||
items-center
|
|
||||||
justify-center
|
|
||||||
w-6
|
|
||||||
h-6
|
|
||||||
rounded-sm
|
|
||||||
cursor-pointer
|
|
||||||
hover:bg-gray-100
|
|
||||||
"
|
|
||||||
:class="{ 'bg-gray-200': editor.isActive({ textAlign: 'center' }) }"
|
|
||||||
@click="editor.chain().focus().setTextAlign('center').run()"
|
|
||||||
>
|
|
||||||
<menu-center-icon class="h-5 cursor-pointer fill-current" />
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<editor-content
|
<editor-content
|
||||||
:editor="editor"
|
:editor="editor"
|
||||||
class="
|
class="box-border relative w-full text-sm leading-8 text-left editor__content"
|
||||||
box-border
|
|
||||||
relative
|
|
||||||
w-full
|
|
||||||
text-sm
|
|
||||||
leading-8
|
|
||||||
text-left
|
|
||||||
editor__content
|
|
||||||
"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { onUnmounted, watch } from 'vue'
|
import { ref, onUnmounted, watch, markRaw } from 'vue'
|
||||||
import { useEditor, EditorContent } from '@tiptap/vue-3'
|
import { useEditor, EditorContent } from '@tiptap/vue-3'
|
||||||
import StarterKit from '@tiptap/starter-kit'
|
import StarterKit from '@tiptap/starter-kit'
|
||||||
import {
|
|
||||||
DotsVerticalIcon,
|
|
||||||
MenuAlt2Icon,
|
|
||||||
MenuAlt3Icon,
|
|
||||||
MenuIcon,
|
|
||||||
} from '@heroicons/vue/outline'
|
|
||||||
import TextAlign from '@tiptap/extension-text-align'
|
import TextAlign from '@tiptap/extension-text-align'
|
||||||
|
import Link from '@tiptap/extension-link'
|
||||||
|
import { DotsVerticalIcon } from '@heroicons/vue/outline'
|
||||||
import {
|
import {
|
||||||
BoldIcon,
|
BoldIcon,
|
||||||
CodingIcon,
|
CodingIcon,
|
||||||
@@ -614,26 +89,12 @@ import {
|
|||||||
CodeBlockIcon,
|
CodeBlockIcon,
|
||||||
MenuCenterIcon,
|
MenuCenterIcon,
|
||||||
} from './icons/index.js'
|
} from './icons/index.js'
|
||||||
|
import { MenuAlt2Icon, MenuAlt3Icon, MenuIcon, LinkIcon } from '@heroicons/vue/solid'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
EditorContent,
|
EditorContent,
|
||||||
BoldIcon,
|
|
||||||
CodingIcon,
|
|
||||||
ItalicIcon,
|
|
||||||
ListIcon,
|
|
||||||
ListUlIcon,
|
|
||||||
ParagraphIcon,
|
|
||||||
QuoteIcon,
|
|
||||||
StrikethroughIcon,
|
|
||||||
UndoIcon,
|
|
||||||
RedoIcon,
|
|
||||||
CodeBlockIcon,
|
|
||||||
DotsVerticalIcon,
|
DotsVerticalIcon,
|
||||||
MenuCenterIcon,
|
|
||||||
MenuAlt2Icon,
|
|
||||||
MenuAlt3Icon,
|
|
||||||
MenuIcon,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
@@ -646,7 +107,9 @@ export default {
|
|||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
emits: ['update:modelValue'],
|
emits: ['update:modelValue'],
|
||||||
|
|
||||||
setup(props, { emit }) {
|
setup(props, { emit }) {
|
||||||
const editor = useEditor({
|
const editor = useEditor({
|
||||||
content: props.modelValue,
|
content: props.modelValue,
|
||||||
@@ -656,38 +119,62 @@ export default {
|
|||||||
types: ['heading', 'paragraph'],
|
types: ['heading', 'paragraph'],
|
||||||
alignments: ['left', 'right', 'center', 'justify'],
|
alignments: ['left', 'right', 'center', 'justify'],
|
||||||
}),
|
}),
|
||||||
|
Link.configure({
|
||||||
|
openOnClick: false,
|
||||||
|
}),
|
||||||
],
|
],
|
||||||
|
onUpdate: ({ editor }) => {
|
||||||
onUpdate: () => {
|
emit('update:modelValue', editor.getHTML())
|
||||||
emit('update:modelValue', editor.value.getHTML())
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
watch(
|
const editorButtons = ref([
|
||||||
() => props.modelValue,
|
{ name: 'bold', icon: markRaw(BoldIcon), action: () => editor.value.chain().focus().toggleBold().run() },
|
||||||
(value) => {
|
{ name: 'italic', icon: markRaw(ItalicIcon), action: () => editor.value.chain().focus().toggleItalic().run() },
|
||||||
const isSame = editor.value.getHTML() === value
|
{ name: 'strike', icon: markRaw(StrikethroughIcon), action: () => editor.value.chain().focus().toggleStrike().run() },
|
||||||
|
{ name: 'code', icon: markRaw(CodingIcon), action: () => editor.value.chain().focus().toggleCode().run() },
|
||||||
if (isSame) {
|
{ name: 'paragraph', icon: markRaw(ParagraphIcon), action: () => editor.value.chain().focus().setParagraph().run() },
|
||||||
return
|
{ name: 'h1', text: 'H1', action: () => editor.value.chain().focus().toggleHeading({ level: 1 }).run() },
|
||||||
|
{ name: 'h2', text: 'H2', action: () => editor.value.chain().focus().toggleHeading({ level: 2 }).run() },
|
||||||
|
{ name: 'h3', text: 'H3', action: () => editor.value.chain().focus().toggleHeading({ level: 3 }).run() },
|
||||||
|
{ name: 'bulletList', icon: markRaw(ListUlIcon), action: () => editor.value.chain().focus().toggleBulletList().run() },
|
||||||
|
{ name: 'orderedList', icon: markRaw(ListIcon), action: () => editor.value.chain().focus().toggleOrderedList().run() },
|
||||||
|
{ name: 'blockquote', icon: markRaw(QuoteIcon), action: () => editor.value.chain().focus().toggleBlockquote().run() },
|
||||||
|
{ name: 'codeBlock', icon: markRaw(CodeBlockIcon), action: () => editor.value.chain().focus().toggleCodeBlock().run() },
|
||||||
|
{ name: 'undo', icon: markRaw(UndoIcon), action: () => editor.value.chain().focus().undo().run() },
|
||||||
|
{ name: 'redo', icon: markRaw(RedoIcon), action: () => editor.value.chain().focus().redo().run() },
|
||||||
|
{ name: 'alignLeft', icon: markRaw(MenuAlt2Icon), action: () => editor.value.chain().focus().setTextAlign('left').run() },
|
||||||
|
{ name: 'alignRight', icon: markRaw(MenuAlt3Icon), action: () => editor.value.chain().focus().setTextAlign('right').run() },
|
||||||
|
{ name: 'alignJustify', icon: markRaw(MenuIcon), action: () => editor.value.chain().focus().setTextAlign('justify').run() },
|
||||||
|
{ name: 'alignCenter', icon: markRaw(MenuCenterIcon), action: () => editor.value.chain().focus().setTextAlign('center').run() },
|
||||||
|
{ name: 'addLink', icon: markRaw(LinkIcon), action: () => {
|
||||||
|
const url = window.prompt('URL')
|
||||||
|
if (url) {
|
||||||
|
editor.value.chain().focus().setLink({ href: url }).run()
|
||||||
}
|
}
|
||||||
|
}},
|
||||||
|
])
|
||||||
|
|
||||||
editor.value.commands.setContent(props.modelValue, false)
|
watch(() => props.modelValue, (newValue) => {
|
||||||
|
if (editor.value && newValue !== editor.value.getHTML()) {
|
||||||
|
editor.value.commands.setContent(newValue, false)
|
||||||
}
|
}
|
||||||
)
|
})
|
||||||
|
|
||||||
onUnmounted(() => {
|
onUnmounted(() => {
|
||||||
setTimeout(() => {
|
if (editor.value) {
|
||||||
editor.value.destroy()
|
editor.value.destroy()
|
||||||
}, 500)
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
editor,
|
editor,
|
||||||
|
editorButtons,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.ProseMirror {
|
.ProseMirror {
|
||||||
min-height: 200px;
|
min-height: 200px;
|
||||||
@@ -747,6 +234,11 @@ export default {
|
|||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: rgb(var(--color-primary-500));
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ProseMirror:focus {
|
.ProseMirror:focus {
|
||||||
|
|||||||
Reference in New Issue
Block a user