GithubHelp home page GithubHelp logo

pandaant / tiptap-vuetify Goto Github PK

View Code? Open in Web Editor NEW

This project forked from iliyazelenko/tiptap-vuetify

0.0 1.0 0.0 1.01 MB

Vuetify editor. Component simplifies integration tiptap editor with vuetify.

JavaScript 7.17% Vue 30.82% TypeScript 62.01%

tiptap-vuetify's Introduction

WYSIWYG editor for Vuetify. The editor is based on tiptap and uses vuetify's components. 💪

Version Downloads License CircleCI Build Status Language grade: JavaScript codebeat badge codebeat badge

If you have Vuetify 1.x (not 2.x), then you can find docs and demo here.

DEMO on codesanbox

Navigation

Features

  • used vuetify components
  • support for different types of icons (fa, md, mdi, mdiSvg)
  • internationalization (en, es, fr, pl, ru, uk, ptbr, tr, he, nl, ja, de), with automatic detection of the current language through the Vuetify. You can make a PR for your language if it is not there, here is an example.
  • markdown support
  • easy to start using
  • props and events are available
  • TypeScript support
  • the project is ready to actively develop if there is support (stars)!
  • the ability to create and use your own extensions
  • choose where the extension buttons should be displayed: in the toolbar or in the bubble menu
  • Vuetify 2.x and 1.x support

Installation

yarn add tiptap-vuetify
# Or 
npm install --save tiptap-vuetify

Get started

NPM (ES modules)

  1. Installing the package and Vuetify 2 from scratch:
import Vue from 'vue'
import Vuetify from 'vuetify'
// import plugin
import { TiptapVuetifyPlugin } from 'tiptap-vuetify'
// don't forget to import CSS styles
import 'tiptap-vuetify/dist/main.css'
// Vuetify's CSS styles 
import 'vuetify/dist/vuetify.min.css'


// Vuetify Object (as described in the Vuetify 2 documentation)
const vuetify = new Vuetify()

// use Vuetify's plugin
Vue.use(Vuetify)
// use this package's plugin
Vue.use(TiptapVuetifyPlugin, {
  // the next line is important! You need to provide the Vuetify Object to this place.
  vuetify, // same as "vuetify: vuetify"
  // optional, default to 'md' (default vuetify icons before v2.0.0)
  iconsGroup: 'md'
})

More about vuetify icons you can read here.

  1. Use in your component. Here is a complete example:
<template>
  <div>
    <!-- Use the component in the right place of the template -->
    <tiptap-vuetify
      v-model="content"
      :extensions="extensions"
    />
  </div>
</template>

<script>
// import the component and the necessary extensions
import { TiptapVuetify, Heading, Bold, Italic, Strike, Underline, Code, Paragraph, BulletList, OrderedList, ListItem, Link, Blockquote, HardBreak, HorizontalRule, History } from 'tiptap-vuetify'

export default {
  // specify TiptapVuetify component in "components"
  components: { TiptapVuetify },
  data: () => ({
    // declare extensions you want to use
    extensions: [
      History,
      Blockquote,
      Link,
      Underline,
      Strike,
      Italic,
      ListItem,
      BulletList,
      OrderedList,
      [Heading, {
        options: {
          levels: [1, 2, 3]
        }
      }],
      Bold,
      Code,
      HorizontalRule,
      Paragraph,
      HardBreak
    ],
    // starting editor's content
    content: `
      <h1>Yay Headlines!</h1>
      <p>All these <strong>cool tags</strong> are working now.</p>
    `
  })
}
</script>

Nuxt

If you have Nuxt.js, here is a simple demo how to integrate it (@nuxtjs/vuetify module is used). The code for this example is taken from this github repository, you can find more infо there.

CDN (<script>)

There is another use case with the script tag (CDN version of package):

<script src="https://unpkg.com/tiptap-vuetify"></script>

Or

<script src="https://cdn.jsdelivr.net/npm/tiptap-vuetify"></script>

The plugin should be installed automatically after connecting the script. The only thing is that the Vuetify object must be set in window.vuetify so that the plugin gets access to it. Write if you have questions.

