Giter Site home page Giter Site logo

pombredanne / zebra Goto Github PK

View Code? Open in Web Editor NEW

This project forked from barmalei/zebkit

0.0 1.0 0.0 28.49 MB

JavaScript library that follows easy OOP concept, provides HTML5 Canvas based Rich UI and includes Java to JavaScript converter tool

License: Apache License 2.0

JavaScript 96.50% CSS 1.95% Python 1.55%

zebra's Introduction

ScreenShot

v11.2014 (Anna)

For impatient: look at few demos

What is Zebra ?

Zebra is JavaScript library that implements graceful and easy to use OOP concept together with rich set of UI components, decoupled UI engine, IO and other packages. UI are fully based on HTML5 Canvas element. This approach differs from traditional WEB UI, where user interface is built around HTML DOM and than "colored" with CSS.

Features

  • Zebra easy OOP concept JavaScript: classes, interfaces, overriding, overloading, constructors, packaging, anonymous class, access to super class methods, mixing, etc
  • Zebra UI Engine that can be used as powerful basis for:
    • Pixel by pixel UI components rendering controlling
    • Simple and flexible events (keyboard, mouse, etc) manipulation, advanced event technique to develop composite UI components
    • Layouting UI components using number of predefined layout managers
    • Easy developing of own layout managers
    • Full control of UI components rendering
    • Play video in Zebra UI panel
    • Flash-free, pure web native clipboard paste and copy supporting
    • Font metrics calculation
    • Layered UI architecture
    • and many other ...
  • Zebra rich UI Components set developed basing on Zebra UI Engine:
    • More than 40 various UI components
    • Look and feel customization
    • Complex UI components: Grid, Tree, Tabs, Combo, Designer, Scroll, Menu, etc
    • Thanks to easy OOP concept and proper design: expendable and fully customizable UI components
    • Simple data model description
    • HTML DOM as part of Zebra UI
    • and many other ...
  • JSON as Zebra UI form descriptive language
  • JSON as Zebra UI look and feel configuration
  • Zebra IO
    • GET/POST/etc Ajax requests
    • XML-RPC, JSON-RPC Service communication
    • binary data handling
  • Mobile devices support
    • Touch screen support
    • Inertial scrolling
    • Virtual keyboard input

Build and run zebra demos

