mobify-plugin
v4.0.0
Published
A generic plugin factory method for creating Mobify plugins
Downloads
47
Readme
Mobify Plugin Factory
A generic plugin factory method for creating Mobify plugins.
Requirements
Installation
The plugin factory can be installed using NPM:
npm install mobify-plugin
Usage with Require.js
To use with require.js, after installing through NPM you merely have to reference the plugin factory in your require config file:
{
'paths': {
'plugin': 'node_modules/mobify-plugin/dist/plugin.min',
'myPlugin': 'plugins/myPlugin'
}
}
And then require the plugin factory in as needed:
define(
['$', 'plugin'],
function($, Plugin) {
// create plugin
}
);
Usage
The plugin factory requires a few things to be defined in your plugin prior to calling the plugin factory function.
- Your plugin's constructor, calling
__super__
- A
DEFAULTS
static property on your plugin's constructor - A
VERSION
static property on your plugin's constructor
Creating your plugin
Let's look at an example. In this example, we're going to create a button
plugin. To do so, we will use the following code:
define(
[
'$',
'plugin'
],
function($, Plugin) {
function Button(element, options) {
Button.__super__.call(this, element, options, Button.DEFAULTS);
}
Button.VERSION = '0.0.1';
Button.DEFAULTS = {
cssClass = 'button'
};
Plugin.create('button', Button, {
_init: function(element) {
}
});
}
)
First, we declare a Button
constructor, and VERSION and DEFAULTS properties. We then invoke the static Plugin.create
function. Through prototypal inheritance, this function extends the Button
prototype with the Plugin
prototype. Additionally, it creates our jQuery plugin interface.
To create a button instance, you merely need to use:
$('<button />').button();
The Plugin factory method
Extends a plugin using the Plugin
prototype.
| Parameter name | Description | |----------------|-------------| | name | The name of the plugin, in lowercase. | | ctor | The constructor of the plugin we want to extend. | | prototype | Additional methods we want to extend onto our plugin's prototype. The prototype must declare an _init function, which is used for plugin construction. |
See the example above for usage.
Invoking methods on a plugin.
The plugin factory facilitates invoking methods via the plugin interface. This means that once a plugin is initialized, public methods can be invoked by passing the name of the method as the first parameter to the plugin function.
Public methods are methods defined on the object passed into the Plugin.create
factory method that aren't preceded by an underscore character. Methods preceded by an underscore are considered private methods.
Using our button
example above, here's what public methods would look like:
define(
[
'$',
'plugin'
],
function($, Plugin) {
function Button(element, options) {
Button.__super__.call(this, element, options, Button.DEFAULTS);
}
Button.VERSION = '0.0.1';
Button.DEFAULTS = {
cssClass = 'button'
};
Plugin.create('button', Button, {
_init: function(element) {
this.$element = $(element);
},
enable: function() {
this.$element.removeAttr('disabled');
},
disable: function() {
this.$element.attr('disabled', 'disabled');
},
isEnabled: function() {
return !this.$element[0].hasAttribute('disabled');
}
});
}
)
In the above example, the enable
and disable
functions are public. To invoke the method, simply pass the method name into the plugin function:
var $button = $('<button />').button();
$button.button('disable');
Method return values
It's important to note that there's some specific behaviour around invoking methods that return a value when using a single element vs. a set of elements.
When invoking a method against a single element, and when that method returns a value, the value will be returned as expected.
var $button = $('<button />').button();
var enabled = $button.button('isEnabled'); // returns true
When invoking a method against a set of elements, and when that method returns a value, the original set of elements will be returned.
var $buttons = $('.lots-of-buttons').button();
var enabled = $buttons.button('isEnabled'); // returns original set of elements
This behaviour is intentional, as it's assumed that it's unlikely to be calling methods against a set of elements when expecting primitive values in return.