Giter Club home page Giter Club logo

sld's Introduction

Simple Layout Definition

A simple way to define layout of widgets for Dojo Toolkit.

Introduction

SLD is a proposed specification to describe a layout of amd-widgets in JSON. This library is a parser for that specification.

This was originally intended to [dojo][Dojo Toolkit] (v1.*) widgets (dijit, some dojox, dgrid, cbtree, etc).

###Explain with Dijit

dijit is a widget package for creating a beautiful RIA, it can work programmatically:

require(['dijit/layout/TabContainer', 'dijit/layout/ContentPane', 'dijit/form/Button', 'dojo/domReady!'],
function(TabContainer, ContentPane, Button) {
  var tabContainer = new TabContainer({});

  var pane1 = new ContentPane({
    title : 'Pane 1'	
  });

  var pane2 = new ContentPane({
    title : 'Pane 2',
    content: 'Hello world!'
  });

  var button = new Button({
    label : 'My button'
  });

  pane1.addChild(button);

  tabContainer.addChild(pane1);
  tabContainer.addChild(pane2);
     
});

Or declarative in HTML:

<div data-dojo-type="dijit/layout/TabContainer">
	<div data-dojo-type="dijit/layout/ContentPane"
		 data-dojo-props="title:'Pane 1'">
		 <button data-dojo-type="dijit/form/Button">My Button</button>
	</div>
	<div data-dojo-type="dijit/layout/ContentPane"
		 data-dojo-props="title: 'Pane 2'">
		 	Hello world!hy7
		</div>
	</div>
</div>

SLD library propose a declarative syntax in JSON that may be useful to share layouts between development tools:

{
	"$type" : "dijit/layout/TabContainer",
	"$children" : [{
		"$type" : "dijit/layout/ContentPane",
		"title" : "Pane 1",
		"$children" : [{
			"$type" : "dijit/form/Button",			
			"label" : "My button"
		}]
	}, {
		"$type" : "dijit/layout/ContentPane",
		"title" : "Pane 2",
		"content" : "Hello world!"
	}]
}

This library contain a parser for the SLD specification

require(['sld/parser', 'dojo/domReady!'], function(parser) {

    let sld = {
        "$type" : "dijit/layout/TabContainer",
            "$children" : [{
                "$type" : "dijit/layout/ContentPane",
                "title" : "Pane 1",
                "$children" : [{
                    "$type" : "dijit/form/Button",			
                    "label" : "My button"
                }]
            }, {
            "$type" : "dijit/layout/ContentPane",
            "title" : "Pane 2",
            "content" : "Hello world!"
        }]
    };

  parser.parse(sld).then(function(layout) {
  	layout.placeAt(document.body); // Attach the layout in the body
    layout.startup();
  });
});

Installation

SLD API can be installed via bower, npm, or simply downloaded.

SLD Specification

See SLD 1.0 S [Outdated, see the test directory instead]

How to use

Example with the AMD plugin:

<html>
	<head>
		<link rel="stylesheet" href="path/to/dijit/themes/claro/claro.css">
		<script src="path/to/dojo.js" data-dojo-config="async: 1"></script>
		<script>
			require(['sld/parser!./layouts/myLayout.json'], function(layout) {
				layout.placeAt(document.body);
				layout.startup();
			});
		</script>
	</head>
	<body class="claro"></body>
</html>

For more examples see /test

API

Module: sld/parser

parser.parse(sld, rules)

Parameters:

  • sld {Object} a SLD tree node.
  • rules [{Object}] a optional object that (if exists) contain this attributes:
    • tokens [{Object}] a optional object of tokens:
      • TYPE {string} the token for the $type key.
      • CHILDREN {string} the token for the $children key.
      • REF {string} the token for the $ref key.
    • require [{function}] a optional reference for the AMD require.
    • rules [{Array}] a optional array of rules. A rule is a Object that contain this attibutes:
      • keyPattern {RegExp|string} a pattern for some key. Indicates that this rule applies to this attribute if it matches their key. Example, is keyPattern is /^on/, then onClick, onMouseOver, etc. use this rule. Other are ignored.
      • key [{string}] a optional value. If exists, then the key of the attribute is changed by it.
      • value [{mixted}] a optional value. If exists, the the value of the attribute is changed by it.
      • disabled [{boolean=false}] if true, then this attribute is ignored.
      • onPreparse [{function}] if exists, the is called before the node is parsed.

See sld/test/rules for example of rules.

Return: {dojo/promise} a promise that is resolve when the SLD is instantiate. The parameter of the callback is the instantiated widget.

parser.count(sld)

Parameters:

  • sld {Object} a SLD tree node.

Return: {number} the number of the future widgets in the SLD.

parser.listDepencendes(sld, toObject)

Parameters:

  • sld {Object} a SLD tree node.
  • toObject [{boolean=false}] if true then return a Object that contain the dependences as key and the true as values.

Return: {Array|Object} if toObject is false, then return a array with the MIDs (Module Identifier {string}) of all widgets in the SLD (no repeat), else return a Object.

Module: sld/Parser

Contain the same of sld/parser, but in OOP.

How to contribute?

  • If you had a code issue or suggestion, please create a issue, Thanks!

##Releases

Version Date Dependences Description
0.2.0 March 19, 2020 Dojo 1.10+
  • Deletion of the support for IE 7 and below.
  • Deletion the undocumented options.require parameter, that was intended to use another require function than Dojo.
  • Deletion of members of an Object was removed, so the library is now compatible with the strict ECMAScript mode. This unfortunately implies that some flags added during assembly will be retained in the final layout; However, this should not be annoying, because everyone has the prefix `$__`.
  • Added `$on:{event}` key in the SLD which map to the hydrateObject[value] method
  • Added `$ref` key in the SLD which is injected to hydrateObject.$ref.{value} as instantiated widget
  • Added `$typeAliasMap` key in the SLD to make an alias to the $type
  • Added `$i18n:{string}` key in the SLD which work with i18n option, to map the correct string
sld-0.1.0 May 2, 2013 Dojo 1.8 Mixin support added.
Rules support added.
Preloaded widget support added.
New test added.
Parser now has asynchronous behavior.
Updated documentation.
sld-0.0.0 Feb 20, 2013 Dojo 1.8 Initial SLD release

Licence

The MIT License (MIT) Copyright (c) 2013-2020 Rodrigo González Castillo

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

sld's People

Contributors

rgcl avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

zlxmbbq

sld's Issues

How is SLD resolving startup(), layout() and resize()

Nice Project! We had a similar idea but stumbled upon the following:

When using Layout widgets like TabContainer etc. How (if at all) is sld handling calls to startup(), layout() etc? Especially when adding children with addChild()

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.