Code Monkey home page Code Monkey logo

Comments (3)

pablosichert avatar pablosichert commented on July 17, 2024
<Truncate>
    {Array(300).fill('word ').map((content, i) => (
        <span key={i}>{content}</span>
    ))}
</Truncate>

works fine for me.

Could you provide some additional info:

  • Which version of react-truncate are you using?
  • How is your map function defined (Array.prototype.map?)
  • What does get(event, "attachments") return?
  • What kind of DOM element does <Attachment> return?

For that matter, could you do

console.log(
    map((x, i) => (
        <Attachment
            featuresFormatted={get(event, "featuresFormatted")}
            index={i}
            key={get(x, "uri")}
            attachment={x}
            highlightedAttachmentNames={highlightedAttachmentNames}
        />
    ), get(event, "attachments"))
);

and paste the output here?

from react-truncate.

moimikey avatar moimikey commented on July 17, 2024

@pablosichert well i'm silly. this is my own problem. i looked at the source code and took notice that it is genuinely just for text nodes. i'm making an attempt to map over a component that returns html.

thanks for the thorough response.

to follow-up, what do you think the likelihood is of having the ability to truncate components wholely vs text nodes. is it worth a PR? in my case, i've got n number of <Attachment /> components in an array; each <Attachment /> returns something like <div><i class="icon"> text</div>, and i want to truncate down to only display x number of <Attachment /> components. maybe a different project? or could you anticipate this project having the ability to additionally be inclusive of React elements?

from react-truncate.

pablosichert avatar pablosichert commented on July 17, 2024

No worries :-)

There has been a similar feature request #8.

I had some ideas on how to implement a solution that works for any node, but don't have an overall plan yet. Also, can't promise any schedule for this feature until we need it in production.

Closing this for now.

As a solution for your use case, wouldn't something like this work?

let attachments = [];
let _attachments = get(event, "attachments");

let numAttachments = showAll ? _attachments.length : Math.min(_attachments.length, 3);

for (let i = 0; i < numAttachments; i++) {
    let attachment = attachments[i];

    attachments.push(
        <Attachment
            featuresFormatted={get(event, "featuresFormatted")}
            index={i}
            key={get(attachment, "uri")}
            attachment={attachment}
            highlightedAttachmentNames={highlightedAttachmentNames}
        />
    );
}

return (
    <div>{attachments}</div>
);

And some button in your UI that toggles the showAll variable.

from react-truncate.

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.