You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by "davsclaus (via GitHub)" <gi...@apache.org> on 2023/10/02 10:55:11 UTC

[I] Karavan Designer - Properties Panel should indicate which options has been explicit configured [camel-karavan]

davsclaus opened a new issue, #921:
URL: https://github.com/apache/camel-karavan/issues/921

   When working on components or EIPs that have many options, then it would be nice if the properties panel could highlight which options has been configured (eg has value in YAML).
   
   This allows to quickly see these options, as those are often what you need to understand and maybe also update etc. Maybe the UI could have some kind of different color, or some kind of visual indentication.
   
   An example below in the AMQP component
   <img width="2173" alt="Screenshot 2023-10-02 at 12 52 52" src="https://github.com/apache/camel-karavan/assets/477100/412d3fd6-cc8f-45f3-b2e2-bf72a6340151">
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Karavan Designer - Properties Panel should indicate which options has been explicit configured [camel-karavan]

Posted by "davsclaus (via GitHub)" <gi...@apache.org>.
davsclaus commented on issue #921:
URL: https://github.com/apache/camel-karavan/issues/921#issuecomment-1742802224

   And the YAML DSL
   ```
   - route:
       id: amqp-producer
       from:
         uri: netty-http
         id: from-b4e7
         parameters:
           protocol: http
           host: localhost:{{netty.port}}
           path: message
         steps:
           - log:
               message: got Netty request, about to send AMQP message.
               id: log-69c1
           - to:
               uri: amqp
               id: to-5fea
               parameters:
                 destinationType: queue
                 destinationName: myqueue
   - route:
       id: amqp-consumer
       from:
         uri: amqp
         id: from-d77e
         parameters:
           destinationType: queue
           destinationName: myqueue
         steps:
           - log:
               message: got AMQP request, about to respond.
               id: log-44b2
           - setBody:
               expression:
                 simple:
                   expression: Hello from Camel's AMQP example
                   id: simple-05f4
               id: setBody-1796
   - beans:
       - name: jmsConnectionFactory
         properties:
           remoteURI: amqp://localhost:5672
         type: org.apache.qpid.jms.JmsConnectionFactory
       - name: amqp
         properties:
           connectionFactory: '#bean:jmsConnectionFactory'
         type: org.apache.camel.component.amqp.AMQPComponent
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org