GithubHelp home page GithubHelp logo

coolswitch / tiptap-extension-image-upload Goto Github PK

View Code? Open in Web Editor NEW
31.0 1.0 8.0 125 KB

Image upload extension for tiptap, support image preview(tiptap的图片上传扩展,支持图片预览或占位)

License: MIT License

TypeScript 81.21% Vue 15.19% JavaScript 3.60%
image-placeholder image-upload tiptap

tiptap-extension-image-upload's Introduction

tiptap-extension-image-upload

Image upload extension for tiptap, support image preview.

中文 readme

Introduction

Upload support:

  • File type data upload (such as the image selected by input:file)
  • Image drop handling
  • Screenshot in the clipboard
  • Third party pictures in the clipboard (the image url will be read and converted to File)

Image preview(.image-placeholder):

  • The base64 of the image is used as the preview by default

Instalation

npm i tiptap-extension-image-upload -S

Usage

Add it as any extension in useEditor()

import { ImageUploadExtension, ImagePlaceholder } from 'tiptap-extension-image-upload'

  extensions: {
    ImageUploadExtension.configure({
      acceptMimes: ['image/jpeg', 'image/gif', 'image/png', 'image/jpg'],
      upload: (file: File, id: string) => {
        // your upload ajax
        return Promise.resolve('https://avatars.githubusercontent.com/u/112541088')
      },
      ignoreDomains: ['www.xxx.com']
    }),
    ImagePlaceholder.configure({
      inline: false
    }),

ImageUploadExtension Configuration

export interface ImageUploaderPluginOptions {
  /** Image types allowed to upload */
  acceptMimes: string[]
  /**
   * Image File upload function
   * @param {File} file - File waiting to be uploaded
   * @param {string} id - Automatically generated unique key
   */
  upload(file: File | string, id: string): Promise<string>
  /** Do not upload if the src domain is in this array  */
  ignoreDomains: string[]
}

tiptap-extension-image-upload's People

Contributors

coolswitch avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

tiptap-extension-image-upload's Issues

imgPlaceholder.vue required a loader

Hey, great project!

Have just tried out the basic config and run into this:

./node_modules/tiptap-extension-image-upload/src/imagePlaceholder.ts
Module parse failed: Unexpected token (5:7)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import imgPlaceholder from './imgPlaceholder.vue'
| 
> export interface ImagePlaceholderOptions {
|   inline: boolean
|   HTMLAttributes: Record<string, any>

I'm using nextjs and not vue.

Are there any prerequisites of using this extension?

ERROR in ./node_modules/tiptap-extension-image-upload/src/index.ts

webpack compiled with 2 errors
node v16.17.0
npm 8.15.0

ERROR in ./node_modules/tiptap-extension-image-upload/src/index.ts 1:0-68
Module not found: Error: Can't resolve './imagePlaceholder' in '/var/www/html/my-pj/node_modules/tiptap-extension-image-upload/src'

ERROR in ./node_modules/tiptap-extension-image-upload/src/index.ts 2:0-80
Module not found: Error: Can't resolve './imageUploadExtension' in '/var/www/html/my-pj/node_modules/tiptap-extension-image-upload/src'

webpack compiled with 2 errors

image

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.