Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ResizeImage Plugin to CkEditor #64

Merged
merged 3 commits into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 66 additions & 1 deletion config/nova-ckeditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
'html-support' => [
'allow' => [
[
'name' => 'div',
'name' => 'div',
'classes' => true,
],
[
Expand Down Expand Up @@ -140,6 +140,7 @@
'videoBrowser',
'mediaEmbed',
'link',
'resizeImage',
'|',
'bold',
'italic',
Expand Down Expand Up @@ -374,6 +375,70 @@
]
],

'image' => [
'upload' => [
'types' => ['gif', 'png', 'jpg', 'jpeg', 'webp']
],

'resizeUnit' => '%',

'resizeOptions' => [
[
'name' => 'resizeImage:original',
'value' => null,
'label' => 'Original',
'icon' => 'original'
],
[
'name' => 'resizeImage:25',
'value' => '25',
'label' => 'Small (25%)',
'icon' => 'small'
],
[
'name' => 'resizeImage:50',
'value' => '50',
'label' => 'Medium',
'icon' => 'medium'
],
[
'name' => 'resizeImage:75',
'value' => '75',
'label' => 'Large (75%)',
'icon' => 'large'
]
],

'toolbar' => [
'imageBrowser',
'|',
'imageStyle:full',
'imageStyle:alignLeft',
'imageStyle:alignCenter',
'imageStyle:alignRight',
'|',
'imageTextAlternative',
'toggleImageCaption',
'|',
'imageStyle:block',
'imageStyle:side',
'|',
'linkImage',
'|',
'resizeImage:25',
'resizeImage:50',
'resizeImage:75',
'resizeImage:original',
],

'styles' => [
'full',
'alignLeft',
'alignCenter',
'alignRight',
]
],

'mediaEmbed' => []
],
]
Expand Down
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions resources/js/ckeditor/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import ImageStyle from '@ckeditor/ckeditor5-image/src/imagestyle'
import ImageUpload from '@ckeditor/ckeditor5-image/src/imageupload'
import ImageToolbar from '@ckeditor/ckeditor5-image/src/imagetoolbar'
import ImageCaption from '@ckeditor/ckeditor5-image/src/imagecaption'
import ImageResize from '@ckeditor/ckeditor5-image/src/imageresize'
import MediaEmbed from '@ckeditor/ckeditor5-media-embed/src/mediaembed'
import HtmlEmbed from '@ckeditor/ckeditor5-html-embed/src/htmlembed'
import ImageTextAlternative from '@ckeditor/ckeditor5-image/src/imagetextalternative'
Expand Down Expand Up @@ -113,6 +114,7 @@ export default class CkEditor extends ClassicEditorBase {
ImageStyle,
ImageUpload,
ImageCaption,
ImageResize,
ImageToolbar,
ImageTextAlternative,
MediaEmbed,
Expand Down
34 changes: 33 additions & 1 deletion resources/js/ckeditor/config/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@ export default {
upload: {
types: ['gif', 'png', 'jpg', 'jpeg', 'webp']
},
resizeUnit: '%',
resizeOptions: [
{
name: 'resizeImage:original',
value: null,
label: 'Original',
icon: 'original'
},
{
name: 'resizeImage:25',
value: '25',
label: 'Small (25%)',
icon: 'small'
},
{
name: 'resizeImage:50',
value: '50',
label: 'Medium (50%)',
icon: 'medium'
},
{
name: 'resizeImage:75',
value: '75',
label: 'Large (75%)',
icon: 'large'
}
],
toolbar: [
'imageBrowser',
'|',
Expand All @@ -20,7 +47,12 @@ export default {
'imageStyle:block',
'imageStyle:side',
'|',
'linkImage'
'linkImage',
'|',
'resizeImage:25',
'resizeImage:50',
'resizeImage:75',
'resizeImage:original',
],
styles: [
'full',
Expand Down
3 changes: 3 additions & 0 deletions resources/js/components/editor-field.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ export default {
createCkEditor() {
const toolbarOptions = this.initToolbarOptions(this.currentField.toolbarOptions)
const headings = toolbarOptions.headings
const image = toolbarOptions.image ?? CkEditor.defaultConfig.image

delete toolbarOptions.headings
delete toolbarOptions.image

const config = {
attribute: this.$options[this.editorUUID],
Expand All @@ -62,6 +64,7 @@ export default {
snippetBrowser: this.currentField.snippetBrowser,
htmlSupport: this.normalizeHtmlSupportItems(this.currentField.htmlSupport),
isReadOnly: this.currentField.readonly,
image: image,
language: {
ui: this.currentField.uiLanguage,
content: this.currentField.contentLanguage,
Expand Down