@medistream/editorjs-table
v0.1.2
Published
Resizable table for Editor.js
Downloads
406
Maintainers
Readme
Table tool
Resizable Table Block for the Editor.js.
Installation
Install via NPM or Yarn
Get the package
npm i --save-dev @medistream/editorjs-table
or
yarn add @medistream/editorjs-table --dev
Include module in your application
const Table = require("@medistream/editorjs-table")
Upload to your project's source dir
- Download folder
dist
from repository - Add
dist/bundle.js
file to your page.
Usage
Add a new Tool to the tools
property of the Editor.js initial config.
var editor = EditorJS({
...
tools: {
...
table: {
class: Table,
}
}
...
});
Or init Table Tool with additional settings
var editor = EditorJS({
...
tools: {
...
table: {
class: Table,
inlineToolbar: true,
config: {
rows: 3,
cols: 3,
colors: [
"#ffffff",
"#e0ebfd",
"#eafbfe",
"#e8fbf0",
"#fefae8",
"#fcece7",
"#e9e6fd",
"#f4f5f7",
"#b9d4fb",
"#c1f3fd",
"#bbf3d3",
"#fcf0ba",
"#f5c0b0",
"#beb7ee",
"#b4bac4",
"#5f9af8",
"#93dfef",
"#7cd5a7",
"#f6c544",
"#f0957a",
"#978ed4",
]
},
},
i18n: {
messages: {
tools: {
table: {
"Merge Cells": "셀 합치기",
"Divide Cell": "셀 나누기",
"Insert Column On Right": "오른쪽에 열 삽입",
"Insert Row Below": "아래에 행 삽입",
"Remove Column": "열(↕) 삭제",
"Remove Row": "행(↔) 삭제",
"Cell Color": "셀 배경",
"Header Row": "헤더 행",
"Header Column": "헤더 열",
},
},
},
},
},
...
});
Config Params
| Field | Type | Description |
| ------ | ---------- | ---------------------------------------------------- |
| rows | number
| initial number of rows. by default 2
|
| cols | number
| initial number of columns. by default 2
|
| colors | string[]
| cell background color options. default preset exists |
Output data
This Tool returns data
with following format
| Field | Type | Description |
| -------- | ---------- | ---------------------------------------------- |
| rows | object[]
| array of objects containing data for each cell |
| colgroup | object[]
| array of objects containing data for each col |
{
"type": "table",
"data": {
"rows": [
[
{
"content": "",
"colspan": 1,
"rowspan": 1,
"display": true,
"bgColor": "",
"isHeader": false
},
{
"content": "",
"colspan": 1,
"rowspan": 1,
"display": true,
"bgColor": "",
"isHeader": false
}
],
[
{
"content": "",
"colspan": 1,
"rowspan": 1,
"display": true,
"bgColor": "",
"isHeader": false
},
{
"content": "",
"colspan": 1,
"rowspan": 1,
"display": true,
"bgColor": "",
"isHeader": false
}
],
[
{
"content": "",
"colspan": 1,
"rowspan": 1,
"display": true,
"bgColor": "",
"isHeader": false
},
{
"content": "",
"colspan": 1,
"rowspan": 1,
"display": true,
"bgColor": "",
"isHeader": false
}
]
],
"colgroup": [
{
"span": 1,
"width": ""
},
{
"span": 1,
"width": ""
}
]
}
}