Skip to content

artemukolov/randr

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 

Repository files navigation

randr

Gitter

randr • html dom from json templates on javascript

v 1.3

How to start?

  • Create json like this:
var json = {
  node: 'div',
  implement: true,
  defaults: [
    {
      type: 'class',
      data: 'super-block'
    }
  ],
  content: [
    {
      node: 'div',
      defaults: [
        {
          type: 'class',
          data: 'text-block'
        }
      ],
      content: [
        {
          node: 'p',
          content: 'p tag which doesnt inherit parent defaults attributes, cause of a parents implement flag'
        }
      ]
    },
    {
      node: 'img',
      defaults: [
        {
          type: 'src',
          data: 'http://sh.uploads.ru/9F2LR.png'
        },
        {
          type: 'title',
          data: 'json image'
        }
      ]
    }
  ]
}
  • Append\insert this json somewhere with randr:
document.body.appendChild(randr(json));

randr!

randr object consists of:

node

defaults

content

and some flags:

implement

extend

node is a typical DOM node

defaults is an array (or object with attr:value properties) of attribute objects for this DOM node:

defaults: [
  {
    type: 'attribute',<!-- required -->
    data: 'value'
  },
  {
    type: 'attribute2',<!-- required -->
    data: 'value2'
  }
]

or

defaults: {
  attribute: value,
  attribute2: value2
}

content can be a string, object and array of objects

implement flag implements the defaults attributes to childs, if true.

implement: true

extend flag extends the defaults attributes from parent, if true.

! Note, that parent "class" attributes stacks with child "class", but another attributes will be overwrited with childs..

! Note2, that implemented or extended "defaults" must be the same types (object or array)

Its simple, but its not all that randr can.

U can shrink the json:

{
  content: 'alone content with string makes p tag with text'
}

If content is not a string randr automatically makes div node:

{
  content: {content:'p tag in div parent'}
}

And u can do it infinitely:

{
  content:{
    content:{
      content:{
        content:{
          content: 'hey, lets finish it!'
        }
      }
    }
  }
}

And here's a pie!
You can make ur own nodes, just create a object-function in randr.components (randr.components.profile), which returns your custom node with content and options:

randr.components.profile = function(content, options){
    var d = document.createElement('div');
    var p = document.createElement('p');
    var a = document.createElement('a');
    a.setAttribute('href',options.href);
    a.innerHTML = options.name;
    var i = document.createElement('img');
    i.setAttriute('src',options.image);
    p.appendChild(a);
    p.appendChild(i);
    d.appendChild(p);
    return d;
  }

And after only enter this node in json and randr object:

var json = {
  node: 'profile',<!-- Your node -->
  options: {
    href: 'https://github.com/dolphin4ik',
    image: 'https://avatars0.githubusercontent.com/u/2123689?v=3&s=96',
    name: 'dolphin4ik'
  }
}

append this randr:

document.body.appendChild(randr(json));

!Note

Second option (if true) in randr returns rendered json as text

document.body.innerHTML = randr(json, true);

About

html dom from json on javascript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 69.7%
  • HTML 30.3%