- Issue created by @pdureau
- 🇫🇷France G4MBINI Bègles
Is that same issue as ✨ Sort component stories Active ?
StoryPluginManager::getComponentStories() returns unsorted, and potentially inconsistent, results
We may use the same logic as CategorizingPluginManagerTrait::getSortedDefinitions
public function getSortedDefinitions(?array $definitions = NULL, $label_key = 'label') {
// Sort the plugins first by category, then by label.
$definitions = $definitions ?? $this->getDefinitions();
uasort($definitions, function ($a, $b) use ($label_key) {
if ((string) $a['category'] != (string) $b['category']) {
return strnatcasecmp($a['category'], $b['category']);
}
return strnatcasecmp($a[$label_key], $b[$label_key]);
});
return $definitions;
}
Some people also want weighted results, but this will be another task.
Active
2.0
Code
Is that same issue as ✨ Sort component stories Active ?