tiptap/docs/installation/livewire.md

81 lines
1.8 KiB
Markdown
Raw Normal View History

---
title: Livewire WYSIWYG
tableOfContents: true
---
# Livewire
2021-01-30 05:05:47 +08:00
## Introduction
2021-10-20 04:30:45 +08:00
The following guide describes how to integrate Tiptap with your [Livewire](https://laravel-livewire.com/) project.
2021-01-30 05:05:47 +08:00
TODO
2021-02-08 23:41:57 +08:00
## editor.blade.php
```html
<!--
In your livewire component you could add an
autosave method to handle saving the content
from the editor every 10 seconds if you wanted
-->
<x-editor
wire:model="foo"
wire:poll.10000ms="autosave"
></x-editor>
```
2021-02-08 23:41:57 +08:00
## my-livewire-component.blade.php
```html
<div
x-data="setupEditor(
$wire.entangle('{{ $attributes->wire('model') }}').defer
)"
x-init="() => init($refs.editor)"
wire:ignore
{{ $attributes->whereDoesntStartWith('wire:model') }}
>
<div x-ref="editor"></div>
</div>
```
2021-02-08 23:41:57 +08:00
## index.js
```js
2021-05-07 00:41:22 +08:00
import { Editor } from '@tiptap/core'
import StarterKit from '@tiptap/starter-kit'
2021-02-08 23:41:57 +08:00
window.setupEditor = function (content) {
return {
editor: null,
content: content,
2021-02-08 23:41:57 +08:00
init(element) {
this.editor = new Editor({
element: element,
2021-05-07 00:41:22 +08:00
extensions: [
StarterKit,
],
2021-02-08 23:41:57 +08:00
content: this.content,
onUpdate: ({ editor }) => {
this.content = editor.getHTML()
2021-02-08 23:41:57 +08:00
}
})
this.$watch('content', (content) => {
// If the new content matches TipTap's then we just skip.
if (content === this.editor.getHTML()) return
2021-02-08 23:41:57 +08:00
/*
Otherwise, it means that a force external to TipTap
is modifying the data on this Alpine component,
which could be Livewire itself.
In this case, we just need to update TipTap's
content and we're good to do.
For more information on the `setContent()` method, see:
https://www.tiptap.dev/api/commands/set-content
*/
this.editor.commands.setContent(content, false)
2021-02-08 23:41:57 +08:00
})
}
}
}
```