🇺🇸United States @daggerhart

Account created on 29 July 2007, over 17 years ago
#

Recent comments

🇺🇸United States daggerhart

Ran into this while working on Radios in a table.

I looked into the form processing a little bit, and confirmed #12 🐛 Radios and checkboxes not rendered correctly when nested inside other render arrays Active . \Drupal\Core\Render\Element\Radios::processRadios was not being run on radios elements within a table.

My temp solution was "whatever it takes" to get the radios working and I ended up with this method:


/**
 * Takes a normal render array for a radios element and makes it work within
 * a rendered table element. This solves a core Drupal bug where Radios are
 * not rendered at all within a table.
 *
 * @link https://www.drupal.org/project/drupal/issues/3246825
 *
 * @param array $radios
 *   Normal radios render array.
 *
 * @return array
 *   Fixed render array with child Radio (singular) elements.
 */
public function fixNestedRadios(array &$form, array $render_parents, string $render_name, array $radios): array {
  // First item in the parents array is the "tree name".
  $tree_name = reset($render_parents);


  // This container contains a hidden field that registers the $tree_name with
  // the $form_state. This trick allows our custom-rendered radios to be found
  // in $form_state->getValue($tree_name);
  if ($tree_name && !isset($form[$tree_name])) {
    $form[$tree_name] = [
      '#type' => 'hidden',
    ];
  }

  // Build the <input> element names and ids we'll need.
  $parent_names = $render_parents;
  $parent_name = array_shift($parent_names);
  if ($parent_name && $parent_names) {
    $parent_name .= '[' . implode('][', $parent_names) . ']';
  }

  $child_name = $parent_name ?
    $parent_name . "[$render_name]" :
    $render_name;

  $radios['#id'] = $radios['#id'] ?? Html::getUniqueId($child_name);
  $radios['#title_display'] = $radios['#title_display'] ?? 'visible';
  $radios['#description_display'] = $radios['#description_display'] ?? 'visible';
  $radios['#default_value'] = $radios['#default_value'] ?? FALSE;
  $radios['#attributes'] = $radios['#attributes'] ?? [];
  $radios['#parents'] = $render_parents;

  // Render each of the radios options as a single radio element. Neither
  // $form nor $form_state are actually used in this process, just required.
  $form_state = new FormState();
  $radios = Element\Radios::processRadios($radios, $form_state, $form);

  foreach (Element::children($radios) as $index) {
    // Radios::processRadios() doesn't set the #value field for the child radio
    // elements, but later the Radio::preRenderRadio() method will expect it. We
    // can set these values from the $radios #default_value if needed.
    // - '#return_value' is the "value='123'" attribute for the form element.
    // - '#value' is the over-all value of the radios group of elements.
    $radios[$index]['#value'] = $radios[$index]['#value'] ?? $radios['#default_value'];

    // Some other part of the rendering process isn't working, and this field
    // rendered as an <input> ends up not having a "name" attribute.
    $radios[$index]['#name'] = $child_name;
  }

  return $radios;
}

Maybe these things I had to do to make it work can be a clue for someone more familiar with the how forms -> render arrays -> forms work.

🇺🇸United States daggerhart

Ran into this same problem today and the real issue is that the UI is terrible. There is a hidden "Custom menu link" section that appears once you check the top-level box. Then you have to go into that newly-visible section and check another box to make it actually translatable. This is true for all entity types.

🇺🇸United States daggerhart

Patch applies and looks good. Thanks!

🇺🇸United States daggerhart

Reviews, tested, and merged. af1a0b

Thanks for the help!

🇺🇸United States daggerhart

Thanks for the offer! Happy to have all the help I can get.

I've added you as a maintainer with VCS and release control. I'll spend some time in the near future on the module's page and any documentation I can add.

🇺🇸United States daggerhart

I know it's not ideal for me to mark RTBC since I rolled the last patch, but I didn't really do that much so maybe it's okay. You decide.

This is working well w/ module 1.7.

My config:

  $settings['container_yamls'][] = 'modules/contrib/redis/example.failover.services.yml';
  $settings['cache']['default'] = 'cache.backend.redis';
  $settings['redis.failover'] = TRUE;
  $settings['redis.connection']['interface'] = 'Predis';
  $settings['redis.connection']['host'] = 'redis_primary';

Tested:

  1. Visited the site and pages loaded fine.
    • No error messages in dblog.
    • No values in the `cache_render` db table.
  2. Shutdown my redis server.
  3. Visited the site and pages loaded fine.
    • (expected) Error messages in dblog says "Couldn't connect to redis, using failover" or similar.
    • (expected) Values were populated in the `cache_render` db table.
🇺🇸United States daggerhart

