🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

The main goal of This plugin is providing an generic interface logic like controller for calling instance methods or getting property values of an object orientated designed plugin. A set of reusable logic elements for building gui components is integrated as well.Features:Mutual exclusion support through locking managementCross browser logging with different log levelsExtending native JavaScript types like strings, arrays or functionsA set of helper functions to parse option objectsExtended dom tree handling.Plugin scoped event handlingGeneric none-redundant plugin pattern for JavaScript and CoffeeScript

Plugins

Documentation

Project status

npm version downloads build status code coverage dependencies development Dependencies peer dependencies documentation website

Use case

The main goal of This plugin is providing an generic interface logic like controller for calling instance methods or getting property values of an object orientated designed plugin. A set of reusable logic elements for building gui components is integrated as well.

Content

[TOC]

Features

  • Mutual exclusion support through locking management
  • Cross browser logging with different log levels
  • Extending native JavaScript types like strings, arrays or functions
  • A set of helper functions to parse option objects
  • Extended dom tree handling.
  • Plugin scoped event handling.
  • Generic none-redundant plugin pattern for JavaScript and CoffeeScript

Installation

Classical dom injection

You can simply download the compiled version as zip file here and inject it after needed dependencies:

#!HTML  <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <!--Inject downloaded file:--> <script src="index.compiled.js"></script> <!--Or integrate via cdn: <script src="https://goo.gl/HEL97d"></script> --> 

The compiled bundle supports AMD, commonjs, commonjs2 and variable injection into given context (UMD) as export format: You can use a module bundler if you want.

Package managed and module bundled

If you are using npm as package manager you can simply add this tool to your package.json as dependency:

#!JSON  ... "dependencies": {     ...     "clientnode": "latest",     ... }, ... 

After updating your packages you can simply depend on this script and let a module bundler do the hard stuff or access it via an exported variable name in given context.

#!JavaScript  ... import Tools from 'clientnode' clas Plugin extends Tools... Tools({logging: true}).log('test') // shows "test" in console // or import {$} from 'clientnode' $.Tools().isEquivalentDom('<div>', '<script>') // false // or Tools = require('clientnode').default Tools.arrayMake(2) // [2] // or $ = require('clientnode').$ $.Tools().isEquivalentDom('<div>', '<script>') // false ... 

Plugin pattern

Use as extension for object orientated, node and browser compatible (optionally jQuery) plugin using inheritance and dom node as return value reference. This plugin pattern gives their instance back if no dom node is provided. Direct initializing the plugin without providing a dom node is also provided. Note: if you want to use it as jQuery (or another or even custom) plugin you have to provide "$" globally before loading this module.

#!JavaScript  // !/usr/bin/env node // -*- coding: utf-8 -*- /** @module jQuery-incrementer */ 'use strict' import {$} from 'clientnode' /**  * This plugin holds all needed methods to extend input fields to select  * numbers very smart.  * @extends clientnode:Tools  * @property static:_name - Defines this class name to allow retrieving them  * after name mangling.  * @property _options - Options extended by the options given to the  * initializer method.  */ export default class Example extends $.Tools.class {     static _name = 'Example';     /* eslint-disable jsdoc/require-description-complete-sentence */     /**      * Initializes the plugin. Later needed dom nodes are grabbed.      * @param options - An options object.      * @returns Returns $'s extended current dom node.      */     initialize(options = {}) {     /* eslint-enable jsdoc/require-description-complete-sentence */         this._options = {/*Default options here*/}         super.initialize(options)         return this.$domNode     } } $.fn.Example = function() {     return $.Tools().controller(Example, arguments, this) } 

Initialisation with given dom node and without:

#!JavaScript  const $domNode = $('#domNode').Example({firstOption: 'value'}); const exampleInstance = $.Example({firstOption: 'value'}); 

Function call from previous generated instance via dom node or instance reference:

#!JavaScript  const returnValue = $('#domNode').Example('method', 'anArgument') const returnValue = $('#domNode').Example().method('anArgument') const exampleInstance = $.Example({firstOption: 'value'}) const returnValue = exampleInstance.method('anArgument') 

You May Also Like