Interface

CKBoxConfig (ckbox)

@ckeditor/ckeditor5-ckbox/src/ckboxconfig

interface

The configuration of the CKBox feature.

The minimal configuration for the CKBox feature requires providing the config.ckbox.tokenUrl:

ClassicEditor
	.create( editorElement, {
		ckbox: {
			tokenUrl: 'https://example.com/cs-token-endpoint'
		}
	} )
	.then( ... )
	.catch( ... );

Hovewer, you can also adjust the feature to fit your needs:

ClassicEditor
	.create( editorElement, {
		ckbox: {
			defaultUploadCategories: {
				Bitmaps: [ 'bmp' ],
				Pictures: [ 'jpg', 'jpeg' ],
				Scans: [ 'png', 'tiff' ]
			},
			ignoreDataId: true,
			serviceOrigin: 'https://example.com/',
			tokenUrl: 'https://example.com/cs-token-endpoint'
		}
	} )
	.then( ... )
	.catch( ... );

See all editor options.

Filtering

Properties

  • allowExternalImagesEditing : ArrayOrItem<RegExp | 'origin' | ( string ) => boolean> | undefined

    Allows editing images that are not hosted in CKBox service.

    This configuration option should whitelist URL(s) of images that should be editable. Make sure that allowed image resources have CORS enabled.

    The image is editable if this option is:

    • a regular expression and it matches the image URL, or
    • a custom function that returns true for 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 CKBox are always editable.

    Defaults to []

  • defaultUploadCategories : null | Record<string, Array<string>> | undefined

    Defines the categories to which the uploaded images will be assigned. If configured, it overrides the category mappings defined on the cloud service. The value of this option should be an object, where the keys define categories and their values are the types of images that will be uploaded to these categories. The categories might be referenced by their name or ID.

    Example:

    const ckboxConfig = {
    	defaultUploadCategories: {
    		Bitmaps: [ 'bmp' ],
    		Pictures: [ 'jpg', 'jpeg' ],
    		Scans: [ 'png', 'tiff' ],
    		// The category below is referenced by its ID.
    		'fdf2a647-b67f-4a6c-b692-5ba1dc1ed87b': [ 'gif' ]
    	}
    };
    

    Defaults to null

  • defaultUploadWorkspaceId : string | undefined

    Defines the workspace id to use during upload when the user has access to more than one workspace.

    If defined, it is an error, when the user has no access to the specified workspace.

  • forceDemoLabel : boolean | undefined

    Enforces displaying the "Powered by CKBox" link regardless of the CKBox plan used.

  • ignoreDataId : boolean | undefined

    Inserts the unique asset ID as the data-ckbox-resource-id attribute. To disable this behavior, set it to true.

    Defaults to false

  • language : string | undefined

    Configures the language for the CKBox dialog.

    Defaults to Locale#uiLanguage

  • serviceOrigin : string | undefined

    Configures the base URL of the API service. Required only in on-premises installations.

    Defaults to 'https://api.ckbox.io'

  • theme : string | undefined

    The theme for CKBox dialog.

  • tokenUrl : TokenUrl | undefined

    The authentication token URL for CKBox feature.

    Defaults to config.cloudServices.tokenUrl