Liking cljdoc? Tell your friends :D

Blocko

Blocko is a block-based WYSIWYG editor written in ClojureScript and compiled to JavaScript. Currently, Blocko is not yet production ready, so use at your own risk.

Animated gif of Blocko in action

Install

Browser

  1. Download the latest release
  2. Include blocko.css and blocko.js in your HTML

Usage

blocko.core.init({
    container: '#editor',
    initialContent: [],
    onChange: (content) => {
        // store `content` in your database here.
    }
});

API

  • container: any JS element that can be targeted via querySelector
  • content: a JS or JSON object representing the data
  • onChange: a callback function called when content changes

ClojureScript

  1. Add [org.clojars.askonomm/blocko "0.0.1"] to your dependencies

Usage

(ns your-app
  (:require [blocko.core :as blocko]))

(blocko/run 
  {:content []
   :on-change #(fn [content] (prn "store content in your database here"))})

API

  • content: a vector containing the data
  • on-change: a callback function called when content changes

Development

To develop Blocko simply run ./build.sh dev, which will then compile to public/js/blocko.js a development version of Blocko that also auto-reloads as you make changes. After that is done, open public/index.html in your browser and have fun!

Once you're done with development and want to get production version, then:

  • To get the browser production build, run ./build.sh release and check inside dist for a brand new blocko.js and a blocko.css file.

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close