Automatically closed - issue fixed for 2 weeks with no activity.
The generator plugins follow a standard pattern:
1. Generate meta-data.
2. Filter link entries based on the aggregated meta-data.
3. Return the data structure needed for the site-map. (this should be moved to shared base class
The DX problem I am noticing is that Whenever I want to reuse a particular base class, I need to copy all 3 of the steps to implement anything custom in there.
This is causing:
- Duplicated effort
- Maintenance overhead.
For a concrete example, let's look into EntityUrlGenerator::processDataSet($data_set)
.
It is doing filtering of links, based on different conditions, every time it returns FALSE.
If you want to add a condition to filter the result, you will have to re-implement the whole method again just for the 2 lines needed.
There are cases (pretty much every time) in decoupled Drupal sites where Drupal will generate sitemaps for different domains than it currently runs on. Again just to change that 2 lines of code, the whole method needs to be re-implemented.
Introduce this designated steps as methods and sub-methods that will perform one thing only instead of all of them in a single processDataSet($data_set)
.
Have a utility data array that will aggregate all the meta-data used for filtering.
Have all the filter conditions moved to a separate function and aggregate that meta-data array in there.
Have the URL generation moved itself to a utility method that will allow overwriting as well.
Discussion, PoC patch etc.
None.
New methods to extend for anyone that needs to implement custom URL providers.
Should be backwards compatible change.
Anyone that has currently customized that method will have done so by rewriting the whole thing.
None.
Refactoring of internal protected APIs.
Fixed
4.0
Code
Enhances developer experience.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.