Git Product home page Git Product logo

Comments (6)

jgermade avatar jgermade commented on September 18, 2024

Hi @BranoMatan!
Think it may be a good idea add extend method. Hope this enhance jquery compatibility

related issue: #9

thanks for your feedback!

from jqlite.

BranoMatan avatar BranoMatan commented on September 18, 2024

Thank you very much for the fast reply.
Apparently, adding the extend method wasn't the last problem I faced when implementing the dotdotdot library into my code. There are several more jQuery's method required for that, and also there is a problem when using jqlite's html method with dotdotdot.
Anyway, instead of bothering you again, I wrote my own dotdotdot function that can be implemented with jqlite:

function dotdotdot(containersToDotdotdot) {
    function dotdotdotContainers(containers) {
        for (var i = 0; i < containers.length; i++) {
            var cntnr = $jq(containers[i]);
            cntnr.html('<span>' + cntnr.html().replace(/ /g,'</span> <span>') + '</span>');
            var words = Array.prototype.slice.call(cntnr.find("span"), 0).reverse();
            var lastw = null;

            for (var j = 0; j < words.length; j++) {
                var w = $jq(words[j]);
                var wbot = w.height() + w.offset().top;
                var wleft = w.offset().left;
                var wright = wleft + w.width();

                if (wbot <= (cntnr.offset().top + cntnr.height()) && wleft >= (cntnr.offset().left) && wright <= (cntnr.offset().left + cntnr.width())) {
                    lastw = words.length - j - 1;
                    break;
                }
            }

            cntnr.html(lastw === null || lastw === (words.length - 1) ? cntnr.text() : (cntnr.text().split(' ').slice(0, lastw).join(' ') + '...'));
        }
    }

    if (containersToDotdotdot instanceof Array) {
        for (var i = 0; i < containersToDotdotdot.length; i++) {
            dotdotdotContainers($jq(containersToDotdotdot[i]));
        }
    } else {
        dotdotdotContainers($jq(containersToDotdotdot));
    }
}

As you can see, the input for dotdotdot can be an array of classes/ids or a single class/id.
Hope other users could benefit from that.
Thanks again!!

from jqlite.

jgermade avatar jgermade commented on September 18, 2024

Ey @BranoMatan! awesome solution!!

Maybe you can create a VanillaJS plugin than can be wrapped into a jQuery/jqlite plugin (see jq-plugin).

In any case I'll merge extend method, Is a small function and It may be usefull.

Thanks a lot for your feedback and contribution!!

from jqlite.

RongBranovate avatar RongBranovate commented on September 18, 2024

Good job @BranoMatan !

from jqlite.

jgermade avatar jgermade commented on September 18, 2024

ey @BranoMatan ! I'm going to use your code in a proyect of mine, thanks again!!

from jqlite.

BranoMatan avatar BranoMatan commented on September 18, 2024

@jgermade I'm glad you found this code useful, enjoy! :)

from jqlite.

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.