A non-official iOS Framework for Editor.js - block styled editor. It's purpose to make easy use of rendering and parsing of blocks.
Converts clean json blocks data like this into native views like that 👇
- 🎩 Header
- 🥑 Raw HTML
- 📷 Image
- 🖌 Delimiter
- 💌 Paragraph
- 🕸 Link
- 🌿 List
- 📋 Table block support
UITableView
rendering- Documentation on how to apply custom styles
- Documentation on how to create custom blocks
- Documentation on how to create custom renderers
Essentially the Kit is built on multiple levels of abstractions. It is pretty handy since it provides an ability to customize the behavior of rendering clean json data and adding custom blocks.
Note that the framework has a built-in protocol-oriented tools to implement your own adapters, renderers and custom blocks. These features are not documented yet, we're working on it.
For now we only support blocks rendering within a UICollectionView
out of the box. If your collection view contains only EJ blocks, use EJCollectionViewAdapter
, it encapsulates collection's dataSource and delegate and is super easy to use.
Here's the example of EJCollectionViewAdapter
usage:
- Create an instance of kit:
let kit = EJKit.shared
- Decode your data to
EJBLockList
(array of json blocks):
let blockList = try kit.decode(data: data)
- Inside of your ViewController create a
collectionView
:
lazy var collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: UICollectionViewFlowLayout())
- Create an adapter:
lazy var adapter = EJCollectionViewAdapter(collectionView: collectionView)
- Confirm to
EJCollectionDataSource
and return your parsed blocks in thedata
variable.
extension ViewController: EJCollectionDataSource {
var data: EJBlocksList? { blockList }
}
- Assign your
ViewController
toadapter
'sdataSource
override func viewDidLoad() {
super.viewDidLoad()
adapter.dataSource = self
}
In case you'd like to mix EJ blocks with some other cells, use EJCollectionRenderer
. It provides you with more flexibility, here's how to use it:
-
Repeat steps 1-3 from the guide above.
-
Create a renderer:
lazy var renderer = EJCollectionRenderer(collectionView: collectionView)
- Implement and assign collection's data source and delegate methods.
///
extension ViewController: UICollectionViewDataSource {
/**
*/
func numberOfSections(in collectionView: UICollectionView) -> Int {
return blockList.blocks.count
}
/**
*/
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return blockList.blocks[section].data.numberOfItems
}
/**
*/
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
do {
let block = blockList.blocks[indexPath.section]
let style = kit.style.getStyle(forBlockType: block.type)
return try renderer.render(block: block, indexPath: indexPath, style: style)
}
catch {
// Ensure you won't ever get here
return UICollectionViewCell()
}
}
}
///
extension ViewController: UICollectionViewDelegateFlowLayout {
/**
*/
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
do {
let block = blockList.blocks[indexPath.section]
let style = kit.style.getStyle(forBlockType: block.type)
return try renderer.size(forBlock: block,
itemIndex: indexPath.item,
style: style,
superviewSize: collectionView.frame.size)
} catch {
return .zero
}
}
/**
*/
public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return renderer.spacing(forBlock: blockList.blocks[section])
}
/**
*/
public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
return renderer.insets(forBlock: blockList.blocks[section])
}
}
To run the example project, clone the repo, and run pod install
from the Example directory first.
EditorJSKit is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'EditorJSKit'
Vadim Popov - Architecture, implementation, code review
Ivan Glushko - Implementation