Giter Site home page Giter Site logo

Comments (7)

smnandre avatar smnandre commented on August 20, 2024

You could use a more direct syntax to avoid the situation you described

<twig:Dialog
  modal:id="{{ attributes.render('id') }}"
  modal:data-live-name-value="{{ attributes.render('data-live-name-value') }}"
  modal:data-live-url-value="{{ attributes.render('data-live-url-value') }}"
  modal:data-live-props-value="{{ attributes.render('data-live-props-value') }}"
  modal:data-live-csrf-value="{{ attributes.render('data-live-csrf-value') }}"
  ...

I did not understand your use case, and what you want to do... are you rendering the live attributes of your twig:Dialog component on the modal (non live) component ?

Little warning there, those attributes should not be considered public (they could change at any time).

from ux.

norkunas avatar norkunas commented on August 20, 2024

I know that they could change anytime,thats why i want to forward all of them instead of defining manually. At first I missed that the events to emit/dispatch are dynamic,and not always present

from ux.

norkunas avatar norkunas commented on August 20, 2024

I did not understand your use case, and what you want to do

Forward nested attributes, like I said in issue title not sure how that could be more clear :)

from ux.

norkunas avatar norkunas commented on August 20, 2024

I thought that it would be possible to do something like:

{% set modalAttrs = { modal: { ...attributes } } %}

<twig:Dialog
  {{ ...modalAttrs }}
/>

but this didn't work

from ux.

smnandre avatar smnandre commented on August 20, 2024

I did not understand your use case, and what you want to do

Forward nested attributes, like I said in issue title not sure how that could be more clear :)

Haha... ok :) Let's pretend my sentence stopped there!

{% set modalAttrs = { modal: { ...attributes } } %}

<twig:Dialog
  {{ ...modalAttrs }}
/>

It could not work as you expect, as this nested notation is a very specific use case, and cannot be implied for everyone.

You could manipulate the array of attributes and prefix all key with "modal:" before spreading it i guess.

from ux.

norkunas avatar norkunas commented on August 20, 2024

ah, that's right, keys are just strings..

You could manipulate the array of attributes and prefix all key with "modal:" before spreading it i guess.

too verbose to remap all the attributes :(

from ux.

smnandre avatar smnandre commented on August 20, 2024
# Not perfect in term of readability but does the job

{% set nested = attributes|reduce((c, v, k) => c|merge({('modal:'~k): v}), {}) %}
<twig:Dialog {{ ... nested }} />

# Or if the order has no importance..

{% set nested = attributes|reduce((c, v, k) => {('modal:'~k): v, ...c}, {}) %}
<twig:Dialog {{ ... nested }} />

from ux.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.