Reroll of #20 against 8.x-1.x branch. Only conflicts were in the README.

🇺🇸United States daggerhart

#20 patch works great for me against the module 1.5 and 1.6. The patch does not apply to 1.7 unfortunately.

My config looks like this:

  $settings['container_yamls'][] = 'modules/contrib/redis/example.failover.services.yml';
  $settings['cache']['default'] = 'cache.backend.redis';
  $settings['redis.failover'] = TRUE;
  $settings['redis.connection']['interface'] = 'Predis';
  $settings['redis.connection']['host'] = 'redis_primary';

I'll see if I can re-roll the patch, but may run out of time and have to stick w/ 1.6 for now.

🇺🇸United States daggerhart

Updating Asheville details

🇺🇸United States daggerhart

The Asheville NC camp information was ~ 6 years out of date.

🇺🇸United States daggerhart

Removing unused local properties. Better parameter description.

🇺🇸United States daggerhart

more grammar

🇺🇸United States daggerhart

Grammar and clarity

🇺🇸United States daggerhart

Fixed.

MR is merged.

And the developer guider is updated with new enabledByDefault annotation property.

🇺🇸United States daggerhart

adding clarity in hook_preproces_hook example

🇺🇸United States daggerhart

Fixing silly mistakes in the example funding provider

🇺🇸United States daggerhart

Updateing examples with new enabledByDefault property per Annotation: Allow each FundingProvider to determine if it's enabled by default Fixed

🇺🇸United States daggerhart

Wording

🇺🇸United States daggerhart

Formatting

🇺🇸United States daggerhart

Moving page further down the guide (menu weight)

🇺🇸United States daggerhart

Moving this lower in the guide (menu weight)

🇺🇸United States daggerhart

Templating system documentation.

🇺🇸United States daggerhart

Fixed.

Removed from code. Struck-through on the main project page. Not found on any guide pages.

🇺🇸United States daggerhart

Cleaned up some styling things that were bothering me.

Results for first stable release:

If someone would like to propose other styles, I'm wide open to it. Please open a new issue with your mockups / MR.

🇺🇸United States daggerhart

Fixed. Using the example I created, I updated the providers that were producing the wrong urls.

🇺🇸United States daggerhart

