ek0519/quilljs 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ek0519/quilljs

最新稳定版本:0.5.0

Composer 安装命令:

composer require ek0519/quilljs

包简介

A Laravel Nova field.

README 文档

README

A Laravel Nova implementation of the Quill editor for Vue.js

Latest Stable Version Total Downloads License Monthly Downloads Daily Downloads

What's new (2021-11-22)?

You can use custom quilljs setting in different fields.

2021-08-09

Work with other package nova-translatable and nova-flexible-content, maybe it can change Vue this.fields.attribute, so I add uploadUrlSplit method, You can correctly upload your image.

Installation

Install via composer

composer require ek0519/quilljs 

Modify quill's height, width, padding bottom

paddingBottom(integer)

In nova interface was not easy to set css about quill padding bottom, at some resolution maybe can overlaps, you can use paddingBottom to modify.

Quilljs::make(__('Content'), 'content') ->paddingBottom(30) ->withFiles('public') ->placeholder('please enter here') ->height(300) ->rules('required'),

fullWidth(value)

Boolean

height(value)

Number (unit px)

use Ek0519\Quilljs\Quilljs; Quilljs::make('content') ->withFiles('public') ->fullWidth(false) (option, default full-width) ->height(500) (option, default 300px) ->rules('required'), 

resize and align image

I add this module https://github.com/Fandom-OSS/quill-blot-formatter , thanks for https://github.com/Fandom-OSS

Image upload size

maxFileSize(size)

size : Number, default 2(MB)
example

use Ek0519\Quilljs\Quilljs; Quilljs::make('content') ->withFiles('public') ->maxFileSize(3) ->rules('required'), 

Image upload

This Nova field provides native attachments driver which works similar to Trix File Uploads.

To use this attachments driver, publish and run the migration(also publish quilljs config to set toolbar):

php artisan vendor:publish --provider="Ek0519\Quilljs\FieldServiceProvider" php artisan migrate 

Then, allow users to upload images, just like with Trix field, chaining the withFiles method onto the field's definition. When calling this method, you should pass the name of the filesystem disk that images should be stored on(in this example, we use public, please use this command php artisan storage:link ):

use Ek0519\Quilljs\Quilljs; Quilljs::make('content') ->withFiles('public') ->placeholder('please enter here') ->rules('required'), 

Work with other package nova-translatable and nova-flexible-content

When you use other packages like nova-translatable and nova-flexible-content, they will overwrite upload api.

Ex: origin your_host/nova-vendor/quilljs/articles/upload/content , maybe overwrite to
/nova-vendor/quilljs/articles/upload/content.en or
/nova-vendor/quilljs/articles/upload/content__SDAcscsdw.

You can use

uploadUrlSplit(split_string)

split_string : String
example

use Ek0519\Quilljs\Quilljs; Quilljs::make('content') ->withFiles('public') ->placeholder('please enter here') ->uploadUrlSplit('.') ->rules('required') ->translatable(), // nova-translatable's method 

Customizing Tooltips

In default, tooltip was disabled, if you want to use, in Resource add ->tooltip(true)

Quilljs::make(__('Content'), 'content') ->withFiles('public') ->tooltip(true) 

in config/tooltip.php

You can use favorite description of tooltip.

