Skip to content
This repository was archived by the owner on May 22, 2019. It is now read-only.

feat(parser): adds sort by name after parsing #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions src/topdoc-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ function _parseTopdocComment(node, regex, includeNodes) {
return component;
}

/**
* Private: A compare function that sorts array members by their 'name' property.
*/
function _nameCompareFunction(a, b) {
if (a.name < b.name) return -1;
if (a.name > b.name) return 1;
return 0;
}

/**
* Private: goes through each css node and finds Topdoc comments.
*
Expand All @@ -47,10 +56,11 @@ function _findTopdocComments(css, regex, includeNodes) {
debug(`Added ${node.type} to ${components[currentComponentIndex].name}`);
}
});
return components;
// TODO: sort function could be passed as an option
// if someone needs that but for now alpha is a good default
return components.sort(_nameCompareFunction);
}

/**
/*
* TopdocParser Class
*/
export default class TopdocParser {
Expand Down