Giter VIP home page Giter VIP logo

json-flyer's Introduction

JSON-Flyer

"Template can fly" philosophy

  • Template is data
  • Template should have data structure
  • Template can be stored in Database
  • Template can be queried and computed
  • Render is compute between template and data or between template and template
  • Template can be render in anywhere anytime.

JSON-Flyer's philosophy

  • Template and data should have same data structure which is JSON.
  • Template item and data item are matching by the key(not exact match)
  • For template, CSS Selector is key, element must has a unique CSS Selector
  • For data, key is same as namespace
  • HTML tag will be ignored from the template element key while rendering, so data key will only match the HTML element's class and id

JSON-Flyer.js is going to achieve

  • JSON HTML template structure
  • Render from Client side

Demo

Template: var template = { "#user.info" : { "lable.nameDes" : "", "input.name" : {"attrs" : "type='text'"}, ".gender" : { "lable.genderDes" : "", "input.male" : {"attrs" : "type='radio'"}, "lable.maleDes" : "", "input.female" : {"attrs" : "type='radio'"}, "lable.femaleDes" : "" }, "lable.nationDes" : "", "select.nation" : "", "lable.skillDes" : "", "textArea.skill" : "" } };

i18n: var i18n_en = { "user.info" : { ".nameDes" : "Name:", ".gender" : { ".genderDes" : "Gender:", ".maleDes" : "Male", ".femaleDes" : "Female", }, ".nationDes": "Country", ".nation": "options => {"USA": "US", "China": "CN"}", ".skillDes" : "Skills:" } }

Data: var data = { "user.info" : { ".name" : "Guangtao", ".gender" : { ".male" : true }, ".nation": "CN", ".skill": "JSON-Flyer" } }

Client side code: <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script> <script src="http://localhost:3000/jsonFlyer.js" type="text/javascript"></script> <script type="text/javascript"> $(function(){ jsonFlyer = new JsonFlyer(); var html = jsonFlyer.render(template); $('body').html(html); jsonFlyer.assign(i18n); jsonFlyer.assign(data); }); </script>

Result(value part is fake here, try out in browser by yourself): [[https://github.com/heroygt/JSON-Flyer/wiki]]


Name:
Gender: Male Female
Country USA China Skills: <textarea class="skill">JSON-Flyer</textarea>

json-flyer's People

Contributors

heroygt avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.