0.0.5 • Published 11 years ago
urlploader v0.0.5
Urlploader
Converts back and forth flat arrays to and from tree structured arrays. It uses the urls to establish the tree structure and hierarchy.
Installation
npm install urlploaderUsage
var urlPloader = require('urlploader');
var up = new urlPloader(options);
var flatArray = up.toFlat(myTree);
var treeArray = up.toTree(flatArray);Options
var options = {
subItemsKey: 'items',
urlKey : 'uri',
ignoreProtocol: true
}subItemsKeydefault pages type string The key name which identifies sub itemsurlKeydefault url type string The key name which identifies the urlignoreProtocoldefault false type boolean If true, http, https, //, of urls will be ignored
Data-example
Converts this flat array...
[
{
"url": "mydomain.com/blog",
"title": "Blog"
},
{
"url": "mydomain.com/contact",
"title": "Contact"
},
{
"url": "mydomain.com/info/sub",
"data": {
"key": "value1"
}
},
{
"url": "mydomain.com/info",
"title": "Info"
},
{
"url": "mydomain.com",
"title": "my start page"
}
]...to a tree:
[{
"pages": [
{
"url": "mydomain.com",
"title": "my start page",
"pages": [
{
"url": "mydomain.com/blog",
"title": "Blog"
},
{
"url": "mydomain.com/contact",
"title": "Contact"
},
{
"url": "mydomain.com/info",
"title": "Info",
"pages": [
{
"url": "mydomain.com/info/sub",
"data": {
"key": "value1"
}
}
]
}
]
}
]
}]