Akeneo parameters

After you install the Akeneo integration, the following parameter types are available. You can use these to incorporate content from Akeneo into your components and compositions.

Parameter typeDescription
Akeneo asset selectorSpecify search criteria that's used to select a single or multiple products from Akeneo.
Akeneo product selectorSelect one or more products from Akeneo.

This parameter type allows a Uniform user to configure a query that will determine the Akeneo products that are retrieved.

To allow a user to configure a query to determine the products from Akeneo to retrieve, you must add a parameter to a component. The parameter is used to store the query settings used to perform the search.

  1. In Uniform, navigate to your component.

  2. Add a new parameter using the parameter type Akeneo Asset Selector.

  3. The following values can be specified:

    NameDescription
    LocalesThe assets that are available to be selected are limited to the selected locale. You must select a locale.
    Allow multi-selectIndicates whether the user can select only one asset (the default), or more than one asset.
    RequiredIndicates whether the value is required when the component is used.
    parameter-config
    Akeneo asset selector parameter configuration.

When you use a component with a Akeneo Asset Selector parameter, by default no asset will be selected.

  1. Select the asset family whose assets you want to select from.

    edit-value-default
  2. Click the asset(s) you want to select.

    edit-value-family-selected
  3. Click Save and close to save your selection.

    edit-value-asset-selected
  4. The parameter is set to the selected asset(s).

    About this step

    After your selection is saved, you are presented with the following options:

    • If you want to edit the selected asset in Akeneo, click Edit.
    • If you want to deselect the asset, click Unlink.
    edit-parameter-value

When an asset or assets are selected, Uniform only stores the identifier(s) for the asset(s). Your front-end application must retrieve the details for the asset(s). Uniform provides an enhancer to simplify this process.

tip

Using the enhancer provided by Uniform saves you from having to write logic to interact directly with Akeneo.

The following is an example of what Uniform stores for the parameter.

{ "type": "akeneo-asset-selector", "value": { "locale": "######", "assetIds": [ "######################" ] } }

There are two identifiers in this value:

  1. The locale that was selected.
  2. The identifier(s) for the selected asset(s).

Uniform provides an enhancer so you don't need to write the API calls to Akeneo to retrieve details about the selected asset(s).

  1. Add the following npm packages to your front-end application:

    @uniformdev/canvas @uniformdev/canvas-akeneo
  2. In a text editor, open the file where you retrieve the composition definition from Uniform.

    About this step

    You are looking for the code calls the async function getComposition. The code below assumes the object returned is set in a variable composition.

  3. Add the following import statements:

    import { EnhancerBuilder, enhance } from '@uniformdev/canvas'; import { createEnhancer, AkeneoClient, AKENEO_PARAMETER_TYPES, AuthType, } from '@uniformdev/canvas-akeneo';
  4. Add the following code:

    const akeneoClient = new AkaneoClient({ authType: AuthType.APPLICATION, url: "!!! YOUR AKENEO URL !!!", token: "!!! YOUR AKENEO TOKEN !!!", }); const akaneoEnhancer = createEnhancer({ clients: akeneoClient, })

    About this step

    Uniform recommends you moving the Akeneo credentials to environment variables rather than hard-coding them in the front-end app.

  5. Add the following code:

    await enhance({ composition, enhancers: new EnhancerBuilder().parameterType( AKENEO_PARAMETER_TYPES, akaneoEnhancer, ), context: {}, });

About this step

This registers the enhancer to be used for any occurrence of the Akeneo Asset Selector parameter.

Next steps

Now, the parameter value in the composition is mutated to include the field values for the selected Akeneo asset(s) (instead of just being identifier).

This parameter type allows a Uniform user to select one or more Akeneo products.

To allow a user to select products from Akeneo, you must add a parameter to a component. The parameter is used to store the identifier to the selected products when the user selects one or more products.

  1. In Uniform, navigate to your component.

  2. Add a new parameter using the parameter type Akeneo Product Selector.

  3. The following values can be specified:

    NameDescription
    LocalesThe products that are available to be selected are limited to the selected locale. You must select a locale.
    Constrain the selection to the following product categoriesBy default, no product categories are selected, which means that any kind of products can be selected. If you want to limit the types of products that can be selected, click one or more of the product categories listed.
    ChannelBy default, no channel is selected, which means that products assigned to any channel can be selected. If you want to limit this to products assigned to a specific channel, you can select the channel.
    CompletenessBy default, products at any level of completeness can be selected. If you want to limit this to products that are at least a certain percent complete, you can enter that minimal value here. The value must be a number from 0 to 100.
    Restrict searchBy default, products and variants are available to be selected. This value allows you to specify whether you want products and/or variants to be available.
    Display field (optional)In Uniform, this parameter type displays a list of products. By default, the product name is displayed. This field lets you change that so a different product property is displayed.
    Allow multi-selectIndicates whether the user can select only one product (the default), or more than one product.
    RequiredIndicates whether the value is required when the component is used.
    add-parameter-to-component
    Akeneo Product Selector parameter configuration.

When you use a component with a Akeneo Product Selector parameter, by default no product will be selected. You are prompted to select a product (or products, if you have allowed multi-selection).

  1. Click Select.

    edit-value-default
  2. Click the product(s) you want to select.

    edit-value-filters

    About this step

    A couple of filters are available. The dropdown allows you to filter by category. The text box allows you to filter by product name.

  3. Click Accept to save your selection.

    edit-value-selected
  4. You will see details about the product(s) you selected, including the title and other data.

    edit-value-saved

    About this step

    After your selection is saved, you are presented with the following options:

    • If you want to edit the selected product in Akeneo, click Edit.
    • If you want to deselect the product, click Unlink.

This parameter type uses the same enhancer as the Akeneo asset selector parameter type.

note

The following is an example of what Uniform stores for the parameter.

{ "type": "akeneo-product-selector", "value": { "locale": "######################", "channel": "", "productIds": [ "######################" ] } }