To build zebra artifacts and run zebra samples you have to install nodejs (http://nodejs.org/) on your PC. Than go to zebra home directory and deploy required node JS packages:

    $ npm install 

Than re-build zebra artifacts:

    $ gulp 

And if you want open demos and samples on your in a browser start simple test HTTP server:

    $ gulp http

To track changes and zebra artifact re-building you should start watch task:

    $ gulp watch

To generate api doc install once yuidoc:

   $ [sudo] npm -g install yuidocjs.

and than run the following command from zebra home:

   $ yuidoc -t yuidoc/themes/default -c yuidoc/yuidoc.json -n -C -o apidoc .

Open demos in a browser: http://127.0.0.1:8090/

Zebra package structure:

  ```bash
  zebra-home
    |
    +--- [src]        # zebra source code
    +--- [apidoc]     # the latest zebra API documentation
    +--- [samples]    # various zebra snippets and general UI set demo
    +--- gulpfile.js  # zebra building and deploying tasks
    +--- package.json # nodejs package descriptor
    +--- index.html   # index WEB page to see main samples and demos
    +--- zebra.png         # zebra (Runtime) UI elements icons
    +--- zebra.json        # zebra (Runtime) JSON configuration 
    +--- zebra.js          # Zebra (Runtime) JS code 
    +--- zebra.min.js      # minified (Runtime) Zebra JS code 
    +--- zebra.runtime.zip # zipped all you need in runtime
  ```

Use artifacts packaged in "zebra.runtime.zip" file if you need to keep zebra on your web site. Unpack it in you web folder and include "zebra.min.js" in your HTML page.

Simple UI Zebra application

To write the first application no zebra stuff on you PC has to be downloaded and deployed (you need only this readme file :). Let's start writing simple Zebra HTML following traditional style:

<!DOCTYPE html>
<html>
	<head>
		<script src='http://repo.zebkit.org/latest/zebra.min.js'
                type='text/javascript'></script>
		<script type='text/javascript'>
		    zebra.ready(function() {
				// import classes and variables from "ui" and "layout" packages in local space
				eval(zebra.Import("ui", "layout"));
				// create Canvas
			    var root = (new zCanvas()).root;
				// define layout
				root.setLayout(new BorderLayout());
				// add button to center
				root.add(CENTER, new Button("Ok"));
				...
	 		});
		</script>
	</head>
	<body></body>
</html>

We can write the application following more graceful manner using JSON-like style:

<!DOCTYPE html>
<html>
	<head>
		<script src='http://repo.zebkit.org/latest/zebra.min.js'
                type='text/javascript'></script>
		<script type='text/javascript'>
		    zebra.ready(function() {
				// import classes and variables from "ui" and "layout" packages in local space
				eval(zebra.Import("ui", "layout"));
				// create Canvas using JSON like style
			    (new zCanvas()).root.properties({
			    	layout: new BorderLayout(),
			    	kids  : {
			    		CENTER: new TextField("", true),
			    		TOP   : (new BoldLabel("Sample application")).properties({
			    			padding : 8
			    		}),
			    		BOTTOM: new Button("Ok")
			    	}
			    });
			}); 
		</script>
	</head>
	<body></body>
</html>

Keeping UI forms in JSON

JSON can be interpreted as Zebra UI form definition language. For instance, use UI definition shown below and store it in "myform.json" file located in the same place where HTML is hosted:

{
	"padding": 8, 
	"layout" : { "$zebra.layout.BorderLayout":[ 4] },
	"kids"   : {
		"CENTER": { "$zebra.ui.TextField": ["", true]  },
		"BOTTOM": { "$zebra.ui.Panel": [],
			"layout": { "$zebra.layout.FlowLayout": [] },
			"kids"  : [
				{ "$zebra.ui.Button": "Clear" } 
			]  
		}
	}
}

Load the JSON UI form definition as it is illustrated below:

<!DOCTYPE html>
<html>
	<head>
		<script src='http://repo.zebkit.org/latest/zebra.min.js'
                type='text/javascript'></script>
		<script type='text/javascript'>
		    zebra.ready(function() {
				// load UI form from JSON file
			    var root = (new zebra.ui.zCanvas()).root;
			    root.load("myform.json");
			    // find by class "Button" component and register button
			    // event handler to clear text field content by button click
			    root.find("//zebra.ui.Button").bind(function() {
				    root.find("//zebra.ui.TextField").setValue("");
				});	    
			});
		</script>
	</head>
	<body></body>
</html>

Native clipboard support

Zebra support browser native clipboard. The implementation doesn't require any Flash or other plug-in installed. It is pure WEB based solution !

By implementing special methods "clipCopy()" and/or "clipPaste(s)" a focusable UI component can start participating in clipboard data exchange. For instance:

<!DOCTYPE html>
<html>
	<head>		
		<script src='http://repo.zebkit.org/latest/zebra.min.js'
                type='text/javascript'></script>
		<script type='text/javascript'>
			zebra.ready(function() {
				eval(zebra.Import("ui", "layout"));
				// define our own UI component class that wants to handle 
                // clipboard events
				var MyComponent = zebra.Class(MLabel, [
				    // override "canHaveFocus" method to make your component
                    // focusable
				    function canHaveFocus() { return true; },

				    // returns what you want to put in clipboard
				    function clipCopy() {
				    	this.setColor("#FF3311");
				    	return this.getValue();
				    },

				    // this method is called when paste event has 
                    // happened for this component 
				    function clipPaste(s) { 
				    	this.setColor("#000000");
				    	this.setValue(s); 
				    },

				    // use border as an indication the component has focus
				    function focused() {
				    	this.$super() // call super
				    	this.setBorder(this.hasFocus() ? new Border("red",2,3) : borders.plain);
				    }
				]); 
				// create UI application with our clipboard handler UI
                // component
				(new zCanvas()).root.properties({
					background: "#EEEEEE",
					layout: new BorderLayout(8,8), 
                    padding: 8,
					kids  : {
						TOP   : new BoldLabel("Copy/Paste in box below"),
						CENTER: new MyComponent("Copy me in clipboard").properties({border:borders.plain, padding:8})
					}
				});
			});
		</script>
	</head>
	<body></body>
</html>

UI look and feel customization

Default values of UI components properties can be controlled by JSON configuration. You can define an own JSON configuration to override default Zebra configurations (that is stored in "zebra.json"). For instance, imagine we need to define new background and font for "zebra.ui.Button" component. It can be done by providing the following JSON configuration file:

{
	"Button" : {
        "font"      : { "$Font": ["Arial", "bold", 18 ] },
        "background": "#DDDDEF"
    }
}

As soon as the file will be added in configuration chain, every new instantiated Button component will get the new font and background properties values.

IO API: HTTP POST/GET, JSON-RPC or XML-RPC

The module provides handy manner to interact with remote services.

POST and GET requests:

// get, post data
var gdata = zebra.io.GET(url),
	pdata = zebra.io.POST(url, "request");
// async GET/POST
zebra.io.GET(url, function(request) {
    if (request.status == 200) {
    	// handle result
    	request.responseText	
	}
	else {
		// handle error
	}
    ...
})

Interact to remote XML-RPC server:

// XML-RPC server
var s = new zebra.io.XRPC(url, [ "method1", "method2", "method3" ]);
// call remote methods
s.method1(p1, p2);
var res = s.method2(p2);
// async remote method call
s.method1(p1, p2, function(res) {
    ...
});

Interact to remote JSON-RPC server

// JSON-RPC server
var s = new zebra.io.JRPC(url, [ "method1", "method2", "method3" ]);
// call remote methods
s.method1(p1, p2);
var res = s.method2(p2);
// async remote method call
s.method1(p1, p2, function(res) {
    ...
});

Shortcuts to call remote services:

// JSON-RPC remote method execution
var res = zebra.io.JRPC.invoke(url, "method1")(param1, param2);
// Async JSON-RPC remote method execution
zebra.io.JRPC.invoke(url, "method1")(param1, param2, function(res) {
  ....
});

License

Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.html

Contact

zebra's People

Contributors

fibona44i avatar metaperl avatar patrickfournier 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.