Import currency with a config action

Created on 11 December 2024, 4 months ago

Describe your bug or feature request.

Related to Make it possible for recipes to prompt for input values Fixed

We are looking into creating some recipes for Drupal Commerce and now with the ability to add user input as part of the recipe application, we are finally there when it comes to basic store setup (country, currency, etc).

But... :) What is currently not supported is the ability to define config IDs based on the input. We can though define a custom config action plugin and use that to simply import the currency that already exists in the currency repository.

Feature request
Status

Active

Version

3.0

Component

Price

Created by

🇳🇴Norway zaporylie

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

Merge Requests

Comments & Activities

  • Issue created by @zaporylie
  • 🇳🇴Norway zaporylie

    Here's an example recipe.yml file I've been using along with the proposed MR to define a currency by simply applying the recipe and providing the required input.

    name: 'Commerce Kickstart Currency'
    description: 'Allows importing user-selected currency'
    type: 'Commerce Kickstart'
    install:
      - commerce_price
    input:
      currency:
        data_type: string
        description: 'Main currency. You can add other currencies later'
        constraints:
          # todo: Add currency constraint.
          NotBlank: []
        prompt:
          method: ask
          arguments:
            question: "Enter the currency you want to install on your site. The currency must be in 3-letter format, ex. USD, EUR, or PLN"
        form:
          '#type': 'select'
          '#title': 'Currency'
          '#description': "Enter the currency you want to install on your site. The currency must be in 3-letter format, ex. USD, EUR, or PLN"
          # todo: Add options callback.
        default:
          source: value
          value: 'USD'
    
    config:
      actions:
        commerce_price.commerce_currency.XYZ:
          currencyImport: ${currency}
    
    
  • Pipeline finished with Success
    4 months ago
    Total: 2333s
    #365668
Production build 0.71.5 2024