UploadcareConfig
The configuration of the Uploadcare feature.
The minimal configuration for the Uploadcare feature requires providing the config.uploadcare.pubkey:
ClassicEditor
.create( editorElement, {
uploadcare: {
pubkey: 'YOUR_PUBLIC_KEY'
}
} )
.then( ... )
.catch( ... );
However, you can also adjust the feature to fit your needs:
ClassicEditor
.create( editorElement, {
uploadcare: {
uploader: {
sourceList: [
'local',
'url',
'gdrive'
],
},
pubkey: 'YOUR_PUBLIC_KEY'
}
} )
.then( ... )
.catch( ... );
See all editor options.
Properties
allowExternalImagesEditing : ArrayOrItem<RegExp | 'origin' | ( src: string ) => boolean> | undefinedmodule:uploadcare/uploadcareconfig~UploadcareConfig#allowExternalImagesEditingAllows editing images that are not hosted in Uploadcare service.
This configuration option should whitelist URL(s) of images that should be editable.
The image is editable if this option is:
- a regular expression and it matches the image URL, or
- a custom function that returns
truefor the image URL, or 'origin'literal and the image URL is from the same origin, or- an array of the above and the image URL matches one of the array elements.
Images hosted in Uploadcare are always editable.
Defaults to
[]editor : UploadcareEditorConfig | undefinedmodule:uploadcare/uploadcareconfig~UploadcareConfig#editorConfiguration for the Image Editor component. The component allows editing existing images in the CKEditor.
You can find detailed information in the Uploadcare documentation.
Please note that the
cdn-urlanduuidattributes are automatically handled by the Uploadcare plugin and are not supported in the config options.pubkey : stringmodule:uploadcare/uploadcareconfig~UploadcareConfig#pubkeyThe public key used for communication with the Uploadcare services.
It will be used by both the File Uploader and Image Editor components.
uploader : UploadcareUploaderConfig | undefinedmodule:uploadcare/uploadcareconfig~UploadcareConfig#uploaderConfiguration that will be passed to the File Uploader component.
You can find detailed information in the Uploadcare documentation.
Please note that the source list is limited to the following values:
- 'local'
- 'url'
- 'dropbox'
- 'gdrive'
- 'facebook'
- 'gphotos'
- 'onedrive'
Additionally, below options are not supported:
imgOnly- It'strueby default.removeCopyright- It'strueby default.localeName- The editor language is used.confirmUpload- It'sfalseby default.cameraMirror- Thecamerasource is not supported.cameraCapture- Thecamerasource is not supported.showEmptyList- It'sfalseby default.
All other options documented in the Uploadcare documentation are supported.