[2.0.1] StoryPluginManager::getComponentStories() must return sorted results

Created on 8 March 2025, 26 days ago

Problem/Motivation

StoryPluginManager::getComponentStories() returns unsorted, and potentially inconsistent, results

Proposed resolution

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.

Feature request
Status

Active

Version

2.0

Component

Code

Created by

🇫🇷France pdureau Paris

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024