Make event_platform not rely on existing config

Created on 11 July 2024, 9 months ago

Problem/Motivation

Event Platform relies on existing config. This makes it impossible to enable event_platform on an existing project when certain config is not present. For example filter.format.restricted_html or field.storage.node.field_image. Upon enabling the module you get the following error for example:

$ drush -y en event_platform

The following module(s) will be enabled: event_platform, event_platform_details, datetime_range, config_pages, field_permissions, event_platform_job_listings, add_content_by_bundle, event_platform_sponsors, hide_revision_field, event_platform_sessions, content_moderation, workflows, auto_entitylabel, honeypot, maxlength, registration_role, smart_date, views_summary_tabs, workbench_email, event_platform_speakers, event_platform_scheduler

 // Do you want to continue?: yes.

In UnmetDependenciesException.php line 100:

  Configuration objects provided by <em class="placeholder">event_platform_se
  ssions</em> have unmet dependencies: <em class="placeholder">field.field.us
  er.user.field_bio (filter.format.restricted_html)</em>

Steps to reproduce

  1. Have a fresh Drupal standard installation.
  2. Remove the filtered HTML text format.
  3. Try to enable Event Platform

Proposed resolution

Provide all config the Event platform module relies on from the module itself.

Remove dependencies on existing config.

Remaining tasks

User interface changes

API changes

Data model changes

Feature request
Status

Active

Version

1.0

Component

Code

Created by

leymannx Berlin

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

Comments & Activities

  • Issue created by @leymannx
  • leymannx Berlin

    Looks like it's really on those two things:

    • Filtered HTML text format for the user field field_bio
    • field_image used for the featured speaker node type

    So, if we'd provide the image field ourselves and make the field_bio allow any format (allowed_formats: { }), this issue can be fixed.

  • Status changed to Needs review 9 months ago
  • leymannx Berlin

    So for me, this patch fixes the issue. I just allowed any text format on the bio field and copied the standard profile's image field over.

    BUT...

    Having another field_image might not work for everyone, so we better choose a different name. Which one?

    AND...

    I also see that there are fields like field_weight or field_badge which would profit from more distinctive naming. Any project that already has an existing field_weight or field_badge might run into problems installing Event Platform on top.

    It's probably better to drop the default field_ prefix on these fields and have them prefixed with either event_platform_ or field_ep_ or featured_speaker_ to make this project more agnostic.

  • 🇨🇦Canada mandclu

    Something else to consider here: When we convert this project to a set of recipes, we can use config actions to resolve these potential conflicts and/or make sure that any needed dependencies are available.

  • leymannx Berlin

    Mhm, this sounds nice. That would require more architectural changes I guess. Means we could put that on a roadmap for v2?

  • 🇺🇸United States bernardm28 Tennessee

    This would be great at wil simplifying providing content and allowing drush si --existing-config to work.
    --existing-config does not work with standard only minimal and event_platform makes it harder to switch profiles harder since it depends on a hook_install.
    hook_install is the reason --existing-config does not play well with the standard install profile.

    Theme recipe: A recipe that adds content to a site based on a specific theme.

    This makes it harder for the theme recipe to cleanly rebuild the site from config and reapply its content. So some items have to be handled with more care and it's easier to start from a good configuration.

Production build 0.71.5 2024