1.3.2 • Published 8 years ago

crisp-path v1.3.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Crisp.PathJS

is a DSL Language to finde nodes in JavaScript Objects with focus of FRD (find, rule and deliver)

Build Status NPM Downloads NPM Version

var myObject = Crisp.utilCreate({
    ns: 'util.path'
}).objIni().objData({
    a: {
        b: 'B',
        c: 'C'
    }
});

// find first node of path
myObject.pathNode('a.*:');  // 'B'

// find all nodes of path optional asynchronous
myObject.pathFind({
    path: 'a.*:',
    success: function( e ) {
        console.log('success:', e );
    },
    complete: function( e ) {
        console.log('complete:', e );
    }
});
// logs:
// success: B
// success: C
// complete: [ { data: 'B' }, { data: 'C' } ]

// check of path exists in object
myObject.pathExists('a.*:');  // true

Index Table

Getting Started

Server-Nodes

Use Node Package Manager (npm) to install crisp-path for Node.js and io.js

$ npm install crisp-path
// use package
require("crisp-path");

or use the OpenCrisp UtilJS wraper

$ npm install crisp-util
// use package
require("crisp-util");

Web-Clients

Use Bower to install crisp-path for Browsers APP's and other front-end workflows.

$ bower install crisp-path
<!-- use package -->
<script type="text/javascript" src="dist/crisp-path.min.js"></script>

or use the OpenCrisp UtilJS wraper

$ bower install crisp-util
<!-- use package -->
<script type="text/javascript" src="dist/crisp-util.min.js"></script>

Development

Use Git to clone Crisp.PathJS from GitHub to develop the repository with Grunt

# Clone:
$ git clone https://github.com/OpenCrisp/Crisp.PathJS.git

# Build: test, concat, test, minify, test
$ grunt

# Test: original sourcecode for developer (included in build)
$ grunt t

# Run all test-scripts on Unix
$ sh grunt-tests.sh

Usage

How to use Crisp.PathJS with JavaScript.

Crisp.definePath()

How to use Crisp.definePath( object ) module.

var myObject = { a: 'A', b: 'B' };

// initialice path property functions on myObject
Crisp.definePath( myObject );

// find first node of path string
myObject.pathNode('a:');  // 'A'
myObject.pathNode('b:');  // 'B'
myObject.pathNode('*:');  // 'A'

Crisp.utilCreate()

How to use Crisp.utilCreate( option ) with util.path namespace.

// create object with `util.path` namespace
var myObject = Crisp.utilCreate({
    ns: 'util.path'
}).objIni().objData({ a: 'A', b: 'B' });

// find first node of path string
myObject.pathNode('a:');  // 'A'
myObject.pathNode('b:');  // 'B'
myObject.pathNode('*:');  // 'A'

PathJS function

.pathNode()

Hot to use .pathNode( path OR option ) on myObject.

// find first node of path string
myObject.pathNode('b:');  // 'B'

// or with option.path string
myObject.pathNode({ path: 'b:' });  // 'B'

path (pathNode)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

// find first node of path string
myObject.pathNode('a:');  // 'A'
myObject.pathNode('b:');  // 'B'
myObject.pathNode('*:');  // 'A'

option.path (pathNode)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

// find first node of option.path string
myObject.pathNode({ path: 'a:' });  // 'A'
myObject.pathNode({ path: 'b:' });  // 'B'
myObject.pathNode({ path: '*:' });  // 'A'

option.preset (pathNode)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

// find first node of path string
myObject.pathNode({
  path: 'x:', 
  preset: 'X'
});
// 'X'

myObject.pathNode({
  path: 'x:',
  preset: function() { return 'X'; }
});
// 'X'

myObject.pathNode({
  path: 'x:'
});
// undefined

.pathFind()

Hot to use .pathFind( option ) on myObject.

var myObject = Crisp.utilCreate({
    ns: 'util.path'
}).objIni().objData({ a: 'A', b: 'B' });

myObject.pathFind({
    path: 'a',
    success: function( item ) {
        console.log('Success:', item );
    },
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Success: A
// Complete: [{"data":"A"}]
// End

option.path (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"A"},{"data":"B"}]
// End

option.async (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    async: true,
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// End
// Complete: [{"data":"A"},{"data":"B"}]

option.success (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    success: function( item ) {
        console.log('Success:', item );
    }
});
console.log('End');

// logs:
// Success: A
// Success: B
// End

option.complete (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"A"},{"data":"B"}]
// End

