salix/modules/agency/back/methods/zone/getLeaves.js

58 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-01-21 10:45:53 +00:00
module.exports = Self => {
Self.remoteMethod('getLeaves', {
2019-09-19 13:51:39 +00:00
description: 'Returns the nodes for a zone',
accepts: [
{
2019-09-19 15:49:46 +00:00
arg: 'id',
2019-09-19 13:51:39 +00:00
type: 'Number',
2019-09-19 15:49:46 +00:00
http: {source: 'path'},
required: true
2019-09-19 13:51:39 +00:00
}, {
arg: 'parentFk',
type: 'Number',
description: 'Get the children of the specified father',
}, {
arg: 'search',
type: 'String',
description: 'Filter nodes whose name starts with',
}
],
2019-01-21 10:45:53 +00:00
returns: {
2019-09-19 13:51:39 +00:00
type: ['Object'],
2019-01-21 10:45:53 +00:00
root: true
},
http: {
2019-09-19 15:49:46 +00:00
path: `/:id/getLeaves`,
2019-01-21 10:45:53 +00:00
verb: 'GET'
}
});
2019-09-19 15:49:46 +00:00
Self.getLeaves = async(id, parentFk = null, search) => {
2019-09-19 13:51:39 +00:00
let [res] = await Self.rawSql(
2019-09-19 15:30:16 +00:00
`CALL zone_getLeaves(?, ?, ?)`,
2019-09-19 15:49:46 +00:00
[id, parentFk, search]
2019-09-19 13:51:39 +00:00
);
let map = new Map();
for (let node of res) {
if (!map.has(node.parentFk))
map.set(node.parentFk, []);
map.get(node.parentFk).push(node);
2019-02-18 07:37:26 +00:00
}
2019-01-21 10:45:53 +00:00
2019-09-19 13:51:39 +00:00
function setLeaves(nodes) {
if (!nodes) return;
for (let node of nodes) {
node.childs = map.get(node.id);
setLeaves(node.childs);
}
2019-02-18 07:37:26 +00:00
}
2019-09-19 13:51:39 +00:00
let leaves = map.get(parentFk);
setLeaves(leaves);
2019-01-21 10:45:53 +00:00
2019-09-19 15:30:16 +00:00
return leaves || [];
2019-01-21 10:45:53 +00:00
};
};