Giter Club home page Giter Club logo

Comments (4)

UsmanKamal avatar UsmanKamal commented on August 18, 2024

Similar query, is it possible to add multiple URLs in a single CRM container?

If we go by this (https://www.twilio.com/docs/flex/tutorials/building-flex-plugins) example, can we add a second "flex.CRMContainer.defaultProps.uriCallback" function to render two URLs within a single CRM container? The need for this is that I want to render two URLs within Agent Desktop and " flex.AgentDesktopView.Panel1" does not give any function similar to CRM container for URL rendering.

I want to achieve something like this screenshot:

twilio - agentdesktop custom

from flex-ui-sample.

AdrianaPineda avatar AdrianaPineda commented on August 18, 2024

Hey @binhudakhalid @UsmanKamal, you can use Flex to add, replace, and remove any component. For example, you can remove the original CRM container and add a new one or replace the CRM container itself.
Check out our docs: https://www.twilio.com/docs/flex/components-add-replace-modify

A simple example to replace the CRM container:
Flex.CRMContainer.Content.replace(<YourComponent/>);

Your custom component will be in charge of rendering the two containers you need.

from flex-ui-sample.

ThomasLarge avatar ThomasLarge commented on August 18, 2024

@binhudakhalid don't know if you got a answer but you can do this

export const CrmSplit = () => {
  return (
    <div style={{ width: "100%", height: "100%" }}>
      <div style={{ width: "100%", height: "50vh" }}>First half</div>
      <div style={{ width: "100%", height: "50vh" }}>second half</div>
    </div>
  );
};

Then this
Flex.CRMContainer.Content.replace(<CrmSplit key="CrmSplit"/>);

from flex-ui-sample.

Deekshaaaaa avatar Deekshaaaaa commented on August 18, 2024

@UsmanKamal can you please tell me how did you implement this

from flex-ui-sample.

Related Issues (13)

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.