Props

placeholder

Placeholder is displayed when there is no content in the editor.

How to use:

  <tiptap-vuetify
    placeholder="Write something …"
  />

extensions

You can use the necessary extensions. The corresponding buttons are added automatically (in the order in which you specify the extension).

How to import and use them can be seen in the example above.

Available extensions (native tiptap extensions from tiptap-extensions package):

  • Bold
  • Italic
  • Strike
  • Underline
  • Code
  • CodeBlock
  • Image
  • Paragraph
  • BulletList
  • OrderedList
  • ListItem
  • Link
  • Blockquote
  • HardBreak
  • HorizontalRule
  • History

I can easily add more.

toolbar-attributes

You can specify your attributes for the toolbar (<v-toolbar> vuetify component).

For example, change the color:

:toolbar-attributes="{ color: 'yellow' }"

card-props

Allows you to pass props for the editor's <v-card>.

<tiptap-vuetify
  :card-props="{ flat: true, color: '#26c6da' }"
/>

editor-properties

Tiptap Editor properties (passed to the constructor).

You can see the full list of properties here.

This is the most powerful way to customize the editor for yourself. Pay particular attention to editorProps.

Only these properties are not available: content, onUpdate, they are used in this package. If you want to add extensions to the extensions property, then use the native-extensions prop of this package.

native-extensions

You can transfer native extensions (not related to this package) to the extensions property.

How to use:

<tiptap-vuetify
  :native-extensions="nativeExtensions"
/>
// You can import from tiptap's built-in extensions
import {
  TrailingNode
} from 'tiptap-extensions'
// or your own extension
import Title from './Title'

// in script:
data () {
  return {
    nativeExtensions: [
      new Title(),
      new TrailingNode({
        node: 'paragraph',
        notAfter: ['paragraph'],
      })
    ]
  }
}

Here is example of how to create your extension from scratch.

output-format

The format to output from the v-model. This defaults to html

For example, to get json instead:

<tiptap-vuetify
  output-format="json"
/>

Events

init

first argument (object):

{
  // tiptap editor instance
  editor: Editor
}

How to use:

<tiptap-vuetify
  @init="onInit"
/>

keydown

Called when the editor receives a keydown event.

<tiptap-vuetify
  @keydown="onKeyDown"
/>
methods: {
  onkeydown (event, view) {
    console.log('event', event.key)
  }
}

Note: if you need to work with the Enter, then look here.

What is view?

Slots

toolbar

You can manually display the toolbar. How to use:

  1. Since Vue 2.6.0 (new syntax):
<tiptap-vuetify
  v-model="content"
  :extensions="extensions"
  :toolbar-attributes="{ color: 'yellow' }"
>
  <template #toolbar="{ buttons, commands, isActive }">
    <!--You can render the buttons as you wish (you can see in the source code how this is done).-->
    <pre>{{ buttons }}</pre>
  </template>
</tiptap-vuetify>
  1. Before 2.6.0:
<tiptap-vuetify>
  <div 
    slot="toolbar" 
    slot-scope="{ buttons, commands, isActive }"
  >
    <!--You can render the buttons as you wish (you can see in the source code how this is done).-->
    <pre>{{ buttons }}</pre>
  </div>
</tiptap-vuetify>

footer

Footer of the Editor.

toolbar-before

You can add content before the toolbar.

toolbar-after

You can add content after the toolbar.

TODO

  • better images support: uploading (free hosting by default) Relevant issue. Ability to choose your uploading strategy. Resize image and change other params.
  • site with full-docs and examples
  • emoticons
  • tests
  • support for more extensions

tiptap-vuetify's People

Contributors

afikderi avatar alexeyzelenko avatar assoft avatar deka avatar dependabot[bot] avatar felipebritor avatar flambe avatar giildo avatar h6ls1s avatar idrys avatar iliyazelenko avatar jmeinke avatar nick13jaremek avatar pandaant avatar robertofd1995 avatar semantic-release-bot avatar szczepanmasny avatar thebspin avatar tomohirohiratsuka avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.