From a4191ed3df16b85cf08f34ab9ed8e343684f668e Mon Sep 17 00:00:00 2001 From: trans_soup <> Date: Sun, 16 Jul 2023 15:40:57 +0200 Subject: [PATCH] edit readme. elaborate on how to use with different kinds of input. also mention that the name isn't literal; this takes javascript data, not json, as input. --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index e30b3c1..8d37e72 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ small utility for creating DOM trees from javascript arrays. +note that this doesn't actually take a json string, but rather an actual array, as input. `array_as_html` would be a bit inaccurate though, since it also handles some other things such as functions and strings in ways that make sense. + to use, clone/submodule/subtree/whatever the `main` branch, and import `json_as_html` from `export.mjs`. to see a demo, or contribute, clone the `dev` branch. +# example + here's the demo array being used at the time of writing this: ```javascript @@ -30,3 +34,25 @@ here's the demo array being used at the time of writing this: ``` it assumes a function `render` which replaces the contents of the `` with the result of calling `json_as_html` with this array as argument. it also assumes a `Map` called `state`. + +# how to use + +the `json_as_html` function takes two arguments: + +1. a required `json` argument that gets transformed into a tree of `Node`s. +2. an optional `state` argument which defaults to an empty `Map`. + +this is how the function returns, given certain types of `json` input: + +- `Node` object: return it as it is. +- string: return a text node containing the string. +- function: evaluate the function, with `state` as argument, and recursively call `json_as_html` on the result. return what that recursive call returns. +- array: see below. + +when given an array as `json` input, the function treats its elements as the tag name, attributes, and children, of the `Node` to create, in that order. call these `type`, `attributes`, and `children`: + +- `type` is expected to be a string. +- `attributes` is expected to be an array, where each element is a key-value pair. +- `children` is expected to be an array containing valid inputs for `json_as_html`. if it's not an array, it's treated as an array containing a single element. + +both `attributes` and `children` default to empty arrays, and may thus be omitted.