<?php return [ ['Choice' =>'.ql-bold','title' =>'bold'], ['Choice' =>'.ql-italic','title' =>'italic'], ['Choice' =>'.ql-underline','title' =>'underline'], ['Choice' =>'.ql-header','title' =>'header'], ['Choice' =>'.ql-strike','title' =>'strike'], ['Choice' =>'.ql-blockquote','title' =>'blockquote'], ['Choice' =>'.ql-code-block','title' =>'code-block'], ['Choice' =>'.ql-size','title' =>'font-size'], ['Choice' =>'.ql-list[value="ordered"]','title' =>'order list'], ['Choice' =>'.ql-list[value="bullet"]','title' =>'bulleted list'], ['Choice' =>'.ql-header[value="1"]','title' =>'h1'], ['Choice' =>'.ql-header[value="2"]','title' =>'h2'], ['Choice' =>'.ql-align','title' =>'align'], ['Choice' =>'.ql-color','title' =>'color'], ['Choice' =>'.ql-background','title' =>'background'], ['Choice' =>'.ql-image','title' =>'image'], ['Choice' =>'.ql-video','title' =>'video'], ['Choice' =>'.ql-link','title' =>'link'], ['Choice' =>'.ql-formula','title' =>'formula'], ['Choice' =>'.ql-clean','title' =>'clean'], ['Choice' =>'.ql-indent[value="-1"]','title' =>'indent left'], ['Choice' =>'.ql-indent[value="+1"]','title' =>'indent right'], ['Choice' =>'.ql-header .ql-picker-label','title' =>'header size'], ['Choice' =>'.ql-header .ql-picker-item[data-value="1"]','title' =>'H1'], ['Choice' =>'.ql-header .ql-picker-item[data-value="2"]','title' =>'H2'], ['Choice' =>'.ql-header .ql-picker-item[data-value="3"]','title' =>'H3'], ['Choice' =>'.ql-header .ql-picker-item[data-value="4"]','title' =>'H4'], ['Choice' =>'.ql-header .ql-picker-item[data-value="5"]','title' =>'H5'], ['Choice' =>'.ql-header .ql-picker-item[data-value="6"]','title' =>'H6'], ['Choice' =>'.ql-header .ql-picker-item:last-child','title' =>'normal'], ['Choice' =>'.ql-size .ql-picker-item[data-value="small"]','title' =>'small'], ['Choice' =>'.ql-size .ql-picker-item[data-value="large"]','title' =>'large'], ['Choice' =>'.ql-size .ql-picker-item[data-value="huge"]','title' =>'xlarge'], ['Choice' =>'.ql-size .ql-picker-item:nth-child(2)','title' =>'normal'], ['Choice' =>'.ql-align .ql-picker-item:first-child','title' =>'align left'], ['Choice' =>'.ql-align .ql-picker-item[data-value="center"]','title' =>'align center'], ['Choice' =>'.ql-align .ql-picker-item[data-value="right"]','title' =>'align right'], ['Choice' =>'.ql-align .ql-picker-item[data-value="justify"]','title' =>'justify'] ]; 

Customizing Quilljs Toolbar

If you want to change toolbar's setting, you can change quilljs.php in config folder, reference quilljs's web site https://quilljs.com/docs/modules/toolbar

return [ ["bold", "italic", "underline", "strike"], ["blockquote", "code-block"], [ ['header'=> 1 ], ['header'=> 2]], [['list'=> "ordered" ], ['list'=> "bullet" ]], [[ 'script'=> "sub" ], [ 'script'=> "super" ]], [[ 'indent'=> "-1" ], [ 'indent'=> "+1" ]], [[ 'direction'=> "rtl" ]], [[ 'size'=> ["small", false, "large", "huge"] ]], [[ 'header'=> [1, 2, 3, 4, 5, 6, false] ]], [[ 'color'=> [] ], [ 'background'=> [] ]], [[ 'font'=> [] ]], [[ 'align'=> [] ]], ["clean"], ["link", "image", "video"] ]; 

or you can use new api ->config(array []).

Quilljs::make(__('Content'), 'content') ->config([ ["bold", "italic", "underline", "strike"], ["blockquote", "code-block"], [ ['header'=> 1 ], ['header'=> 2]], [['list'=> "ordered" ], ['list'=> "bullet" ]], [[ 'script'=> "sub" ], [ 'script'=> "super" ]], [[ 'indent'=> "-1" ], [ 'indent'=> "+1" ]], [[ 'direction'=> "rtl" ]], [[ 'size'=> ["small", false, "large", "huge"] ]], [[ 'header'=> [1, 2, 3, 4, 5, 6, false] ]], [[ 'color'=> [] ], [ 'background'=> [] ]], [[ 'font'=> [] ]], [[ 'align'=> [] ]], ["clean"], ["link", "image", "video"] ]), 

Video embed

Only support Youtube Facebook,default size in Nova was width 800px and height 450px,define in css

.ql-video{ width: 800px; height: 450px; }

Youtube

Facebook

统计信息

  • 总下载量: 132.19k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 27
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 27
  • Watchers: 1
  • Forks: 20
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固