simple-image-editorjs
Version:
SimpleImage Tool for Editor.js
98 lines (64 loc) • 2.06 kB
Markdown

# Simple Image Tool
Provides Image Blocks for the [Editor.js](https://editorjs.io).
Works only with pasted image URLs and requires no server-side uploader.

## Installation
### Install via NPM
Get the package
```shell
npm i --save-dev @editorjs/simple-image
```
Include module at your application
```javascript
const SimpleImage = require('@editorjs/simple-image');
```
### Download to your project's source dir
1. Upload folder `dist` from repository
2. Add `dist/bundle.js` file to your page.
### Load from CDN
You can load specific version of package from [jsDelivr CDN](https://www.jsdelivr.com/package/npm/@editor/simple-image).
`https://cdn.jsdelivr.net/npm/@editorjs/simple-image@latest`
Then require this script on page with Editor.js.
```html
<script src="..."></script>
```
## Usage
Add a new Tool to the `tools` property of the Editor.js initial config.
```javascript
var editor = EditorJS({
...
tools: {
...
image: SimpleImage,
}
...
});
```
## Config Params
This Tool has no config params
## Tool's settings

1. Add border
2. Stretch to full-width
3. Add background
## Output data
| Field | Type | Description |
| -------------- | --------- | ------------------------------- |
| url | `string` | image's url |
| caption | `string` | image's caption |
| withBorder | `boolean` | add border to image |
| withBackground | `boolean` | need to add background |
| stretched | `boolean` | stretch image to screen's width |
```json
{
"type" : "image",
"data" : {
"url" : "https://www.tesla.com/tesla_theme/assets/img/_vehicle_redesign/roadster_and_semi/roadster/hero.jpg",
"caption" : "Roadster // tesla.com",
"withBorder" : false,
"withBackground" : false,
"stretched" : true
}
}
```