Add WYSIWYG editors for Geschichte and TT-Regeln pages
This commit is contained in:
77
pages/cms/tt-regeln.vue
Normal file
77
pages/cms/tt-regeln.vue
Normal file
@@ -0,0 +1,77 @@
|
||||
<template>
|
||||
<div class="min-h-full py-16 bg-gray-50">
|
||||
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="flex items-center justify-between mb-6">
|
||||
<h1 class="text-3xl sm:text-4xl font-display font-bold text-gray-900">TT-Regeln bearbeiten</h1>
|
||||
<div class="space-x-3">
|
||||
<button @click="save" class="inline-flex items-center px-4 py-2 rounded-lg bg-primary-600 text-white hover:bg-primary-700">Speichern</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-white rounded-xl shadow-sm border border-gray-200 p-4">
|
||||
<div class="flex flex-wrap items-center gap-2 mb-3">
|
||||
<button class="px-3 py-1 rounded border" @click="format('bold')"><strong>B</strong></button>
|
||||
<button class="px-3 py-1 rounded border" @click="format('italic')"><em>I</em></button>
|
||||
<button class="px-3 py-1 rounded border" @click="formatHeader(1)">H1</button>
|
||||
<button class="px-3 py-1 rounded border" @click="formatHeader(2)">H2</button>
|
||||
<button class="px-3 py-1 rounded border" @click="formatHeader(3)">H3</button>
|
||||
<button class="px-3 py-1 rounded border" @click="format('insertUnorderedList')">• Liste</button>
|
||||
<button class="px-3 py-1 rounded border" @click="format('insertOrderedList')">1. Liste</button>
|
||||
<button class="px-3 py-1 rounded border" @click="createLink()">Link</button>
|
||||
<button class="px-3 py-1 rounded border" @click="removeFormat()">Format entfernen</button>
|
||||
</div>
|
||||
<div
|
||||
ref="editor"
|
||||
class="min-h-[320px] p-4 outline-none prose max-w-none"
|
||||
contenteditable
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue'
|
||||
|
||||
definePageMeta({
|
||||
middleware: 'auth',
|
||||
})
|
||||
|
||||
useHead({ title: 'CMS: TT-Regeln' })
|
||||
|
||||
const editor = ref(null)
|
||||
const initialHtml = ref('')
|
||||
|
||||
async function load() {
|
||||
const data = await $fetch('/api/config')
|
||||
initialHtml.value = data?.seiten?.ttRegeln || ''
|
||||
if (editor.value) editor.value.innerHTML = initialHtml.value
|
||||
}
|
||||
|
||||
async function save() {
|
||||
const html = editor.value?.innerHTML || ''
|
||||
const current = await $fetch('/api/config')
|
||||
const updated = { ...current, seiten: { ...(current.seiten || {}), ttRegeln: html } }
|
||||
await $fetch('/api/config', { method: 'PUT', body: updated })
|
||||
}
|
||||
|
||||
function format(cmd) {
|
||||
document.execCommand(cmd, false, null)
|
||||
}
|
||||
|
||||
function formatHeader(level) {
|
||||
document.execCommand('formatBlock', false, 'H' + level)
|
||||
}
|
||||
|
||||
function createLink() {
|
||||
const url = prompt('URL eingeben:')
|
||||
if (!url) return
|
||||
document.execCommand('createLink', false, url)
|
||||
}
|
||||
|
||||
function removeFormat() {
|
||||
document.execCommand('removeFormat', false, null)
|
||||
}
|
||||
|
||||
onMounted(load)
|
||||
</script>
|
||||
Reference in New Issue
Block a user