Add support for creating links within code components

Created on 28 February 2025, about 1 month ago

Overview

We need to allow creating links within code components. This probably means we need to have a URL prop type. However, this may not be enough since we need to figure out how do we generate the actual href value needed out of the URL.

Proposed resolution

Provide an example of how to create links within code components.

User interface changes

โœจ Feature request
Status

Active

Version

0.0

Component

Theme builder

Created by

๐Ÿ‡ซ๐Ÿ‡ฎFinland lauriii Finland

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

Merge Requests

Comments & Activities

  • Issue created by @lauriii
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    The back-end already allows this:

    # @see https://json-schema.org/understanding-json-schema/reference/strings
    experience_builder.json_schema.prop.string:
    โ€ฆ
        format:
          requiredKey: false
          type: string
          label: 'Format'
          constraints:
            Choice:
              # @see https://json-schema.org/understanding-json-schema/reference/type#built-in-formats
              # @see Drupal\experience_builder\JsonSchemaInterpreter\JsonSchemaStringFormat::computeStorablePropShape()
              - date-time
              - date
              - email
              - idn-email
              - uri
              - uri-reference
              - iri
              - iri-reference
    

    So it's just a matter of adding something like:

    diff --git a/ui/src/features/code-editor/component-data/Props.tsx b/ui/src/features/code-editor/component-data/Props.tsx
    index 6bc1e9a02..bd69a8e3e 100644
    --- a/ui/src/features/code-editor/component-data/Props.tsx
    +++ b/ui/src/features/code-editor/component-data/Props.tsx
    @@ -55,6 +55,11 @@ const UI_PROP_TYPES: Record<string, UiPropType> = {
         displayName: 'Text area',
         _ref: 'json-schema-definitions://experience_builder.module/textarea',
       },
    +  stringUrl: {
    +    type: 'string',
    +    displayName: 'URL',
    +    format: 'URL',
    +  },
       integer: { type: 'integer', displayName: 'Integer' },
       number: { type: 'number', displayName: 'Number' },
       boolean: { type: 'boolean', displayName: 'Boolean' },
    

    โ€ฆ and wiring that up โ€” like @hooroomoo did yesterday for textareas in โœจ Allow adding textarea in the code editor Active .

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    Note: this is purely about being able to create such props for code components.

    It's not about the UX of entering links, for that we have โœจ [PP-1] Make link widget autocomplete work (for uri and uri-reference props) Postponed .

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    Consistent naming ๐Ÿค“

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    Bรกlint started working on this AFAIK.

  • First commit to issue fork.
  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands balintbrews Amsterdam, NL

  • First commit to issue fork.
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States hooroomoo
  • Pipeline finished with Skipped
    24 days ago
    #447921
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States hooroomoo
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    Awesome to see the old UI_PROP_TYPES object evolve into derivedPropTypes.ts ๐Ÿ”ฅ

    ๐Ÿ’ฏ

    But โ€ฆ ๐Ÿ˜…

    I expected the relative path (see the example in the GIF in #9 and the Relative path link with example value hunk in the MR) to start with a slash.

    IOW: I expected this to match

    • how \Drupal\path_alias\Entity\PathAlias stores path aliases
    • how the Content Creator enters a path aliases at e.g. /node/add/article in Drupal's Standard install profile
    • XB's all-props SDC test_string_format_uri_reference prop's example of /example-uri

    Is the omission of the leading slash here intentional? If so: what's the rationale?

    If it's not intentional: can we change it in a follow-up? ๐Ÿ™

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands balintbrews Amsterdam, NL

    It was barely a UX decision I made, and since the validation (based on the JSON Schema) passed on those values, I forgot to match this how Drupal usually expects these. Let's change in a follow-up.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024