A library for Elm that shows JSON data as an expandable HTML tree
Перейти к файлу
Keith Lazuka 95c10e27b0 Bump version to 2.0.0 2018-08-26 13:35:07 -07:00
example Upgrade to Elm 0.19 (#4) 2018-08-26 13:33:28 -07:00
src Upgrade to Elm 0.19 (#4) 2018-08-26 13:33:28 -07:00
tests Upgrade to Elm 0.19 (#4) 2018-08-26 13:33:28 -07:00
.gitignore init 2018-04-23 14:31:23 -07:00
CONTRIBUTING.md Improve readme 2018-04-23 19:56:39 -07:00
LICENSE init 2018-04-23 14:31:23 -07:00
README.md Improve readme 2018-04-23 19:56:39 -07:00
elm.json Bump version to 2.0.0 2018-08-26 13:35:07 -07:00

README.md

Elm JSON Tree View

This library provides a JSON tree view. You feed it JSON, and it transforms it into interactive HTML.

Try the online demo (source)

Features:

  • show JSON as a tree of HTML
  • expand/collapse nodes in the tree
  • expand/collapse the entire tree
  • select scalar values in the tree

Usage

See the docs or look at the example app's source code.

But if you really insist on something super simple, here goes:

import JsonTree
import Html exposing (text)

main =
    JsonTree.parseString """[1,2,3]"""
        |> Result.map (\tree -> JsonTree.view tree config JsonTree.defaultState)
        |> Result.withDefault (text "Failed to parse JSON")

config = { onSelect = Nothing, toMsg = always () }

Note that the above example is only meant to give you a taste. It does not wire everything up, which means that some things will be broken (i.e. expand/collapse). See the docs and the example app for more details.

Thanks

UI based on Gildas Lormeau's JSONView Chrome extension.