


Principle
Features
-
object wrapping
similary $() in jQuery but supported wrap any object
-
module
inspirits by module of Ruby
-
classes and inheritance
bring onExtend() and onInitialize() hook and more
-
interface
for documentation implicit interface and validate objects
-
method overload
help you clean up type assertion of paramerters in function head lines
-
keyword-like function
a series of function to simplify complex expressions and repetitive code
Install
install for nodejs
install for browser
Getting started
The quickest way to start using May.js in your project, is by simply including may.js
<!DOCTYPE html>
<html>
<head>
<script src="may.js"></script>
<script>
M(function($, $$){
$.reg({
capitalize: function(){
var s = this.valueOf();
return s.charAt(0).toUpperCase() + s.slice(1);
}
}, String);
alert($("china").capitalize());
});
</script>
</head>
<body>
</body>
</html>
Export May.js keyword-like function to global object
Module
var MEvent = $module({
onIncluded: function(obj){
obj.__observers = {};
},
subscribe: function(obj, eventName, observer){
if(!obj.__observers[eventName]) obj.__observers[eventName] = [];
obj.__observers[eventName].push(observer);
},
publish: function(obj, eventName, data){
(obj.__observers[eventName] || []).forEach(function(observer){
observer(data);
});
},
__option__: {
methodize: true
}
});
var man = {};
$include(man, MEvent);
man.setName = function(name){
this.name = name;
this.publish("nameChanged", name);
}
man.subscribe("nameChanged", function(newName){
console.info("name changed to:" + newName);
});
man.setName("Hal");
man.setName("Jerry");
Object wrap
M.$.reg({
mix: function(obj, src){
for(var p in src){ obj[p] = src[p] }
},
__option__: {
methodize: true,
supports: [Object]
}
});
M(function($, $$){
var Jim = {};
$(Jim).mix({
name: "Jim",
age: 20
});
Jim.name;
Jim.hasOwnProperty("mix");
typeof(Jim.mix);
$$(Jim);
Jim.hasOwnProperty("mix");
$.reg({
next: function(num){
return num + 1;
},
__option__: {methodize: true}
}, Number);
$(8).next();
})
M.$(8).next()
Classes and inheritance
M(function(){
var Animal = $class({
initialize: function(name){
var _name = name || "";
this.getName = function(){
return _name;
}
},
eat: function(food){
return this.getName() + " is eating " + food;
}
});
var Duck = Animal.extend({
initialize: function(name){
this.base(name);
},
eat: function(food){
return this.base(food) + ", she is so happy: quack quack!"
}
});
var monkey = new Animal("monkey");
monkey.eat("banana");
var duck = new Duck("Litter yellow duck");
duck.eat("grass");
});
Interface
Using interface to validate object
M(function(){
var IStudent = $interface({
name: String,
birthday: Date,
"[interest]": String
});
var Student = $class({
initialize: function(studentInfo){
$support(IStudent, studentInfo);
$mix(this, studentInfo);
}
});
var Jim = new Student({
name: "Jim",
birthday: new Date("1988/08/08")
});
var Lily = new Student({
name: "Luly",
birthday: new Date,
interest: "swimming"
});
$ensure(function(){
var Lucy = new Student({
name: "Lucy",
birthday: "1990/08/08"
});
});
});
Implementation interface
M(function($, $$){
var IMoveAble = $interface({
move: Function
});
var Car = $class({
initialize: function(name){
this.name = name;
},
move: function(place){
console.info(this.name + " is running to " + place);
}
});
$implement(IMoveAble, Car.prototype);
var Man = $class({
initialize: function(name){
this.name = name;
},
move: function(place){
console.info(this.name + " is walking to " + place);
}
});
$implement(IMoveAble, Man.prototype);
Register an module map to an interface
var MoveStatus = $enum("Stoped", "Moving", "Arrived");
var Marathon = $module({
gotoPlace: function(obj, place, distance, secondsSpeed){
obj.status = MoveStatus.Moving;
obj.__moveTask ={
place: place,
distance: distance,
speed: secondsSpeed,
lastCounterTime: new Date
}
},
cancel: function(){
obj.status = MoveStatus.Stoped;
},
checkStatus: function(obj){
var task = obj.__moveTask;
switch(obj.status){
case MoveStatus.Stoped:
console.log(obj.name + ": Stoped");
break;
case MoveStatus.Moving:
var movedSeconds = (new Date() - task.lastCounterTime) / 1000;
var movedDistance = Math.round(movedSeconds * task.speed * Math.random());
if(movedDistance < task.distance){
obj.move(task.place);
var remaining = task.distance - movedDistance;
console.log(" To " + task.place + " remaining: " + remaining);
task.distance = remaining;
task.lastCounterTime = task.lastCounterTime;
}else{
obj.status = MoveStatus.Arrived;
}
break;
case MoveStatus.Arrived:
console.info(obj.name + ": Arrived");
break;
}
return obj.status;
},
onIncluded: function(obj){
obj.status = MoveStatus.Stoped;
},
__option__: {
methodize: true
}
});
$.reg(Marathon, IMoveAble);
var toyota = new Car("Toyota");
var liuXiang = new Man("LiuXiang");
var marathonMan = $(liuXiang);
var marathonCar = $(toyota);
marathonCar.gotoPlace("Beijing", 3 * 1000, 20);
marathonMan.gotoPlace("Home", 1 * 1000, 8);
var timer = setInterval(function(){
if(marathonMan.checkStatus() == MoveStatus.Arrived){
console.info("==== LiuXiang Win ====")
return clearInterval(timer);
}
if(marathonCar.checkStatus() == MoveStatus.Arrived){
console.info("==== Toyota Win ====")
clearInterval(timer);
}
}, 3000);
});
Method overload
may.js $overload() rely on interface and $is()
lets write a tiny jQuery
M(function($, $$){
var supportCollectionFn = function(fn){
return function(el){
var self = this;
var args = Array.prototype.slice.call(arguments, 1);
if(el instanceof HTMLCollection || el instanceof NodeList){
var result;
Array.prototype.slice.call(el).forEach(function (item) {
result = fn.apply(self, [item].concat(args));
});
return result;
}else{
return fn.apply(self, arguments);
}
}
}
var DomHelper = {
css: supportCollectionFn(function(el, cssProp, cssValue){
el.style[cssProp] = cssValue;
return this;
}),
html: supportCollectionFn(function(el, html){
if(html){
el.innerHTML = html;
}else{
return el.innerHTML;
}
return this;
}),
prop: supportCollectionFn(function(el, prop, propValue){
if(propValue){
el[prop] = propValue;
}else{
return el[prop];
}
return this;
}),
__option__: {
supports: [Element.prototype, NodeList.prototype, HTMLCollection.prototype],
methodize: true
}
}
$.reg(DomHelper);
var jjQuery = $overload([String], function(selector){
return $(document.querySelectorAll(selector));
}).overload([Element.prototype],function(el){
return $(el);
}).overload([HTMLCollection.prototype],function(els){
return $(els);
}).overload([String,Element.prototype], function(selector, parentElement){
return $(parentElement.querySelectorAll(selector));
}).overload([/^#[^ ]*/],function(id){
return $(document.getElementById(id));
});
jjQuery("#content").html("Hi, Mayjs!");
jjQuery(document.body).css("backgroundColor","gray");
jjQuery(document.forms).css("backgroundColor", "blue");
jjQuery("button", document.forms[0]).prop("disabled", true);
jjQuery("#myForm input").css("backgroundColor", "yellow");
})
Keyword-like function
assertion
$is("string", "hello");
$is(String, "hello");
$is(Array, []);
$is(null, undefined);
A=$class({});
$is(A, new a);
$hasProto(A.prototype, new A);
function Person(name, age){
$check($is(String, name), "name invalid");
$check($is(Number, age), "age invalid");
this.name = name;
this.age = age;
}
var lily = new Person("lily", "16");
syntactic sugar
var a=$obj({name: "jerry", "gender":"male"});
var b=a.extend({name:"hal", age:18});
b.gender;
a.isPrototypeOf(b);
$run(function(){
console.info("hello, mayjs");
});
var errorFn = function(){
throw "some error"
}
$ensure(errorFn);
$ensure(function(){});
$ensure(function(){ return "hello"; });
function capitalize(string){
return string.charAt(0).toUpperCase() + string.slice(1);
}
var china = new String("china");
china.capitalize = $methodize(capitalize, china);
china.capitalize();
var a={hi: function(){
return "hello";
}}
$overwrite(a, "hi", function(hi){
return hi() + " world!";
})
a.hi();
var man = function(option){
option = $merge({name: "noname"}, {age: 0}, option);
return option;
}
var hal = man({name: "hal", age: 20});
hal.name;
hal.age;
var a = {};
$mix(a, {name: "jim"});
a.name;
var Gender = $enum("Male","Female")
typeof Gender.Male
typeof Gender.Female
var Gender2 = {
male: 1,
female: 2
}
Gender2 == $enum(Gender2);
License
Copyright (c) 2015 Zhong Xingdou
Licensed under the MIT license.