Made a testing github funding yaml page (https://github.com/daggerhart/funding) and updated all the urls in the table above.

🇺🇸United States daggerhart

Postponing for now. I suspect the style will be very similar across dorg sites and that once we solve this once in Styling support for Drupal.org Active .

🇺🇸United States daggerhart

Postponing for now. I suspect the style will be very similar across dorg sites and that once we solve this once in Styling support for Drupal.org Active .

🇺🇸United States daggerhart

Postponing for now. I suspect the style will be very similar across dorg sites and that once we solve this once in Styling support for Drupal.org Active .

🇺🇸United States daggerhart

Another really cool idea, but I see the use-case as being as or-more narrow than Funding command for Drush Postponed . If this module provides the functionality, then it will have to be installed by the site owner to get the results.

The chances of a site owner or dev installing this module just to see what funding links their site will produce seems very unlikely.

If the owner/dev is already looking for a way to support a project, it seems like a stretch to think they would install this module and hope the project they want to support will have links appear.

Again, this is a cool idea, but postponing for now because.

🇺🇸United States daggerhart

I was thinking of a feature like this when going through Scan Drupal Git repo for funding.yml Postponed: needs info . It's a neat idea for sure, but I think the audience for the message this module could provide is very narrow. The messages would only be seen by developers that have the Funding module enabled.

Also worth notice, some other package manager did something similar in the past few years. Don't recall if it was npm or composer, but there was backlash. Devs immediately wanted a way to turn off the additional noise being added to their screens and logs.

I'm going to postpone this for now for this module. I think if we as a community _really_ wanted to surface this funding information during drush runs, we'd want to do it in drush itself. Otherwise people are installing this module just to see drush messages that many of them will not want to see.

🇺🇸United States daggerhart

Postponing for now, mainly because I suspect the style will be very similar across dorg sites and that once we solve this once in Styling support for Drupal.org Active .

Once that issue is complete, if there is a request from the drupal association to provide separate styles on the issue queue within this module, we can pick this back up.

🇺🇸United States daggerhart

Postponing for now, mainly because I suspect the style will be very similar across dorg sites and that once we solve this once in Styling support for Drupal.org Active .

Once that issue is complete, if there is a request from the drupal association to provide separate styles on the issue queue within this module, we can pick this back up.

🇺🇸United States daggerhart

I think postponed is a more-correct status. I could be convinced with more info.

🇺🇸United States daggerhart

Thought about this a good bit, and I don't think it really makes sense.

I think the fundametal idea of a Funding Provider should be that you can literally give people money by using it.

A funding provider that doesn't land the visitor on a location where they can give money would just be a generaic styled link, and I believe out of scope for this project.

🇺🇸United States daggerhart

Been thinking about this a lot, and I don't think as-written the scope of this feature request fits into the Funding module. Mainly because it's a feature only drupal.org would ever need / want.

If I'm way off here, and the drupal association wants this feature to be a part of this module, I'd be happy to give it a shot. I'd definitely need some direction though. I doubt anyone wants this module to crawl gitlab.

🇺🇸United States daggerhart

Same as other issues, I'm not clear on the relationship between this module and the various initiatives or collectives. Happy to learn more about how all these things are tied together.

Re-categorizing as an "Initiative" for now.

🇺🇸United States daggerhart

Not really sure if this module's issue queue is the right place for this, but also unclear on the cross over between this module and various initiaitves/collectives.

Re-categorizing as "Initiative" for now.

🇺🇸United States daggerhart

Removing some of the general info about how the module works and its goals.

🇺🇸United States daggerhart

Updated the installation and configuration steps.  Removed mention of supported providers, since that is now on the module's main page.

🇺🇸United States daggerhart

This is a bit out of scope for the Funding module, but is a perfect thread for the Open Collective modules. They are greatly inspired by @pwolanin's work on Open Collective Events Integration module, and I'd love to collaborate more on getting OC events management into Drupal.

Moving this issue to Open Collective module's queue for now.

🇺🇸United States daggerhart

With the merge of 📌 Funding: Upgrade to Drupal 9 Fixed , this is now outdated.

🇺🇸United States daggerhart

This is fixed with the merge of 📌 Funding: Upgrade to Drupal 9 Fixed

🇺🇸United States daggerhart

With the merge of 📌 Funding: Upgrade to Drupal 9 Fixed , this is fixed.

🇺🇸United States daggerhart

Merged and marking as Fixed.

🇺🇸United States daggerhart

After speaking with Tim, Fran, and Gus via Zoom call, we decided this was ready to merge.

🇺🇸United States daggerhart

Updated patch adds some styles to the funding-link implementations.

🇺🇸United States daggerhart

This is complete (ish) in the upgrade patch on 📌 Funding: Upgrade to Drupal 9 Fixed .

Currently the display is a select field that shows examples rather than a tooltip.

Examples are provided by each Funding Provider plugin:

🇺🇸United States daggerhart

This has been completed in the Open Collective module that is based on Funding: Implement Providers for D9 Fixed .

The responsibility for the advanced Open Collective widgets has been moved to the Open Collective module to prevent duplicating lots of templates and processing.

Providers: https://git.drupalcode.org/project/opencollective/-/tree/1.0.x/src/Plugi...

Each provider contains examples of its use.

🇺🇸United States daggerhart

This is complete in the patch on Funding: Implement Providers for D9 Fixed .

Settings page allows admins to disable and rearrange (control the rendering order) Funding Providers.

🇺🇸United States daggerhart

This patch is a rebuild.

I don't know the GitLab MR workflow, so it's a patch. To easily browse the code, I have it in GitHub also for now (2.x branch): https://github.com/daggerhart/funding

Demo Site: https://dev-opencollective.pantheonsite.io/ (admin-light access available on request).

New features:

  • Plugin Type: Funding Provider. Each funding provider is responsible for a namespace (specific key) in the funding yaml.
  • 11 Funding Providers in effort to have parity with GitHub's funding.yml in the core of this module.
  • Settings form allows admins to rearrange and disable Funding Providers.
  • Gallery page where admins can see examples for all funding providers.
  • Funding Examples are documented inline with the field.

Open Collective

The new Open Collective module adds many more Funding providers for this new branch of the funding module: https://git.drupalcode.org/project/opencollective/-/tree/1.0.x/src/Plugin/Funding/Provider

  • Badge
  • Contributors Image
  • Banner
  • Button
  • Contribution Flow
  • (API) Members - requires an API-Key be set in the oc_graphql_client module settings

Each are as configurable as I could get make them (some of OC's documentation is incorrect).

MVP Remaining TODOs

  1. I could not find any complete and working example of GitHub's, so I am not sure about all the URLs produced by the simple providers. Specifically, I need verified url patterns for the following: IssueHunt, KoFi, LfxMentorship, Liberapay, Otechie, Patreon, Tidelift
  2. Styling. Almost every visitor facing output is unstyled (or very lightly styled). Need some specific styling goals for the OOTB styles implementation.
  3. More documentation.
  4. Automated tests.
Production build 0.71.5 2024