jQueryExtern

Unleash the full power of jQuery in Haxe.


Keywords
extern, js, externs, haxe, jquery
License
QPL-1.0
Install
haxelib install jQueryExtern 3.2.1

Documentation

NOTICE

This version of jQuery extern requires Haxe 3.3+. Users of Haxe 3.2.0- should checkout jQueryExtern 2.0.4.


jQueryExtern Build Status

jQueryExtern unleash the full power of jQuery in Haxe. Currently supports jQuery version up to 3.4.1.

This library, jQueryExtern, is a drop-in replacement of the externs in the standard library (js.jquery.*). It utilizes build macros to provide advanced control over the extern for all the special needs.

jQueryExtern allows us to:

Download and Install

Install via haxelib:

haxelib install jQueryExtern

Then add -lib jQueryExtern in our hxml.

Usages

Version Selection

By default, jQueryExtern provides API same as the one supported by the std extern. It means that using jQueryExtern will not change the default jQuery version. The default jQuery is 1.6.4 in Haxe 3.2 and earlier. Since Haxe 3.3, the default version is set in compiler define jquery-ver. You may check the value of jquery-ver using haxe.macro.Compiler.getDefine. The version is encoded as an interger. e.g. 1.11.3 is encoded as 11103.

jQueryExtern allows changing the supported jQuery version using js.jquery.Config.setVersion. It can be called in a hxml file like this:

--macro js.jquery.Config.setVersion('1.8.3')

The function will also set jquery-ver to the corresponding integer value automatically.

Changing Native Reference

jQuery in the JS output is referred as $, which is an alise of jQuery. Some JS libs, eg. PrototypeJS also use the $ variable, so we may want to refer jQuery by its original name instead.

To do so, add the following compiler option:

--macro js.jquery.Config.setNative('jQuery')

Under the surface, it changes the metadata on the JQuery classes from @:native("$") to @:native("jQuery").

Plugin System

jQueryExtern introduces the js.jquery.Plugin class to ease the process of writing jQuery plugin extern. It is macro-based, responsible for injecting additional fields to the JQuery extern class.

To write a jQuery plugin extern, create an extern class that implements js.jquery.Plugin, and start writing the members as if writing directly inside the JQuery extern class. e.g.:

package jPlugin;
extern class JQueryPlugIn implements js.jquery.Plugin {
    public function myMethod(arg:Dynamic):js.jquery.JQuery;
    static public function myStaticMethod(arg:Dynamic):Void;
}

To use it, add the following compiler option:

--macro js.jquery.Config.addPlugin('jPlugin.JQueryPlugIn')

Note that currently import statements are not supported in the plugin extern modules. Please use fully-qualified names for types not existed in top-level or js.jquery. (see #20)

License

jQueryExtern is released in the public domain. NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.

jQuery's license can be found at http://jquery.org/license.