Display posts in descending posted order

前端 未结 18 882
南方客
南方客 2020-11-22 11:47

I\'m trying to test out Firebase to allow users to post comments using push. I want to display the data I retrieve with the following;

fbl.child         


        
相关标签:
18条回答
  • 2020-11-22 11:55

    Firebase: How to display a thread of items in reverse order with a limit for each request and an indicator for a "load more" button.

    • This will get the last 10 items of the list

    FBRef.child("childName") .limitToLast(loadMoreLimit) // loadMoreLimit = 10 for example

    • This will get the last 10 items. Grab the id of the last record in the list and save for the load more functionality. Next, convert the collection of objects into and an array and do a list.reverse().

    • LOAD MORE Functionality: The next call will do two things, it will get the next sequence of list items based on the reference id from the first request and give you an indicator if you need to display the "load more" button.

    this.FBRef .child("childName") .endAt(null, lastThreadId) // Get this from the previous step .limitToLast(loadMoreLimit+2)

    • You will need to strip the first and last item of this object collection. The first item is the reference to get this list. The last item is an indicator for the show more button.

    • I have a bunch of other logic that will keep everything clean. You will need to add this code only for the load more functionality.

        list = snapObjectAsArray;  // The list is an array from snapObject
        lastItemId = key; // get the first key of the list
      
        if (list.length < loadMoreLimit+1) {
          lastItemId = false; 
        }
        if (list.length > loadMoreLimit+1) {
          list.pop();
        }
        if (list.length > loadMoreLimit) {
          list.shift();
        }
        // Return the list.reverse() and lastItemId 
        // If lastItemId is an ID, it will be used for the next reference and a flag to show the "load more" button.
      }
      
    0 讨论(0)
  • 2020-11-22 11:56

    There is a better way. You should order by negative server timestamp. How to get negative server timestamp even offline? There is an hidden field which helps. Related snippet from documentation:

    var offsetRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/.info/serverTimeOffset");
      offsetRef.on("value", function(snap) {
      var offset = snap.val();
      var estimatedServerTimeMs = new Date().getTime() + offset;
    });
    
    0 讨论(0)
  • 2020-11-22 11:57

    I did this by prepend.

    query.orderByChild('sell').limitToLast(4).on("value", function(snapshot){
        snapshot.forEach(function (childSnapshot) {
            // PREPEND
        });
    });
    
    0 讨论(0)
  • 2020-11-22 12:01

    To augment Frank's answer, it's also possible to grab the most recent records--even if you haven't bothered to order them using priorities--by simply using endAt().limit(x) like this demo:

    var fb = new Firebase(URL);
    
    // listen for all changes and update
    fb.endAt().limit(100).on('value', update);
    
    // print the output of our array
    function update(snap) {
       var list = [];
        snap.forEach(function(ss) {
           var data = ss.val();
           data['.priority'] = ss.getPriority();
           data['.name'] = ss.name();
           list.unshift(data); 
        });
       // print/process the results...
    }
    

    Note that this is quite performant even up to perhaps a thousand records (assuming the payloads are small). For more robust usages, Frank's answer is authoritative and much more scalable.

    This brute force can also be optimized to work with bigger data or more records by doing things like monitoring child_added/child_removed/child_moved events in lieu of value, and using a debounce to apply DOM updates in bulk instead of individually.

    DOM updates, naturally, are a stinker regardless of the approach, once you get into the hundreds of elements, so the debounce approach (or a React.js solution, which is essentially an uber debounce) is a great tool to have.

    0 讨论(0)
  • 2020-11-22 12:07

    There is really no way but seems we have the recyclerview we can have this

     query=mCommentsReference.orderByChild("date_added");
            query.keepSynced(true);
    
            // Initialize Views
            mRecyclerView = (RecyclerView) view.findViewById(R.id.recyclerView);
            mManager = new LinearLayoutManager(getContext());
    //        mManager.setReverseLayout(false);
            mManager.setReverseLayout(true);
            mManager.setStackFromEnd(true);
    
            mRecyclerView.setHasFixedSize(true);
            mRecyclerView.setLayoutManager(mManager);
    
    0 讨论(0)
  • 2020-11-22 12:07

    I had this problem too, I found a very simple solution to this that doesn't involved manipulating the data in anyway. If you are rending the result to the DOM, in a list of some sort. You can use flexbox and setup a class to reverse the elements in their container.

    .reverse {
      display: flex;
      flex-direction: column-reverse;
    }
    
    0 讨论(0)
提交回复
热议问题