option.start (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    start: 1,
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"B"}]
// End

option.limit (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    limit: 1,
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"A"}]
// End

option.self (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

var myArg = {};
myObject.pathFind({
    path: '*',
    self: myArg,
    complete: function( e ) {
        console.log('Complete:', this === myArg );
    }
});
console.log('End');

// logs:
// Complete: true
// End

.pathExists()

Hot to use .pathExists( path ) on myObject.

// check of path string exists in myObject
myObject.pathExists('b');  // true
myObject.pathExists('*');  // true
myObject.pathExists('x');  // false

Path string examples

with callback of complete output

// ## path
// Object.key
'a.b:'                          // [ { data: 'B' } ]
'a.b:toString'                  // [ { data: 'B' } ]

'a:xTo'                         // [ { data: '{"b":"B","c":"C"}' } ]

'x:'                            // []
'a.x:'                          // []

// Array.index
'g.0.h:'                        // [ { data: 'H0' } ]

// ## xEach
// Object.xEach
'a.*:'                          // [ { data: 'B' }, { data: 'C' } ]

// Object.xEach reverse
'a.^*:'                         // [ { data: 'C' }, { data: 'B' } ]

// Array.xEach
'g.*.h:'
// [ { data: 'H0' }, { data: 'H1' }, { data: 'H2' }, { data: 'H3' }, { data: 'H4' }, { data: 'H5' } ]

// Array.xEach reverse
'g.^*.h:'
// [ { data: 'H5' }, { data: 'H4' }, { data: 'H3' }, { data: 'H2' }, { data: 'H1' }, { data: 'H0' } ]

// ## limit
// Object.xEach( start, limit ) start
'a.0~1:'                        // [ { data: 'B' } ]

// Object.xEach( start, limit ) end
'a.-1:'                         // [ { data: 'C' } ]
'a.-1~1:'                       // [ { data: 'C' } ]

// Object.xEach( start, limit ) limit on Object.length
'a.0~10:'                       // [ { data: 'B' }, { data: 'C' } ]
'a.-10~10:'                     // [ { data: 'B' }, { data: 'C' } ]

// Object.xEach( start, limit ) out of range
'a.10~10:'                      // []

// Array.xEach( start, limit ) start
'g.0~2.h:'                      // [ { data: 'H0' }, { data: 'H1' } ]

// Array.xEach( start, limit ) start reverse
'g.^0~2.h:'                     // [ { data: 'H5' }, { data: 'H4' } ]

// Array.xEach( start, limit ) end
'g.-1.h:'                       // [ { data: 'H5' } ]
'g.-1~1.h:'                     // [ { data: 'H5' } ]

// Array.xEach( start, limit ) limit on Array.length
'g.0~10.h:'
'g.-10~10.h:'
'g.-~.h:'
// [ { data: 'H0' }, { data: 'H1' }, { data: 'H2' }, { data: 'H3' }, { data: 'H4' }, { data: 'H5' } ]

// Array.xEach( start, limit ) out of range
// default range 0~10
'g.10~10.h:'                    // []

// find all with filter
'#(h=="H2").i:'                 // [ { data: 'I2' } ]

'a.#(b=="B").c:'                // [ { data: 'C' } ]

'a.#(b=="X").c:'                // []

// find all with specific filter
'+(!:xType("Array")).#:xTo',
// [
// { data: '{"a":{"b":"B","c":"C"},"g":[{"h":"H0","i":"I0"},{"h":"H1","i":"I1"},{"h":"H2","i":"I2"},{"h":"H3","i":"I3"},{"h":"H4","i":"I4"},{"h":"H5","i":"I5"}]}' },
// { data: '{"b":"B","c":"C"}' },
// { data: '"B"' },
// { data: '"C"' }
// ]

// find all with specific filter and second filter
'+(!:xType("Array")).#(:xType("field")):' // [ { data: 'B' }, { data: 'C' } ]

Links

1.3.2

8 years ago

1.3.1

9 years ago

1.3.0

9 years ago

1.2.0

9 years ago

1.1.4

9 years ago

1.1.2

9 years ago

1.1.0

9 years ago

1.0.0

10 years ago

0.5.1

10 years ago

0.5.0

10 years ago

0.4.10

10 years ago

0.4.8

10 years ago

0.4.2

10 years ago

0.4.1

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago