Giter Club home page Giter Club logo

Comments (9)

squallttthp avatar squallttthp commented on July 24, 2024 4

hi @jjtykkyl, can you create an example use "fetchNext" with a button "load more", please ? I don't understand how can I use it for more comment get from server. Thank you so much !

from jquery-comments.

jjtykkyl avatar jjtykkyl commented on July 24, 2024

I have used the utility function below for fetching new comments when the user has scrolled to the end of the comment container element:

function onScrolledBottom(el, callback, threshold) {
    var $el = $(el);
    threshold = threshold ? threshold : 0;

    $el.scroll(function() {
        if($el.outerHeight() + el.scrollTop >= el.scrollHeight - threshold) {
            callback();
        }
    });
}

The first parameter is the scrollable element containing all the comments. Then you can pass a callback function that fetches the next batch of comments from the server and appends the new comment elements into DOM.

from jquery-comments.

zuntilZ avatar zuntilZ commented on July 24, 2024

@jjtykkyl can you build that feature in the new version ?

from jquery-comments.

jjtykkyl avatar jjtykkyl commented on July 24, 2024

I can build a support for that feature but please note that you have to implement the pagination to your API as well.

from jquery-comments.

jjtykkyl avatar jjtykkyl commented on July 24, 2024

I added a new function to the jquery-comments v1.1.0 named "fetchNext" that you can use for pagination. You still need to listen the scroll event on the element that is scrollable (body or .jquery-comments for example). The "fetchNext" function utilizes the the "getComments" callback where you need to implement the functionality on your end.

from jquery-comments.

zuntilZ avatar zuntilZ commented on July 24, 2024

yeah.thank for support

from jquery-comments.

GRLeo avatar GRLeo commented on July 24, 2024

@jjtykkyl @untilyou89 please tell how to call fetchNext function

from jquery-comments.

GRLeo avatar GRLeo commented on July 24, 2024

I've got things working using this:

$('#comm').comments({...}});

$.data($('#comm').get(0), 'comments').fetchNext();

from jquery-comments.

burzum avatar burzum commented on July 24, 2024

An example would be nice. And how do we paginate child comments? I don't want to display a huge amount of child comments but would prefer to show three and then the option to load more. Honestly I think this is something that should be part of the plugin.

from jquery-comments.

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.